/* ============================================
   SWYFT DESK — Premium Corporate Theme
   Black & White + Gold Accent
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  --black: #0a0a0a;
  --black-light: #1a1a1a;
  --black-soft: #2a2a2a;
  --white: #ffffff;
  --off-white: #f7f7f7;
  --gray-100: #f0f0f0;
  --gray-200: #e0e0e0;
  --gray-300: #c0c0c0;
  --gray-400: #999999;
  --gray-500: #777777;
  --gray-600: #555555;
  --gray-700: #333333;
  --gold: #c9a96e;
  --gold-light: #d4b87a;
  --gold-dark: #b8944f;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
  --shadow-gold: 0 4px 20px rgba(201,169,110,0.25);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--black);
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.6rem); }

p {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.8;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: inline-block;
}

.section-title {
  margin-bottom: 20px;
}

.section-desc {
  max-width: 600px;
  margin: 0 auto 50px;
  color: var(--gray-500);
}

.text-center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: 0.5s;
}

.btn:hover::after {
  left: 100%;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--black-soft);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-arrow {
  transition: transform 0.3s;
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 45px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: var(--transition);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 24px;
  background: var(--gold);
  color: var(--black) !important;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.8rem;
  transition: var(--transition);
}

.nav-cta::after { display: none; }

.nav-cta:hover {
  background: var(--gold-light) !important;
  color: var(--black) !important;
  transform: translateY(-1px);
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.nav-toggle span {
  width: 28px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201,169,110,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(201,169,110,0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 80%, rgba(255,255,255,0.03) 0%, transparent 50%);
  z-index: 1;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.8) 100%);
  z-index: 2;
}

/* Animated mesh grid */
.hero-mesh {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,169,110,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,169,110,0.05) 1px, transparent 1px);
  background-size: 80px 80px;
  animation: meshMove 20s linear infinite;
  z-index: 1;
}

@keyframes meshMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(80px, 80px); }
}

/* Floating orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
}

.hero-orb-1 {
  width: 500px;
  height: 500px;
  background: rgba(201,169,110,0.07);
  top: -10%;
  right: -5%;
  animation: orbFloat 15s ease-in-out infinite;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.03);
  bottom: -10%;
  left: -5%;
  animation: orbFloat 20s ease-in-out infinite reverse;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 860px;
  padding: 0 24px;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.3s forwards;
}

.hero-label::before,
.hero-label::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s 0.5s forwards;
}

.hero h1 span {
  color: var(--gold);
}

.hero-desc {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.6);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.8;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s 0.7s forwards;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s 0.9s forwards;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 0.8s 1.2s forwards;
}

.hero-scroll span {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.3; transform: scaleY(0.5); }
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
  padding: 120px 0;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 20px;
}

.service-card {
  padding: 45px 35px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-slow);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--off-white);
  margin-bottom: 24px;
  transition: var(--transition);
}

.service-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.service-card:hover .service-icon {
  background: var(--black);
}

.service-card:hover .service-icon svg {
  stroke: var(--gold);
}

.service-card h3 {
  margin-bottom: 14px;
  font-size: 1.25rem;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.7;
}

.service-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-card .card-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s;
}

.service-card:hover .card-link svg {
  transform: translateX(4px);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  padding: 120px 0;
  background: var(--off-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image-wrapper {
  position: relative;
  overflow: hidden;
}

.about-image-wrapper img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.6s;
}

.about-image-wrapper:hover img {
  transform: scale(1.03);
}

.about-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  border: 2px solid var(--gold);
  z-index: -1;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--gray-200);
}

.stat h4 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
}

.stat p {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-top: 4px;
}

.about-content .section-label { margin-bottom: 16px; }

.about-content h2 { margin-bottom: 24px; }

.about-content > p {
  margin-bottom: 20px;
}

.about-content .btn {
  margin-top: 16px;
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-us {
  padding: 120px 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: radial-gradient(ellipse at center right, rgba(201,169,110,0.06), transparent 70%);
}

.why-us .section-label { color: var(--gold); }
.why-us .section-title { color: var(--white); }
.why-us .section-desc { color: var(--gray-400); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
  z-index: 2;
}

.why-card {
  text-align: center;
  padding: 40px 24px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}

.why-card:hover {
  border-color: rgba(201,169,110,0.3);
  background: rgba(255,255,255,0.02);
  transform: translateY(-4px);
}

.why-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: 50%;
}

.why-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.why-card h3 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--gray-400);
  line-height: 1.7;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: 120px 0;
  background: var(--white);
}

.testimonial-slider {
  display: flex;
  gap: 30px;
  margin-top: 20px;
  overflow: hidden;
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 20px);
  padding: 45px 35px;
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.testimonial-quote {
  font-size: 3rem;
  color: var(--gold);
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: 16px;
}

.testimonial-card > p {
  font-size: 1rem;
  font-style: italic;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-200);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  background: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
}

.testimonial-author h4 {
  font-size: 0.95rem;
  font-family: var(--font-body);
  font-weight: 600;
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--gray-400);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta {
  padding: 100px 0;
  background: var(--gold);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(0,0,0,0.1) 0%, transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(0,0,0,0.1) 0%, transparent 50%);
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta h2 {
  color: var(--black);
  margin-bottom: 16px;
}

.cta p {
  color: rgba(10,10,10,0.7);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto 36px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--black);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand img {
  height: 40px;
  filter: brightness(0) invert(1);
  margin-bottom: 20px;
}

.footer-brand p {
  color: var(--gray-400);
  font-size: 0.9rem;
  line-height: 1.8;
  max-width: 320px;
}

.footer-col h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.footer-col a {
  display: block;
  color: var(--gray-400);
  font-size: 0.9rem;
  padding: 6px 0;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--gold);
  padding-left: 6px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--gray-500);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: var(--gray-500);
}

.footer-bottom-links a:hover {
  color: var(--gold);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 50px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .testimonial-card { flex: 0 0 calc(50% - 15px); }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--black);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    transition: var(--transition-slow);
    box-shadow: -10px 0 30px rgba(0,0,0,0.3);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    font-size: 1rem;
  }

  .nav-toggle {
    display: flex;
  }

  .hero h1 { font-size: 2.4rem; }
  .hero-desc { font-size: 1rem; }
  .hero-buttons { flex-direction: column; }

  .services-grid { grid-template-columns: 1fr; }

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

  .about-image-wrapper img { height: 350px; }
  .about-image-accent { display: none; }
  .about-stats { flex-direction: column; gap: 24px; }

  .why-grid { grid-template-columns: 1fr; }

  .testimonial-slider { flex-direction: column; }
  .testimonial-card { flex: none; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .btn { padding: 14px 28px; font-size: 0.8rem; }
  .container { padding: 0 16px; }
  .services, .about, .why-us, .testimonials { padding: 80px 0; }
}

/* ============================================
   INNER PAGE STYLES
   ============================================ */

/* ---------- Page Hero Banner ---------- */
.page-hero {
  padding: 180px 0 100px;
  background: var(--black);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(201,169,110,0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 30%, rgba(201,169,110,0.04) 0%, transparent 50%);
}

.page-hero .container { position: relative; z-index: 2; }

.page-hero .section-label { color: var(--gold); margin-bottom: 16px; }

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  margin-bottom: 20px;
}

.page-hero p {
  color: var(--gray-400);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
  font-size: 0.85rem;
}

.breadcrumb a {
  color: var(--gray-400);
}

.breadcrumb a:hover { color: var(--gold); }

.breadcrumb span { color: var(--gray-500); }

.breadcrumb .current { color: var(--gold); }

/* ---------- Content Section ---------- */
.content-section {
  padding: 100px 0;
}

.content-section.alt-bg {
  background: var(--off-white);
}

.content-section.dark-bg {
  background: var(--black);
}

.content-section.dark-bg h2,
.content-section.dark-bg h3 { color: var(--white); }

.content-section.dark-bg p { color: var(--gray-400); }

/* ---------- Two Column Layout ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

.two-col img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

/* ---------- Feature List ---------- */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 30px;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-item .icon-circle {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(201,169,110,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-item .icon-circle svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
}

.feature-item h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.feature-item p {
  font-size: 0.9rem;
  color: var(--gray-500);
}

/* ---------- Team Grid ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.team-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.team-card-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: top;
}

.team-card-info {
  padding: 28px;
  text-align: center;
}

.team-card-info h3 {
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.team-card-info span {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 500;
}

.team-card-info p {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-top: 12px;
}

/* ---------- Profile Page ---------- */
.profile-section {
  padding: 100px 0;
}

.profile-grid {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 60px;
  align-items: start;
}

.profile-image {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border: 4px solid var(--gray-200);
}

.profile-content h2 {
  margin-bottom: 8px;
}

.profile-content .role {
  color: var(--gold);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 24px;
  display: block;
}

.profile-content p {
  margin-bottom: 16px;
}

/* ---------- Cards Grid (generic) ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.info-card {
  padding: 40px 32px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.info-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.info-card .card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--off-white);
  margin-bottom: 20px;
}

.info-card .card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.info-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.info-card p {
  font-size: 0.92rem;
  color: var(--gray-500);
  line-height: 1.7;
}

.info-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.info-card .card-link svg {
  width: 16px; height: 16px;
  transition: transform 0.3s;
}

.info-card:hover .card-link svg {
  transform: translateX(4px);
}

/* ---------- Blog / Article Styles ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.blog-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-card-body {
  padding: 28px;
}

.blog-card-meta {
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-card-body h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-card-body h3 a:hover { color: var(--gold); }

.blog-card-body p {
  font-size: 0.9rem;
  color: var(--gray-500);
}

.blog-card-body .card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Article Detail */
.article-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 80px 24px;
}

.article-content h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 20px;
  line-height: 1.3;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.85rem;
  color: var(--gray-400);
}

.article-content h2 {
  font-size: 1.6rem;
  margin: 48px 0 16px;
}

.article-content h3 {
  font-size: 1.3rem;
  margin: 36px 0 12px;
}

.article-content p {
  margin-bottom: 20px;
  font-size: 1.05rem;
  line-height: 1.9;
}

.article-content ul, .article-content ol {
  margin: 16px 0 24px 24px;
}

.article-content li {
  margin-bottom: 10px;
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.7;
  list-style: disc;
}

.article-content blockquote {
  border-left: 3px solid var(--gold);
  padding: 20px 28px;
  margin: 32px 0;
  background: var(--off-white);
  font-style: italic;
  color: var(--gray-600);
}

.article-content img {
  width: 100%;
  margin: 32px 0;
}

/* ---------- Contact Strip ---------- */
.contact-strip {
  padding: 0;
  margin-top: -50px;
  position: relative;
  z-index: 10;
}

.contact-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.contact-strip-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 32px 28px;
  border-right: 1px solid var(--gray-100);
  transition: var(--transition);
}

.contact-strip-card:last-child { border-right: none; }

.contact-strip-card:hover {
  background: var(--off-white);
}

.strip-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(201,169,110,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.strip-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
}

.contact-strip-card h4 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--black);
}

.contact-strip-card p {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.6;
}

.contact-strip-card a { color: var(--gold); font-weight: 500; }
.contact-strip-card a:hover { color: var(--gold-dark); }

/* ---------- Contact Main ---------- */
.contact-main {
  padding: 80px 0 100px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-map {
  overflow: hidden;
  border: 1px solid var(--gray-200);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 300px;
}

.contact-quick-info {
  padding: 32px 0 0;
}

.contact-quick-info h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.contact-quick-info > p {
  font-size: 0.95rem;
  color: var(--gray-500);
  margin-bottom: 24px;
}

.contact-highlights {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--gray-700);
}

.highlight-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  flex-shrink: 0;
}

/* ---------- Contact Form Wrapper ---------- */
.contact-form-wrapper {
  background: var(--off-white);
  padding: 44px 40px;
  border: 1px solid var(--gray-200);
}

.contact-form-wrapper h2 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.form-subtitle {
  font-size: 0.9rem;
  color: var(--gray-400);
  margin-bottom: 28px;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.form-note {
  font-size: 0.78rem;
  color: var(--gray-400);
  text-align: center;
  margin-top: 12px;
}

.form-note a { color: var(--gold); text-decoration: underline; }

/* Form Success */
.form-success {
  display: none;
  text-align: center;
  padding: 60px 20px;
}

.form-success.show {
  display: block;
}

.form-success .success-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: rgba(201,169,110,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-success .success-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--gold);
}

.form-success h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.form-success p {
  font-size: 0.95rem;
  color: var(--gray-500);
}

/* ---------- Contact Page (legacy grid) ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--gray-200);
}

.contact-info-card:last-child { border-bottom: none; }

.contact-info-card .icon-circle {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-card .icon-circle svg {
  width: 20px; height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.contact-info-card h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-700);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 14px 18px;
  border: 1px solid var(--gray-200);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.1);
}

.form-group textarea { min-height: 150px; resize: vertical; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ---------- Legal Pages ---------- */
.legal-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 80px 24px;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin: 40px 0 16px;
}

.legal-content h3 {
  font-size: 1.2rem;
  margin: 28px 0 12px;
}

.legal-content p {
  margin-bottom: 16px;
  font-size: 0.95rem;
  line-height: 1.8;
}

.legal-content ul {
  margin: 12px 0 20px 24px;
}

.legal-content li {
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: var(--gray-600);
  list-style: disc;
}

/* ---------- Process Steps ---------- */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 700px;
  margin: 40px auto 0;
}

.process-step {
  display: flex;
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid var(--gray-200);
}

.step-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--black);
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.92rem;
  color: var(--gray-500);
}

/* ---------- Video / Embed Grid ---------- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
}

.video-card {
  background: var(--black-light);
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  transition: var(--transition);
}

.video-card:hover {
  border-color: rgba(201,169,110,0.3);
  transform: translateY(-4px);
}

.video-thumb {
  width: 100%;
  height: 200px;
  background: var(--black-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.video-thumb .play-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.video-card:hover .play-btn {
  transform: scale(1.1);
  box-shadow: var(--shadow-gold);
}

.video-card-body {
  padding: 24px;
}

.video-card-body h3 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.video-card-body p {
  color: var(--gray-400);
  font-size: 0.85rem;
}

/* ---------- Inner Page Responsive ---------- */
@media (max-width: 1024px) {
  .two-col { gap: 50px; }
  .profile-grid { grid-template-columns: 280px 1fr; }
  .contact-grid { gap: 40px; }
}

@media (max-width: 768px) {
  .page-hero { padding: 140px 0 70px; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col.reverse { direction: ltr; }
  .two-col img { height: 300px; }
  .profile-grid { grid-template-columns: 1fr; }
  .profile-image { max-width: 300px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-strip-grid { grid-template-columns: 1fr 1fr; }
  .contact-strip-card { border-right: none; border-bottom: 1px solid var(--gray-100); }
  .contact-form-wrapper { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .contact-strip-grid { grid-template-columns: 1fr; }
  .contact-strip { margin-top: -30px; }
}
