/* ============================================
   OYINCAKESANDMORE - COMPLETE CSS
   Colorful, Attractive, Mobile-Optimized style.css
   ============================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #c8102e;
  --secondary: #2d5016;
  --gold: #d4a574;
  --dark: #1a1a1a;
  --brown: #6b4423;
  --cream: #fff8f0;
  --orange: #e86a33;
  --green: #4a7c2c;
  --white: #f9f9f9;
  --: #f5f5f5;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ============================================
   HEADER TOP BAR
   ============================================ */

.header-top {
  background: linear-gradient(135deg, var(--dark) 0%, #2d2d2d 100%);
  padding: 0.7rem 0;
  color: white;
}

.header-top-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  font-size: 0.85rem;
}

.header-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.header-links a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.header-links a:hover {
  color: var(--gold);
}

.header-social {
  display: flex;
  gap: 1rem;
}

.header-social a {
  color: white;
  font-size: 1.1rem;
  transition: all 0.3s;
}

.header-social a:hover {
  color: var(--gold);
  transform: translateY(-2px);
}

/* ============================================
   MAIN HEADER
   ============================================ */

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: white;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 15px rgba(200, 16, 46, 0.1);
  z-index: 1000;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.8rem 4%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s;
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, var(--primary), var(--orange));
  transition: width 0.3s;
}

nav a:hover::after {
  width: 100%;
}

nav a:hover {
  color: var(--primary);
}

.header-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--orange) 100%);
  color: white;
  padding: 0.75rem 1.8rem;
  border-radius: 25px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(200, 16, 46, 0.3);
}

.header-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(200, 16, 46, 0.4);
}

.nav-actions {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--dark);
  transition: all 0.3s;
}

.menu-toggle:hover {
  color: var(--primary);
  transform: scale(1.1);
}
/* ============================================
   LOGO TEXT STYLING
   ============================================ */

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  gap: 0.8rem;
  transition: all 0.3s;
}

.logo:hover {
  transform: scale(1.02);
}

.logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 3px 12px rgba(200, 16, 46, 0.2);
  transition: all 0.3s;
}

.logo:hover img {
  box-shadow: 0 5px 20px rgba(200, 16, 46, 0.3);
}

.logo-text-wrapper {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text-main {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--orange) 50%,
    var(--gold) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 1.5px;
  position: relative;
  filter: drop-shadow(0 2px 6px rgba(200, 16, 46, 0.25));
  transition: all 0.3s;
}

.logo-text-sub {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 2px;
  margin-top: -2px;
  margin-left: 2px;
  opacity: 0.85;
  transition: all 0.3s;
}

.logo:hover .logo-text-main {
  letter-spacing: 2px;
  filter: drop-shadow(0 3px 10px rgba(200, 16, 46, 0.4));
}

.logo:hover .logo-text-sub {
  opacity: 1;
  color: var(--orange);
}

/* SCROLLING SERVICES TICKER */

.services-ticker {
  position: fixed;
  top: 70px; /* Height of your main header */
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--orange) 100%);
  color: white;
  overflow: hidden;
  height: 50px;
  display: flex;
  align-items: center;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(200, 16, 46, 0.3);
}
.ticker-content {
  display: flex;
  animation: scroll-left 30s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  display: inline-block;
  padding: 0 3rem;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.2px;
}

.ticker-item::after {
  content: "•";
  margin-left: 1.5rem;
  opacity: 0.6;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Pause animation on hover */
.services-ticker:hover .ticker-content {
  animation-play-state: paused;
}

/* ============================================
   DARK MODE TOGGLE
   ============================================ */

.dark-mode-toggle {
  background: transparent;
  border: 2px solid var(--orange);
  color: var(--dark);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.dark-mode-toggle:hover {
  background: var(--dark);
  color: white;
  transform: rotate(20deg);
}

.toggle-icon {
  transition: transform 0.3s;
}

/* Dark Mode Styles */
body.dark-mode .logo-text-main {
  background: linear-gradient(135deg, #ff6b6b 0%, #ffa500 50%, #ffd700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 8px rgba(255, 107, 107, 0.4));
}

body.dark-mode .logo-text-sub {
  color: #ffa500;
}

body.dark-mode {
  background: #1a1a1a;
}

body.dark-mode header {
  background: #2d2d2d;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
}

body.dark-mode nav a {
  color: #e0e0e0;
}

body.dark-mode nav a:hover {
  color: var(--primary);
}

body.dark-mode .dark-mode-toggle {
  border-color: #e0e0e0;
  color: #e0e0e0;
}

body.dark-mode .dark-mode-toggle:hover {
  background: #e0e0e0;
  color: #1a1a1a;
}

body.dark-mode .hero {
  background: linear-gradient(135deg, #2d2d2d 0%, #3d3d3d 100%);
}

body.dark-mode .hero h1,
body.dark-mode .hero-subtitle {
  color: #e0e0e0;
}

body.dark-mode .hero-description {
  color: #b0b0b0;
}

body.dark-mode .mini-product {
  background: #3d3d3d;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

body.dark-mode .hero-stats {
  background: #2d2d2d;
}

body.dark-mode .stat-label {
  color: #b0b0b0;
}

body.dark-mode .products {
  background: linear-gradient(135deg, #2d2d2d 0%, #3d3d3d 100%);
}

body.dark-mode .product-card {
  background: #3d3d3d;
}

body.dark-mode .product-name {
  color: #e0e0e0;
}

body.dark-mode .product-desc {
  color: #b0b0b0;
}

body.dark-mode .services {
  background: #1a1a1a;
}

body.dark-mode .service-card {
  background: #2d2d2d;
}

body.dark-mode .service-content h3 {
  color: #e0e0e0;
}

body.dark-mode .service-subtitle,
body.dark-mode .service-description,
body.dark-mode .service-feature-text {
  color: #b0b0b0;
}

body.dark-mode .why-choose {
  background: linear-gradient(135deg, #2d2d2d 0%, #3d3d3d 100%);
}

body.dark-mode .why-item {
  background: #3d3d3d;
}

body.dark-mode .why-content h3 {
  color: #e0e0e0;
}

body.dark-mode .why-content p {
  color: #b0b0b0;
}

body.dark-mode .process {
  background: #1a1a1a;
}

body.dark-mode .process-icon {
  background: linear-gradient(135deg, #3d3d3d 0%, #4d4d4d 100%);
}

body.dark-mode .process-step h3 {
  color: #e0e0e0;
}

body.dark-mode .process-step p {
  color: #b0b0b0;
}

body.dark-mode .about {
  background: #2d2d2d;
}

body.dark-mode .about-content h2 {
  color: #e0e0e0;
}

body.dark-mode .about-content p {
  color: #b0b0b0;
}

body.dark-mode .section-title {
  color: #e0e0e0;
}

body.dark-mode .section-subtitle {
  color: #b0b0b0;
}

/* HERO SECTION */

.hero {
  padding: 3rem 4%;
  background: linear-gradient(135deg, #fff9f5 0%, #ffe8d6 50%, #fff3e0 100%);
  position: relative;
  overflow: hidden;
  margin-top: 90px;
}
.hero-blur {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.6;
}
.hero-blur.one {
  background: #ff7a3d;
  top: -50px;
  left: -50px;
}

.hero-blur.two {
  background: #c8102e;
  bottom: -50px;
  right: -50px;
}
.hero::before {
  content: "🎂";
  position: absolute;
  top: 10%;
  right: 5%;
  font-size: 8rem;
  opacity: 0.05;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary) 0%, var(--orange) 100%);
  color: white;
  padding: 0.6rem 1.5rem;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(200, 16, 46, 0.3);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.15;
  margin-bottom: 1rem;
  font-weight: 800;
  color: var(--dark);
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--primary) 0%, var(--orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero-description {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: #555;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.mini-products {
  display: flex;
  gap: 2rem;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}

.mini-product {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  padding: 0.5rem 1rem;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.mini-product-img {
  font-size: 1.5rem;
}

.mini-product-info h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.mini-product-rating {
  color: #ffb800;
  font-size: 0.85rem;
  font-weight: 600;
}

.btn {
  padding: 1rem 2rem;
  border-radius: 25px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, #ff7a3d, #e35f25);
  color: white;

  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.25),
    0 0 0 rgba(255, 122, 61, 0.4);

  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 20px 40px rgba(255, 122, 61, 0.4);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 1.5rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.stat {
  text-align: center;
}

.stat-number {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary) 0%, var(--orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.stat-label {
  font-size: clamp(0.75rem, 1.5vw, 0.9rem);
  color: #666;
  font-weight: 500;
}

/* Hero Images */
.hero-images-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-image {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(200, 16, 46, 0.2);
  transition: transform 0.3s;
  width: 100%;
}

.hero-image:hover {
  transform: scale(1.02);
}

.hero-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  object-position: center;
}

.hero-image:first-child img {
  height: 250px;
}

.rotated-left {
  transform: rotate(-2deg);
}

.rotated-right {
  transform: rotate(2deg);
}

.hero-badge-overlay {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.9) 100%
  );
  color: white;
  padding: 0.8rem 1.2rem;
  border-radius: 15px;
  text-align: center;
  backdrop-filter: blur(10px);
}

.hero-badge-overlay .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
  opacity: 0.9;
}

.hero-badge-overlay .price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
}

/* ============================================
   SECTION HEADERS (GLOBAL)
   ============================================ */

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-label {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1rem;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark);
}

.section-title .highlight {
  background: linear-gradient(135deg, var(--primary) 0%, var(--orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  max-width: 700px;
  margin: 0 auto;
  color: #666;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ============================================
   PRODUCTS SECTION - COLORFUL & 2 COLUMNS ON MOBILE
   ============================================ */

.products {
  padding: 4rem 4%;
  background: linear-gradient(135deg, #fff9f5 0%, #ffe8d6 100%);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* DEFAULT: 2 columns for mobile */
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.product-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  border: 3px solid transparent;
}

.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 25px;
  padding: 3px;
  background: linear-gradient(135deg, #c8102e, #e86a33, #d4a574);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s;
}

.product-card:hover::before {
  opacity: 1;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.product-image {
  width: 100%;
  position: relative;
  overflow: hidden;
  height: 240px;
  background: linear-gradient(135deg, #fff8f0 0%, #ffe8d6 100%);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-image img {
  transform: scale(1.15) rotate(2deg);
}

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: linear-gradient(135deg, #c8102e 0%, #e86a33 100%);
  color: white;
  padding: 0.5rem 1.1rem;
  border-radius: 25px;
  font-weight: 700;
  font-size: 0.8rem;
  z-index: 10;
  box-shadow: 0 6px 15px rgba(200, 16, 46, 0.4);
  animation: pulse 2s infinite;
}

.product-info {
  padding: 1.5rem;
  background: white;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
  padding: 0.6rem 0.8rem;
  background: linear-gradient(135deg, #fff8e1 0%, #ffe8d6 100%);
  border-radius: 12px;
  border-left: 4px solid #d4a574;
}

.stars {
  color: #ffb800;
  font-size: 0.95rem;
  text-shadow: 0 2px 4px rgba(255, 184, 0, 0.3);
}

.rating-count {
  color: #666;
  font-size: 0.8rem;
  font-weight: 600;
}

.product-name {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
}

.product-desc {
  color: #555;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 2px solid #ffe8d6;
  gap: 1rem;
}

.product-price {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 800;
  background: linear-gradient(135deg, #c8102e 0%, #e86a33 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.order-btn {
  background: linear-gradient(135deg, #c8102e 0%, #e86a33 100%);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
  font-size: 0.9rem;
  white-space: nowrap;
  box-shadow: 0 6px 15px rgba(200, 16, 46, 0.3);
  position: relative;
  overflow: hidden;
}

.order-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s;
}

.order-btn:hover::before {
  left: 100%;
}

.order-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(200, 16, 46, 0.4);
}

/* ============================================
   SERVICES SECTION - COMPACT & COLORFUL
   ============================================ */

.services {
  padding: 4rem 4%;
  background: white;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.service-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #f5f5f5;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.service-card:hover .service-image img {
  transform: scale(1.1);
}

.service-content {
  padding: 1.8rem;
}

.service-content h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
  color: var(--dark);
}

.service-subtitle {
  color: #666;
  font-size: 1rem;
  margin-bottom: 1.2rem;
  line-height: 1.5;
}

.service-features {
  margin-bottom: 1.2rem;
}

.service-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 0.7rem;
}

.service-icon {
  color: var(--gold);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.service-feature-text {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.4;
}

.service-description {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.2rem;
  font-size: 0.9rem;
}

.service-cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary) 0%, var(--orange) 100%);
  color: white;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 25px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(200, 16, 46, 0.3);
}

.service-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(200, 16, 46, 0.4);
}

/* ============================================
   WHY CHOOSE US
   ============================================ */

.why-choose {
  padding: 4rem 4%;
  background: linear-gradient(135deg, #fff3e0 0%, #ffe8d6 100%);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.why-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
}

.why-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.why-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--primary) 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
  color: white;
  box-shadow: 0 8px 20px rgba(200, 16, 46, 0.3);
}

.why-content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: var(--dark);
  font-weight: 700;
}

.why-content p {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* ============================================
   PROCESS SECTION
   ============================================ */

.process {
  padding: 4rem 4%;
  background: white;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.process-step {
  text-align: center;
}

.process-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #fff3e0 0%, #ffe8d6 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin: 0 auto 1.5rem;
  box-shadow: 0 10px 30px rgba(200, 16, 46, 0.15);
}

.process-step h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.process-step p {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about {
  padding: 4rem 4%;
  background: var(--cream);
}

.about-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.5s;
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-content h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.about-content p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 1.2rem;
  font-size: 1rem;
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials {
  padding: 4rem 4%;
  background: linear-gradient(135deg, var(--dark) 0%, #2d2d2d 100%);
  color: white;
}

.testimonials .section-label,
.testimonials .section-title {
  color: white;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--orange) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.testimonial-role {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

.testimonial-text {
  line-height: 1.7;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1.2rem;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta {
  padding: 4rem 4%;
  background: linear-gradient(135deg, var(--primary) 0%, #a00d24 100%);
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.cta-content p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 2rem;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.whatsapp-order {
  display: inline-block;
  background: #25d366;
  color: white;
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: all 0.3s;
}

.whatsapp-order:hover {
  transform: translateY(-3px);
  background: #1ebe57;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}
/* ============================================
   MAP SECTION
   ============================================ */

.map-section {
  padding: 4rem 4%;
  background: linear-gradient(135deg, #fff9f5 0%, #ffe8d6 100%);
}

.map-container {
  max-width: 1400px;
  margin: 0 auto 3rem;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(200, 16, 46, 0.15);
}

.map-container iframe {
  width: 100%;
  display: block;
}

.map-info {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.map-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: white;
  padding: 1.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
}

.map-info-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.map-info-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--primary) 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(200, 16, 46, 0.3);
}

.map-info-content h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
  font-weight: 700;
}

.map-info-content p {
  color: #666;
  font-size: 1rem;
  line-height: 1.3;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
  background: #0a2f35;
  color: white;
  padding: 3rem 4% 2rem;
}

.footer-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  margin-bottom: 2rem;
}

.footer-brand h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.footer-section h4 {
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.7rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--primary);
}

.social-links {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.social-link {
  width: 40px;
  height: 40px;
  background: #1a1a1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 1.1rem;
  color: white;
}

.social-link:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* ============================================
   ANIMATIONS
   ============================================ */

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-up.active {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   IMAGE OPTIMIZATION & PLACEMENT
   ============================================ */

/* General Image Handling */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Prevent layout shift while images load */
img[src] {
  aspect-ratio: attr(width) / attr(height);
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */

.back-to-top {
  position: fixed;
  bottom: 90px;
  right: 30px;

  width: 55px;
  height: 55px;

  background: linear-gradient(135deg, #ff7a3d, #c8102e);
  color: white;

  border: none;
  border-radius: 50%;

  font-size: 20px;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);

  opacity: 0;
  pointer-events: none;

  transition: all 0.3s ease;

  z-index: 999;
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  transform: translateY(-5px) scale(1.1);
}

.back-to-top:active {
  transform: translateY(-2px);
}

/* Dark mode styling */
body.dark-mode .back-to-top {
  background: linear-gradient(135deg, #ff6b6b 0%, #ffa500 100%);
  box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
}

body.dark-mode .back-to-top:hover {
  box-shadow: 0 12px 30px rgba(255, 107, 107, 0.5);
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE OPTIMIZED
   ============================================ */

@media (max-width: 968px) {
  html,
  body {
    width: 100% !important; /* Changed from 100vw */
    max-width: 100% !important;
    overflow-x: hidden !important;
    margin: 0;
    padding: 0;
  }
  .hero-container,
  .nav-container,
  .products-grid,
  .services-grid,
  .hero-images-stack,
  .why-grid,
  .process-steps,
  .about-container,
  .testimonials-grid,
  .map-container,
  .map-info,
  .footer-grid {
    max-width: 100% !important;
    width: 100%;
    box-sizing: border-box;
  }

  .header-top {
    display: none !important;
  }

  header {
    box-shadow: 0 2px 10px rgba(200, 16, 46, 0.1);
  }

  .nav-container {
    padding: 0.6rem 5%;
    gap: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    width: 100%;
    max-width: 100vw;
  }

  .logo {
    flex: 0 0 auto;
    gap: 0.6rem;
  }

  .logo img {
    height: 50px;
    border-radius: 15px;
  }

  .logo-text-main {
    font-size: 2rem;
    letter-spacing: 1px;
  }

  .logo-text-sub {
    font-size: 0.65rem;
    letter-spacing: 1.5px;
  }

  .nav-actions {
    flex: 0 0 auto;
    display: flex;
    gap: 0.6rem;
    align-items: center;
    margin-left: auto;
  }

  .dark-mode-toggle {
    width: 36px;
    height: 36px;
    font-size: 1rem;
    border-width: 2px;
  }

  .menu-toggle {
    display: block;
    font-size: 1.5rem;
    flex-shrink: 0;
  }

  nav ul {
    position: fixed;
    top: 60px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 60px);
    background: white;
    flex-direction: column;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: left 0.3s ease;
    overflow-y: auto;
    z-index: 999;
  }

  body.dark-mode nav ul {
    background: #2d2d2d;
  }

  nav ul.active {
    left: 0;
  }

  nav ul li {
    width: 100%;
    text-align: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  body.dark-mode nav ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  nav a {
    font-size: 1.1rem;
    display: block;
    padding: 0.5rem;
  }

  .services-ticker {
    top: 60px;
    height: 45px;
    z-index: 998;
  }

  .ticker-item {
    font-size: 0.9rem;
    padding: 0 2rem;
  }

  .ticker-item::after {
    margin-left: 2rem;
  }

  /* HERO - Single column, no separate grid for stats */
  .hero {
    padding: 2rem 5%;
  }

  .hero-container {
    grid-template-columns: 1fr; /* Single column */
    gap: 2rem;
  }

  .hero-images-stack {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
    margin: 1.5rem 0;
  }

  .hero-image img,
  .hero-image:first-child img {
    height: 120px;
  }

  .rotated-left,
  .rotated-right {
    transform: rotate(0);
  }

  .hero-badge-overlay {
    padding: 0.5rem 0.8rem;
    bottom: 0.5rem;
    right: 0.5rem;
  }

  .hero-badge-overlay .label {
    font-size: 0.6rem;
  }

  .hero-badge-overlay .price {
    font-size: 1rem;
  }

  .hero-stats {
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
    padding: 1rem;
  }

  .mini-products {
    gap: 1rem;
  }

  /* PRODUCTS - FORCE 2 COLUMNS */
  .products {
    padding: 2.5rem 5%;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr) !important; /* Force 2 columns */
    gap: 1.2rem;
  }

  .product-image {
    height: 160px;
  }

  .product-info {
    padding: 1rem;
  }

  .product-name {
    font-size: 1.1rem;
  }

  .product-desc {
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
  }

  .product-rating {
    flex-direction: column;
    gap: 0.3rem;
    padding: 0.5rem;
    align-items: flex-start;
  }

  .rating-count {
    font-size: 0.75rem;
  }

  .product-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }

  .product-price {
    font-size: 1.4rem;
  }

  .order-btn {
    width: 100%;
    padding: 0.75rem;
    text-align: center;
  }

  /* REST OF SECTIONS */
  .services {
    padding: 2.5rem 5%;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .service-image {
    height: 180px;
  }

  .service-content {
    padding: 1.5rem;
  }

  .service-content h3 {
    font-size: 1.4rem;
  }

  .service-subtitle,
  .service-description {
    font-size: 0.9rem;
  }

  .service-features {
    margin-bottom: 1rem;
  }

  .service-feature {
    gap: 0.6rem;
    margin-bottom: 0.6rem;
  }

  .service-icon {
    font-size: 1.2rem;
  }

  .service-feature-text {
    font-size: 0.85rem;
  }

  .why-choose {
    padding: 2.5rem 5%;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .why-item {
    padding: 1.5rem;
  }

  .why-icon {
    width: 50px;
    height: 50px;
    font-size: 1.6rem;
  }

  .why-content h3 {
    font-size: 1.1rem;
  }

  .process {
    padding: 2.5rem 5%;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .process-icon {
    width: 80px;
    height: 80px;
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  .about {
    padding: 2.5rem 5%;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .testimonials {
    padding: 2.5rem 5%;
  }

  .testimonials-grid {
    gap: 1.5rem;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  .cta {
    padding: 3rem 5%;
  }

  .map-section {
    padding: 2.5rem 5%;
  }

  .map-container {
    margin-bottom: 2rem;
  }

  .map-container iframe {
    height: 350px;
  }

  .map-info {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .map-info-item {
    padding: 1.5rem;
  }

  .map-info-icon {
    width: 50px;
    height: 50px;
    font-size: 1.6rem;
  }

  footer {
    padding: 2.5rem 5% 2rem;
  }

  .footer-grid {
    gap: 2rem;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 1.5rem;
  }
}

@media (max-width: 640px) {
  html,
  body {
    width: 100% !important; /* Changed from 100vw */
    max-width: 100% !important;
    overflow-x: hidden !important;
    margin: 0;
    padding: 0;
  }

  /* CRITICAL: Remove all max-width restrictions on mobile */
  .hero-container,
    .nav-container,
    .hero-images-stack,  /* ← ADD THIS HERE TOO */
    .products-grid,
    .services-grid,
    .why-grid,
    .process-steps,
    .about-container,
    .testimonials-grid,
    .map-container,
    .map-info,
    .footer-grid {
    max-width: 100% !important;
    width: 100%;
    box-sizing: border-box;
  }

  /* FORCE HIDE HEADER-TOP */
  .header-top {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
  }

  /* NAV CONTAINER */
  .nav-container {
    padding: 0.5rem 4%;
    gap: 0.8rem;
    min-height: 55px;
  }

  .logo {
    gap: 0.5rem;
  }

  .logo img {
    height: 42px;
    border-radius: 10px;
  }

  .logo-text-main {
    font-size: 1.4rem; /* FIXED from 6rem! */
    letter-spacing: 0.5px;
  }

  .logo-text-sub {
    font-size: 0.6rem;
    letter-spacing: 1px;
  }

  .nav-actions {
    gap: 0.5rem;
  }

  .dark-mode-toggle {
    width: 34px;
    height: 34px;
    font-size: 0.95rem;
  }

  .menu-toggle {
    display: block !important;
    font-size: 1.4rem;
  }

  /* HIDE NAV MENU */
  nav {
    position: absolute;
    right: -9999px;
  }

  nav ul {
    top: 55px;
    height: calc(100vh - 55px);
  }

  /* TICKER */
  .services-ticker {
    top: 55px;
    height: 40px;
  }

  .ticker-item {
    font-size: 0.8rem;
    padding: 0 1rem;
  }

  .ticker-item::after {
    margin-left: 1rem;
  }

  /* SECTION HEADERS - REDUCE SPACE */
  section {
    scroll-margin-top: 130px;
  }
  .section-header {
    margin-bottom: 1.5rem;
  }

  .section-title {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
  }

  .section-label {
    font-size: 0.8rem;
    margin-bottom: 0.8rem;
  }

  /* HERO - COMPACT */
  .hero {
    padding: 1.5rem 4%;
  }

  .hero-container {
    gap: 1.5rem;
  }

  .hero h1 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 0.8rem;
  }

  .hero-description {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
    margin-bottom: 1rem;
  }

  /* HERO IMAGES - 3 COLUMNS */
  .hero-images-stack {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
    margin: 1rem 0;
  }

  .hero-image img,
  .hero-image:first-child img {
    height: 110px;
  }

  .hero-badge-overlay {
    padding: 0.4rem 0.6rem;
  }

  .hero-badge-overlay .label {
    font-size: 0.55rem;
  }

  .hero-badge-overlay .price {
    font-size: 0.9rem;
  }

  /* HERO STATS */
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
    padding: 0.8rem;
  }

  .stat-number {
    font-size: 1.3rem;
  }

  .stat-label {
    font-size: 0.7rem;
  }

  /* MINI PRODUCTS */
  .mini-products {
    flex-direction: row;
    gap: 0.8rem;
    margin: 1rem 0;
  }

  .mini-product {
    flex: 1;
    padding: 0.6rem 0.8rem;
  }

  .mini-product-img {
    font-size: 1.3rem;
  }

  .mini-product-info h4 {
    font-size: 0.8rem;
  }

  .mini-product-rating {
    font-size: 0.75rem;
  }

  /* HERO BUTTONS */
  .hero-buttons {
    flex-direction: column;
    gap: 0.8rem;
  }

  .btn {
    width: 100%;
    padding: 0.9rem 1.5rem;
    font-size: 0.95rem;
  }

  /* PRODUCTS - FORCE 2 COLUMNS */
  .products {
    padding: 1.5rem 4%;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.8rem;
  }

  .product-card {
    border-radius: 15px;
  }

  .product-badge {
    padding: 0.35rem 0.8rem;
    font-size: 0.7rem;
    top: 0.7rem;
    left: 0.7rem;
  }

  .product-image {
    height: 140px;
  }

  .product-info {
    padding: 0.7rem;
  }

  .product-name {
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
  }

  .product-desc {
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
    line-height: 1.2;
  }

  /* RATING - Keep horizontal but compact */
  .product-rating {
    flex-direction: row;
    gap: 0.4rem;
    padding: 0.35rem 0.5rem;
    margin-bottom: 0.5rem;
  }

  .stars {
    font-size: 0.75rem;
  }

  .rating-count {
    font-size: 0.65rem;
  }

  /* FOOTER - Price and Button side by side */
  .product-footer {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.6rem;
    gap: 0.4rem;
  }

  .product-price {
    font-size: 1.1rem;
  }

  .order-btn {
    padding: 0.5rem 0.8rem;
    font-size: 0.7rem;
    width: auto;
    white-space: nowrap;
  }

  /* SERVICES - COMPACT WITH BIGGER IMAGES */
  .services {
    padding: 1.5rem 4%;
  }

  .services-grid {
    gap: 1.2rem;
  }

  .service-card {
    border-radius: 15px;
  }

  .service-image {
    height: 200px; /* Bigger image */
  }

  .service-content {
    padding: 1rem;
  }

  .service-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
  }

  .service-subtitle {
    font-size: 0.8rem;
    margin-bottom: 0.6rem;
    line-height: 1.3;
  }

  .service-features {
    margin-bottom: 0.6rem;
  }

  .service-feature {
    gap: 0.4rem;
    margin-bottom: 0.4rem;
  }

  .service-icon {
    font-size: 1rem;
  }

  .service-feature-text {
    font-size: 0.75rem;
    line-height: 1.2;
  }

  .service-description {
    font-size: 0.8rem;
    margin-bottom: 0.8rem;
    line-height: 1.4;
  }

  .service-cta {
    padding: 0.7rem 1.5rem;
    font-size: 0.85rem;
  }

  /* WHY CHOOSE US */
  .why-choose {
    padding: 1.5rem 4%;
  }

  .why-grid {
    gap: 1.2rem;
  }

  .why-item {
    padding: 1.2rem;
    gap: 1rem;
  }

  .why-icon {
    width: 45px;
    height: 45px;
    font-size: 1.4rem;
  }

  .why-content h3 {
    font-size: 1rem;
    margin-bottom: 0.6rem;
  }

  .why-content p {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  /* PROCESS */
  .process {
    padding: 1.5rem 4%;
  }

  .process-steps {
    gap: 1.5rem;
  }

  .process-icon {
    width: 70px;
    height: 70px;
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
  }

  .process-step h3 {
    font-size: 1.1rem;
    margin-bottom: 0.7rem;
  }

  .process-step p {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  /* ABOUT - IMAGE ON TOP */
  .about {
    padding: 1.5rem 4%;
  }

  .about-container {
    gap: 1.2rem;
    display: flex;
    flex-direction: column;
  }

  .about-image {
    order: 1;
    width: 100%;
    margin-bottom: 0;
  }

  .about-content {
    order: 2;
  }

  .about-content .section-label {
    margin-bottom: 0.8rem;
  }

  .about-content h2 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    line-height: 1.2;
  }

  .about-content p {
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
    line-height: 1.6;
  }

  /* TESTIMONIALS */
  .testimonials {
    padding: 1.5rem 4%;
  }

  .testimonials-grid {
    gap: 1.2rem;
  }

  .testimonial-card {
    padding: 1.2rem;
  }

  .testimonial-avatar {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .testimonial-name {
    font-size: 1rem;
  }

  .testimonial-role {
    font-size: 0.75rem;
  }

  .testimonial-text {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .testimonial-stars {
    font-size: 1rem;
  }

  /* CTA */
  .cta {
    padding: 2rem 4%;
  }

  .cta-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .cta-content p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .whatsapp-order {
    padding: 1rem 2rem;
    font-size: 1rem;
  }

  /* MAP */
  .map-section {
    padding: 1.5rem 4%;
  }

  .map-container iframe {
    height: 280px;
  }

  .map-info {
    gap: 0.8rem;
  }

  .map-info-item {
    padding: 1.2rem;
    gap: 0.8rem;
  }

  .map-info-icon {
    width: 45px;
    height: 45px;
    font-size: 1.4rem;
  }

  .map-info-content h4 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
  }

  .map-info-content p {
    font-size: 0.85rem;
  }

  /* FOOTER */
  footer {
    padding: 2rem 4% 1.5rem;
  }

  .footer-grid {
    gap: 1.5rem;
  }

  .footer-brand h3 {
    font-size: 1.4rem;
  }

  .footer-brand p {
    font-size: 0.85rem;
  }

  .footer-section h4 {
    font-size: 1rem;
  }

  .footer-links a {
    font-size: 0.85rem;
  }

  .footer-bottom {
    font-size: 0.8rem;
    padding-top: 1.5rem;
  }

  .back-to-top {
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    font-size: 1.3rem;
  }
}
