:root {
  /* Colors */
  --gold: #E6B830;
  --gold-light: #FFDF7A;
  --gold-dark: #A37B1B;
  --gold-shine: #FFE993;
  --gold-gradient: linear-gradient(135deg, #A37B1B 0%, #E6B830 50%, #FFDF7A 100%);
  
  --black: #050505;
  --black-mid: #0A0A0A;
  --black-soft: #121212;
  --black-card: #0E0D08;
  --black-glow: rgba(201, 168, 76, 0.03);

  --silver: #E2E8F0;
  --silver-light: #F8FAFC;
  --silver-dim: #94A3B8;
  --silver-dark: #475569;
  --silver-gradient: linear-gradient(135deg, #FFFFFF 0%, #E2E8F0 50%, #94A3B8 100%);
  
  /* Fonts */
  --font-serif: 'Cinzel', serif;
  --font-accent: 'Cormorant Garamond', serif;
  --font-sans: 'Montserrat', sans-serif;
  
  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--black);
}

body {
  background-color: var(--black);
  color: var(--silver-dim);
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--black);
}
::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 3px;
  transition: var(--transition-fast);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}


/* Selection */
::selection {
  background: var(--gold);
  color: var(--black);
}

/* Typography Standards */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--silver-light);
  letter-spacing: 2px;
  font-weight: 400;
}

/* Silver Gradient Text for Headers */
.silver-text {
  background: var(--silver-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Gold Text Highlight */
.gold-text {
  color: var(--gold);
}

/* Custom Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 80px;
  transition: var(--transition-smooth);
}

nav.scrolled {
  background: rgba(5, 5, 5, 0.9);
  backdrop-filter: blur(20px);
  padding: 18px 80px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
}

.nav-logo {
  display: flex;
  align-items: center;
  line-height: 1;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo span:first-child {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 4px;
}

.nav-logo span:last-child {
  font-family: var(--font-sans);
  font-size: 8px;
  font-weight: 400;
  color: var(--silver-dim);
  letter-spacing: 4.5px;
  margin-top: 5px;
}

/* Logo image */
.nav-logo-img {
  height: 110px;
  width: auto;
  max-width: 260px;
  display: block;
  object-fit: contain;
  transition: transform 0.35s ease, opacity 0.35s ease;
  filter: drop-shadow(0 2px 8px rgba(201,168,76,0.15));
}

.nav-logo:hover .nav-logo-img {
  transform: scale(1.05);
  opacity: 0.9;
  filter: drop-shadow(0 4px 16px rgba(201,168,76,0.3));
}

.footer-logo-img {
  height: 72px;
  width: auto;
  max-width: 200px;
  display: block;
  object-fit: contain;
  opacity: 0.88;
  filter: drop-shadow(0 2px 8px rgba(201,168,76,0.15));
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-serif);
  font-size: 11px;
  font-weight: 400;
  color: var(--silver);
  letter-spacing: 3px;
  text-decoration: none;
  position: relative;
  padding-bottom: 6px;
  transition: var(--transition-fast);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-light);
  transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

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

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

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

/* Sections Common styling */
section {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.section-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 40px;
  position: relative;
  z-index: 10;
}

.section-label {
  font-family: var(--font-serif);
  font-size: 10px;
  letter-spacing: 8px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.section-label::after {
  content: '';
  height: 1px;
  width: 80px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.section-title {
  font-family: var(--font-accent);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--silver-light);
  margin-bottom: 30px;
}

.section-title em {
  font-family: var(--font-accent);
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}

/* Hero company name */
.hero-company-name {
  font-family: var(--font-serif);
  font-size: clamp(42px, 7vw, 100px);
  font-weight: 700;
  letter-spacing: 12px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #A37B1B 0%, #E6B830 40%, #FFDF7A 65%, #E6B830 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 14px;
  line-height: 1;
  opacity: 0;
  animation: fade-up 0.9s 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  filter: drop-shadow(0 0 30px rgba(201,168,76,0.2));
}

/* HERO SECTION */
#home {
  background: radial-gradient(circle at 50% 40%, rgba(201, 168, 76, 0.05) 0%, var(--black) 80%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#home::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('bg.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.16; /* very less opacity but visible */
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-tag {
  font-family: var(--font-serif);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 6px;
  color: var(--gold);
  margin-bottom: 18px;
  text-transform: uppercase;
  opacity: 0;
  animation: fade-up 0.8s 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-title {
  font-size: clamp(26px, 3.5vw, 48px);
  line-height: 1.15;
  max-width: 780px;
  margin-bottom: 22px;
  opacity: 0;
  animation: fade-up 0.8s 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-title span {
  font-family: var(--font-accent);
  color: var(--gold);
  font-style: italic;
  font-weight: 300;
}

.hero-sub {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--silver-dim);
  margin-bottom: 36px;
  text-transform: uppercase;
  font-weight: 400;
  opacity: 0;
  animation: fade-up 0.8s 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-cta {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fade-up 0.8s 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Luxury Button Styling */
.btn-gold {
  position: relative;
  padding: 16px 40px;
  background: var(--gold-gradient);
  color: var(--black);
  font-family: var(--font-serif);
  font-size: 11px;
  letter-spacing: 3px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
  transition: var(--transition-smooth);
  overflow: hidden;
}

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

.btn-gold:hover::before {
  left: 100%;
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(201, 168, 76, 0.35);
}

.btn-outline {
  position: relative;
  padding: 16px 40px;
  background: transparent;
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 11px;
  letter-spacing: 3px;
  font-weight: 400;
  text-decoration: none;
  border: 1px solid var(--gold-dark);
  clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
  transition: var(--transition-smooth);
}

.btn-outline:hover {
  background: rgba(201, 168, 76, 0.06);
  border-color: var(--gold-light);
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.15);
  transform: translateY(-3px);
}

.uae-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 24px;
  margin-top: 45px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  background: rgba(201, 168, 76, 0.02);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--silver-dim);
  font-family: var(--font-serif);
  opacity: 0;
  animation: fade-up 0.8s 1.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 9px;
  letter-spacing: 4px;
  color: var(--silver-dark);
  text-transform: uppercase;
  opacity: 0;
  animation: fade-up 1s 2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold-dark), transparent);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 20px;
  background: var(--gold-light);
  animation: scroll-indicator 2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes scroll-indicator {
  0% { transform: translateY(-20px); }
  80% { transform: translateY(60px); }
  100% { transform: translateY(60px); }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* MARQUEE RUNNING TEXT */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid rgba(201, 168, 76, 0.12);
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
  padding: 20px 0;
  background: rgba(201, 168, 76, 0.01);
  position: relative;
  z-index: 10;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 40px;
  font-family: var(--font-serif);
  font-size: 11px;
  letter-spacing: 5px;
  color: var(--gold-dark);
  text-transform: uppercase;
  white-space: nowrap;
  transition: var(--transition-fast);
}

.marquee-item:hover {
  color: var(--gold-light);
}

.marquee-dot {
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--gold);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ABOUT SECTION */
#about {
  background: linear-gradient(180deg, var(--black) 0%, #080704 50%, var(--black) 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 100px;
  align-items: center;
  margin-top: 60px;
}

.about-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 450px;
}

.magic-rings-container {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  pointer-events: none;
}

.about-hex {
  width: 250px;
  height: 250px;
  position: relative;
  z-index: 2;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-hex:hover {
  transform: scale(1.05);
}

.about-hex svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 15px 30px rgba(0,0,0,0.7));
}

.about-hex-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
}

.big-num {
  font-family: var(--font-accent);
  font-size: 60px;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.big-label {
  font-family: var(--font-serif);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--silver-dim);
  text-transform: uppercase;
  line-height: 1.4;
}

.about-text {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.85;
  color: var(--silver-dim);
  margin-bottom: 30px;
  font-weight: 300;
}

.about-text strong {
  color: var(--silver-light);
  font-weight: 400;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 45px;
}

.stat-box {
  padding: 25px 20px;
  text-align: center;
  border: 1px solid rgba(201, 168, 76, 0.15);
  background: var(--black-glow);
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.stat-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.stat-box:hover::before {
  transform: scaleX(1);
}

.stat-box:hover {
  border-color: rgba(201, 168, 76, 0.45);
  background: rgba(201, 168, 76, 0.05);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.stat-num {
  font-family: var(--font-accent);
  font-size: 40px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1.1;
}

.stat-desc {
  font-family: var(--font-serif);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--silver-dim);
  margin-top: 8px;
  text-transform: uppercase;
}

/* SERVICES SECTION */
#services {
  background: var(--black-mid);
}

.services-intro {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 70px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--silver-dim);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--black-card);
  padding: 0;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  border: 1px solid rgba(201, 168, 76, 0.08);
  display: grid;
  grid-template-columns: 110px 1fr;
  min-height: 180px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at bottom right, rgba(201, 168, 76, 0.10) 0%, transparent 65%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 2px;
  background: var(--gold-gradient);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover {
  background: #0D0C07;
  transform: translateY(-6px);
  border-color: rgba(201, 168, 76, 0.28);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(201, 168, 76, 0.06);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover::after {
  transform: scaleY(1);
}

.service-num {
  font-family: var(--font-accent);
  font-size: 11px;
  color: rgba(201, 168, 76, 0.3);
  font-weight: 600;
  letter-spacing: 2px;
  /* Sits inside the left icon column */
  position: absolute;
  top: 20px;
  left: 18px;
  z-index: 3;
}

/* Left icon panel */
.service-icon {
  grid-column: 1;
  grid-row: 1 / 4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  background: rgba(201, 168, 76, 0.04);
  border-right: 1px solid rgba(201, 168, 76, 0.08);
  padding: 0;
  font-size: 34px;
  transition: background 0.4s ease, color 0.3s ease;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.service-icon svg {
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 2px 5px rgba(0,0,0,0.6));
}

.service-card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22; /* subtle visibility */
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
  z-index: 1;
  pointer-events: none;
}

.service-card:hover .service-card-img {
  transform: scale(1.15);
  opacity: 0.45; /* lights up on hover */
}

.service-card:hover .service-icon {
  background: rgba(201, 168, 76, 0.09);
  color: var(--gold-shine);
}

/* Right content area */
.service-name {
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--silver-light);
  text-transform: uppercase;
  transition: color 0.3s ease;
  padding: 32px 30px 8px 30px;
}

.service-card:hover .service-name {
  color: var(--gold-light);
}

.service-desc {
  font-size: 13.5px;
  line-height: 1.78;
  color: var(--silver-dim);
  padding: 0 30px 20px 30px;
}

.service-arrow {
  margin: auto 30px 24px auto;
  align-self: flex-end;
  justify-self: start;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 13px;
  transform: rotate(-45deg);
  opacity: 0.55;
  transition: var(--transition-smooth);
  padding-left: 30px;
}

.service-card:hover .service-arrow {
  transform: rotate(0deg) translateX(4px);
  opacity: 1;
  border-color: var(--gold-light);
  background: var(--gold);
  color: var(--black);
}

/* CONTACT SECTION */
#contact {
  background: linear-gradient(180deg, var(--black-mid) 0%, #080704 100%);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  margin-top: 60px;
}

/* Contact Map styling */
.contact-map {
  border: 1px solid rgba(201, 168, 76, 0.12);
  background: rgba(201, 168, 76, 0.01);
  padding: 10px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.contact-map::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px;
  width: 30px; height: 30px;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
  z-index: 2;
  pointer-events: none;
}

.contact-map::after {
  content: '';
  position: absolute;
  bottom: -1px; right: -1px;
  width: 30px; height: 30px;
  border-bottom: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
  z-index: 2;
  pointer-events: none;
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 400px;
  filter: invert(90%) hue-rotate(180deg) contrast(120%) brightness(95%) saturate(80%);
  border: 0;
  transition: var(--transition-smooth);
}

.contact-map:hover iframe {
  filter: none;
}

.contact-info {
  display: flex;
  flex-direction: column;
}

.contact-intro {
  font-size: 16px;
  line-height: 1.85;
  color: var(--silver-dim);
  margin-bottom: 50px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 35px;
  padding-bottom: 35px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
}

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

.contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(201, 168, 76, 0.05);
  border: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--gold);
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.contact-detail:hover .contact-icon {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold-light);
  transform: scale(1.05);
}

.contact-label {
  font-family: var(--font-serif);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--gold-light);
  margin-bottom: 6px;
  text-transform: uppercase;
}

.contact-val {
  font-size: 14px;
  color: var(--silver);
  line-height: 1.6;
}

.contact-val a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

.contact-val a:hover {
  color: var(--gold-light);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
  background: rgba(201, 168, 76, 0.02);
  border: 1px solid rgba(201, 168, 76, 0.08);
  padding: 50px;
  position: relative;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px;
  width: 30px; height: 30px;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
}

.contact-form::after {
  content: '';
  position: absolute;
  bottom: -1px; right: -1px;
  width: 30px; height: 30px;
  border-bottom: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
}

.form-group {
  position: relative;
}

.form-group label {
  display: block;
  font-family: var(--font-serif);
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(5, 5, 5, 0.6);
  border: 1px solid rgba(201, 168, 76, 0.15);
  color: var(--silver-light);
  font-family: var(--font-sans);
  font-size: 13px;
  padding: 15px 20px;
  outline: none;
  transition: var(--transition-smooth);
  appearance: none;
  border-radius: 0;
}

.form-group select {
  background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%),
                    linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position: calc(100% - 25px) calc(1em + 6px),
                       calc(100% - 20px) calc(1em + 6px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.04);
  box-shadow: 0 0 15px rgba(201, 168, 76, 0.08);
}

.form-group textarea {
  resize: none;
  height: 130px;
}

.form-group select option {
  background: var(--black-soft);
  color: var(--silver-light);
}

.form-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-light);
  transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.form-group input:focus ~ .form-line,
.form-group textarea:focus ~ .form-line,
.form-group select:focus ~ .form-line {
  width: 100%;
}

.submit-btn {
  width: 100%;
  padding: 18px;
  background: var(--gold-gradient);
  color: var(--black);
  font-family: var(--font-serif);
  font-size: 11px;
  letter-spacing: 3px;
  font-weight: 600;
  border: none;
  clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  margin-top: 10px;
}

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

.submit-btn:hover::before {
  left: 100%;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(201, 168, 76, 0.35);
}

/* FOOTER */
footer {
  background: #020202;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  padding: 50px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  position: relative;
  z-index: 10;
}

.footer-logo {
  display: flex;
  flex-direction: column;
}

.footer-logo span:first-child {
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 3px;
}

.footer-logo span:last-child {
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--silver-dim);
  margin-top: 5px;
}

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

.footer-links a {
  font-family: var(--font-serif);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--silver-dim);
  text-decoration: none;
  transition: var(--transition-fast);
  text-transform: uppercase;
}

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

.footer-copy {
  font-size: 11px;
  color: var(--silver-dark);
  letter-spacing: 1px;
}

.footer-copy span {
  color: var(--gold-dark);
}

.footer-dev {
  display: flex;
  align-items: center;
  gap: 15px;
}

.btn-dev {
  display: inline-block;
  vertical-align: middle;
  padding: 10px 20px;
  background: transparent;
  color: var(--gold) !important;
  font-family: var(--font-serif);
  font-size: 11px;
  letter-spacing: 2px;
  text-decoration: none !important;
  border: 1px solid rgba(201, 168, 76, 0.4);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
  font-weight: 700 !important;
}

.btn-dev:hover {
  background: rgba(201, 168, 76, 0.12);
  border-color: var(--gold-light);
  color: var(--gold-shine) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.25);
}

.footer-social-link {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold) !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  background: rgba(201, 168, 76, 0.02);
  text-decoration: none !important;
}

.footer-social-link:hover {
  border-color: var(--gold-light);
  color: var(--gold-shine) !important;
  background: rgba(201, 168, 76, 0.12);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.25);
}

/* SCROLL REVEAL ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible, 
.reveal-left.visible, 
.reveal-right.visible {
  opacity: 1;
  transform: none;
}

/* Page Transition Curtain Wipe overlay */
#page-curtain {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: var(--black);
  z-index: 10000;
  transform: translateY(-100%);
  pointer-events: none;
  transition: transform 0.8s cubic-bezier(0.76, 0, 0.24, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

#page-curtain.wipe {
  transform: translateY(0);
  pointer-events: all;
}

#page-curtain::after {
  content: '';
  width: 60px;
  height: 60px;
  border: 2px solid rgba(201, 168, 76, 0.1);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: curtain-spin 1s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
}

#page-curtain.wipe::after {
  opacity: 1;
}

@keyframes curtain-spin {
  to { transform: rotate(360deg); }
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  nav {
    padding: 24px 40px;
  }
  
  nav.scrolled {
    padding: 15px 40px;
  }
  
  .section-inner {
    padding: 100px 30px;
  }
  
  .about-grid {
    gap: 60px;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-wrapper {
    gap: 60px;
  }
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .about-visual {
    display: none; /* Hide visual orbiting spheres on mobile/tablet to save space */
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  footer {
    padding: 40px;
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 640px) {
  nav {
    padding: 20px;
  }
  
  nav.scrolled {
    padding: 12px 20px;
  }
  
  .nav-logo span:first-child {
    font-size: 13px;
    letter-spacing: 2px;
  }
  
  .nav-links {
    gap: 20px;
  }
  
  .nav-links a {
    font-size: 10px;
    letter-spacing: 1.5px;
  }
  
  .section-inner {
    padding: 80px 20px;
  }
  
  .service-card {
    grid-template-columns: 1fr;
    min-height: unset;
  }
  
  .service-icon {
    grid-column: unset;
    grid-row: unset;
    border-right: none;
    border-bottom: 1px solid rgba(201, 168, 76, 0.08);
    padding: 24px;
    justify-content: flex-start;
    gap: 12px;
  }
  
  .service-num {
    position: static;
    display: block;
    margin-bottom: 0;
  }
  
  .service-name {
    padding: 20px 20px 6px 20px;
  }
  
  .service-desc {
    padding: 0 20px 16px 20px;
  }
  
  .service-arrow {
    margin: 0 20px 20px 20px;
    padding-left: 0;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .about-stats {
    grid-template-columns: 1fr;
  }
  
  .contact-form {
    padding: 30px 20px;
  }
}

/* ══════════════════════════════════════════════════════
   PARTNERS / WE ALSO WORK WITH SECTION
══════════════════════════════════════════════════════ */
#partners {
  background: var(--black);
  flex-direction: column;
  align-items: stretch;
  padding-bottom: 80px;
  min-height: auto;
}

#partners .section-inner {
  text-align: center;
  padding-bottom: 60px;
}

#partners .services-intro {
  margin-bottom: 0;
}

/* ── LogoLoop container ── */
.pw-logoloop {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 20px 0;
  --pw-gap: 56px;
  --pw-h: 80px;
  --pw-fade: #050505;
}

/* fade edges */
.pw-logoloop--fade::before,
.pw-logoloop--fade::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: clamp(60px, 10%, 160px);
  pointer-events: none;
  z-index: 10;
}
.pw-logoloop--fade::before {
  left: 0;
  background: linear-gradient(to right, var(--pw-fade) 0%, rgba(5,5,5,0) 100%);
}
.pw-logoloop--fade::after {
  right: 0;
  background: linear-gradient(to left, var(--pw-fade) 0%, rgba(5,5,5,0) 100%);
}

.pw-track {
  display: flex;
  width: max-content;
  will-change: transform;
  user-select: none;
}

.pw-list {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.pw-item {
  flex: 0 0 auto;
  margin-right: var(--pw-gap);
}

.pw-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 24px 28px;
  border: 1px solid rgba(201,168,76,0.08);
  background: rgba(255,255,255,0.012);
  width: 185px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pw-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(135deg, #A37B1B 0%, #E6B830 50%, #FFDF7A 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.pw-card:hover {
  border-color: rgba(201,168,76,0.28);
  background: rgba(255,255,255,0.04);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 25px rgba(201,168,76,0.06);
}

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

.pw-card img {
  height: var(--pw-h);
  width: auto;
  max-width: 130px;
  object-fit: contain;
  display: block;
  filter: brightness(0.95);
  transition: filter 0.4s ease, transform 0.4s ease;
  -webkit-user-drag: none;
  pointer-events: none;
}

.pw-card:hover img {
  filter: brightness(1.05);
  transform: scale(1.06);
}

.pw-name {
  font-family: var(--font-serif);
  font-size: 8px;
  letter-spacing: 2.5px;
  color: var(--silver-dim);
  text-transform: uppercase;
  text-align: center;
  transition: color 0.3s ease;
}

.pw-card:hover .pw-name {
  color: var(--gold-light);
}

/* ── Stats Strip ── */
.pw-stats {
  display: flex;
  justify-content: center;
  gap: 1px;
  background: rgba(201,168,76,0.07);
  border: 1px solid rgba(201,168,76,0.07);
  margin-top: 0;
}

.pw-stat {
  background: var(--black);
  padding: 44px 70px;
  text-align: center;
  flex: 1;
  transition: background 0.3s ease;
}

.pw-stat:hover { background: var(--black-card); }

.pw-stat-num {
  font-family: var(--font-accent);
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 300;
  background: linear-gradient(135deg, #A37B1B 0%, #E6B830 50%, #FFDF7A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 10px;
}

.pw-stat-label {
  font-family: var(--font-serif);
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--silver-dim);
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .pw-card { width: 150px; padding: 18px 16px; }
  .pw-card img { height: 54px; max-width: 100px; }
  .pw-stat { padding: 32px 20px; }
  .pw-stats { flex-direction: column; }
}
