/* ============================================================
   FALCON GÜMRÜK MÜŞAVİRLİĞİ — Kurumsal Web Sitesi
   Premium Corporate Design System
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --black:       #1a1a1a;
  --black-2:     #0c0c0c;
  --gold:        #B08D57;
  --gold-2:      #d5b36d;
  --gold-light:  #e8c97a;
  --burgundy:    #7A1F2B;
  --burgundy-2:  #8f2232;
  --cream:       #F6F2EA;
  --white:       #FFFFFF;
  --off-white:   #faf8f3;
  --muted:       #6d6a64;
  --text-light:  #4c4741;
  --line:        rgba(176, 141, 87, .35);
  --line-dark:   rgba(176, 141, 87, .22);
  --shadow:      0 24px 55px rgba(20, 15, 10, .14);
  --shadow-lg:   0 32px 64px rgba(20, 15, 10, .2);
  --serif:       'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans:        'Inter', Arial, sans-serif;
  --radius:      2px;
  --radius-lg:   4px;
  --transition:  .28s cubic-bezier(.4, 0, .2, 1);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  background: var(--cream);
  color: var(--black);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; transition: color var(--transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  width: min(1200px, 90vw);
  margin-inline: auto;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.12;
}
.eyebrow {
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: .14em;
  font-size: .78rem;
  margin-bottom: 12px;
}
.section-title {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 50px;
}
.section-title h2 {
  font-size: clamp(2rem, 3.6vw, 3.4rem);
  color: var(--black);
  margin-bottom: 0;
}
.section-title h2 span { color: var(--gold); }
.section-title .ornament { margin: 16px auto 0; }

.ornament {
  width: 150px;
  height: 22px;
  margin: 18px 0 22px;
  position: relative;
  background: radial-gradient(circle at center, var(--gold) 0 4px, transparent 4px);
}
.ornament::before,
.ornament::after {
  content: "";
  position: absolute;
  top: 50%;
  height: 1px;
  background: var(--gold);
  width: 60px;
}
.ornament::before { left: 0; }
.ornament::after  { right: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 28px;
  border-radius: var(--radius);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .78rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  font-family: var(--sans);
}
.btn span { font-size: 1.1rem; transition: transform var(--transition); }
.btn:hover span { transform: translateX(3px); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold), #d0a962);
  color: #fff;
  box-shadow: 0 10px 24px rgba(176, 141, 87, .22);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(176, 141, 87, .3);
}

.btn-gold-light {
  background: var(--gold-2);
  color: var(--black);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
}
.btn-gold-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, .22);
}

.btn-outline {
  border: 1px solid var(--line);
  color: var(--black);
  background: rgba(255, 255, 255, .5);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, .8);
  border-color: var(--gold);
}

.btn-outline-dark {
  border: 1px solid rgba(255, 255, 255, .35);
  color: #fff;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(4px);
}
.btn-outline-dark:hover {
  background: rgba(255, 255, 255, .16);
  border-color: var(--gold-2);
}

.btn-full { width: 100%; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: linear-gradient(180deg, rgba(10, 10, 10, .95), rgba(8, 8, 8, .88));
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(176, 141, 87, .2);
  transition: background var(--transition);
}
.site-header.scrolled {
  background: rgba(10, 10, 10, .98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, .3);
}
.nav-wrap {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 78px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  flex-shrink: 0;
}
.brand img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}
.brand-text strong {
  display: block;
  color: var(--gold-2);
  font-family: var(--serif);
  font-size: 1.3rem;
  letter-spacing: .07em;
  line-height: 1.1;
}
.brand-text small {
  display: block;
  color: #e8e2d6;
  text-transform: uppercase;
  font-size: .64rem;
  letter-spacing: .07em;
  margin-top: -2px;
}
.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav a {
  color: #d6d0c8;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
  position: relative;
  padding: 6px 0;
}
.nav a:hover,
.nav a.active {
  color: var(--gold-2);
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav a:hover::after,
.nav a.active::after {
  transform: scaleX(1);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 1px solid var(--line);
  padding: 8px 10px;
  border-radius: var(--radius);
  cursor: pointer;
  z-index: 101;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold);
  transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.btn-header { flex-shrink: 0; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: saturate(.85);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 6, 4, .85) 0%,
    rgba(15, 12, 8, .65) 40%,
    rgba(8, 6, 4, .78) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 0 80px;
  max-width: 800px;
}
.hero-logo { margin-bottom: 24px; }
.hero-logo img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, .4));
}
.hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  color: #fff;
  margin: 0 0 8px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, .4);
}
.hero h1 span { color: var(--gold-2); }
.hero .eyebrow {
  color: var(--gold-light);
  font-size: .8rem;
}
.hero .lead {
  font-size: 1.05rem;
  max-width: 620px;
  color: #ddd8cf;
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, .4);
  border-radius: 12px;
  position: relative;
}
.hero-scroll span::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--gold-2);
  border-radius: 2px;
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { top: 8px; opacity: .6; }
  50% { top: 16px; opacity: 1; }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  position: relative;
  padding: 80px 0 88px;
  background: #fff;
  overflow: hidden;
}
.services-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: .06;
}
.services-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.services-grid {
  position: relative;
  z-index: 1;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card {
  background: #fff;
  border: 1px solid rgba(176, 141, 87, .22);
  padding: 34px 26px 28px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(50, 35, 15, .04);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: var(--radius-lg);
  min-height: 260px;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(176, 141, 87, .5);
}
.service-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
}
.service-card h3 {
  font-family: var(--serif);
  font-size: 1.08rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 10px;
  color: var(--black);
}
.service-card p {
  font-size: .88rem;
  color: var(--text-light);
  margin-bottom: 18px;
  line-height: 1.55;
}
.service-card a {
  margin-top: auto;
  color: var(--burgundy);
  text-transform: uppercase;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .07em;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.service-card a span { font-size: .9rem; }
.service-card a:hover { color: var(--gold); }

/* ============================================================
   ABOUT / KURUMSAL
   ============================================================ */
.about {
  padding: 88px 0 96px;
  background: radial-gradient(circle at 20% 10%, #fff 0, #f8f5ee 38%, #f4eee4 100%);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center 30%;
}
.about-badge {
  position: absolute;
  bottom: 24px;
  right: -16px;
  background: linear-gradient(135deg, var(--burgundy), var(--burgundy-2));
  color: #fff;
  padding: 16px 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 8px 24px rgba(122, 31, 43, .3);
}
.about-badge strong {
  display: block;
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
}
.about-badge span {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.about-image-secondary {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 180px;
  height: 130px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 3px solid #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
  z-index: 2;
}
.about-image-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.about h2 {
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  margin-bottom: 6px;
}
.about h2 span { color: var(--gold); }
.about-lead {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 14px;
  line-height: 1.6;
}
.about-detail {
  font-size: .92rem;
  color: var(--muted);
  margin-bottom: 24px;
}
.about-features {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}
.about-features li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.about-features li [data-icon] {
  flex-shrink: 0;
  margin-top: 3px;
}
.about-features li div strong {
  display: block;
  font-size: .95rem;
  font-weight: 600;
  color: var(--black);
}
.about-features li div span {
  font-size: .84rem;
  color: var(--text-light);
}

/* ============================================================
   STATS
   ============================================================ */
.stats {
  position: relative;
  background: linear-gradient(135deg, #101010, #1a1510, #0d0d0d);
  padding: 44px 0;
  border-top: 1px solid rgba(176, 141, 87, .25);
  border-bottom: 1px solid rgba(176, 141, 87, .25);
  overflow: hidden;
}
.stats-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: .12;
}
.stats-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.stats .container { position: relative; z-index: 1; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 24px;
}
.stat-item i { flex-shrink: 0; }
.stat-item strong {
  font-family: var(--serif);
  font-size: 2.4rem;
  color: var(--gold-2);
  line-height: 1;
  min-width: 80px;
}
.stat-item span {
  color: #f0ebe0;
  text-transform: uppercase;
  font-size: .74rem;
  letter-spacing: .08em;
  font-weight: 500;
}

/* ============================================================
   EXPERTISE
   ============================================================ */
.expertise {
  position: relative;
  padding: 88px 0;
  overflow: hidden;
}
.expertise-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: .07;
}
.expertise-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.expertise-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 72px;
  align-items: start;
}
.expertise-intro p:not(.eyebrow) {
  color: var(--text-light);
  margin-bottom: 28px;
  font-size: .98rem;
}
.expertise h2 {
  font-size: clamp(2rem, 4.2vw, 3.6rem);
  margin-bottom: 18px;
}
.expertise h2 span { color: var(--gold); }
.expertise-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 36px;
}
.expertise-list article {
  display: flex;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.expertise-list h3 {
  margin: 0 0 6px;
  font-family: var(--serif);
  font-size: 1.1rem;
}
.expertise-list p {
  margin: 0;
  color: var(--text-light);
  font-size: .9rem;
}

/* ============================================================
   CASE STUDIES
   ============================================================ */
.cases {
  padding: 84px 0;
  background: #fff;
}
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.case-card {
  background: #fff;
  border: 1px solid rgba(176, 141, 87, .2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 6px 22px rgba(40, 30, 20, .05);
  transition: all var(--transition);
}
.case-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.case-img-wrap {
  width: 100%;
  height: 210px;
  overflow: hidden;
}
.case-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.case-card:hover .case-img-wrap img {
  transform: scale(1.05);
}
.case-body {
  padding: 22px 22px 26px;
}
.case-tag {
  display: inline-block;
  background: rgba(176, 141, 87, .12);
  color: var(--gold);
  font-size: .68rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 12px;
}
.case-body h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  text-transform: uppercase;
  margin-bottom: 10px;
  line-height: 1.25;
}
.case-body p {
  font-size: .86rem;
  color: var(--text-light);
  margin-bottom: 18px;
}
.case-body a {
  color: var(--burgundy);
  text-transform: uppercase;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .07em;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.case-body a span { font-size: .9rem; }
.case-body a:hover { color: var(--gold); }

/* ============================================================
   CONTACT / İLETİŞİM
   ============================================================ */
.contact {
  position: relative;
  padding: 84px 0 96px;
  overflow: hidden;
}
.contact-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: .08;
}
.contact-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-sub {
  color: var(--text-light);
  margin-top: 10px;
  font-size: .96rem;
}
.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 56px;
  margin-top: 48px;
}
.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 24px;
}
.contact-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  background: rgba(255, 255, 255, .7);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.contact-card:hover {
  background: #fff;
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(176, 141, 87, .1);
}
.contact-card [data-icon] { flex-shrink: 0; }
.contact-card h4 {
  font-family: var(--sans);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gold);
  margin-bottom: 3px;
  font-weight: 700;
}
.contact-card a,
.contact-card span {
  font-size: .88rem;
  color: var(--black);
}
.contact-second-phone {
  display: block;
  margin-top: 2px;
  font-size: .82rem !important;
  color: var(--muted) !important;
}
.contact-card a:hover { color: var(--gold); }
.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

/* Contact CTA (replaced form) */
.contact-form-wrap {
  background: #fff;
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-form-wrap h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  margin-bottom: 4px;
}
.contact-form-wrap > p {
  color: var(--text-light);
  font-size: .9rem;
  margin-bottom: 24px;
}
.contact-cta-block {
  text-align: center;
  padding: 10px 0;
}
.btn-large {
  min-height: 58px;
  font-size: 1.05rem;
  padding: 0 32px;
  gap: 14px;
  border-radius: var(--radius-lg);
}
.btn-large svg {
  flex-shrink: 0;
}
.contact-cta-sub {
  color: var(--muted);
  font-size: .84rem;
  margin: 18px 0 20px;
}
.contact-cta-emails {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  padding: 16px 20px;
  background: var(--off-white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.contact-cta-emails a {
  font-size: .88rem;
  color: var(--text-light);
  transition: color var(--transition);
}
.contact-cta-emails a strong {
  color: var(--black);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-right: 6px;
}
.contact-cta-emails a:hover { color: var(--gold); }

/* Remove old form styles — keep only base input styles if needed elsewhere */
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d8d4ca;
  border-radius: var(--radius);
  background: var(--off-white);
  font-family: var(--sans);
  font-size: .9rem;
  color: var(--black);
  transition: all var(--transition);
  outline: none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(176, 141, 87, .1);
  background: #fff;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: linear-gradient(135deg, var(--burgundy), var(--burgundy-2) 55%, #6b1726);
  color: #fff;
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -30%;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 50%;
  box-shadow: inset 0 0 0 50px rgba(255, 255, 255, .02);
}
.cta-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 90px .6fr 1fr auto;
  gap: 28px;
  align-items: center;
}
.cta-icon {
  width: 80px;
  height: 80px;
  border: 1px solid rgba(213, 179, 109, .7);
  display: grid;
  place-items: center;
  border-radius: 50%;
}
.cta-band h2 {
  font-size: 2.2rem;
  text-transform: uppercase;
  color: var(--gold-2);
  margin: 0;
}
.cta-eyebrow { color: rgba(255, 255, 255, .7) !important; }
.cta-band p {
  color: #f5efe3;
  font-size: .94rem;
  margin: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: linear-gradient(180deg, #111, #0a0a0a);
  color: #e0dbd2;
  padding: 60px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 48px;
}
.footer-brand img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}
.footer-brand-col > p {
  font-size: .9rem;
  color: #b0a99e;
  margin: 18px 0;
  max-width: 280px;
  line-height: 1.6;
}
.socials {
  display: flex;
  gap: 10px;
}
.socials a {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: .74rem;
  font-weight: 700;
  transition: all var(--transition);
}
.socials a:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.site-footer h3 {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .82rem;
  font-family: var(--sans);
  font-weight: 700;
  margin-bottom: 16px;
}
.site-footer a {
  display: block;
  color: #c4bcb0;
  font-size: .88rem;
  margin: 8px 0;
  transition: color var(--transition);
}
.site-footer a:hover { color: var(--gold-2); }
.footer-hours {
  font-size: .84rem;
  color: #8a8378;
  margin-top: 12px;
}
.footer-bottom {
  border-top: 1px solid var(--line-dark);
  margin-top: 50px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: #807a72;
  font-size: .76rem;
}
.footer-bottom span:last-child {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
}
.footer-bottom a {
  color: #807a72;
  transition: color var(--transition);
}
.footer-bottom a:hover { color: var(--gold-2); }

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 99;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .35);
  transition: all var(--transition);
  animation: whatsappFloat 3s ease-in-out infinite;
}
.whatsapp-btn svg {
  width: 28px;
  height: 28px;
}
.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(37, 211, 102, .45);
}
@keyframes whatsappFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ============================================================
   SVG ICON SYSTEM
   ============================================================ */
[data-icon] {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  color: var(--gold);
  background: transparent;
}
.service-icon [data-icon] { width: 58px; height: 58px; }
.expertise-list [data-icon] { flex: 0 0 42px; }
.stats [data-icon] { color: var(--gold-2); }
[data-icon] svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s cubic-bezier(.4, 0, .2, 1),
              transform .7s cubic-bezier(.4, 0, .2, 1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }

/* ============================================================
   RESPONSIVE — Tablet (max-width: 1024px)
   ============================================================ */
@media (max-width: 1080px) {
  .nav {
    position: fixed;
    inset: 78px 0 auto;
    background: rgba(10, 10, 10, .98);
    backdrop-filter: blur(16px);
    display: none;
    flex-direction: column;
    padding: 28px 32px;
    gap: 16px;
    border-bottom: 1px solid var(--line-dark);
  }
  .nav.open { display: flex; }
  .nav-toggle { display: flex; margin-left: auto; }
  .btn-header { display: none; }

  .hero-content { padding-top: 120px; }
  .hero h1 { font-size: clamp(2.2rem, 5vw, 3rem); }

  .card-grid { grid-template-columns: repeat(2, 1fr); }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-image img { height: 380px; }
  .about-badge { right: 0; bottom: 16px; }
  .about-image-secondary {
    width: 140px;
    height: 100px;
    bottom: -10px;
    left: -10px;
  }

  .expertise-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .expertise-list { grid-template-columns: 1fr 1fr; }

  .case-grid { grid-template-columns: repeat(2, 1fr); }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cta-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 18px;
  }
  .cta-icon { margin: 0 auto; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer-brand-col { grid-column: 1 / -1; }
  .footer-bottom { flex-wrap: wrap; }
  .footer-bottom span:last-child { flex-shrink: 1; }
}

/* ============================================================
   RESPONSIVE — Mobile (max-width: 640px)
   ============================================================ */
@media (max-width: 640px) {
  .nav-wrap { height: 68px; }
  .brand img { width: 40px; height: 40px; }
  .brand-text strong { font-size: 1rem; }
  .brand-text small { font-size: .56rem; }

  .hero { min-height: auto; }
  .hero-content { padding: 110px 0 60px; }
  .hero-logo img { width: 80px; height: 80px; }
  .hero h1 { font-size: 1.9rem; }
  .hero .lead { font-size: .9rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .card-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }

  .about-image img { height: 280px; }
  .about-image-secondary {
    position: relative;
    width: 100%;
    height: 140px;
    bottom: auto;
    left: auto;
    margin-top: 12px;
    border-radius: var(--radius-lg);
    border: 2px solid #fff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .12);
  }
  .about-image-secondary img {
    object-position: center 30%;
  }
  .about-badge {
    right: 0;
    bottom: 10px;
    padding: 10px 16px;
  }
  .about-badge strong { font-size: 1.4rem; }
  .about-features li { flex-direction: column; gap: 8px; }

  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { flex-direction: column; text-align: center; gap: 6px; padding: 14px 8px; }
  .stat-item strong { min-width: auto; font-size: 1.8rem; }

  .expertise-list { grid-template-columns: 1fr; }

  .case-grid { grid-template-columns: 1fr; }
  .case-img-wrap { height: 180px; }

  .contact-cards { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
  .footer-bottom span:last-child { flex-shrink: 1; }

  .whatsapp-btn {
    width: 48px;
    height: 48px;
    bottom: 20px;
    right: 16px;
  }
  .whatsapp-btn svg { width: 24px; height: 24px; }

  .section-title h2 { font-size: 1.6rem; }
  .services { padding: 56px 0; }
  .about { padding: 56px 0; }
  .expertise { padding: 56px 0; }
  .cases { padding: 56px 0; }
  .contact { padding: 56px 0; }
}
