/* =========================================
       CSS VARIABLES & RESET
    ========================================= */
:root {
  --black: #080808;
  --deep: #0f0f0f;
  --card-bg: #141414;
  --card-border: #252525;
  --white: #faf9f6;
  --white-dim: #c8c4bc;
  --gold: #c9a84c;
  --gold-light: #e8c96d;
  --gold-pale: #f5e6b8;
  --beige: #f0e8d5;
  --beige-mid: #d4c5a7;
  --text-muted: #7a7368;
  --gradient-gold: linear-gradient(
    135deg,
    #c9a84c 0%,
    #e8c96d 50%,
    #c9a84c 100%
  );
  --gradient-dark: linear-gradient(180deg, #080808 0%, #0f0f0f 100%);
  --shadow-gold: 0 0 30px rgba(201, 168, 76, 0.15);
  --shadow-card: 0 8px 40px rgba(0, 0, 0, 0.5);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
}
ul {
  list-style: none;
}

/* =========================================
       LOADER
    ========================================= */
#loader {
  position: fixed;
  inset: 0;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition:
    opacity 0.8s ease,
    visibility 0.8s ease;
}
#loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-inner {
  text-align: center;
}
.loader-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 300;
  letter-spacing: 0.25em;
  color: var(--gold);
  animation: fadeUp 0.8s ease both;
}
.loader-line {
  width: 0;
  height: 1px;
  background: var(--gradient-gold);
  margin: 18px auto 0;
  animation: expandLine 1.6s ease 0.4s forwards;
}
.loader-sub {
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 12px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.6s forwards;
}
@keyframes expandLine {
  to {
    width: 180px;
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================
       SCROLLBAR
    ========================================= */
::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-track {
  background: var(--deep);
}
::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 2px;
}

/* =========================================
       UTILITY
    ========================================= */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.section {
  padding: 100px 0;
}
.section-tag {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 20px;
}
.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-title span {
  color: var(--gold);
  font-style: italic;
}
.section-subtitle {
  color: var(--white-dim);
  font-size: 1.05rem;
  max-width: 520px;
  line-height: 1.8;
}
.gold-divider {
  width: 60px;
  height: 2px;
  background: var(--gradient-gold);
  margin: 24px 0;
  border-radius: 2px;
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* =========================================
       NAVIGATION
    ========================================= */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.nav-logo span {
  color: var(--gold);
}
.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-links a {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-dim);
  transition: color 0.3s ease;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.nav-links a:hover {
  color: var(--gold);
}
.nav-links a:hover::after {
  transform: scaleX(1);
}
.nav-cta {
  background: var(--gradient-gold);
  color: var(--black) !important;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 600 !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.1em;
}
.nav-cta::after {
  display: none !important;
}
.nav-cta:hover {
  opacity: 0.85;
  color: var(--black) !important;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--white);
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(4.5px, 4.5px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(4.5px, -4.5px);
}
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(8, 8, 8, 0.97);
  backdrop-filter: blur(20px);
  padding: 90px 40px 40px;
  z-index: 999;
  transform: translateY(-100%);
  transition: transform 0.4s ease;
}
.mobile-menu.open {
  transform: translateY(0);
}
.mobile-menu a {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 300;
  padding: 12px 0;
  border-bottom: 1px solid var(--card-border);
  color: var(--white-dim);
  transition: color 0.3s;
}
.mobile-menu a:hover {
  color: var(--gold);
}

/* =========================================
       HERO SECTION
    ========================================= */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 80% 60% at 60% 40%,
      rgba(201, 168, 76, 0.06) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 50% 50% at 10% 80%,
      rgba(201, 168, 76, 0.04) 0%,
      transparent 60%
    ),
    var(--black);
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(
    ellipse 80% 80% at 50% 50%,
    black 0%,
    transparent 100%
  );
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.hero-eyebrow-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.hero-eyebrow-text {
  font-size: 0.68rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 6vw, 5.2rem);
  font-weight: 600;
  line-height: 1.08;
  margin-bottom: 8px;
}
.hero-title-italic {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
  display: block;
}
.hero-typing-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0 28px;
}
.hero-typing-prefix {
  font-size: 1rem;
  color: var(--white-dim);
}
.hero-typing {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--gold);
  min-width: 220px;
}
.cursor {
  display: inline-block;
  width: 2px;
  height: 1.2em;
  background: var(--gold);
  margin-left: 2px;
  animation: blink 1s step-end infinite;
  vertical-align: middle;
}
@keyframes blink {
  50% {
    opacity: 0;
  }
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--white-dim);
  max-width: 460px;
  line-height: 1.85;
  margin-bottom: 40px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--gradient-gold);
  color: var(--black);
  padding: 15px 36px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(201, 168, 76, 0.3);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
}
.hero-stat-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-card-main {
  background: linear-gradient(
    135deg,
    rgba(201, 168, 76, 0.12),
    rgba(201, 168, 76, 0.04)
  );
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 24px;
  padding: 48px 40px;
  backdrop-filter: blur(10px);
  width: 100%;
  max-width: 400px;
  position: relative;
  overflow: hidden;
}
.hero-card-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(201, 168, 76, 0.6),
    transparent
  );
}
.hero-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--black);
  margin: 0 auto 20px;
  position: relative;
}
.hero-avatar::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.3);
  animation: pulseRing 2.5s ease-in-out infinite;
}
@keyframes pulseRing {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}
.hero-card-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 4px;
}
.hero-card-role {
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.hero-card-skills {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.skill-bar-item {
}
.skill-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--white-dim);
  margin-bottom: 6px;
}
.skill-bar-track {
  height: 3px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 2px;
  overflow: hidden;
}
.skill-bar-fill {
  height: 100%;
  background: var(--gradient-gold);
  border-radius: 2px;
  width: 0;
  transition: width 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.hero-float-badges {
  position: absolute;
}
.float-badge {
  background: rgba(14, 14, 14, 0.92);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(12px);
  font-size: 0.78rem;
  white-space: nowrap;
  position: absolute;
}
.float-badge-icon {
  font-size: 1.2rem;
}
.float-badge-text {
  color: var(--white-dim);
}
.float-badge-text strong {
  color: var(--white);
  display: block;
  font-size: 0.82rem;
}
.badge-1 {
  top: -30px;
  right: -30px;
  animation: float1 4s ease-in-out infinite;
}
.badge-2 {
  bottom: -20px;
  left: -20px;
  animation: float2 5s ease-in-out infinite;
}
.badge-3 {
  top: 50%;
  right: -50px;
  transform: translateY(-50%);
  animation: float3 4.5s ease-in-out infinite;
}
@keyframes float1 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes float2 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}
@keyframes float3 {
  0%,
  100% {
    transform: translateY(-50%);
  }
  50% {
    transform: translateY(calc(-50% - 8px));
  }
}

/* =========================================
       ABOUT SECTION
    ========================================= */
#about {
  background: var(--deep);
  position: relative;
  overflow: hidden;
}
#about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(201, 168, 76, 0.2),
    transparent
  );
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-img-frame {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  background: linear-gradient(
    135deg,
    rgba(201, 168, 76, 0.12),
    rgba(201, 168, 76, 0.04)
  );
  border: 1px solid rgba(201, 168, 76, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-monogram {
  font-family: "Cormorant Garamond", serif;
  font-size: 8rem;
  font-weight: 300;
  color: rgba(201, 168, 76, 0.15);
  user-select: none;
  letter-spacing: -0.05em;
}
.about-img-badge {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background: var(--gradient-gold);
  color: var(--black);
  border-radius: 16px;
  padding: 16px 22px;
  text-align: center;
}
.about-img-badge-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}
.about-img-badge-text {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.about-content {
}
.about-bio {
  color: var(--white-dim);
  line-height: 1.9;
  margin-bottom: 16px;
}
.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 32px;
}
.about-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: rgba(201, 168, 76, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: 12px;
  transition: var(--transition);
}
.about-highlight-item:hover {
  background: rgba(201, 168, 76, 0.08);
  border-color: rgba(201, 168, 76, 0.25);
}
.ahi-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}
.ahi-text {
  font-size: 0.82rem;
  color: var(--white-dim);
  line-height: 1.5;
}
.ahi-text strong {
  display: block;
  color: var(--white);
  font-size: 0.85rem;
  margin-bottom: 2px;
}

/* =========================================
       SERVICES SECTION
    ========================================= */
#services {
  background: var(--black);
  position: relative;
}
.services-header {
  text-align: center;
  margin-bottom: 60px;
}
.services-header .section-subtitle {
  margin: 0 auto;
}
.services-header .gold-divider {
  margin: 20px auto;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 168, 76, 0.25);
  box-shadow: var(--shadow-gold), var(--shadow-card);
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(201, 168, 76, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: rgba(201, 168, 76, 0.18);
  transform: scale(1.05);
}
.service-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.service-card-tag {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

/* =========================================
       WHY CHOOSE ME
    ========================================= */
#why {
  background: var(--deep);
  position: relative;
}
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-content {
}
.why-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.why-badge {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-badge::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(201, 168, 76, 0.08) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}
.why-badge:hover {
  border-color: rgba(201, 168, 76, 0.25);
  transform: translateY(-4px);
}
.why-badge:hover::after {
  opacity: 1;
}
.why-badge-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}
.why-badge h4 {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.why-badge p {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.why-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.why-stat {
  text-align: center;
  padding: 24px 16px;
  background: rgba(201, 168, 76, 0.05);
  border-radius: var(--radius);
  border: 1px solid rgba(201, 168, 76, 0.1);
}
.why-stat-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.why-stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 6px;
}

/* =========================================
       TESTIMONIALS
    ========================================= */
#testimonials {
  background: var(--black);
}
.testi-header {
  text-align: center;
  margin-bottom: 60px;
}
.testi-header .gold-divider {
  margin: 20px auto;
}
.testi-header .section-subtitle {
  margin: 0 auto;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  transition: var(--transition);
}
.testi-card:hover {
  border-color: rgba(201, 168, 76, 0.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.testi-quote-icon {
  font-family: "Cormorant Garamond", serif;
  font-size: 5rem;
  line-height: 0.5;
  color: rgba(201, 168, 76, 0.2);
  margin-bottom: 16px;
  display: block;
}
.testi-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testi-text {
  font-size: 0.9rem;
  color: var(--white-dim);
  line-height: 1.85;
  margin-bottom: 24px;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  flex-shrink: 0;
}
.testi-name {
  font-weight: 600;
  font-size: 0.88rem;
}
.testi-role {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* =========================================
       PORTFOLIO / EXPERIENCE
    ========================================= */
#portfolio {
  background: var(--deep);
}
.portfolio-header {
  margin-bottom: 60px;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.portfolio-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  cursor: default;
}
.portfolio-card:hover {
  border-color: rgba(201, 168, 76, 0.25);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.portfolio-card-top {
  padding: 32px 28px 24px;
  border-bottom: 1px solid var(--card-border);
}
.portfolio-card-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}
.portfolio-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.portfolio-card p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.portfolio-card-bottom {
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.portfolio-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.portfolio-tag {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.15);
  padding: 4px 12px;
  border-radius: 20px;
}
.portfolio-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.06), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.portfolio-card:hover .portfolio-card-overlay {
  opacity: 1;
}

/* =========================================
       EXPERIENCE TIMELINE
    ========================================= */
#experience {
  background: var(--black);
}
.exp-header {
  margin-bottom: 60px;
}
.exp-timeline {
  position: relative;
  padding-left: 40px;
}
.exp-timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, var(--gold), rgba(201, 168, 76, 0.1));
}
.exp-item {
  position: relative;
  padding: 0 0 48px 40px;
}
.exp-item:last-child {
  padding-bottom: 0;
}
.exp-dot {
  position: absolute;
  left: -40px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--black);
  box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.15);
}
.exp-date {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.exp-company {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.exp-role {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.exp-points {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.exp-point {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.84rem;
  color: var(--white-dim);
  line-height: 1.6;
}
.exp-point::before {
  content: "◆";
  color: var(--gold);
  font-size: 0.5rem;
  flex-shrink: 0;
  margin-top: 6px;
}

/* =========================================
       FAQ SECTION
    ========================================= */
#faq {
  background: var(--deep);
}
.faq-header {
  text-align: center;
  margin-bottom: 60px;
}
.faq-header .gold-divider {
  margin: 20px auto;
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}
.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.faq-item.open {
  border-color: rgba(201, 168, 76, 0.25);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: left;
  padding: 22px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: color 0.3s ease;
}
.faq-question:hover {
  color: var(--gold);
}
.faq-item.open .faq-question {
  color: var(--gold);
}
.faq-chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  background: rgba(201, 168, 76, 0.2);
}
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition:
    max-height 0.4s ease,
    padding 0.3s ease;
}
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.faq-item.open .faq-answer {
  max-height: 200px;
}

/* =========================================
       BOOKING CTA SECTION
    ========================================= */
#booking {
  background: var(--black);
  position: relative;
  overflow: hidden;
}
#booking::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 80% at 50% 50%,
    rgba(201, 168, 76, 0.06) 0%,
    transparent 70%
  );
}
.booking-inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.booking-inner .section-title {
  margin-bottom: 20px;
}
.booking-inner .section-subtitle {
  margin: 0 auto 40px;
}
.booking-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.booking-note {
  margin-top: 20px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* =========================================
       CONTACT SECTION
    ========================================= */
#contact {
  background: var(--deep);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.contact-info {
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(201, 168, 76, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.contact-item-value {
  font-size: 0.9rem;
  color: var(--white);
}
.contact-socials {
  display: flex;
  gap: 12px;
  margin-top: 36px;
}
.social-icon {
  width: 44px;
  height: 44px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
  cursor: pointer;
}
.social-icon:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-3px);
}
.whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 24px;
  transition: var(--transition);
  width: fit-content;
}
.whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.25);
}
.contact-form {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 40px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  padding: 14px 16px;
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s ease;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: rgba(201, 168, 76, 0.4);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-submit {
  width: 100%;
  background: var(--gradient-gold);
  color: var(--black);
  padding: 16px;
  border: none;
  border-radius: 50px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 8px;
}
.form-submit:hover {
  opacity: 0.88;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(201, 168, 76, 0.25);
}
.form-success {
  display: none;
  text-align: center;
  padding: 20px;
  color: var(--gold);
  font-size: 0.9rem;
}

/* =========================================
       FOOTER
    ========================================= */
footer {
  background: #050505;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  padding: 60px 0 30px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 30px;
}
.footer-brand {
}
.footer-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 16px;
}
.footer-logo span {
  color: var(--gold);
}
.footer-tagline {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 260px;
}
.footer-col h4 {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  font-size: 0.83rem;
  color: var(--text-muted);
  transition: color 0.3s ease;
}
.footer-links a:hover {
  color: var(--white);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copy {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.footer-copy span {
  color: var(--gold);
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.back-to-top {
  width: 44px;
  height: 44px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1rem;
}
.back-to-top:hover {
  background: rgba(201, 168, 76, 0.2);
  transform: translateY(-3px);
}

/* =========================================
       RESPONSIVE
    ========================================= */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-inner {
    gap: 40px;
  }
  .about-inner {
    gap: 48px;
  }
  .why-inner {
    gap: 48px;
  }
  .contact-inner {
    gap: 48px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .mobile-menu {
    display: flex;
  }
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    display: none;
  }
  .about-inner {
    grid-template-columns: 1fr;
  }
  .about-visual {
    display: none;
  }
  .why-inner {
    grid-template-columns: 1fr;
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .contact-inner {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .hero-stats {
    gap: 24px;
  }
  .why-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .section {
    padding: 70px 0;
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .about-highlights {
    grid-template-columns: 1fr;
  }
  .why-badges {
    grid-template-columns: 1fr;
  }
  .why-stats {
    grid-template-columns: 1fr;
  }
  .hero-ctas {
    flex-direction: column;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}
