/* build:20260621-2 */
/*
Theme Name:  GoTag
Theme URI:   https://gotag.in
Author:      GoTag
Author URI:  https://gotag.in
Description: Official GoTag website theme — bold, quirky, interactive. Team offsites & experiences.
Version:     1.0.0
License:     GNU General Public License v2 or later
Text Domain: gotag
*/

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

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

:root {
  --white:        #FFFFFF;
  --cream:        #F8F6F1;
  --cream-dark:   #F0EDE5;
  --dark:         #0D0D0D;
  --orange:       #002f49;
  --orange-h:     #001a2e;
  --orange-light: #eaf1f6;
  --teal:         #efca08;
  --teal-light:   #fef8dc;
  --yellow:       #efca08;
  --text:         #1A1A1A;
  --text-mid:     #555555;
  --text-light:   #999999;
  --border:       #E5E2DA;
  --radius-s:     8px;
  --radius-m:     16px;
  --radius-l:     24px;
  --radius-xl:    40px;
  --shadow-s:     0 2px 10px rgba(0,0,0,.07);
  --shadow-m:     0 8px 28px rgba(0,0,0,.11);
  --shadow-l:     0 20px 60px rgba(0,0,0,.15);
  --font-h:       'Plus Jakarta Sans', sans-serif;
  --font-b:       'Plus Jakarta Sans', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-b); color: var(--text); background: var(--white); line-height: 1.65; overflow-x: hidden; }
img  { max-width: 100%; height: auto; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }

h1, h2, h3, h4 { font-family: var(--font-h); line-height: 1.15; }
h1 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 1.8vw, 1.35rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }
p  { line-height: 1.75; color: var(--text-mid); }

.container { max-width: 1240px; margin: 0 auto; padding: 0 60px; }
.section   { padding: 100px 0; }

/* ── WPFORMS CUSTOM STYLING ── */
.wpforms-form .wpforms-field { margin-bottom: 16px !important; padding: 0 !important; }
.wpforms-form .wpforms-field-label { font-family: var(--font-h) !important; font-size: .78rem !important; font-weight: 700 !important; text-transform: uppercase !important; letter-spacing: 1.5px !important; color: var(--text) !important; margin-bottom: 6px !important; }
.wpforms-form input[type=text],
.wpforms-form input[type=email],
.wpforms-form input[type=tel],
.wpforms-form input[type=url],
.wpforms-form select,
.wpforms-form textarea { width: 100% !important; padding: 12px 16px !important; border: 1.5px solid var(--border) !important; border-radius: var(--radius-s) !important; font-family: var(--font-b) !important; font-size: .95rem !important; color: var(--text) !important; background: white !important; transition: border-color .3s !important; outline: none !important; box-shadow: none !important; appearance: auto; }
.wpforms-form input:focus,
.wpforms-form select:focus,
.wpforms-form textarea:focus { border-color: var(--orange) !important; box-shadow: 0 0 0 3px rgba(0,47,73,.15) !important; }
.wpforms-form .wpforms-field-name .wpforms-field-row { display: flex !important; gap: 12px !important; }
.wpforms-form .wpforms-submit-container { margin-top: 8px !important; padding: 0 !important; text-align: center !important; }
.wpforms-form .wpforms-submit { background: var(--orange) !important; color: white !important; border: none !important; padding: 14px 30px !important; border-radius: 50px !important; font-family: var(--font-h) !important; font-weight: 600 !important; font-size: .95rem !important; width: 100% !important; cursor: pointer !important; transition: all .3s !important; box-shadow: 0 4px 22px rgba(0,47,73,.35) !important; letter-spacing: .3px !important; }
.wpforms-form .wpforms-submit:hover { background: var(--orange-h) !important; transform: translateY(-2px) !important; }
.wpforms-form .wpforms-field-sublabel { font-size: .75rem !important; color: var(--text-light) !important; }
.wpforms-form .wpforms-required-label { color: var(--orange) !important; }
.wpforms-form select { height: auto !important; line-height: normal !important; padding-top: 10px !important; padding-bottom: 10px !important; }

.label {
  display: inline-block; font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--orange); background: var(--orange-light);
  padding: 5px 14px; border-radius: 50px; margin-bottom: 18px;
}
.label-dark { color: white; background: rgba(255,255,255,.12); }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px; border-radius: 50px;
  font-family: var(--font-h); font-weight: 600; font-size: .95rem;
  cursor: pointer; border: none; transition: all .3s ease;
}
.btn-primary  { background: var(--orange); color: white; box-shadow: 0 4px 22px rgba(0,47,73,.35); }
.btn-primary:hover { background: var(--orange-h); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,47,73,.4); }
.btn-outline  { background: transparent; color: var(--text); border: 2px solid var(--border); }
.btn-outline:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }
.btn-white    { background: white; color: var(--dark); }
.btn-white:hover { background: var(--cream); transform: translateY(-2px); }
.btn-dark     { background: var(--dark); color: white; }
.btn-dark:hover { background: #2a2a2a; transform: translateY(-2px); }

.text-center { text-align: center; }
.text-center .sub { margin: 0 auto; }
.sub { font-size: 1.1rem; color: var(--text-mid); max-width: 580px; margin-top: 12px; }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 0; transition: all .35s ease;
  background: rgba(255,255,255,.98); backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,.07);
}
.navbar.scrolled {
  padding: 12px 0; box-shadow: 0 2px 28px rgba(0,0,0,.10);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo img,
.logo .custom-logo-link img,
.custom-logo { height: 48px !important; width: auto !important; max-height: 48px !important; display: block; }
.logo .custom-logo-link { display: flex; align-items: center; }
.logo-text { font-family: var(--font-h); font-weight: 700; font-size: 1.5rem; color: var(--dark); }
.logo-text span { color: var(--orange); }
.nav-links, .nav-links ul { display: flex; align-items: center; gap: 36px; padding: 0; margin: 0; }
.nav-links li { list-style: none; }
.nav-links a {
  font-weight: 500; font-size: .95rem; color: var(--text);
  position: relative; transition: color .3s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--orange); transition: width .3s;
}
.nav-links a:hover, .nav-links .current-menu-item a, .nav-links .current_page_item a { color: var(--orange); }
.nav-links a:hover::after, .nav-links .current-menu-item a::after, .nav-links .current_page_item a::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-phone { display: flex; align-items: center; gap: 6px; font-weight: 600; font-size: .9rem; color: var(--orange); border: 1.5px solid var(--orange); border-radius: 50px; padding: 9px 18px; transition: all .3s; white-space: nowrap; }
.nav-phone:hover { background: var(--orange); color: white; }
.nav-phone svg { flex-shrink: 0; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all .3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: var(--white); flex-direction: column;
  align-items: center; justify-content: center; gap: 36px;
}
.mobile-menu.active { display: flex; }
.mobile-menu a { font-family: var(--font-h); font-size: 2.2rem; font-weight: 700; color: var(--text); transition: color .3s; }
.mobile-menu a:hover { color: var(--orange); }
.mobile-close { position: absolute; top: 24px; right: 28px; font-size: 2rem; cursor: pointer; background: none; border: none; color: var(--text); }

/* ── HERO ── */
.hero { min-height: 100vh; display: flex; align-items: center; background: var(--cream); position: relative; overflow: hidden; padding-top: 100px; }
.hero-bg-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .58; z-index: 0; filter: grayscale(20%); }
.hero-bg-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, var(--cream) 0%, rgba(247,244,237,.2) 45%, var(--cream) 100%); z-index: 0; }
.hero-blob { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; z-index: 0; }
.hero-blob-1 { width: 700px; height: 700px; background: rgba(0,47,73,.09); top: -150px; right: -150px; }
.hero-blob-2 { width: 500px; height: 500px; background: rgba(239,202,8,.08); bottom: -100px; left: -100px; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 1; }
@media (max-width: 768px) { .hero-bg-video { display: none; } }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: white; border: 1px solid var(--border); border-radius: 50px; padding: 8px 18px; font-size: .85rem; font-weight: 600; margin-bottom: 28px; box-shadow: var(--shadow-s); }
.badge-dot { width: 8px; height: 8px; background: var(--teal); border-radius: 50%; animation: blink 1.5s infinite; }
@keyframes blink { 0%,100% { opacity:1; } 50% { opacity:.3; } }
.hero h1 { margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--orange); }
.rotating-wrap { display: inline-block; overflow: hidden; vertical-align: bottom; height: 1.15em; }
.rotating-word { display: block; color: var(--orange); transition: transform .4s cubic-bezier(.4,0,.2,1), opacity .4s ease; }
.rotating-word.exit { transform: translateY(-100%); opacity: 0; }
.rotating-word.enter { transform: translateY(100%); opacity: 0; }
.underline-mark { position: relative; display: inline-block; }
.underline-mark::after { content: ''; position: absolute; bottom: 2px; left: 0; width: 100%; height: 8px; background: var(--yellow); z-index: -1; border-radius: 4px; }
.hero-sub { font-size: 1.1rem; margin-bottom: 36px; max-width: 480px; }
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 52px; }
.hero-stats { display: flex; gap: 36px; }
.h-stat-num { font-family: var(--font-h); font-size: 2rem; font-weight: 700; color: var(--text); display: block; }
.h-stat-num span { color: var(--orange); }
.h-stat-label { font-size: .8rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; }
.hero-visual { position: relative; }
.hero-img-card { border-radius: var(--radius-l); overflow: hidden; box-shadow: var(--shadow-l); }
.hero-img-card img { width: 100%; height: 500px; object-fit: cover; }
.h-float { position: absolute; background: white; border-radius: var(--radius-m); padding: 14px 18px; box-shadow: var(--shadow-m); display: flex; align-items: center; gap: 12px; font-weight: 700; font-size: .85rem; white-space: nowrap; }
.h-float-1 { top: 30px; left: -28px; animation: floatY 3.5s ease-in-out infinite; }
.h-float-2 { bottom: 50px; right: -28px; animation: floatY 3.5s ease-in-out infinite 1.8s; }
.h-float-icon { font-size: 1.6rem; }
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ── TICKER ── */
.ticker { background: var(--dark); padding: 14px 0; overflow: hidden; }
.ticker-track { display: flex; width: max-content; animation: ticker-anim 35s linear infinite; }
.ticker-track:hover { animation-play-state: paused; }
@keyframes ticker-anim { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker-item { display: flex; align-items: center; gap: 12px; color: white; font-size: .9rem; font-weight: 500; padding: 0 36px; }
.t-dot { width: 6px; height: 6px; background: var(--orange); border-radius: 50%; flex-shrink: 0; }

/* ── STATS ── */
.stats-section { background: var(--white); padding: 80px 0; border-bottom: 1px solid var(--border); }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.stat-card { text-align: center; padding: 36px 20px; border-radius: var(--radius-m); background: var(--cream); position: relative; overflow: hidden; transition: transform .3s, box-shadow .3s; }
.stat-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--orange); }
.stat-card:nth-child(2)::before { background: var(--teal); }
.stat-card:nth-child(3)::before { background: var(--yellow); }
.stat-card:nth-child(4)::before { background: var(--dark); }
.stat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-m); }
.stat-num { font-family: var(--font-h); font-size: 3.2rem; font-weight: 700; color: var(--text); line-height: 1; margin-bottom: 8px; display: block; }
.stat-label { font-size: .85rem; color: var(--text-mid); font-weight: 500; }

/* ── SERVICES GRID ── */
.services-section { background: var(--cream); }
.section-head { margin-bottom: 52px; }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.service-card { background: white; border-radius: var(--radius-l); padding: 36px 28px; border: 1.5px solid var(--border); position: relative; overflow: hidden; cursor: pointer; transition: border-color .35s, box-shadow .35s; transform-style: preserve-3d; }
.service-card:hover { border-color: var(--orange); box-shadow: var(--shadow-l); }
.s-icon { width: 64px; height: 64px; background: var(--orange-light); border-radius: var(--radius-m); display: flex; align-items: center; justify-content: center; font-size: 1.9rem; margin-bottom: 22px; transition: transform .35s, background .35s; }
.service-card:hover .s-icon { transform: scale(1.1) rotate(-5deg); background: var(--orange); }
.service-card h3 { margin-bottom: 12px; }
.service-card p { font-size: .95rem; margin-bottom: 22px; }
.s-link { display: inline-flex; align-items: center; gap: 6px; color: var(--orange); font-weight: 600; font-size: .9rem; transition: gap .3s; }
.service-card:hover .s-link { gap: 12px; }
.s-tag { position: absolute; top: 20px; right: 20px; background: var(--yellow); color: var(--dark); font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 4px 10px; border-radius: 50px; }

/* ── PROCESS ── */
.process-section { background: var(--orange); color: white; }
.process-section h2 { color: white; }
.process-section .sub { color: rgba(255,255,255,.6); }
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 60px; position: relative; }
.process-line-track { position: absolute; top: 50px; left: calc(12.5% + 44px); right: calc(12.5% + 44px); height: 3px; background: rgba(255,255,255,.1); border-radius: 2px; overflow: hidden; }
.process-line-fill { height: 100%; width: 0%; background: linear-gradient(90deg, var(--orange), var(--teal)); border-radius: 2px; transition: width .6s ease; }
.process-step { text-align: center; padding: 16px 12px; cursor: pointer; }
.step-num {
  width: 100px; height: 100px; border-radius: 50%;
  background: rgba(255,255,255,.08); border: 2px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.5); font-family: var(--font-h); font-size: 1.5rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; position: relative; z-index: 1;
  transition: all .5s cubic-bezier(.4,0,.2,1);
}
.step-icon { font-size: 2rem; margin-bottom: 6px; display: block; opacity: .4; transition: opacity .4s, transform .4s; }
.process-step.active .step-num {
  background: var(--teal); border-color: var(--teal);
  color: var(--dark); transform: scale(1.18);
  box-shadow: 0 0 0 10px rgba(239,202,8,.15), 0 0 40px rgba(239,202,8,.25);
}
.process-step.active .step-icon { opacity: 1; transform: scale(1.15); }
.process-step.active h4 { color: var(--teal); }
.process-step.active p { color: rgba(255,255,255,.85); }
.process-step.done .step-num { background: rgba(239,202,8,.2); border-color: var(--teal); color: var(--teal); }
.process-step h4 { color: rgba(255,255,255,.5); margin-bottom: 8px; font-size: 1.05rem; transition: color .4s; }
.process-step p { font-size: .88rem; color: rgba(255,255,255,.3); transition: color .4s; line-height: 1.6; }

/* ── TESTIMONIALS ── */
.testimonials-section { background: var(--white); }
.t-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 52px; }
.t-card { background: var(--cream); border-radius: var(--radius-l); padding: 30px; border: 1.5px solid var(--border); transition: all .3s; }
.t-card:hover { box-shadow: var(--shadow-m); transform: translateY(-4px); border-color: var(--orange); }
.stars { color: var(--yellow); font-size: .9rem; margin-bottom: 6px; letter-spacing: 2px; }
.quote { font-size: 3.5rem; color: var(--orange); line-height: .8; font-family: Georgia,serif; margin-bottom: 8px; }
.t-text { font-size: .95rem; font-style: italic; margin-bottom: 20px; line-height: 1.7; }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-h); font-weight: 700; font-size: 1rem; color: white; flex-shrink: 0; }
.t-name { font-weight: 600; font-size: .95rem; }
.t-role { font-size: .8rem; color: var(--text-light); }

/* ── CLIENTS ── */
.clients-section { background: var(--cream); padding: 64px 0; }
.clients-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; margin-top: 48px; }
.c-logo { display: flex; align-items: center; justify-content: center; padding: 24px 20px; background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-s); transition: border-color .3s, box-shadow .3s; }
.c-logo:hover { border-color: var(--orange); box-shadow: 0 4px 16px rgba(0,0,0,.08); }
.c-logo img { width: 160px; height: 50px; object-fit: contain; filter: grayscale(100%) opacity(60%); transition: filter .3s; display: block; }
.c-logo:hover img { filter: grayscale(0%) opacity(100%); }
@media (max-width: 1024px) { .clients-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 600px) { .clients-grid { grid-template-columns: repeat(3, 1fr); gap: 6px; } .c-logo { padding: 16px 12px; } .c-logo img { width: 100px; height: 31px; } }

/* ── INQUIRY FORM ── */
.inquiry-section { background: linear-gradient(135deg, var(--orange) 0%, #003d5e 100%); color: white; }
.inquiry-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.inquiry-left h2 { color: white; margin-bottom: 14px; }
.inquiry-left p  { color: rgba(255,255,255,.85); font-size: 1.05rem; }
.inquiry-perks { margin-top: 28px; display: flex; flex-direction: column; gap: 10px; }
.i-perk { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.9); font-size: .95rem; }
.i-perk-icon { font-size: 1.1rem; }
.inquiry-form-box { background: white; border-radius: var(--radius-l); padding: 40px; box-shadow: var(--shadow-l); }
.form-title { font-family: var(--font-h); font-size: 1.3rem; font-weight: 700; margin-bottom: 24px; color: var(--text); }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 600; font-size: .8rem; text-transform: uppercase; letter-spacing: .6px; color: var(--text); margin-bottom: 7px; }
.form-group input,
.form-group select,
.form-group textarea { width: 100%; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: var(--radius-s); font-family: var(--font-b); font-size: .95rem; color: var(--text); background: var(--white); outline: none; transition: border-color .3s, box-shadow .3s; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(0,47,73,.1); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── CTA BANNER ── */
.cta-section { background: var(--cream); }
.cta-box { background: var(--dark); border-radius: var(--radius-xl); padding: 90px 60px; text-align: center; position: relative; overflow: hidden; }
.cta-box::before { content: ''; position: absolute; top: -40%; right: -5%; width: 500px; height: 500px; border-radius: 50%; background: rgba(0,47,73,.12); filter: blur(70px); }
.cta-box h2 { color: white; margin-bottom: 14px; position: relative; z-index: 1; }
.cta-box p  { color: rgba(255,255,255,.7); font-size: 1.1rem; margin-bottom: 36px; position: relative; z-index: 1; }
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; position: relative; z-index: 1; }

/* ── PAGE HERO ── */
.page-hero { background: var(--dark); color: white; padding: 170px 24px 90px; text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at top center, rgba(0,47,73,.18) 0%, transparent 65%); }
.page-hero > * { position: relative; z-index: 1; }
.page-hero h1 { color: white; margin: 0 auto 18px; max-width: 880px; }
.page-hero .sub { color: rgba(255,255,255,.65); margin: 0 auto; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 24px; font-size: .78rem; letter-spacing: .3px; color: rgba(255,255,255,.4); }
.breadcrumb a { color: rgba(255,255,255,.65); transition: color .3s; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb .sep { opacity: .5; }

/* ── SERVICES DETAIL ── */
.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 56px; }
.detail-card { background: var(--cream); border-radius: var(--radius-l); padding: 40px; border: 1.5px solid var(--border); transition: all .35s; }
.detail-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-m); border-color: var(--orange); }
.detail-card h2 { font-size: 1.4rem; font-weight: 700; margin: 16px 0 10px; line-height: 1.25; }
.detail-card h3 { font-size: 1rem; font-weight: 600; margin: 20px 0 8px; }
.detail-card p { margin-bottom: 18px; }
.feat-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.feat-list li { display: flex; align-items: center; gap: 10px; font-size: .9rem; color: var(--text-mid); }
.feat-list li::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; }

/* ── PRICING ── */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin: 32px 0 24px; }
.pricing-card { position: relative; background: var(--white); border-radius: var(--radius-l); padding: 38px 26px 30px; text-align: center; border: 1.5px solid var(--border); transition: all .35s; }
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-m); border-color: var(--orange); }
.pricing-card.featured { border: 2px solid var(--orange); box-shadow: var(--shadow-s); }
.pricing-card.featured:hover { box-shadow: var(--shadow-l); }
.pricing-badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--teal); color: var(--dark); font-family: var(--font-h); font-size: .7rem; font-weight: 700; letter-spacing: .6px; text-transform: uppercase; padding: 7px 18px; border-radius: 50px; box-shadow: var(--shadow-s); white-space: nowrap; }
.pricing-icon { width: 56px; height: 56px; margin: 0 auto 16px; border-radius: 50%; background: var(--orange-light); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; transition: transform .35s; }
.pricing-card:hover .pricing-icon { transform: scale(1.1); }
.pricing-card.featured .pricing-icon { background: var(--teal-light); }
.pricing-tier { font-family: var(--font-h); font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .7px; color: var(--text-light); margin-bottom: 12px; }
.pricing-amount { font-family: var(--font-h); font-size: 1.85rem; font-weight: 800; color: var(--orange); line-height: 1.1; white-space: nowrap; }
.pricing-amount sup { font-size: 1.1rem; font-weight: 700; top: -0.6em; }
.pricing-unit { font-size: .8rem; color: var(--text-mid); margin: 8px 0 18px; }
.pricing-desc { font-size: .85rem; color: var(--text-light); line-height: 1.65; padding-top: 18px; border-top: 1px solid var(--border); margin: 0; }
.pricing-note { color: var(--text-mid); font-size: .9rem; text-align: center; }
.pricing-note a { color: var(--orange); font-weight: 600; }

/* ── WHY US ── */
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 56px; }
.why-card { text-align: center; padding: 36px 24px; border-radius: var(--radius-l); background: var(--white); border: 1.5px solid var(--border); transition: all .3s; }
.why-card:hover { border-color: var(--orange); box-shadow: var(--shadow-m); transform: translateY(-4px); }
.why-icon { font-size: 2.6rem; margin-bottom: 14px; }
.why-card h4 { margin-bottom: 8px; }

/* ── ABOUT ── */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.story-img { border-radius: var(--radius-l); overflow: hidden; box-shadow: var(--shadow-l); }
.story-img img { width: 100%; height: 480px; object-fit: cover; }
.story-text h2 { margin-bottom: 16px; }
.story-text p { margin-bottom: 16px; }
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 56px; }
.val-card { padding: 28px; border-radius: var(--radius-m); background: var(--cream); border-left: 4px solid var(--orange); transition: all .3s; }
.val-card:nth-child(2) { border-color: var(--teal); }
.val-card:nth-child(3) { border-color: var(--yellow); }
.val-card:nth-child(4) { border-color: var(--dark); }
.val-card:hover { transform: translateX(4px); box-shadow: var(--shadow-s); }
.val-emoji { font-size: 1.8rem; margin-bottom: 10px; }
.val-card h4 { margin-bottom: 6px; }

/* ── CONTACT ── */
.contact-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; margin-top: 56px; align-items: start; }
.contact-cards { display: flex; flex-direction: column; gap: 18px; }
.contact-card { display: flex; align-items: flex-start; gap: 16px; background: var(--cream); border-radius: var(--radius-m); padding: 24px; border: 1.5px solid var(--border); transition: all .3s; }
.contact-card:hover { border-color: var(--orange); box-shadow: var(--shadow-s); }
.cc-icon { width: 50px; height: 50px; border-radius: var(--radius-s); background: var(--orange-light); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; }
.cc-label { font-size: .75rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); margin-bottom: 3px; }
.cc-val { font-weight: 600; color: var(--text); }
.cc-sub { font-size: .85rem; color: var(--text-mid); margin-top: 2px; }
.contact-form-box { background: var(--cream); border-radius: var(--radius-l); padding: 48px; border: 1.5px solid var(--border); }

/* ── FAQ ── */
.faq-section { background: var(--cream); }
.faq-list { max-width: 780px; margin: 56px auto 0; }
.faq-item { background: white; border-radius: var(--radius-m); border: 1.5px solid var(--border); margin-bottom: 12px; overflow: hidden; transition: border-color .3s; }
.faq-item.open { border-color: var(--orange); }
.faq-btn { width: 100%; padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; cursor: pointer; background: none; border: none; text-align: left; font-family: var(--font-h); font-weight: 600; font-size: 1rem; color: var(--text); gap: 16px; }
.faq-ico { width: 28px; height: 28px; border-radius: 50%; background: var(--cream); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; transition: all .3s; }
.faq-item.open .faq-ico { background: var(--orange); color: white; transform: rotate(45deg); }
.faq-ans { max-height: 0; overflow: hidden; padding: 0 24px; transition: max-height .4s ease, padding .4s ease; }
.faq-item.open .faq-ans { max-height: 220px; padding: 0 24px 20px; }
.faq-ans p { font-size: .95rem; }

/* ── FOOTER ── */
/* ── FOOTER ── */
.footer { background: var(--dark); color: white; padding: 0 0 28px; }

/* Stats strip */
.footer-stats-bar { background: rgba(255,255,255,.04); border-bottom: 1px solid rgba(255,255,255,.08); padding: 22px 0; }
.fstats { display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; }
.fstat { display: flex; flex-direction: column; align-items: center; gap: 3px; padding: 0 40px; }
.fstat-n { font-size: 1.35rem; font-weight: 700; color: var(--yellow); line-height: 1; }
.fstat-l { font-size: .72rem; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: 1.2px; }
.fstat-sep { width: 1px; height: 36px; background: rgba(255,255,255,.12); }

/* Main grid */
.footer-top { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.3fr; gap: 48px; padding: 56px 0 48px; border-bottom: 1px solid rgba(255,255,255,.08); margin-bottom: 28px; }
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo img { height: 36px; filter: brightness(0) invert(1); }
.footer-brand .logo-text { color: white; }
.footer-brand p { color: rgba(255,255,255,.5); font-size: .88rem; max-width: 260px; margin-bottom: 24px; line-height: 1.6; }

/* Social icons */
.socials { display: flex; gap: 8px; }
.soc-link { width: 38px; height: 38px; border-radius: 50%; background: transparent; border: 1px solid rgba(255,255,255,.18); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.6); transition: all .3s; }
.soc-link:hover { background: var(--yellow); border-color: var(--yellow); color: var(--dark); transform: translateY(-3px); }

/* Nav columns */
.footer-col h5 { color: rgba(255,255,255,.9); font-size: .75rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 11px; }
.footer-links a { color: rgba(255,255,255,.48); font-size: .88rem; transition: color .3s; }
.footer-links a:hover { color: var(--yellow); }

/* CTA column */
.footer-cta-tagline { color: rgba(255,255,255,.5); font-size: .85rem; line-height: 1.6; margin-bottom: 20px; }
.footer-wa-btn { display: flex; align-items: center; gap: 9px; background: #25D366; color: white; padding: 12px 18px; border-radius: var(--radius-s); font-size: .88rem; font-weight: 600; transition: background .25s, transform .2s; margin-bottom: 20px; text-decoration: none; width: fit-content; }
.footer-wa-btn:hover { background: #1db954; color: white; transform: translateY(-2px); }
.footer-contact-quick { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-quick a, .footer-contact-quick span { display: flex; align-items: center; gap: 7px; color: rgba(255,255,255,.42); font-size: .83rem; text-decoration: none; transition: color .3s; }
.footer-contact-quick a:hover { color: var(--yellow); }

/* Bottom bar */
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .82rem; color: rgba(255,255,255,.3); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,.42); transition: color .3s; }
.footer-bottom-links a:hover { color: var(--yellow); }

/* ── WHATSAPP FLOAT ── */
.wa-float { position: fixed; bottom: 28px; right: 28px; z-index: 998; display: flex; align-items: center; gap: 10px; background: #25D366; color: white; border-radius: 50px; padding: 14px 22px; font-weight: 600; font-size: .9rem; box-shadow: 0 4px 24px rgba(37,211,102,.4); transition: all .3s; cursor: pointer; }
.wa-float:hover { transform: scale(1.05); box-shadow: 0 8px 32px rgba(37,211,102,.5); color: white; }
.wa-float svg { width: 22px; height: 22px; flex-shrink: 0; }
.wa-pulse { position: absolute; top: -5px; right: -5px; width: 18px; height: 18px; background: var(--orange); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0% { transform:scale(1); opacity:1; } 70% { transform:scale(2.2); opacity:0; } 100% { transform:scale(1); opacity:0; } }

/* ── REVEAL ANIMATIONS ── */
.reveal        { opacity: 0; transform: translateY(32px); transition: opacity .75s ease, transform .75s ease; }
.reveal.active  { opacity: 1; transform: none; }
.reveal-l      { opacity: 0; transform: translateX(-32px); transition: opacity .75s ease, transform .75s ease; }
.reveal-l.active { opacity: 1; transform: none; }
.reveal-r      { opacity: 0; transform: translateX(32px); transition: opacity .75s ease, transform .75s ease; }
.reveal-r.active { opacity: 1; transform: none; }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }

/* ── BLOG SINGLE ── */
.single .page-hero h1 { font-size: clamp(1.5rem, 2.8vw, 2.2rem); }
.entry-content h2 { font-size: 1.4rem !important; margin: 32px 0 10px !important; }
.entry-content h3 { font-size: 1.15rem !important; margin: 24px 0 8px !important; }
.entry-content h4 { font-size: 1rem !important; margin: 18px 0 6px !important; }

/* ── PHOTO GALLERY ── */
.gallery-section { background: var(--cream); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 260px 260px 260px 260px;
  gap: 16px;
  margin-top: 48px;
}
.g-item { position: relative; overflow: hidden; border-radius: var(--radius-m); cursor: pointer; }
.g-item img { width: 100% !important; height: 100% !important; aspect-ratio: auto !important; object-fit: cover; transition: transform .5s ease; display: block; }
.g-item:hover img { transform: scale(1.06); }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }
.g-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,47,73,.75) 0%, transparent 55%);
  opacity: 0; transition: opacity .35s ease;
  display: flex; align-items: flex-end; padding: 20px;
}
.g-item:hover .g-overlay { opacity: 1; }
.g-overlay span {
  color: white; font-family: var(--font-h); font-weight: 700;
  font-size: 1rem; letter-spacing: .5px;
}

/* ── MOMENTS / SCENES PORTRAIT CARD STRIPS ── */
.moments-grid, .scenes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.scenes-grid { grid-template-columns: repeat(3, 1fr); }
.moments-item, .scenes-item {
  position: relative; overflow: hidden; border-radius: var(--radius-m);
  box-shadow: var(--shadow-l); cursor: pointer; aspect-ratio: 3 / 4;
}
.moments-item img, .scenes-item img {
  width: 100% !important; height: 100% !important; aspect-ratio: auto !important; object-fit: cover;
  transition: transform .5s ease; display: block;
}
.moments-item:hover img, .scenes-item:hover img { transform: scale(1.06); }
.moments-item .g-overlay, .scenes-item .g-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,47,73,.75) 0%, transparent 55%);
  opacity: 0; transition: opacity .35s ease;
  display: flex; align-items: flex-end; padding: 18px;
}
.moments-item:hover .g-overlay, .scenes-item:hover .g-overlay { opacity: 1; }
.moments-item .g-overlay span, .scenes-item .g-overlay span {
  color: white; font-family: var(--font-h); font-weight: 700;
  font-size: .92rem; letter-spacing: .5px;
}
@media (max-width: 900px) {
  .moments-grid { grid-template-columns: repeat(2, 1fr); }
  .scenes-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── THANKS ── */
.thanks-page { min-height: 80vh; display: flex; align-items: center; justify-content: center; background: var(--cream); }
.thanks-box { text-align: center; max-width: 520px; padding: 60px 40px; background: white; border-radius: var(--radius-xl); box-shadow: var(--shadow-l); }
.thanks-icon { font-size: 4rem; margin-bottom: 20px; }
.thanks-box h2 { font-size: 2.5rem; margin-bottom: 14px; }
.thanks-box p { margin-bottom: 28px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .process-line { display: none; }
  .t-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .fstat { padding: 0 24px; }
  .story-grid { grid-template-columns: 1fr; }
  .detail-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .inquiry-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .t-grid { grid-template-columns: 1fr; }
  .detail-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .fstats { gap: 0; }
  .fstat { padding: 12px 20px; }
  .fstat-sep { width: 100%; height: 1px; display: none; }
  .cta-box { padding: 52px 28px; }
  .wa-float span { display: none; }
  .wa-float { padding: 14px; border-radius: 50%; }
  .contact-form-box { padding: 28px; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.7rem; }
}

