/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; color: #1a1a2e; background: #fff; line-height: 1.6; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== VARIABLES ===== */
:root {
  --primary: #e63946;
  --primary-dark: #c1121f;
  --accent: #ff6b35;
  --dark: #1a1a2e;
  --dark2: #16213e;
  --gray: #6b7280;
  --light: #f8f9fa;
  --border: #e5e7eb;
  --whatsapp: #25d366;
  --whatsapp-dark: #128c7e;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
}

/* ===== UTILITIES ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.bg-light { background: var(--light); }
.gradient-text { background: linear-gradient(135deg, var(--primary), var(--accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-divider { height: 1px; background: var(--border); margin: 0 auto; max-width: 1200px; }

.section-header { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-header h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; margin: 8px 0 16px; }
.section-header p { color: var(--gray); font-size: 1.05rem; }
.section-tag { display: inline-block; background: rgba(230,57,70,0.1); color: var(--primary); font-size: 0.8rem; font-weight: 600; padding: 4px 14px; border-radius: 20px; text-transform: uppercase; letter-spacing: 1px; }
.section-cta { text-align: center; margin-top: 48px; }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; border-radius: 8px; font-weight: 600; font-size: 0.95rem; cursor: pointer; border: none; transition: all 0.2s; white-space: nowrap; }
.btn-lg { padding: 15px 32px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(230,57,70,0.3); }
.btn-whatsapp { background: var(--whatsapp); color: #fff; }
.btn-whatsapp:hover { background: var(--whatsapp-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(37,211,102,0.3); }
.btn-call { background: #2563eb; color: #fff; }
.btn-call:hover { background: #1d4ed8; transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--dark); border: 2px solid var(--border); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }

/* ===== HEADER ===== */
.site-header { position: sticky; top: 0; z-index: 100; background: #fff; box-shadow: 0 2px 16px rgba(0,0,0,0.08); }

/* Row 1 */
.header-row1 { border-bottom: 1px solid var(--border); padding: 12px 0; }
.header-row1-inner { display: flex; align-items: center; gap: 20px; }
.logo { display: flex; align-items: center; flex-shrink: 0; }

/* Search */
.header-search { position: relative; flex: 1; }
.header-search input { width: 100%; border: 2px solid var(--border); background: var(--light); border-radius: 10px; padding: 10px 16px 10px 44px; font-size: 0.95rem; font-family: inherit; outline: none; color: var(--dark); transition: border-color 0.2s, box-shadow 0.2s; }
.header-search input::placeholder { color: #aaa; }
.header-search input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(230,57,70,0.1); background: #fff; }
.header-search > svg { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--gray); pointer-events: none; }
.search-dropdown { display: none; position: absolute; top: calc(100% + 8px); left: 0; right: 0; background: #fff; border: 1px solid var(--border); border-radius: 10px; box-shadow: var(--shadow-lg); z-index: 200; overflow: hidden; }
.search-dropdown.open { display: block; }
.search-dropdown a { display: flex; flex-direction: column; padding: 12px 16px; border-bottom: 1px solid var(--border); transition: background 0.15s; }
.search-dropdown a:last-child { border-bottom: none; }
.search-dropdown a:hover { background: var(--light); }
.search-dropdown a strong { font-size: 0.9rem; color: var(--dark); margin-bottom: 2px; }
.search-dropdown a span { font-size: 0.8rem; color: var(--gray); }
.search-no-result { padding: 16px; text-align: center; color: var(--gray); font-size: 0.9rem; }

/* Phone */
.header-phone { display: flex; align-items: center; gap: 10px; flex-shrink: 0; color: var(--dark); padding: 6px 14px; border: 1px solid var(--border); border-radius: 8px; transition: border-color 0.2s; white-space: nowrap; }
.header-phone:hover { border-color: var(--primary); color: var(--primary); }
.header-phone div { display: flex; flex-direction: column; line-height: 1.2; }
.header-phone span { font-size: 0.72rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.5px; }
.header-phone strong { font-size: 0.95rem; font-weight: 700; }

/* ===== NAVBAR (Row 2) ===== */
:root {
  --gold-nav:    #b5873a;
  --gold-lt-nav: #f5e8cc;
  --gold-btn-nav:#f5a900;
  --bg-drop-nav: #fdfcfa;
  --border-nav:  #e8e0d4;
  --ink-soft:    #5a5450;
}
.navbar { background: #fff; border-bottom: 1px solid var(--border-nav); position: relative; z-index: 200; transition: box-shadow 0.3s; }
.navbar.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.09); }
.nav-inner { max-width: 1280px; margin: 0 auto; padding: 0 32px; display: flex; align-items: center; height: 52px; }
.nav-links { display: flex; align-items: center; list-style: none; flex: 1; gap: 2px; justify-content: center; }
.nav-links > li { position: relative; }
.nav-links > li > a, .nav-links > li > button { display: flex; align-items: center; gap: 5px; padding: 7px 13px; font-size: 13.5px; font-weight: 500; color: var(--dark); text-decoration: none; border: none; background: none; cursor: pointer; border-radius: 8px; transition: background 0.15s, color 0.15s; white-space: nowrap; font-family: inherit; }
.nav-links > li > a:hover, .nav-links > li > button:hover { background: var(--gold-lt-nav); color: var(--gold-nav); }
.nav-links > li.active > a { color: var(--gold-nav); }
.nav-links > li > a::after { content: ''; position: absolute; bottom: -1px; left: 50%; transform: translateX(-50%) scaleX(0); width: 20px; height: 2px; background: var(--gold-nav); border-radius: 2px; transition: transform 0.2s; }
.nav-links > li > a:hover::after, .nav-links > li.active > a::after { transform: translateX(-50%) scaleX(1); }
.chevron { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform 0.25s; flex-shrink: 0; }
.nav-links > li:hover > button .chevron { transform: rotate(180deg); }
.nav-highlight > a { color: var(--gold-nav) !important; font-weight: 600 !important; border: 1.5px solid var(--gold-lt-nav) !important; border-radius: 50px !important; padding: 5px 14px !important; }
.nav-highlight > a:hover { background: var(--gold-nav) !important; color: #fff !important; border-color: var(--gold-nav) !important; }
.nav-highlight > a::after { display: none !important; }

/* Dropdown */
.dropdown { position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(-8px); background: var(--bg-drop-nav); border: 1px solid var(--border-nav); border-radius: 16px; padding: 8px; width: 340px; opacity: 0; pointer-events: none; transition: opacity 0.2s, transform 0.2s; box-shadow: 0 8px 40px rgba(0,0,0,0.10); z-index: 300; }
.nav-links > li:hover .dropdown { opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0); }
.dropdown::before { content: ''; position: absolute; top: -6px; left: 50%; transform: translateX(-50%) rotate(45deg); width: 10px; height: 10px; background: var(--bg-drop-nav); border-top: 1px solid var(--border-nav); border-left: 1px solid var(--border-nav); }
.dropdown-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.dropdown a { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 10px; text-decoration: none; color: var(--dark); font-size: 13px; font-weight: 400; transition: background 0.15s, color 0.15s; }
.dropdown a:hover { background: var(--gold-lt-nav); color: var(--gold-nav); }
.dropdown a .di { width: 32px; height: 32px; border-radius: 8px; background: var(--gold-lt-nav); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background 0.15s; }
.dropdown a:hover .di { background: var(--gold-nav); }
.dropdown a .di svg { width: 15px; height: 15px; fill: var(--gold-nav); transition: fill 0.15s; }
.dropdown a:hover .di svg { fill: #fff; }
.di-label { line-height: 1.2; }
.di-label strong { display: block; font-size: 12.5px; font-weight: 600; color: var(--dark); }
.di-label span { font-size: 11px; color: var(--ink-soft); }
.dropdown-all { margin-top: 6px; border-top: 1px solid var(--border-nav); padding-top: 6px; }
.dropdown-all a { background: var(--dark); color: #fff !important; border-radius: 10px; font-weight: 600; font-size: 13px; justify-content: center; }
.dropdown-all a:hover { background: var(--gold-nav) !important; color: #fff !important; }
.dropdown-all a .di { background: rgba(255,255,255,0.15); }
.dropdown-all a .di svg { fill: #fff; }

/* Nav hamburger (desktop nav row) */
.nav-hamburger { display: none; width: 38px; height: 38px; border: none; background: none; cursor: pointer; flex-direction: column; justify-content: center; align-items: center; gap: 5px; border-radius: 8px; transition: background 0.15s; margin-left: auto; }
.nav-hamburger:hover { background: var(--gold-lt-nav); }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--dark); border-radius: 2px; transition: transform 0.3s, opacity 0.3s, width 0.3s; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu { display: none; background: #fff; border-top: 1px solid var(--border-nav); padding: 12px 16px 24px; max-height: 85vh; overflow-y: auto; }
.mobile-menu.open { display: block; }
.mobile-link { display: flex; align-items: center; justify-content: space-between; padding: 12px 8px; font-size: 15px; font-weight: 500; color: var(--dark); text-decoration: none; border-bottom: 1px solid #f0ede8; border-radius: 8px; transition: background 0.15s; }
.mobile-link:hover { background: var(--gold-lt-nav); color: var(--gold-nav); }
.mobile-link.highlight { color: var(--gold-nav); font-weight: 600; }
.mobile-services-toggle { display: flex; align-items: center; justify-content: space-between; padding: 12px 8px; font-size: 15px; font-weight: 500; color: var(--dark); border-bottom: 1px solid #f0ede8; cursor: pointer; border-radius: 8px; transition: background 0.15s; background: none; border-left: none; border-right: none; border-top: none; width: 100%; font-family: inherit; text-align: left; }
.mobile-services-toggle:hover { background: var(--gold-lt-nav); color: var(--gold-nav); }
.mobile-services-toggle .chevron { transition: transform 0.25s; }
.mobile-services-toggle.open .chevron { transform: rotate(180deg); }
.mobile-services-list { display: none; background: #faf8f5; border-radius: 10px; margin: 4px 0 8px; overflow: hidden; }
.mobile-services-list.open { display: block; }
.mobile-services-list a { display: flex; align-items: center; gap: 10px; padding: 10px 16px; font-size: 13.5px; color: var(--dark); text-decoration: none; border-bottom: 1px solid #ede9e2; transition: background 0.15s; }
.mobile-services-list a:last-child { border-bottom: none; }
.mobile-services-list a:hover { background: var(--gold-lt-nav); color: var(--gold-nav); }
.mobile-services-list a.all-link { font-weight: 700; color: var(--gold-nav); background: #fdf5e6; }
.mobile-cta { margin-top: 16px; display: block; background: var(--gold-btn-nav); color: var(--dark); text-align: center; padding: 13px; border-radius: 50px; font-weight: 700; font-size: 14px; text-decoration: none; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-inner { padding: 0 16px; }
  .navbar { display: none; }
  .header-row1 { display: none; }
}
@media (min-width: 901px) {
  .mobile-header { display: none !important; }
}

/* ===== HERO SLIDESHOW ===== */
.slideshow-wrapper { padding: 10px 20px; background: #f4f1ec; }
.slideshow { position: relative; border-radius: 24px; overflow: hidden; height: 520px; }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.8s ease; }
.slide.active { opacity: 1; z-index: 1; }
.slide-bg-1 { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%); }
.slide-bg-2 { background: linear-gradient(135deg, #1a0a2e 0%, #2d1b4e 50%, #4a2c7a 100%); }
.slide-bg-3 { background: linear-gradient(135deg, #0a1a0a 0%, #1a3a1a 50%, #2d5a2d 100%); }
.slide-scene { position: absolute; inset: 0; display: flex; align-items: center; }
.scene-visual { width: 100%; height: 100%; position: relative; overflow: hidden; }
.scene-visual img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.scene-visual .img-mobile { display: none; }
.scene-visual .img-desktop { display: block; }
.scene-visual::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, transparent 40%, rgba(0,0,0,0.75) 100%); }
.slide-content { position: absolute; right: 0; top: 50%; transform: translateY(-50%); width: 50%; padding: 40px 48px 40px 20px; color: #fff; z-index: 2; }
.slide-sub { font-size: 12px; font-weight: 500; letter-spacing: 0.12em; color: rgba(255,255,255,0.75); margin-bottom: 10px; text-transform: uppercase; }
.slide-heading { font-size: clamp(1.6rem, 2.5vw, 2.4rem); line-height: 1.25; color: #fff; margin-bottom: 14px; font-weight: 700; }
.slide-heading b { color: #F5A900; font-style: italic; }
.slide-text { font-size: 0.95rem; line-height: 1.65; color: rgba(255,255,255,0.8); margin-bottom: 28px; max-width: 400px; }
.slide-btn { display: inline-block; background: #F5A900; color: #1a1a1a; font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 14px 32px; border-radius: 50px; transition: all 0.2s; }
.slide-btn:hover { background: #fff; color: #1a1a1a; transform: scale(1.03); }
.slide-dots { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.4); cursor: pointer; transition: all 0.3s; border: none; padding: 0; }
.dot.active { background: #F5A900; width: 22px; border-radius: 4px; }


/* ===== STATS BAR ===== */
.stats-bar { background: var(--primary); color: #fff; padding: 32px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-item strong { display: block; font-size: 2rem; font-weight: 800; }
.stat-item span { font-size: 0.9rem; opacity: 0.85; }

/* ===== SERVICES MEDIA GRID ===== */
.media-grid-section { padding: 0 24px 32px; }
.media-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 260px 260px;
  gap: 12px;
}
.grid-item-tshirt  { grid-column: span 2; grid-row: span 1; }
.grid-item-banner  { grid-column: span 1; grid-row: span 1; }
.grid-item-laser   { grid-column: span 1; grid-row: span 2; }
.grid-item-card    { grid-column: span 1; grid-row: span 1; }
.grid-item-mug     { grid-column: span 1; grid-row: span 1; }
.grid-item-promo   { grid-column: span 1; grid-row: span 1; }

.grid-item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  display: block;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  background: var(--dark2);
}
.grid-item:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,0.16); }
.grid-item:hover img { transform: scale(1.04); }
.grid-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.grid-item::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 55%; background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 100%); pointer-events: none; z-index: 1; }
.grid-label { position: absolute; bottom: 16px; left: 16px; color: #fff; font-size: 15px; font-weight: 700; letter-spacing: 0.01em; text-shadow: 0 1px 4px rgba(0,0,0,0.5); z-index: 2; }

/* ===== SERVICE CATEGORY CARDS ===== */
.services-cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; }
.service-cat-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; transition: all 0.25s; display: flex; flex-direction: column; gap: 10px; }
.service-cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.scat-icon { font-size: 2rem; }
.service-cat-card h3 { font-size: 1rem; font-weight: 700; color: var(--dark); }
.service-cat-card p { color: var(--gray); font-size: 0.88rem; line-height: 1.6; flex: 1; }
.scat-cta { color: var(--primary); font-weight: 600; font-size: 0.88rem; margin-top: 4px; }
.scat-cta:hover { text-decoration: underline; }

/* ===== SERVICES OVERVIEW GRID ===== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.service-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; transition: all 0.25s; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.service-icon { font-size: 2.4rem; margin-bottom: 16px; }
.service-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.service-card p { color: var(--gray); font-size: 0.9rem; line-height: 1.6; margin-bottom: 16px; }
.service-link { color: var(--primary); font-weight: 600; font-size: 0.9rem; }
.service-link:hover { text-decoration: underline; }

/* ===== FOUNDER SECTION ===== */
.founder-section { max-width: 1200px; margin: 0 auto; padding: 80px 24px; }
.section-eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 48px; }
.section-eyebrow::before, .section-eyebrow::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.section-eyebrow span { font-size: 11px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--primary); white-space: nowrap; }
.founder-card { background: #faf8f5; border-radius: 24px; overflow: hidden; display: grid; grid-template-columns: 480px 1fr; box-shadow: 0 4px 40px rgba(0,0,0,0.07); position: relative; }
.founder-image-panel { position: relative; overflow: hidden; background: #c8b99a; aspect-ratio: 1/1; }
.founder-image-panel img { width: 100%; height: 100%; object-fit: cover; object-position: center center; display: block; transition: transform 0.6s ease; }
.founder-card:hover .founder-image-panel img { transform: scale(1.03); }
.founder-image-panel::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 20%; background: linear-gradient(to top, rgba(26,23,20,0.15) 0%, transparent 100%); pointer-events: none; }
.img-placeholder { width: 100%; height: 100%; min-height: 480px; display: flex; flex-direction: column; align-items: center; justify-content: center; background: linear-gradient(160deg, #d4c4a8 0%, #b8a48a 100%); color: #7a6a54; gap: 12px; }
.img-placeholder svg { width: 80px; height: 80px; opacity: 0.4; }
.img-placeholder p { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.5; }
.founder-content { padding: 48px 48px 56px; display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; }
.big-quote { position: absolute; top: 16px; right: 32px; font-family: 'Cormorant Garamond', serif; font-size: 140px; line-height: 1; color: #e8d5b0; pointer-events: none; user-select: none; font-style: italic; z-index: 0; }
.founder-role { display: inline-flex; align-items: center; gap: 8px; background: #e8d5b0; color: #b5873a; font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; padding: 6px 14px; border-radius: 50px; margin-bottom: 20px; width: fit-content; }
.founder-role::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #b5873a; flex-shrink: 0; }
.founder-name { font-family: 'Cormorant Garamond', serif; font-size: 54px; font-weight: 500; line-height: 1.05; color: var(--dark); margin-bottom: 8px; letter-spacing: -0.01em; }
.founder-name em { font-style: italic; color: #b5873a; }
.name-rule { width: 48px; height: 2px; background: #b5873a; border-radius: 2px; margin: 18px 0 22px; }
.founder-quote { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-style: italic; line-height: 1.65; color: var(--gray); margin-bottom: 20px; max-width: 440px; position: relative; z-index: 1; }
.founder-bio { font-size: 14px; font-weight: 300; line-height: 1.8; color: var(--gray); max-width: 420px; margin-bottom: 36px; position: relative; z-index: 1; }
.founder-stats { display: flex; gap: 32px; margin-bottom: 40px; padding-bottom: 32px; border-bottom: 1px solid var(--border); position: relative; z-index: 1; }
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat-number { font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 600; color: var(--dark); line-height: 1; }
.stat-label { font-size: 11px; font-weight: 400; letter-spacing: 0.08em; color: var(--gray); text-transform: uppercase; }
.founder-socials { display: flex; align-items: center; gap: 10px; margin-bottom: 32px; position: relative; z-index: 1; }
.social-label { font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray); margin-right: 4px; }
.social-link { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--border); background: #fff; display: flex; align-items: center; justify-content: center; text-decoration: none; color: var(--gray); transition: all 0.2s; flex-shrink: 0; }
.social-link:hover { border-color: var(--primary); background: var(--primary); color: #fff; transform: translateY(-2px); }
.social-link svg { width: 16px; height: 16px; fill: currentColor; }
.founder-cta { display: inline-flex; align-items: center; gap: 10px; background: var(--dark); color: #fff; text-decoration: none; font-size: 13px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; padding: 14px 28px; border-radius: 50px; width: fit-content; transition: background 0.2s, gap 0.2s; position: relative; z-index: 1; margin-bottom: 0; }
.founder-cta:hover { background: var(--primary); gap: 16px; }
.cta-arrow { width: 16px; height: 16px; transition: transform 0.2s; }
.founder-cta:hover .cta-arrow { transform: translateX(3px); }
.founder-signature { display: none; }
@media (max-width: 900px) {
  .founder-card { grid-template-columns: 1fr; min-height: unset; }
  .founder-image-panel { aspect-ratio: 1/1; height: auto; }
  .img-placeholder { min-height: 320px; }
  .founder-content { padding: 36px 28px; }
  .founder-name { font-size: 38px; }
  .founder-quote { font-size: 17px; }
  .big-quote { font-size: 120px; top: 16px; right: 20px; }
  .founder-stats { gap: 24px; }
  .founder-signature { left: 28px; }
}
@media (max-width: 480px) {
  .founder-name { font-size: 32px; }
  .founder-stats { flex-wrap: wrap; gap: 20px 32px; }
}

/* ===== WHY US ===== */
.why-us { background: var(--light); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.why-content h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; margin: 8px 0 16px; }
.why-content > p { color: var(--gray); margin-bottom: 32px; }
.why-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.why-list li { display: flex; gap: 14px; align-items: flex-start; }
.check { display: flex; align-items: center; justify-content: center; width: 24px; height: 24px; min-width: 24px; background: var(--primary); color: #fff; border-radius: 50%; font-size: 0.75rem; font-weight: 700; margin-top: 2px; }
.why-list strong { display: block; font-weight: 700; margin-bottom: 2px; }
.why-list p { color: var(--gray); font-size: 0.9rem; margin: 0; }
.why-card-stack { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.why-card { background: #fff; border-radius: var(--radius); padding: 24px 20px; font-weight: 600; font-size: 0.95rem; box-shadow: var(--shadow); text-align: center; }
.wc1 { background: linear-gradient(135deg, #fff5f5, #ffe0e0); }
.wc2 { background: linear-gradient(135deg, #fffbeb, #fef3c7); }
.wc3 { background: linear-gradient(135deg, #f0fdf4, #dcfce7); }
.wc4 { background: linear-gradient(135deg, #eff6ff, #dbeafe); }

/* ===== HOW IT WORKS ===== */
.steps-grid { display: flex; align-items: center; gap: 16px; justify-content: center; flex-wrap: wrap; }
.step { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 28px; text-align: center; flex: 1; min-width: 200px; max-width: 280px; }
.step-num { font-size: 2.5rem; font-weight: 800; color: var(--primary); opacity: 0.2; line-height: 1; margin-bottom: 12px; }
.step h3 { font-weight: 700; margin-bottom: 8px; }
.step p { color: var(--gray); font-size: 0.9rem; }
.step-arrow { font-size: 1.5rem; color: var(--gray); }

/* ===== SHOPPABLE REELS ===== */
.reel-section { padding: 60px 0 40px; background: #fff; }
.reel-carousel-wrapper { position: relative; padding: 0 24px; max-width: 1200px; margin: 0 auto; }
.reel-track { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.reel-card { border-radius: 14px; overflow: hidden; position: relative; cursor: pointer; aspect-ratio: 9/16; background: #000; }
.reel-card video { width: 100%; height: 100%; object-fit: cover; display: block; }
.reel-play-overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,0.15); opacity: 0; transition: opacity 0.2s; pointer-events: none; }
.reel-card:hover .reel-play-overlay { opacity: 1; }
.reel-play-overlay svg { width: 44px; height: 44px; }
.reel-product-bar { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, transparent 100%); padding: 32px 10px 12px; pointer-events: none; }
.reel-product-name { font-size: 11px; font-weight: 600; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 3px; }
.reel-price-sale { font-size: 11px; font-weight: 600; color: #F5A900; }
.reel-arrow { position: absolute; top: 40%; transform: translateY(-50%); width: 36px; height: 36px; border-radius: 50%; background: #fff; border: none; box-shadow: 0 2px 12px rgba(0,0,0,0.18); cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 10; transition: background 0.2s; }
.reel-arrow:hover { background: var(--primary); color: #fff; }
.reel-arrow svg { width: 16px; height: 16px; }
.reel-arrow.prev { left: -4px; }
.reel-arrow.next { right: -4px; }
.reel-arrow:disabled { opacity: 0.3; cursor: not-allowed; }
.reel-dots { display: flex; justify-content: center; gap: 6px; margin-top: 20px; }
.reel-dot { width: 8px; height: 8px; border-radius: 50%; background: #ccc; border: none; cursor: pointer; transition: all 0.2s; padding: 0; }
.reel-dot.active { background: var(--primary); width: 20px; border-radius: 4px; }
.reel-lightbox { display: none; position: fixed; inset: 0; z-index: 1000; background: rgba(0,0,0,0.88); align-items: center; justify-content: center; padding: 20px; }
.reel-lightbox.open { display: flex; }
.lightbox-inner { background: #fff; border-radius: 16px; overflow: hidden; display: flex; max-width: 760px; width: 100%; max-height: 90vh; position: relative; }
.lightbox-close { position: absolute; top: 12px; right: 12px; width: 32px; height: 32px; border-radius: 50%; background: rgba(0,0,0,0.5); border: none; color: #fff; font-size: 16px; cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 10; }
.lightbox-close:hover { background: #000; }
.lightbox-counter { position: absolute; top: 12px; left: 12px; font-size: 12px; color: #fff; background: rgba(0,0,0,0.4); padding: 3px 8px; border-radius: 20px; z-index: 10; }
.lightbox-video-col { width: 42%; flex-shrink: 0; background: #000; position: relative; min-height: 400px; }
.lightbox-video-col video { width: 100%; height: 100%; object-fit: cover; display: block; }
.lb-progress { position: absolute; top: 0; left: 0; right: 0; height: 3px; background: rgba(255,255,255,0.25); }
.lb-progress-fill { height: 100%; background: #F5A900; width: 0%; transition: width 0.1s linear; }
.lb-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,0.2); border: none; color: #fff; font-size: 16px; cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 5; }
.lb-nav:hover { background: rgba(255,255,255,0.4); }
.lb-nav.lb-prev { left: 8px; }
.lb-nav.lb-next { right: 8px; }
.lb-controls { position: absolute; bottom: 16px; right: 12px; display: flex; flex-direction: column; gap: 8px; }
.lb-ctrl-btn { width: 36px; height: 36px; border-radius: 50%; background: rgba(0,0,0,0.5); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.lb-ctrl-btn:hover { background: rgba(0,0,0,0.8); }
.lightbox-info-col { flex: 1; overflow-y: auto; padding: 48px 24px 24px; display: flex; flex-direction: column; gap: 12px; }
.lb-product-name { font-size: 16px; font-weight: 700; color: var(--dark); line-height: 1.4; }
.lb-desc { font-size: 13px; color: var(--gray); line-height: 1.7; flex: 1; }
.lb-view-btn { display: block; width: 100%; background: var(--whatsapp); color: #fff; border: none; padding: 14px 20px; border-radius: 8px; font-size: 14px; font-weight: 700; cursor: pointer; text-decoration: none; text-align: center; transition: background 0.2s; margin-top: auto; }
.lb-view-btn:hover { background: var(--whatsapp-dark); }
@media (max-width: 1024px) { .reel-track { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 700px) {
  .reel-track { grid-template-columns: repeat(2, 1fr); }
  .lightbox-inner { flex-direction: column; max-height: 95vh; position: fixed; bottom: 0; left: 0; right: 0; max-width: 100%; border-radius: 20px 20px 0 0; }
  .reel-lightbox { align-items: flex-end; padding: 0; }
  .lightbox-video-col { width: 100%; height: 55vw; min-height: 260px; }
  .lightbox-info-col { padding: 16px 16px 24px; }
  .lb-nav { display: none; }
}

/* ===== GOOGLE REVIEWS SECTION ===== */
.reviews-section { background: var(--light); padding: 90px 24px 80px; position: relative; overflow: hidden; }
.reviews-section::before { content: ''; position: absolute; top: -120px; right: -120px; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(66,133,244,0.06) 0%, transparent 70%); pointer-events: none; }
.reviews-section::after { content: ''; position: absolute; bottom: -100px; left: -100px; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(52,168,83,0.06) 0%, transparent 70%); pointer-events: none; }
.reviews-section-header { text-align: center; margin-bottom: 52px; position: relative; z-index: 1; }
.label-pill { display: inline-flex; align-items: center; gap: 6px; background: #fff; border: 1px solid var(--border); border-radius: 100px; padding: 6px 16px; font-size: 12px; font-weight: 500; color: var(--gray); margin-bottom: 20px; box-shadow: 0 1px 4px rgba(0,0,0,0.06); }
.reviews-title { font-family: 'DM Serif Display', serif; font-size: clamp(32px, 5vw, 54px); font-weight: 400; color: var(--dark); line-height: 1.15; margin-bottom: 16px; }
.reviews-title em { font-style: italic; color: var(--primary); }
.reviews-sub { font-size: 15px; color: var(--gray); max-width: 440px; margin: 0 auto; line-height: 1.6; }
.summary-hero { display: flex; align-items: center; justify-content: center; background: #fff; border: 1px solid var(--border); border-radius: 24px; max-width: 680px; margin: 0 auto 52px; overflow: hidden; box-shadow: 0 2px 20px rgba(0,0,0,0.06); position: relative; z-index: 1; }
.hero-score-block { padding: 36px 40px; text-align: center; flex-shrink: 0; border-right: 1px solid var(--border); }
.hero-score-num { font-family: 'DM Serif Display', serif; font-size: 72px; font-weight: 400; line-height: 1; color: var(--dark); letter-spacing: -2px; }
.hero-stars { display: flex; justify-content: center; gap: 3px; margin: 10px 0 8px; }
.hero-review-count { font-size: 12px; color: var(--gray); }
.hero-right { flex: 1; padding: 28px 32px; display: flex; flex-direction: column; gap: 20px; }
.hero-right-inner { display: flex; align-items: center; gap: 24px; }
.donut-wrap { position: relative; width: 90px; height: 90px; flex-shrink: 0; }
.donut-wrap svg { width: 90px; height: 90px; transform: rotate(-90deg); }
.donut-label { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; font-size: 11px; color: var(--gray); text-align: center; line-height: 1.3; }
.donut-label strong { font-size: 17px; font-weight: 600; color: var(--dark); display: block; }
.mini-bars { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.mini-bar-row { display: flex; align-items: center; gap: 8px; }
.mini-bar-star { display: flex; align-items: center; gap: 2px; font-size: 11px; color: var(--gray); width: 24px; flex-shrink: 0; justify-content: flex-end; }
.mini-bar-star svg { width: 10px; height: 10px; }
.mini-bar-track { flex: 1; height: 6px; background: #F0F0F0; border-radius: 99px; overflow: hidden; }
.mini-bar-fill { height: 100%; border-radius: 99px; background: #FBBC05; }
.mini-bar-pct { font-size: 11px; color: var(--gray); width: 28px; text-align: right; flex-shrink: 0; }
.hero-google-badge { display: flex; align-items: center; gap: 6px; justify-content: center; }
.badge-text { font-size: 12px; color: var(--gray); }
.carousel-outer { position: relative; max-width: 1180px; margin: 0 auto; z-index: 1; }
.carousel-fade-left, .carousel-fade-right { position: absolute; top: 0; bottom: 0; width: 80px; z-index: 10; pointer-events: none; }
.carousel-fade-left { left: 0; background: linear-gradient(to right, var(--light), transparent); }
.carousel-fade-right { right: 0; background: linear-gradient(to left, var(--light), transparent); }
.carousel-viewport { overflow: hidden; padding: 12px 8px 20px; }
.carousel-track { display: flex; gap: 20px; transition: transform 0.55s cubic-bezier(.4,0,.2,1); will-change: transform; }
.review-card { background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 26px 24px 20px; min-width: 310px; max-width: 310px; flex-shrink: 0; display: flex; flex-direction: column; gap: 14px; transition: transform 0.25s ease, box-shadow 0.25s ease; box-shadow: 0 1px 6px rgba(0,0,0,0.05); }
.review-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.10); }
.card-reviewer { display: flex; align-items: center; gap: 11px; }
.reviewer-name { font-size: 14px; font-weight: 600; color: var(--dark); line-height: 1.2; }
.reviewer-sub { font-size: 11.5px; color: var(--gray); margin-top: 1px; }
.card-pin { margin-left: auto; flex-shrink: 0; opacity: 0.5; }
.card-meta { display: flex; align-items: center; gap: 8px; }
.star-row { display: flex; gap: 1.5px; }
.star-row svg { width: 14px; height: 14px; }
.card-date { font-size: 11.5px; color: var(--gray); }
.google-verified { display: flex; align-items: center; gap: 4px; font-size: 10.5px; color: var(--gray); margin-left: auto; }
.review-body { font-size: 13.5px; line-height: 1.65; color: #374151; flex: 1; display: -webkit-box; -webkit-line-clamp: 5; -webkit-box-orient: vertical; overflow: hidden; }
.card-bottom { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(0,0,0,0.05); padding-top: 12px; }
.helpful-row { font-size: 12px; color: var(--gray); }
.like-btn { display: flex; align-items: center; gap: 5px; font-size: 12px; color: var(--gray); background: #F9FAFB; border: 1px solid var(--border); border-radius: 100px; padding: 5px 12px; cursor: pointer; transition: background 0.15s; font-family: 'Inter', sans-serif; }
.like-btn:hover { background: #EEF2FF; color: #4285F4; }
.like-btn svg { width: 12px; height: 12px; }
.carousel-controls { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 32px; }
.nav-btn { width: 44px; height: 44px; border-radius: 50%; background: #fff; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.15s; color: var(--gray); box-shadow: 0 1px 4px rgba(0,0,0,0.06); }
.nav-btn:hover:not(:disabled) { background: var(--primary); color: #fff; border-color: var(--primary); box-shadow: 0 4px 12px rgba(230,57,70,0.3); transform: scale(1.05); }
.nav-btn:disabled { opacity: 0.3; cursor: default; }
.dots { display: flex; gap: 6px; align-items: center; }
.dots .dot { width: 6px; height: 6px; border-radius: 99px; background: #D1D5DB; cursor: pointer; transition: width 0.3s, background 0.3s; border: none; padding: 0; }
.dots .dot.active { width: 22px; background: var(--primary); }
.view-all-wrap { text-align: center; margin-top: 44px; position: relative; z-index: 1; }
.view-all-btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 32px; background: #fff; border: 1.5px solid var(--primary); border-radius: 100px; color: var(--primary); font-size: 14px; font-weight: 500; text-decoration: none; transition: all 0.2s; box-shadow: 0 1px 4px rgba(230,57,70,0.12); }
.view-all-btn:hover { background: var(--primary); color: #fff; box-shadow: 0 6px 20px rgba(230,57,70,0.3); transform: translateY(-1px); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.anim { animation: fadeUp 0.6s ease both; }
.a1 { animation-delay: 0.0s; } .a2 { animation-delay: 0.12s; } .a3 { animation-delay: 0.22s; } .a4 { animation-delay: 0.32s; }
@media (max-width: 700px) {
  .hero-score-block { padding: 24px; }
  .hero-score-num { font-size: 52px; }
  .hero-right { padding: 20px; }
  .review-card { min-width: 272px; max-width: 272px; }
  .carousel-fade-left, .carousel-fade-right { width: 40px; }
}
@media (max-width: 480px) {
  .summary-hero { flex-direction: column; }
  .hero-score-block { border-right: none; border-bottom: 1px solid var(--border); width: 100%; padding: 20px; }
  .hero-right { padding: 20px; }
}

/* ===== TESTIMONIALS (kept for other pages) ===== */
.testimonials { background: var(--light); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.testimonial-card { background: #fff; border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
.stars { color: #f59e0b; font-size: 1.1rem; margin-bottom: 12px; }
.testimonial-card > p { color: var(--gray); font-size: 0.95rem; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.1rem; }
.reviewer strong { display: block; font-weight: 700; }
.reviewer span { font-size: 0.85rem; color: var(--gray); }

/* ===== CTA SECTION ===== */
.cta-section { background: linear-gradient(135deg, var(--dark2), #0f3460); color: #fff; }
.cta-inner { text-align: center; }
.cta-inner h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; margin-bottom: 12px; }
.cta-inner p { color: rgba(255,255,255,0.75); font-size: 1.05rem; margin-bottom: 32px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== PAGE HERO ===== */
.page-hero { background: linear-gradient(135deg, var(--dark2), #0f3460); color: #fff; padding: 80px 0 60px; text-align: center; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.1rem; }

/* ===== SERVICE DETAIL ===== */
.service-detail { display: grid; grid-template-columns: 120px 1fr; gap: 48px; align-items: start; }
.service-detail.reverse { }
.service-detail-icon { font-size: 4rem; text-align: center; padding-top: 8px; }
.service-detail-content h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: 16px; }
.service-detail-content p { color: var(--gray); margin-bottom: 20px; line-height: 1.7; }
.service-features { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 24px; }
.service-features li { color: var(--gray); font-size: 0.9rem; }
.service-features li::before { content: ''; }

/* ===== ABOUT ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-content h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; margin: 8px 0 16px; }
.about-content p { color: var(--gray); margin-bottom: 16px; line-height: 1.7; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.about-stat { background: var(--light); border-radius: var(--radius); padding: 28px; text-align: center; }
.about-stat strong { display: block; font-size: 2.2rem; font-weight: 800; color: var(--primary); }
.about-stat span { color: var(--gray); font-size: 0.9rem; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 24px; }
.value-card { background: #fff; border-radius: var(--radius); padding: 28px; text-align: center; box-shadow: var(--shadow); }
.value-icon { font-size: 2.4rem; margin-bottom: 12px; }
.value-card h3 { font-weight: 700; margin-bottom: 8px; }
.value-card p { color: var(--gray); font-size: 0.9rem; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.contact-channels h2, .contact-form-wrap h2 { font-size: 1.6rem; font-weight: 800; margin-bottom: 12px; }
.contact-channels > p { color: var(--gray); margin-bottom: 28px; }
.channel-cards { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.channel-card { display: flex; align-items: center; gap: 16px; padding: 20px; border-radius: var(--radius); border: 1px solid var(--border); transition: all 0.2s; }
.channel-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.whatsapp-card { border-color: var(--whatsapp); background: #f0fdf4; }
.call-card { border-color: #2563eb; background: #eff6ff; }
.email-card { border-color: #7c3aed; background: #faf5ff; }
.channel-icon { width: 52px; height: 52px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.whatsapp-card .channel-icon { background: var(--whatsapp); color: #fff; }
.call-card .channel-icon { background: #2563eb; color: #fff; }
.email-card .channel-icon { background: #7c3aed; color: #fff; }
.channel-card strong { display: block; font-weight: 700; }
.channel-card span { display: block; font-size: 0.85rem; color: var(--gray); }
.channel-num { font-weight: 600 !important; color: var(--dark) !important; }
.business-hours h3 { font-weight: 700; margin-bottom: 12px; }
.business-hours ul { display: flex; flex-direction: column; gap: 8px; }
.business-hours li { display: flex; justify-content: space-between; font-size: 0.9rem; padding: 8px 0; border-bottom: 1px solid var(--border); }
.business-hours li span:last-child { font-weight: 600; }

/* ===== FORM ===== */
.contact-form-wrap { background: var(--light); border-radius: var(--radius); padding: 36px; }
.contact-form-wrap h2 { margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: 8px; font-family: inherit; font-size: 0.95rem; background: #fff; transition: border-color 0.2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(230,57,70,0.1); }
.form-group textarea { resize: vertical; }
.alert { padding: 14px 18px; border-radius: 8px; margin-bottom: 20px; font-weight: 500; }
.alert-success { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }
.alert-error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

/* ===== FOOTER ===== */
.site-footer { background: var(--dark); color: rgba(255,255,255,0.8); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; padding-bottom: 48px; }
.footer-brand .logo { color: #fff; margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 38px; height: 38px; border-radius: 8px; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); transition: all 0.2s; }
.footer-social a:hover { background: var(--primary); color: #fff; }
.footer-links h3, .footer-contact h3 { font-size: 0.95rem; font-weight: 700; color: #fff; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.9rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-links a:hover { color: var(--primary); }
.footer-contact ul { display: flex; flex-direction: column; gap: 12px; }
.footer-contact li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: rgba(255,255,255,0.6); }
.footer-contact a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-contact a:hover { color: var(--primary); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { font-size: 0.85rem; color: rgba(255,255,255,0.5); }

/* ===== FLOATING WHATSAPP ===== */
.float-whatsapp { position: fixed; bottom: 28px; right: 28px; z-index: 999; width: 58px; height: 58px; background: var(--whatsapp); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: all 0.2s; }
.float-whatsapp:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }

/* ===== SEARCH PAGE ===== */
.search-page-form { display: flex; gap: 12px; max-width: 560px; margin-bottom: 40px; }
.search-page-form input { flex: 1; padding: 12px 16px; border: 1px solid var(--border); border-radius: 8px; font-size: 1rem; font-family: inherit; outline: none; }
.search-page-form input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(230,57,70,0.1); }
.search-count { color: var(--gray); font-size: 0.9rem; margin-bottom: 8px; }
.search-empty { text-align: center; padding: 60px 0; color: var(--gray); }
.search-empty h2 { font-size: 1.4rem; margin-bottom: 10px; color: var(--dark); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-grid, .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-visual { display: none; }
}

/* ===== MOBILE HEADER ===== */
.mobile-header { display: none; }

@media (max-width: 768px) {
  /* Hide desktop header rows */
  .header-row1, .header-row2 { display: none; }

  /* Show mobile header */
  .mobile-header { display: block; background: #fff; border-bottom: 1px solid var(--border); }

  .mobile-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    gap: 8px;
  }

/* Hamburger */
  .hamburger { display: flex !important; flex-direction: column; justify-content: center; align-items: center; gap: 5px; width: 38px; height: 38px; background: none; border: none; cursor: pointer; border-radius: 8px; transition: background 0.15s; padding: 0; flex-shrink: 0; }
  .hamburger span { display: block; width: 22px; height: 2px; background: var(--dark); border-radius: 2px; transition: transform 0.3s, opacity 0.3s, width 0.3s; }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Call button */
  .mob-call {
    background: #2563eb; color: #fff;
    border-radius: 8px; width: 38px; height: 38px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }

  /* Center logo */
  .mob-logo { flex: 1; display: flex; justify-content: center; align-items: center; }

  /* Search icon button */
  .mob-search-btn {
    background: var(--light); border: 1px solid var(--border);
    border-radius: 8px; width: 38px; height: 38px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; color: var(--gray); flex-shrink: 0;
  }

  /* WhatsApp icon button */
  .mob-whatsapp {
    background: var(--whatsapp); color: #fff;
    border-radius: 8px; width: 38px; height: 38px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }

  /* Mobile search bar (hidden by default, slides down) */
  .mob-search-bar {
    max-height: 0; overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #fff;
  }
  .mob-search-bar.open { max-height: 80px; padding: 8px 16px 12px; }
  .mob-search-inner {
    position: relative;
    display: flex; align-items: center;
    background: var(--light); border: 2px solid var(--border);
    border-radius: 10px; padding: 0 12px;
  }
  .mob-search-inner:focus-within { border-color: var(--primary); }
  .mob-search-inner svg { color: var(--gray); flex-shrink: 0; }
  .mob-search-inner input {
    flex: 1; border: none; background: transparent;
    padding: 10px 10px; font-size: 0.95rem;
    font-family: inherit; outline: none; color: var(--dark);
  }
  .mob-search-inner .search-dropdown { top: calc(100% + 6px); }

  /* Mobile nav drawer */
  .mob-nav {
    max-height: 0; overflow: hidden;
    transition: max-height 0.35s ease;
    background: var(--dark2);
  }
  .mob-nav.open { max-height: 800px; }
  .mob-nav ul { display: flex; flex-direction: column; }
  .mob-nav a {
    display: block; padding: 14px 20px;
    color: rgba(255,255,255,0.8); font-weight: 500; font-size: 0.95rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    transition: background 0.2s, color 0.2s;
  }
  .mob-nav a:hover, .mob-nav a.active { color: #fff; background: rgba(255,255,255,0.08); }
  .mob-nav a.active { border-left: 3px solid var(--primary); }

  /* Hero slideshow mobile */
  .slideshow-wrapper { padding: 6px 10px; }
  .slideshow { height: 420px; border-radius: 16px; }
  .scene-visual { width: 100%; }
  .scene-visual .img-desktop { display: none; }
  .scene-visual .img-mobile { display: block; }
  .scene-visual::after { background: linear-gradient(to top, rgba(0,0,0,0.7) 50%, transparent 100%); }
  .slide-content { width: 100%; top: auto; bottom: 0; transform: none; padding: 20px 20px 52px; text-align: center; display: flex; flex-direction: column; align-items: center; background: none; }
  .slide-sub { display: none; }
  .slide-heading { font-size: 1.4rem; }
  .slide-text { display: none; }
  /* Media grid mobile */
  .media-grid-section { padding: 0 12px 24px; }
  .media-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 160px auto 160px 160px;
    gap: 8px;
  }
  .grid-item-tshirt  { grid-column: span 2; grid-row: span 1; }
  .grid-item-banner  { grid-column: 1; grid-row: 2; }
  .grid-item-laser   { grid-column: 2; grid-row: 2 / span 2; }
  .grid-item-card    { grid-column: 1; grid-row: 3; }
  .grid-item-mug     { grid-column: 1; grid-row: 4; }
  .grid-item-promo   { grid-column: 2; grid-row: 4; }
  .grid-label { font-size: 13px; bottom: 10px; left: 10px; }

  /* Mobile nav sub-menu */
  .mob-nav-has-sub .mob-nav-parent { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .mob-nav-has-sub .mob-nav-parent a { padding: 0; border: none; color: rgba(255,255,255,0.8); font-weight: 500; font-size: 0.95rem; background: none; }
  .mob-nav-arrow { color: rgba(255,255,255,0.5); font-size: 0.8rem; cursor: pointer; transition: transform 0.2s; padding: 4px 8px; }
  .mob-nav-arrow.open { transform: rotate(180deg); }
  .mob-nav-sub { display: none; background: rgba(0,0,0,0.2); }
  .mob-nav-sub.open { display: block; }
  .mob-nav-sub li a { display: block; padding: 11px 20px 11px 32px; color: rgba(255,255,255,0.7); font-size: 0.88rem; border-bottom: 1px solid rgba(255,255,255,0.05); transition: background 0.15s; }
  .mob-nav-sub li a:hover { background: rgba(255,255,255,0.08); color: #fff; }

  /* General mobile fixes */
  .section { padding: 56px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .service-detail { grid-template-columns: 1fr; gap: 24px; }
  .service-detail-icon { font-size: 3rem; text-align: left; }
  .service-features { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .steps-grid { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); }
  .about-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-form-wrap { padding: 24px 16px; }
}
