/*
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=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600&display=swap');

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

:root {
  --white:        #FFFFFF;
  --cream:        #F8F6F1;
  --cream-dark:   #F0EDE5;
  --dark:         #0D0D0D;
  --orange:       #FF4713;
  --orange-h:     #E03A0C;
  --orange-light: #FFF1EC;
  --teal:         #00C9AB;
  --teal-light:   #E6FAF7;
  --yellow:       #FFE135;
  --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:       'Space Grotesk', sans-serif;
  --font-b:       'Inter', 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); font-weight: 700; line-height: 1.15; }
h1 { font-size: clamp(2.6rem, 5.5vw, 4.8rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.15rem; }
p  { line-height: 1.75; color: var(--text-mid); }

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

.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(255,71,19,.35); }
.btn-primary:hover { background: var(--orange-h); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(255,71,19,.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: 22px 0; transition: all .35s ease;
}
.navbar.scrolled {
  background: rgba(255,255,255,.96); backdrop-filter: blur(12px);
  padding: 14px 0; box-shadow: 0 2px 24px rgba(0,0,0,.08);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo img { height: 44px; width: auto; }
.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: 12px; }
.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-blob { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; }
.hero-blob-1 { width: 700px; height: 700px; background: rgba(255,71,19,.09); top: -150px; right: -150px; }
.hero-blob-2 { width: 500px; height: 500px; background: rgba(0,201,171,.08); bottom: -100px; left: -100px; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.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(--dark); 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 { position: absolute; top: 44px; left: calc(12.5% + 44px); right: calc(12.5% + 44px); height: 2px; background: linear-gradient(90deg, var(--orange), var(--teal)); }
.process-step { text-align: center; padding: 16px 12px; }
.step-num { width: 88px; height: 88px; border-radius: 50%; background: var(--orange); color: white; font-family: var(--font-h); font-size: 1.6rem; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; position: relative; z-index: 1; transition: all .4s; }
.process-step:nth-child(2) .step-num { background: #FF7043; }
.process-step:nth-child(3) .step-num { background: var(--teal); }
.process-step:nth-child(4) .step-num { background: #00D4C0; }
.process-step:hover .step-num { transform: scale(1.12); box-shadow: 0 0 0 8px rgba(255,71,19,.2); }
.process-step h4 { color: white; margin-bottom: 8px; font-size: 1.05rem; }
.process-step p { font-size: .88rem; color: rgba(255,255,255,.55); }

/* ── 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-overflow { overflow: hidden; margin-top: 36px; }
.clients-track { display: flex; width: max-content; animation: ticker-anim 22s linear infinite; }
.clients-track:hover { animation-play-state: paused; }
.c-logo { flex-shrink: 0; padding: 0 40px; font-family: var(--font-h); font-weight: 700; font-size: 1.05rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; transition: color .3s; white-space: nowrap; }
.c-logo:hover { color: var(--text); }

/* ── INQUIRY FORM ── */
.inquiry-section { background: linear-gradient(135deg, var(--orange) 0%, #FF6B35 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(255,71,19,.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(255,71,19,.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 0 90px; text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at top center, rgba(255,71,19,.18) 0%, transparent 65%); }
.page-hero > * { position: relative; z-index: 1; }
.page-hero h1 { color: white; margin-bottom: 14px; }
.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: 20px; font-size: .85rem; color: rgba(255,255,255,.45); }
.breadcrumb a { color: rgba(255,255,255,.65); transition: color .3s; }
.breadcrumb a:hover { color: var(--orange); }

/* ── 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 h3 { margin: 16px 0 10px; }
.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; }

/* ── 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 { background: var(--dark); color: white; padding: 64px 0 28px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.1); 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,.55); font-size: .9rem; max-width: 270px; margin-bottom: 22px; }
.socials { display: flex; gap: 10px; }
.soc-link { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; font-size: .9rem; color: white; transition: all .3s; }
.soc-link:hover { background: var(--orange); transform: translateY(-2px); }
.footer-col h5 { color: white; font-size: .8rem; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,.55); font-size: .9rem; transition: color .3s; }
.footer-links a:hover { color: var(--orange); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .83rem; color: rgba(255,255,255,.35); }
.footer-bottom a { color: rgba(255,255,255,.55); transition: color .3s; }
.footer-bottom a:hover { color: var(--orange); }

/* ── 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; }

/* ── 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; }
  .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; }
  .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; }
}
