/*
Theme Name: GTC Nutrition
Theme URI: https://gulfTradingCompany.com
Author: Gulf Trading Company
Description: Premium theme for Gulf Trading Company - Dairy & Poultry Nutrition
Version: 1.0.0
License: GPL v2 or later
Text Domain: gtc-nutrition
*/

:root {
  /* Colors */
  --primary: #1F7A3E;
  /* GTC Green - Growth, Nature */
  --primary-green: #00fe57;
  /* Bright Green - Highlights */
  --primary-dark: #16592d;
  /* Dark Green - Hover/Footer */
  --primary-light: #2ecc71;
  /* Light Green - Accents */

  --accent: #C6A15B;
  /* Gold - Premium, Quality */
  --accent-hover: #B18B4A;
  /* Dark Gold - Hover */

  --bg-body: #F7F8FA;
  /* Light Gray - Page Background */
  --bg-bodys: #1b9292;
  /* Teal - Section Background (keep if used) */

  --bg-card: #FFFFFF;
  /* White - Cards Background */
  --text-heading: #0F172A;
  /* Dark Blue-Gray - Headings */
  --text-body: #334155;
  /* Medium Gray - Body Text */
  --text-light: #64748B;
  /* Light Gray - Secondary Text */
  --text-lights: #e9ecef;
  --border-light: #E2E8F0;
  /* Very Light Gray - Borders */

  --white: #FFFFFF;
  /* White */
  --black: #000000;
  /* Black */

  --whatsapp: #25D366;
  /* WhatsApp Green */
  --whatsapp-dark: #128C7E;
  /* Dark WhatsApp */

  /* Typography */
  --font-heading: 'Poppins', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --container: 1280px;
  --header-height: 80px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-body);
  color: var(--text-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--text-heading);
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul,
ol {
  list-style: none;
}

/* Utilities */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
  gap: 0.5rem;
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-accent {
  background-color: var(--accent);
  color: var(--text-heading);
}

.btn-accent:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid var(--primary);
  background: transparent;
  color: var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-white {
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* WhatsApp Button Styles */
.btn-whatsapp {
  background-color: var(--whatsapp);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.btn-whatsapp:hover {
  background-color: var(--whatsapp-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-whatsapp i {
  font-size: 1.2rem;
}

.btn-whatsapp-sm {
  padding: 0.4rem 1rem;
  font-size: 0.875rem;
}

.btn-whatsapp-sm i {
  font-size: 1rem;
}

.btn-whatsapp-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.btn-whatsapp-lg i {
  font-size: 1.3rem;
}

.btn-white {
  background: var(--white);
  color: var(--whatsapp);
  padding: 1rem 2.5rem;
  font-size: 1.2rem;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-white:hover {
  background: #f8f9fa;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.section-padding {
  padding: 5rem 0;

}

.section-padding-sm {
  padding: 3rem 0;
}

.bg-white {
  background-color: var(--white);

}

.bg-light {
  --bg-bodys: #1b9292;
  background-color: var(--bg-bodys);
}

.bg-primary {
  background-color: var(--primary);
  color: var(--white);
}

.text-center {
  text-align: center;
}

.text-white {
  color: var(--white);
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.mb-5 {
  margin-bottom: 2.5rem;
}

.mb-6 {
  margin-bottom: 3rem;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mt-4 {
  margin-top: 2rem;
}

.mt-5 {
  margin-top: 2.5rem;
}

.mt-6 {
  margin-top: 3rem;
}

.text-muted {
  color: var(--text-light);
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.max-w-600 {
  max-width: 600px;
}

.max-w-800 {
  max-width: 800px;
}

/* Grid System */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

/* ========== PRODUCT RANGE TILES WITH BACKGROUND IMAGES ========== */
.range-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.range-card {
  position: relative;
  height: 300px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: var(--shadow-md);
}

/* Gradient Overlay */
.range-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.9) 0%,
      rgba(0, 0, 0, 0.6) 50%,
      rgba(0, 0, 0, 0.3) 100%);
  z-index: 1;
  transition: all 0.4s ease;
}

.range-card:hover::before {
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.95) 0%,
      rgba(0, 0, 0, 0.7) 50%,
      rgba(0, 0, 0, 0.4) 100%);
}

/* Card Content */
.range-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  z-index: 2;
  transform: translateY(0);
  transition: transform 0.4s ease;
}

.range-card:hover .range-content {
  transform: translateY(-10px);
}

/* Title Styling */
.range-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  display: block;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  padding-bottom: 0.75rem;
}

.range-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.range-card:hover .range-title::after {
  width: 80px;
}

/* Count/Subtitle Styling */
.range-count {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  display: block;
  line-height: 1.5;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.range-card:hover .range-count {
  opacity: 1;
}

/* Hover Effect */
.range-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

/* Individual Card Backgrounds - Add these classes in HTML */
.range-poultry {
  background-image: url('https://gtcgroup.pk/wp-content/themes/gtc-nutrition/assets/images/range/poultry.jpg');
  background-size: cover;
  background-position: center;
}

.range-dairy {
  background-image: url('https://gtcgroup.pk/wp-content/themes/gtc-nutrition/assets/images/range/dairy.jpg');
  background-size: cover;
  background-position: center;
}

.range-nutrition {
  background-image: url('https://gtcgroup.pk/wp-content/themes/gtc-nutrition/assets/images/range/nutrition.jpg');
  background-size: cover;
  background-position: center;
}

.range-additives {
  background-image: url('https://gtcgroup.pk/wp-content/themes/gtc-nutrition/assets/images/range/additives.jpg');
  background-size: cover;
  background-position: center;
}

/* Fallback gradients if images don't load */
/*.range-poultry {*/
/*  background: linear-gradient(135deg, #1F7A3E, #0F3D1F);*/
/*}*/

/*.range-dairy {*/
/*  background: linear-gradient(135deg, #166534, #0F3D1F);*/
/*}*/

/*.range-nutrition {*/
/*  background: linear-gradient(135deg, #F4B400, #d49b00);*/
/*}*/

/*.range-additives {*/
/*  background: linear-gradient(135deg, #0F172A, #1e293b);*/
/*}*/

/* Animation for cards */
@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.range-card {
  animation: fadeInScale 0.6s ease backwards;
}

.range-card:nth-child(1) {
  animation-delay: 0.1s;
}

.range-card:nth-child(2) {
  animation-delay: 0.2s;
}

.range-card:nth-child(3) {
  animation-delay: 0.3s;
}

.range-card:nth-child(4) {
  animation-delay: 0.4s;
}

/* Responsive Design */
@media (max-width: 768px) {
  .range-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .range-card {
    height: 250px;
  }

  .range-title {
    font-size: 1.25rem;
  }

  .range-count {
    font-size: 0.875rem;
  }
}

@media (max-width: 480px) {
  .range-grid {
    grid-template-columns: 1fr;
  }

  .range-card {
    height: 220px;
  }
}

/* ========== NAVBAR STYLES ========== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
  height: 80px;
  display: flex;
  align-items: center;
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

/* Desktop Navigation container */
.header-menu {
  display: flex;
  gap: 40px;
  /* Increased from 2rem/32px as requested */
  align-items: center;
}

/* General Link List behavior */
.menu-list {
  display: flex;
  align-items: center;
}

.menu-list a {
  font-weight: 500;
  color: var(--text-body);
  position: relative;
  padding: 0.5rem 0;
  text-decoration: none;
}

.menu-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

.menu-list a:hover {
  color: var(--primary);
}

.menu-list a:hover::after {
  width: 100%;
}

.menu-list a.active {
  color: var(--primary);
}

.nav-cta {
  background-color: var(--whatsapp) !important;
  color: white !important;
  padding: 0.5rem 1.5rem !important;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-cta:hover {
  background-color: var(--whatsapp-dark) !important;
  transform: translateY(-2px);
}

.nav-cta::after {
  display: none !important;
}

/* Mobile Toggle Button */
.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--text-heading);
  cursor: pointer;
  background: none;
  border: none;
  padding: 10px;
  z-index: 1001;
}

/* Mobile Styles - ONLY ONE MEDIA QUERY */
@media (max-width: 768px) {
  .menu-list {
    display: none !important;
    position: relative !important;
    top: 250px !important;
    border: 1px solid grey;
    left: 46px !important;
    width: 260px !important;
    background: white !important;
    flex-direction: column !important;
    padding: 1rem !important;
    z-index: 999999 !important;
  }

  .menu-list.active {
    display: flex !important;
  }

  .header-menu {
    display: flex;
    gap: 12px;
    /* Increased from 2rem/32px as requested */
    align-items: center;
  }

  .mobile-toggle {
    display: block !important;
    z-index: 1000000 !important;
  }

  .menu-list a {
    width: 100%;
    text-align: center;
    padding: 1rem;
    border-bottom: 1px solid var(--border-light);
  }

  .menu-list a:last-child {
    border-bottom: none;
  }

  .nav-cta {
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
  }
}

/* ========== HERO SECTION ========== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #1F7A3E 0%, #0F3D1F 100%);
  color: white;
  padding-top: var(--header-height);
  position: relative;
  overflow: hidden;
}

.hero .container {
  width: 100%;
}

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 10;
  color: white;
  padding-right: 2rem;
}

.hero-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  color: white;
}

.hero-title br {
  display: block;
  content: "";
  margin-top: 0.25rem;
}

.hero-text {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 600px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Hero Slider */
.hero-slider {
  position: relative;
  width: 100%;
  height: 500px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.slider-slide {
  flex: 0 0 100%;
  height: 100%;
  position: relative;
}

.slider-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
}

.slide-caption h3 {
  color: white;
  font-size: 1.5rem;
  margin: 0;
}

.slide-caption p {
  color: rgba(255, 255, 255, 0.8);
  margin-top: 0.5rem;
}

.slider-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 20;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  padding: 0;
}

.slider-dot:hover,
.slider-dot.active {
  background: white;
  transform: scale(1.2);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 20;
  border: none;
}

.slider-arrow:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: translateY(-50%) scale(1.1);
}

.slider-arrow-prev {
  left: 1rem;
}

.slider-arrow-next {
  right: 1rem;
}

/* Section Headers */
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.section-tag {
  color: var(--primary-green);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  display: inline-block;
  background: #090a0b;
  padding: 0.25rem 1rem;
  border-radius: 50px;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-heading);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}


/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-content {
  padding-right: 2rem;
}

.about-content h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.about-content p {
  margin-bottom: 1.5rem;
  color: var(--text-body);
  line-height: 1.8;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-top: 0.5rem;
}

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

/* ========== COLORFUL VALUES CARDS WITH ANIMATIONS ========== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

/* Different gradient colors for each card */
.feature-card {
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: none;
  color: white;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: floatCard 4s ease-in-out infinite;
}

/* Card 1 - Quality Without Compromise */
.feature-card:nth-child(1) {
  background: linear-gradient(135deg, #667eea, #764ba2);
}

/* Card 2 - Fair Pricing */
.feature-card:nth-child(2) {
  background: linear-gradient(135deg, #f093fb, #f5576c);
}

/* Card 3 - Farmer-Centered Approach */
.feature-card:nth-child(3) {
  background: linear-gradient(135deg, #4facfe, #00f2fe);
}

/* Card 4 - Trust & Long-Term Relationships */
.feature-card:nth-child(4) {
  background: linear-gradient(135deg, #43e97b, #38f9d7);
  color: #1e293b;
  /* Dark text for better contrast */
}

/* Card 5 - Industry Growth */
.feature-card:nth-child(5) {
  background: linear-gradient(135deg, #fa709a, #fee140);
}

/* Card 6 - Farm-Level Testing */
.feature-card:nth-child(6) {
  background: linear-gradient(135deg, #30cfd0, #330867);
}

/* Animated background shine effect */
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(-100%) rotate(45deg);
  transition: transform 0.6s ease;
  z-index: -1;
}

.feature-card:hover::before {
  transform: translateX(100%) rotate(45deg);
}

/* Icon styles */
.feature-card .feature-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: inherit;
  transition: all 0.5s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(5px);
}

.feature-card:hover .feature-icon {
  transform: rotateY(360deg) scale(1.1);
  background: rgba(255, 255, 255, 0.3);
  border-color: white;
}

/* Title styles */
.feature-card .feature-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: inherit;
  position: relative;
  padding-bottom: 1rem;
}

.feature-card .feature-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: rgba(255, 255, 255, 0.5);
  transition: width 0.3s ease;
}

.feature-card:hover .feature-title::after {
  width: 80px;
  background: white;
}

/* Description styles */
.feature-card .feature-desc {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0;
  transition: all 0.3s ease;
}

/* Hover animation */
.feature-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
}

/* Floating animation */
@keyframes floatCard {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* Different animation delays for each card */
.feature-card:nth-child(1) {
  animation-delay: 0s;
}

.feature-card:nth-child(2) {
  animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
  animation-delay: 0.4s;
}

.feature-card:nth-child(4) {
  animation-delay: 0.6s;
}

.feature-card:nth-child(5) {
  animation-delay: 0.8s;
}

.feature-card:nth-child(6) {
  animation-delay: 1s;
}

/* Pulse animation on hover */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

.feature-card:hover .feature-icon {
  animation: pulse 1.5s infinite;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .feature-card {
    padding: 2rem 1.5rem;
    min-height: 280px;
  }

  .feature-card .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .feature-card .feature-title {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}


/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.service-icon {
  width: 50px;
  height: 50px;
  background: rgba(31, 122, 62, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.service-content h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.service-content p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.5;
}


/* ========== WHY CHOOSE US - COLORFUL CARDS WITH ANIMATIONS ========== */
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.why-card {
  text-align: center;
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: none;
  color: white;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: floatWhyCard 4s ease-in-out infinite;
  box-shadow: var(--shadow-lg);
}

/* Different gradient colors for each card */
.why-card:nth-child(1) {
  background: linear-gradient(135deg, #667eea, #764ba2);
  /* Purple - Innovation */
}

.why-card:nth-child(2) {
  background: linear-gradient(135deg, #f093fb, #f5576c);
  /* Pink - Passion */
}

.why-card:nth-child(3) {
  background: linear-gradient(135deg, #4facfe, #00f2fe);
  /* Blue - Trust */
}

.why-card:nth-child(4) {
  background: linear-gradient(135deg, #43e97b, #38f9d7);
  /* Green - Growth */
  color: #1e293b;
  /* Dark text for contrast */
}

.why-card:nth-child(5) {
  background: linear-gradient(135deg, #fa709a, #fee140);
  /* Orange - Energy */
}

.why-card:nth-child(6) {
  background: linear-gradient(135deg, #30cfd0, #330867);
  /* Teal to Dark Blue - Reliability */
}

/* Animated background shine effect */
.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(-100%) rotate(45deg);
  transition: transform 0.6s ease;
  z-index: -1;
}

.why-card:hover::before {
  transform: translateX(100%) rotate(45deg);
}

/* Icon styles */
.why-card .why-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: inherit;
  transition: all 0.5s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(5px);
}

.why-card:hover .why-icon {
  transform: rotateY(360deg) scale(1.1);
  background: rgba(255, 255, 255, 0.3);
  border-color: white;
}

/* Title styles */
.why-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: inherit;
  position: relative;
  padding-bottom: 1rem;
}

.why-card h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: rgba(255, 255, 255, 0.5);
  transition: width 0.3s ease;
}

.why-card:hover h3::after {
  width: 80px;
  background: white;
}

/* Description styles */
.why-card p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0;
}

/* Hover animation */
.why-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
}

/* Floating animation */
@keyframes floatWhyCard {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* Different animation delays for each card */
.why-card:nth-child(1) {
  animation-delay: 0s;
}

.why-card:nth-child(2) {
  animation-delay: 0.2s;
}

.why-card:nth-child(3) {
  animation-delay: 0.4s;
}

.why-card:nth-child(4) {
  animation-delay: 0.6s;
}

.why-card:nth-child(5) {
  animation-delay: 0.8s;
}

.why-card:nth-child(6) {
  animation-delay: 1s;
}

/* Pulse animation on hover */
@keyframes pulseWhy {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

.why-card:hover .why-icon {
  animation: pulseWhy 1.5s infinite;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .why-card {
    padding: 2rem 1.5rem;
    min-height: 260px;
  }

  .why-card .why-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .why-card h3 {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .why-choose-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== BUY NOW SECTION ========== */
.buy-now-section {
  background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark));
  color: white;
  padding: 5rem 0;
  text-align: center;
  margin: 3rem 0;

}

.buy-now-section h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.buy-now-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.buy-now-section .btn-white {
  background: white;
  color: var(--whatsapp);
  padding: 1rem 2.5rem;
  font-size: 1.2rem;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.buy-now-section .btn-white:hover {
  background: #f8f9fa;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info {
  padding: 2rem;
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: rgba(31, 122, 62, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-text h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: var(--text-light);
}

.contact-text p {
  font-weight: 500;
}

.contact-form {
  padding: 2rem;
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-heading);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(31, 122, 62, 0.1);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

/* Footer */
.footer {
  background: #0F172A;
  color: white;
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 3rem;
  margin-bottom: 2rem;
}

.footer-about {
  max-width: 300px;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 1rem;
  /*filter: brightness(0) invert(1);*/
}

.footer-about p {
  color: #94A3B8;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-title {
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #94A3B8;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: white;
  transform: translateX(5px);
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #94A3B8;
  margin-bottom: 0.75rem;
}

.footer-contact i {
  color: var(--primary);
  width: 20px;
}

.footer-bottom {
  text-align: center;
  color: #64748B;
  font-size: 0.875rem;
}

.footer-bottom a {
  color: var(--primary);
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--whatsapp);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
  z-index: 999;
}

.whatsapp-float:hover {
  background: var(--whatsapp-dark);
  transform: scale(1.1) translateY(-5px);
  color: white;
}

/* Breadcrumb */
.breadcrumb {
  padding: 1rem 0;
  background: #f8fafc;
  border-bottom: 1px solid var(--border-light);
}

.breadcrumb ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.breadcrumb li {
  color: var(--text-light);
  font-size: 0.875rem;
}

.breadcrumb li:not(:last-child)::after {
  content: '/';
  margin-left: 0.5rem;
  color: var(--border-light);
}

.breadcrumb a {
  color: var(--primary);
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, #1F7A3E 0%, #0F3D1F 100%);
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.page-header h1 {
  color: white;
  font-size: 3rem;
  margin-bottom: 1rem;
}

.page-header p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Loading Spinner */
.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--border-light);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 2rem auto;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }

  .hero-slider {
    height: 450px;
  }

  .product-card {
    flex: 0 0 calc((100% - 2rem) / 2);
  }

  .about-grid {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-content {
    padding-right: 0;
    text-align: center;
  }

  .hero-text {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-slider {
    height: 400px;
    max-width: 500px;
    margin: 0 auto;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-content {
    padding-right: 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .slider-arrow {
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
  }

  .carousel-controls {
    justify-content: center;
  }

  .whatsapp-float {
    bottom: 1rem;
    right: 1rem;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .product-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-whatsapp {
    width: 100%;
    justify-content: center;
  }

  .buy-now-section h2 {
    font-size: 2rem;
  }

  .buy-now-section .btn-white {
    padding: 0.75rem 2rem;
    font-size: 1rem;
  }
}

@media (max-width: 640px) {
  .product-card {
    flex: 0 0 calc(100% - 1rem);
    min-width: auto;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .page-header h1 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-slider {
    height: 300px;
  }

  .section-title {
    font-size: 1.75rem;
  }
}

/* ========== GTC PRODUCTS CARDS - MODERN ANIMATIONS ========== */

/* Product Category Card */
.product-category-card {
  background: #e1dfdf !important;
  padding: 1.5rem !important;
  border-radius: var(--radius-md) !important;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-light) !important;
  animation: fadeInUp 0.6s ease backwards;
}

/* Fade In Up Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Different animation delays for cards */
.product-category-card:nth-child(1) {
  animation-delay: 0.1s;
}

.product-category-card:nth-child(2) {
  animation-delay: 0.2s;
}

.product-category-card:nth-child(3) {
  animation-delay: 0.3s;
}

.product-category-card:nth-child(4) {
  animation-delay: 0.4s;
}

.product-category-card:nth-child(5) {
  animation-delay: 0.5s;
}

.product-category-card:nth-child(6) {
  animation-delay: 0.6s;
}

.product-category-card:nth-child(7) {
  animation-delay: 0.7s;
}

.product-category-card:nth-child(8) {
  animation-delay: 0.8s;
}

.product-category-card:nth-child(9) {
  animation-delay: 0.9s;
}

/* Card Hover Effect */
.product-category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  border-color: var(--accent);
}

/* Animated Border Effect */
.product-category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.product-category-card:hover::before {
  transform: translateX(0);
}

/* Category Title */
.product-category-title {
  color: var(--primary);
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--border-light);
  padding-bottom: 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  position: relative;
  transition: all 0.3s ease;
}

.product-category-card:hover .product-category-title {
  color: var(--accent);
  border-bottom-color: var(--accent);
  padding-left: 5px;
}

/* Title Shine Effect */
.product-category-title::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-100%);
}

.product-category-card:hover .product-category-title::after {
  transform: translateX(100%);
  transition: transform 0.8s ease;
}

/* Product List */
.product-list {
  list-style: none;
  margin-top: 1rem;
}

/* Product Item */
.product-item {
  margin-bottom: 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
  background: transparent;
}

/* Product Item Hover Effect */
.product-item:hover {
  background: rgba(31, 122, 62, 0.05);
  transform: translateX(5px);
  padding-left: 1rem;
}

/* Product Name */
/* ===== URDU TEXT STYLES - FIXED ===== */
.product-name {
  text-align: center;
  margin-bottom: 15px;
}

.en-name {
  display: block;
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  color: var(--text-heading) !important;
  line-height: 1.4 !important;
  margin-bottom: 5px !important;
}

.ur-name {
  display: block !important;
  font-size: 1.1rem !important;
  font-weight: 600 !important;
  color: var(--primary) !important;
  font-family: 'Noto Nastaliq Urdu', 'Jameel Noori Nastaleeq', 'Urdu Typesetting', 'Traditional Arabic', serif !important;
  line-height: 2 !important;
  direction: rtl !important;
  unicode-bidi: embed !important;
  text-align: center !important;
}

/* Responsive */
@media (max-width: 768px) {
  .en-name {
    font-size: 1.1rem !important;
  }

  .ur-name {
    font-size: 1rem !important;
  }
}

.product-item:hover .product-name {
  color: var(--primary);
  font-weight: 600;
}

/* Product Name Underline Animation */
/*.product-name::after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    bottom: -2px;*/
/*    left: 0;*/
/*    width: 0;*/
/*    height: 2px;*/
/*    background: var(--accent);*/
/*    transition: width 0.3s ease;*/
/*}*/

/*.product-item:hover .product-name::after {*/
/*    width: 100%;*/
/*}*/

/* WhatsApp Order Button */
.product-whatsapp-btn {
  color: var(--whatsapp);
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  background: rgba(37, 211, 102, 0.1);
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.product-whatsapp-btn i {
  font-size: 1rem;
  transition: all 0.3s ease;
}

/* WhatsApp Button Hover Effects */
.product-whatsapp-btn:hover {
  color: white;
  transform: scale(1.05);
  gap: 0.5rem;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
  border-color: var(--whatsapp-dark);
}

.product-whatsapp-btn:hover i {
  transform: rotate(360deg);
}

/* Pulse Animation for WhatsApp Button */
@keyframes whatsappPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.product-whatsapp-btn:hover {
  animation: whatsappPulse 1.5s infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
  .product-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .product-whatsapp-btn {
    align-self: flex-end;
  }
}

/* ========== PRODUCTS PAGE MODERN STYLES WITH SIDEBAR ========== */

/* Products Header */
.products-header {
  background: linear-gradient(135deg, rgb(255 255 255 / 80%), rgb(95 134 108 / 90%)), url(https://gtcgroup.pk/wp-content/themes/gtc-nutrition/assets/images/products-header-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 0;
  text-align: center;
  color: white;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
}

.products-header h1 {
  color: white;
  font-size: 3rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.products-header p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Products Layout */
.products-main-section {
  padding: 60px 0;
  background: #f8f9fa;
}

.products-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
}

/* Sidebar */
.products-sidebar {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: fit-content;
  position: sticky;
  top: 100px;
}

.sidebar-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--border-light);
  position: relative;
}

.sidebar-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--accent);
}

.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-list li {
  margin-bottom: 12px;
}

.category-link {
  display: block;
  padding: 10px 15px;
  color: var(--text-body);
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.3s ease;
  font-weight: 500;
  border: 1px solid transparent;
}

.category-link:hover {
  background: rgba(31, 122, 62, 0.05);
  color: var(--primary);
  border-color: var(--border-light);
  transform: translateX(5px);
}

.category-link.active {
  background: var(--primary);
  color: white;
  font-weight: 600;
}

/* Products Content */
.products-content {
  flex: 1;
}

.results-count {
  background: white;
  padding: 15px 25px;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  font-weight: 500;
  color: var(--text-light);
}

.results-count span {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.2rem;
}

/* Products Grid */
.products-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
}

/* Product Card */
.product-modern-card {
  background: white;
  border-radius: 16px;
  padding: 14px 14px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-light);
  animation: fadeInUp 0.6s ease;
}

.product-modern-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--accent);
}

.product-modern-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.product-modern-card:hover::before {
  transform: translateX(0);
}

/* Product Brand */
.product-brand {
  margin-bottom: 15px;
  text-align: center;
}

.brand-name {
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary);
  display: block;
  line-height: 1.2;
  letter-spacing: 2px;
}

.brand-sub {
  font-size: 0.7rem;
  color: var(--text-light);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Category Tag */
.product-category-tag {
  display: inline-block;
  background: rgba(31, 122, 62, 0.1);
  color: var(--primary);
  padding: 5px 12px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 10px;
}

/* Product Name */
.product-name {
  font-size: 1.1srem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-heading);
  line-height: 1.4;
}

/* Product Description */
.product-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Price Row */
.product-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding: 8px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.price-label {
  font-weight: 700;
  color: var(--primary);
  font-size: 0.9rem;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 5px;
}

.stars {
  color: #FFD700;
  letter-spacing: 2px;
  font-size: 1rem;
}

.rating-count {
  color: var(--text-light);
  font-size: 0.85rem;
}

/* Product Actions */
.product-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-details {
  flex: 1;
  padding: 12px 10px;
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  text-align: center;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-details:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.btn-whatsapp-order {
  flex: 1;
  padding: 12px 10px;
  background: #25D366;
  color: white;
  text-align: center;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-whatsapp-order:hover {
  background: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-order i {
  font-size: 1.1rem;
}

/* Category Filter Message */
.category-filter-message {
  text-align: center;
  padding: 60px;
  background: white;
  border-radius: 20px;
  margin-top: 30px;
}

.category-filter-message p {
  color: var(--text-light);
  font-size: 1.1rem;
}

/* CTA Section */
.products-cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 80px 0;
  text-align: center;
  color: white;
}

.cta-content h2 {
  color: white;
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn-cta {
  display: inline-block;
  padding: 15px 40px;
  background: white;
  color: var(--primary);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.btn-cta i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.btn-cta:hover i {
  transform: translateX(5px);
}

/* Fade In Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .products-layout {
    grid-template-columns: 220px 1fr;
    gap: 20px;
  }

  .products-sidebar {
    padding: 20px;
  }

  .category-link {
    padding: 8px 12px;
    font-size: 0.9rem;
  }

  .source-info-sidebar {
    display: none;
  }
}

@media (max-width: 768px) {
  .products-main-section {
    padding: 30px 0;
  }

  .products-layout {
    grid-template-columns: 110px 1fr;
    /* Narrow sidebar for mobile */
    gap: 15px;
  }

  .products-sidebar {
    padding: 10px;
    border-radius: 12px;
  }

  .sidebar-title {
    font-size: 0.9rem;
    margin-bottom: 10px;
    padding-bottom: 5px;
  }

  .category-link {
    padding: 6px 8px;
    font-size: 0.75rem;
    border-radius: 6px;
  }

  .results-count {
    padding: 10px 15px;
    margin-bottom: 15px;
    font-size: 0.8rem;
  }

  .products-grid-modern {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
  }

  /* Shrink product cards for mobile */
  .product-modern-card {
    padding: 8px; /* Slightly less padding to save space */
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #eee;
    margin-bottom: 10px; /* Space between rows */
    background: #fff;
  }

  .product-image-container {
    height: 120px;
    margin-bottom: 8px;
  }

  .product-category-tag {
    padding: 2px 8px;
    font-size: 0.7rem;
    margin-bottom: 5px;
  }

  .en-name {
    font-size: 0.9rem !important;
    margin-bottom: 2px !important;
  }

  .ur-name {
    font-size: 0.8rem !important;
    line-height: 1.4 !important;
    margin-top: 5px !important;
  }

  .product-price-row {
    padding: 5px 0;
    margin-bottom: 8px;
  }

  .price-label {
    font-size: 0.75rem;
  }

  .stars {
    font-size: 0.8rem;
  }

  .btn-whatsapp-order {
    padding: 8px 5px;
    font-size: 0.75rem;
  }

  .products-header h1 {
    font-size: 1.8rem;
  }

  .cta-content h2 {
    font-size: 1.5rem;
  }
}

/* Product Image Styles */
.product-image-container {
  width: 100%;
  height: 200px;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  background: #f5f5f5;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-modern-card:hover .product-image {
  transform: scale(1.05);
}

/* ===== SOURCE INFORMATION STYLES ===== */

/* Option 1: Source Banner */
.source-banner {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  padding: 30px 0;
  margin-bottom: 30px;
}

.source-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: center;
}

.source-item {
  padding: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.source-flag {
  font-size: 3rem;
  display: block;
  margin-bottom: 10px;
}

.source-item h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: var(--primary);
}

.source-item p {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Option 2: Sidebar Info */
.source-info-sidebar {
  margin-top: 30px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
}

.sidebar-subtitle {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: var(--text-heading);
  border-bottom: 2px solid var(--border-light);
  padding-bottom: 10px;
}

.source-list {
  list-style: none;
  margin-bottom: 15px;
}

.source-list li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.source-icon {
  font-size: 1.5rem;
}

.source-note {
  color: var(--text-light);
  font-size: 0.9rem;
  font-style: italic;
  padding-top: 10px;
  border-top: 1px solid var(--border-light);
}

/* Option 3: Top Info */
.source-info-top {
  margin-bottom: 25px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  display: none;
}

.source-tags {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.source-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 15px;
  background: white;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-body);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.source-tag i {
  color: var(--primary);
}

.source-description {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
  .source-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .source-info-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-countries {
    font-size: 1rem;
    padding: 0.5rem 1rem;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }

  .source-info-sidebar {
    display: none;
  }
}

/* Hero Countries Information */
.hero-countries {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.95);
  /*display: flex;*/
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  max-width: fit-content;
}

.hero-countries i {
  color: var(--accent);
  font-size: 1.2rem;
}

.hero-countries strong {
  color: var(--accent);
  font-weight: 600;
}


/* --- Product Detail Modal (Quick View) --- */
.gtc-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.gtc-modal.active {
  display: flex;
}

.gtc-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  cursor: pointer;
}

.gtc-modal-container {
  position: relative;
  background: #fff;
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  border-radius: 20px;
  overflow-y: auto;
  z-index: 10001;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  animation: gtc-modal-up 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes gtc-modal-up {
  from {
    transform: translateY(30px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.gtc-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #f3f4f6;
  border: none;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.gtc-modal-close:hover {
  background: var(--primary);
  color: #fff;
}

.gtc-modal-content {
  padding: 40px;
}

.gtc-modal-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
}

.gtc-modal-image {
  background: #f9fafb;
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 400px;
}

.gtc-modal-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.gtc-modal-cat {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 15px;
}

.gtc-modal-title-en {
  font-size: 32px;
  color: var(--text-dark);
  margin-bottom: 5px;
  line-height: 1.2;
}

.gtc-modal-title-ur {
  font-family: inherit;
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 20px;
}

.gtc-modal-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 20px;
}

.gtc-modal-divider {
  height: 1px;
  background: #e5e7eb;
  margin: 20px 0;
}

.gtc-modal-desc {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 25px;
  font-size: 15px;
}

.gtc-modal-features h4 {
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.gtc-modal-features ul {
  list-style: none;
  padding: 0;
  /*display: grid;*/
  /*grid-template-columns: 1fr 1fr;*/
  /*gap: 10px;*/
}

.gtc-modal-features li {
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.gtc-modal-features li::before {
  content: "✓";
  color: var(--primary);
  font-weight: 700;
}

.gtc-modal-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  padding: 15px;
  border-radius: 12px;
  font-weight: 700;
  margin-top: 30px;
  transition: all 0.3s ease;
}

.gtc-modal-whatsapp:hover {
  background: #128c7e;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

/* Loader */
.gtc-loader-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 400px;
}

.gtc-loader {
  width: 48px;
  height: 48px;
  border: 5px solid var(--primary-light);
  border-bottom-color: var(--primary);
  border-radius: 50%;
  animation: gtc-rotation 1s linear infinite;
}

@keyframes gtc-rotation {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@media (max-width: 768px) {
  .gtc-modal-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gtc-modal-image {
    height: 250px;
  }

  .gtc-modal-container {
    max-height: 95vh;
  }

  .gtc-modal-content {
    padding: 30px 20px;
  }

  .gtc-modal-features ul {
    grid-template-columns: 1fr;
  }
}