/* ===============================================
   PREMIER HOTEL SOLUTIONS — EDITORIAL LUXURY
   Palette: Midnight Navy + Champagne Gold + Teal
   =============================================== */

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

:root {
  --midnight: #0B1D33;
  --midnight-light: #132B4A;
  --champagne: #C9A96E;
  --champagne-light: #DFC9A0;
  --champagne-pale: #F0E6D3;
  --teal: #1A7A6D;
  --teal-light: #22A08F;
  --alabaster: #F5F0EB;
  --white: #FFFFFF;
  --charcoal: #2C2C2C;
  --gray: #6B7280;
  --gray-light: #E5E1DC;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
  --grain: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* -- GRAIN OVERLAY -- */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: var(--grain);
  pointer-events: none;
  z-index: 9999;
  opacity: 0.3;
}

/* -- UTILITY -- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--champagne);
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--champagne);
}

.section-heading {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* -- SCROLL REVEAL -- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 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; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ======================================
   NAVIGATION
   ====================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all 0.4s ease;
}

.nav.scrolled {
  background: rgba(11, 29, 51, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.75rem 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--white);
}

.nav-logo-icon {
  width: 42px;
  height: 42px;
  border: 2px solid var(--champagne);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--champagne);
  position: relative;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.nav-logo-text span {
  color: var(--champagne);
}

/* Custom logo image */
.nav-logo-img {
  max-height: 42px;
  width: auto;
  object-fit: contain;
}

.footer-logo-custom {
  margin-bottom: 1.25rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.75);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--champagne);
  transition: width 0.3s ease;
}

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

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

.nav-cta {
  background: transparent;
  border: 1px solid var(--champagne);
  color: var(--champagne) !important;
  padding: 0.6rem 1.5rem;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.nav-cta:hover {
  background: var(--champagne);
  color: var(--midnight) !important;
}

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

/* Mobile menu */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

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

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(201, 169, 110, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(26, 122, 109, 0.06) 0%, transparent 70%);
}

/* Decorative geometric elements */
.hero-deco-1 {
  position: absolute;
  top: 10%;
  right: 5%;
  width: 400px;
  height: 400px;
  border: 1px solid rgba(201, 169, 110, 0.1);
  border-radius: 50%;
  animation: slowRotate 60s linear infinite;
}

.hero-deco-2 {
  position: absolute;
  top: 15%;
  right: 8%;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(201, 169, 110, 0.06);
  border-radius: 50%;
  animation: slowRotate 45s linear infinite reverse;
}

.hero-deco-3 {
  position: absolute;
  bottom: 10%;
  left: -2%;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(26, 122, 109, 0.08);
  transform: rotate(45deg);
}

.hero-line-v {
  position: absolute;
  top: 0;
  right: 35%;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(201,169,110,0.1) 30%, rgba(201,169,110,0.1) 70%, transparent);
}

@keyframes slowRotate {
  to { transform: rotate(360deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 500;
  line-height: 1.05;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
  max-width: 900px;
}

.hero-heading .line {
  display: block;
  overflow: hidden;
}

.hero-heading .line-inner {
  display: block;
  opacity: 0;
  transform: translateY(100%);
  animation: lineReveal 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-heading .line:nth-child(1) .line-inner { animation-delay: 0.5s; }
.hero-heading .line:nth-child(2) .line-inner { animation-delay: 0.65s; }
.hero-heading .line:nth-child(3) .line-inner { animation-delay: 0.8s; }

.hero-heading em {
  font-style: italic;
  color: var(--champagne);
}

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

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

.hero-desc {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.55);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 1s forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  opacity: 0;
  animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 1.15s forwards;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--champagne);
  color: var(--midnight);
  padding: 1rem 2.25rem;
  border: none;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 40%, rgba(255,255,255,0.25) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.btn-primary:hover::before {
  transform: translateX(100%);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201, 169, 110, 0.3);
}

.btn-primary svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

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

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
  letter-spacing: 0.02em;
}

.btn-secondary:hover { color: var(--white); }

.hero-scroll {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  opacity: 0;
  animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 1.5s forwards;
}

.hero-scroll span {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

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

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ======================================
   MARQUEE STRIP
   ====================================== */
.marquee-strip {
  background: var(--champagne);
  padding: 0.9rem 0;
  overflow: hidden;
  position: relative;
}

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

.marquee-track span {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--midnight);
  white-space: nowrap;
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.marquee-track span::after {
  content: '\25C6';
  font-size: 0.4rem;
}

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

/* ======================================
   ABOUT SECTION
   ====================================== */
.about {
  padding: 8rem 0;
  background: var(--white);
  position: relative;
}

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

.about-image {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 8px;
  overflow: visible;
  background: var(--alabaster);
}

.about-image-inner {
  width: 100%;
  height: 100%;
  background:
    linear-gradient(135deg, var(--midnight) 0%, var(--midnight-light) 50%, var(--teal) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.about-image-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grain);
  opacity: 0.5;
}

.about-image-pattern {
  position: relative;
  z-index: 1;
  width: 80%;
  height: 80%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 12px;
  opacity: 0.2;
}

.about-image-pattern div {
  border: 1px solid var(--champagne);
  border-radius: 4px;
}

.about-image-pattern div:nth-child(5) {
  background: rgba(201, 169, 110, 0.15);
}

/* About image grid (when images are uploaded) */
.about-image-grid-display {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  padding: 12px;
  box-sizing: border-box;
}

.about-grid-cell {
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 1;
  background: rgba(201, 169, 110, 0.08);
  border: 1px solid rgba(201, 169, 110, 0.2);
}

.about-grid-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-grid-empty {
  width: 100%;
  height: 100%;
  border: 1px dashed rgba(201, 169, 110, 0.25);
  border-radius: 4px;
  box-sizing: border-box;
}

.about-image-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 140px;
  height: 140px;
  background: var(--champagne);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 3;
  box-shadow: 0 8px 30px rgba(201, 169, 110, 0.3);
}

.about-image-badge strong {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--midnight);
  line-height: 1;
}

.about-image-badge span {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--midnight);
  opacity: 0.7;
}

.about-text .section-heading {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--midnight);
  margin-bottom: 1.5rem;
}

.about-text p {
  color: var(--gray);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--gray-light);
}

.about-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--midnight);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.about-stat span {
  font-size: 0.8rem;
  color: var(--gray);
  letter-spacing: 0.02em;
}

/* ======================================
   SERVICES SECTION
   ====================================== */
.services {
  padding: 8rem 0;
  background: var(--midnight);
  position: relative;
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 80% 20%, rgba(26, 122, 109, 0.07), transparent),
    radial-gradient(ellipse 50% 50% at 10% 80%, rgba(201, 169, 110, 0.05), transparent);
}

.services .section-heading {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.services-intro {
  color: rgba(255,255,255,0.5);
  max-width: 550px;
  margin-bottom: 4rem;
  font-size: 1.05rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.service-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--champagne), var(--teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.service-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(201, 169, 110, 0.2);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(201,169,110,0.15), rgba(26,122,109,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--champagne);
  transition: all 0.4s ease;
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--champagne), var(--teal));
  color: var(--midnight);
  transform: scale(1.05);
}

.service-icon svg {
  width: 24px;
  height: 24px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
}

/* ======================================
   WHY CHOOSE US
   ====================================== */
.why {
  padding: 8rem 0;
  background: var(--alabaster);
  position: relative;
}

.why-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 5rem;
}

.why .section-label {
  justify-content: center;
}

.why .section-label::before { display: none; }

.why .section-heading {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--midnight);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.why-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--white);
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid transparent;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(11, 29, 51, 0.08);
  border-color: var(--champagne-pale);
}

.why-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--champagne);
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.4;
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--midnight);
  margin-bottom: 0.75rem;
}

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

/* ======================================
   TESTIMONIALS
   ====================================== */
.testimonials {
  padding: 8rem 0;
  background: var(--white);
  overflow: hidden;
}

.testimonials-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 4rem;
}

.testimonials .section-heading {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--midnight);
}

.testimonial-nav {
  display: flex;
  gap: 0.75rem;
}

.testimonial-nav button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--gray-light);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--midnight);
  transition: all 0.3s ease;
}

.testimonial-nav button:hover {
  background: var(--midnight);
  border-color: var(--midnight);
  color: var(--white);
}

.testimonial-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card {
  min-width: calc(50% - 1rem);
  background: var(--alabaster);
  border-radius: 16px;
  padding: 3rem;
  position: relative;
}

.testimonial-quote {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 1;
  color: var(--champagne);
  opacity: 0.2;
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
  color: var(--champagne);
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--charcoal);
  margin-bottom: 2rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--champagne), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
}

.testimonial-author-info strong {
  display: block;
  font-size: 0.95rem;
  color: var(--midnight);
}

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

/* ======================================
   CONTACT SECTION
   ====================================== */
.contact {
  padding: 8rem 0;
  background: var(--midnight);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 80% 50%, rgba(201,169,110,0.05), transparent);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  position: relative;
  z-index: 1;
}

.contact-info .section-heading {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--white);
  margin-bottom: 1.5rem;
}

.contact-info > p {
  color: rgba(255,255,255,0.5);
  margin-bottom: 3rem;
  font-size: 1.05rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(201, 169, 110, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--champagne);
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 20px;
  height: 20px;
}

.contact-detail-text strong {
  display: block;
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 0.15rem;
}

.contact-detail-text span,
.contact-detail-text a {
  display: block;
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.3s ease;
  line-height: 1.6;
}

.contact-detail-text a:hover {
  color: var(--champagne);
}

/* Office Group */
.contact-office-group {
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.contact-office-group:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-office-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
}

.contact-office-label svg {
  width: 18px;
  height: 18px;
  color: var(--champagne);
  flex-shrink: 0;
}

.contact-office-label strong {
  color: var(--champagne);
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.contact-office-group .contact-detail {
  padding-left: 0.5rem;
  margin-bottom: 0.4rem;
}

.contact-office-group .contact-detail-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
}

.contact-office-group .contact-detail-icon svg {
  width: 16px;
  height: 16px;
}

/* Footer Office */
.footer-office {
  margin-bottom: 0.75rem;
}

.footer-office-location {
  display: block;
  color: var(--champagne);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.footer-office ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-form {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 3rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 0.9rem 1.2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--white);
  transition: all 0.3s ease;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.2);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--champagne);
  background: rgba(201, 169, 110, 0.04);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.08);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.3)' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  cursor: pointer;
}

.form-group select option {
  background: var(--midnight);
  color: var(--white);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.btn-submit {
  width: 100%;
  padding: 1.1rem;
  background: var(--champagne);
  color: var(--midnight);
  border: none;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-submit:hover {
  background: var(--champagne-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201, 169, 110, 0.25);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Form message styles */
.form-message.success {
  background: rgba(26, 122, 109, 0.15);
  color: var(--teal-light);
  border: 1px solid rgba(26, 122, 109, 0.3);
}

.form-message.error {
  background: rgba(220, 53, 69, 0.15);
  color: #ff6b6b;
  border: 1px solid rgba(220, 53, 69, 0.3);
}

/* ======================================
   FOOTER
   ====================================== */
.footer {
  background: #060F1A;
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .nav-logo {
  margin-bottom: 1.25rem;
}

.footer-brand p {
  color: rgba(255,255,255,0.35);
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.25rem;
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 0.6rem; }

.footer-col ul li a {
  color: rgba(255,255,255,0.35);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--champagne);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social a:hover {
  background: var(--champagne);
  border-color: var(--champagne);
  color: var(--midnight);
}

.footer-social a svg {
  width: 16px;
  height: 16px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  color: rgba(255,255,255,0.25);
  font-size: 0.8rem;
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a {
  color: rgba(255,255,255,0.25);
  font-size: 0.8rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* ======================================
   PAGE TEMPLATES (page.php, index.php)
   ====================================== */
.page-hero {
  background: var(--midnight);
  padding: 10rem 0 4rem;
  text-align: center;
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 500;
  color: var(--white);
  letter-spacing: -0.02em;
}

.page-content-area {
  padding: 4rem 0;
  min-height: 40vh;
}

.entry-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.8;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
  font-family: var(--font-display);
  color: var(--midnight);
  margin: 2rem 0 1rem;
}

.entry-content p {
  margin-bottom: 1.5rem;
  color: var(--gray);
}

.entry-content a {
  color: var(--teal);
  text-decoration: underline;
}

.entry-content a:hover {
  color: var(--teal-light);
}

.entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 2rem 0;
}

/* Post entries for index.php */
.post-entry {
  padding: 2rem 0;
  border-bottom: 1px solid var(--gray-light);
  max-width: 800px;
  margin: 0 auto;
}

.post-entry:last-child {
  border-bottom: none;
}

.post-entry-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.post-entry-title a {
  color: var(--midnight);
  text-decoration: none;
  transition: color 0.3s ease;
}

.post-entry-title a:hover {
  color: var(--champagne);
}

.post-entry-meta {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 1rem;
}

.post-entry-excerpt {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.7;
}

/* ======================================
   RESPONSIVE
   ====================================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(11, 29, 51, 0.98);
    backdrop-filter: blur(30px);
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 999;
  }
  .nav-links.open a {
    font-size: 1.5rem;
    color: var(--white);
  }
  .nav-hamburger { display: flex; z-index: 1001; }

  .hero-heading { font-size: clamp(2.25rem, 8vw, 3.5rem); }
  .hero-deco-1, .hero-deco-2, .hero-deco-3, .hero-line-v { display: none; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-image { max-width: 400px; }
  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 1rem; }

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

  .testimonial-card { min-width: 100%; }
  .testimonials-header { flex-direction: column; align-items: flex-start; gap: 1.5rem; }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

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

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .about-stats { grid-template-columns: 1fr; text-align: center; }
  .contact-form { padding: 2rem 1.5rem; }
}
