/* LuxeGleam Creation - Elegant Gold & Navy */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Raleway:wght@300;400;500;600;700&display=swap');

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

:root {
  --navy: #0F2137;
  --navy-light: #1A3350;
  --gold: #C9A94E;
  --gold-pale: #E8D8A0;
  --gold-glow: rgba(201,169,78,0.15);
  --cream: #FAF7F0;
  --white: #FFFFFF;
  --text-body: #4A4A4A;
  --text-light: #8A8A8A;
  --border: rgba(201,169,78,0.2);
}

html { scroll-behavior: smooth; }
body { font-family:'Raleway',sans-serif; color:var(--text-body); background:var(--cream); line-height:1.7; }
h1,h2,h3,h4 { font-family:'Playfair Display',serif; color:var(--navy); line-height:1.25; }
img { max-width:100%; height:auto; display:block; }
a { color: inherit; }
.container { max-width:1200px; margin:0 auto; padding:0 24px; }
.gold-divider { width:60px; height:2px; background:var(--gold); margin:16px auto; }

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--navy);
  padding: 10px 24px;
  text-align: center;
  font-size: 0.85rem;
}
.top-bar a {
  color: var(--gold-pale);
  text-decoration: none;
  letter-spacing: 0.5px;
}
.top-bar a:hover { color: var(--gold); }

/* ===== NAVIGATION ===== */
.navbar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
/* KEY FIX: Logo sizing */
.nav-logo img {
  height: 44px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 24px;
  align-items: center;
}
.nav-links li a {
  text-decoration: none;
  color: var(--text-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
  transition: color 0.3s;
}
.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links li a:hover { color: var(--navy); }
.nav-links li a:hover::after { width: 100%; }
.nav-links li a.active { color: var(--navy); }
.nav-links li a.active::after { width: 100%; }

.menu-btn {
  display: none;
  background: none; border: none;
  cursor: pointer; padding: 8px;
  flex-direction: column; gap: 5px;
}
.menu-btn span {
  display: block; width: 24px; height: 2px;
  background: var(--navy);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy); /* fallback if image doesn't load */
}
.hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(15,33,55,0.9), rgba(26,51,80,0.82), rgba(15,33,55,0.88));
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
  text-align: center;
  width: 100%;
}
.hero-label {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,169,78,0.35);
  padding: 8px 20px;
  margin-bottom: 28px;
  font-weight: 500;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 600;
  margin-bottom: 20px;
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero p {
  color: rgba(255,255,255,0.72);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.8;
}
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  padding: 72px 24px 56px;
  text-align: center;
}
.page-hero h1 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.6rem); }
.page-hero p { color: rgba(255,255,255,0.6); max-width: 480px; margin: 14px auto 0; font-size: 0.95rem; }

/* ===== BUTTONS ===== */
.btn-gold {
  display: inline-block; background: var(--gold); color: var(--navy);
  padding: 13px 32px; text-decoration: none; font-weight: 600;
  font-size: 0.82rem; letter-spacing: 1px; text-transform: uppercase;
  border: 2px solid var(--gold); transition: all 0.3s;
}
.btn-gold:hover { background: transparent; color: var(--gold); }
.btn-outline {
  display: inline-block; background: transparent; color: var(--white);
  padding: 13px 32px; text-decoration: none; font-weight: 500;
  font-size: 0.82rem; letter-spacing: 1px; text-transform: uppercase;
  border: 2px solid rgba(255,255,255,0.3); transition: all 0.3s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-navy {
  display: inline-block; background: var(--navy); color: var(--white);
  padding: 13px 32px; text-decoration: none; font-weight: 600;
  font-size: 0.82rem; letter-spacing: 1px; text-transform: uppercase;
  border: 2px solid var(--navy); transition: all 0.3s;
}
.btn-navy:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.btn-outline-navy {
  display: inline-block; background: transparent; color: var(--navy);
  padding: 13px 32px; text-decoration: none; font-weight: 500;
  font-size: 0.82rem; letter-spacing: 1px; text-transform: uppercase;
  border: 2px solid var(--border); transition: all 0.3s;
}
.btn-outline-navy:hover { border-color: var(--navy); }

/* ===== TRUST BAR ===== */
.trust-bar { background: var(--white); border-bottom: 1px solid var(--border); padding: 36px 0; }
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; text-align: center; }
.trust-item { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.trust-icon {
  width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.3rem;
}
.trust-item h4 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1px; font-family:'Raleway',sans-serif; font-weight: 600; color: var(--navy); }
.trust-item p { font-size: 0.75rem; color: var(--text-light); }

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 6px; }
.section-header p { color: var(--text-light); font-size: 0.95rem; max-width: 520px; margin: 14px auto 0; }

/* ===== SERVICE CARDS ===== */
.services-section { padding: 90px 0; }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.service-card {
  background: var(--white); border: 1px solid var(--border);
  overflow: hidden; transition: all 0.35s; position: relative;
}
.service-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gold); transform: scaleX(0); transition: transform 0.35s;
}
.service-card:hover { transform: translateY(-5px); box-shadow: 0 14px 40px rgba(15,33,55,0.07); }
.service-card:hover::after { transform: scaleX(1); }
.service-card img { width: 100%; height: 200px; object-fit: cover; }
.service-card-body { padding: 28px 24px; text-align: center; }
.service-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.service-card p { font-size: 0.86rem; color: var(--text-light); line-height: 1.7; }

/* ===== WHY SECTION ===== */
.why-section { padding: 90px 0; background: var(--white); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.why-content h2 { font-size: clamp(1.7rem, 3vw, 2.2rem); margin-bottom: 6px; }
.why-content > p { color: var(--text-light); margin: 14px 0 28px; }
.why-list { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.why-list li { display: flex; align-items: flex-start; gap: 14px; }
.why-check {
  flex-shrink: 0; width: 26px; height: 26px;
  background: var(--gold-glow); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 0.8rem; margin-top: 2px;
}
.why-list li strong { display: block; color: var(--navy); font-size: 0.92rem; margin-bottom: 2px; }
.why-list li span { font-size: 0.82rem; color: var(--text-light); }
.why-img { position: relative; }
.why-img img { width: 100%; height: 460px; object-fit: cover; }
.why-img::after {
  content: ''; position: absolute; bottom: -14px; right: -14px;
  width: 100px; height: 100px; border: 3px solid var(--gold); z-index: -1;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section { padding: 90px 0; background: var(--navy); }
.testimonials-section .section-header h2 { color: var(--white); }
.testimonials-section .section-header p { color: rgba(255,255,255,0.5); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,169,78,0.15);
  padding: 36px 24px 28px;
  transition: all 0.35s;
}
.testimonial-card:hover {
  background: rgba(255,255,255,0.07);
  transform: translateY(-4px);
  border-color: rgba(201,169,78,0.3);
}
.tq { font-size: 2.2rem; color: var(--gold); font-family:'Playfair Display',serif; opacity: 0.5; margin-bottom: 12px; }
.testimonial-card > p {
  color: rgba(255,255,255,0.72); font-size: 0.9rem;
  line-height: 1.8; margin-bottom: 22px; font-style: italic;
}
.t-author { display: flex; align-items: center; gap: 12px; }
.t-logo {
  width: 46px; height: 46px; background: var(--white); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  padding: 5px; flex-shrink: 0;
}
.t-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.t-name { color: var(--white); font-weight: 600; font-size: 0.86rem; }
.t-role { color: var(--gold-pale); font-size: 0.76rem; }

/* ===== CLIENTS BAR ===== */
.clients-bar { padding: 56px 0; background: var(--white); border-top: 1px solid var(--border); }
.clients-bar .section-header { margin-bottom: 36px; }
.clients-bar .section-header h2 { font-size: 1.3rem; }
.clients-logos { display: flex; align-items: center; justify-content: center; gap: 56px; flex-wrap: wrap; }
.client-logo { opacity: 0.65; transition: opacity 0.3s; }
.client-logo:hover { opacity: 1; }
.client-logo img { height: 44px; width: auto; object-fit: contain; }

/* ===== CTA ===== */
.cta-section { padding: 72px 0; background: var(--cream); text-align: center; }
.cta-section h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 6px; }
.cta-section p { color: var(--text-light); margin: 14px auto 28px; max-width: 480px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== DETAIL CARDS (services page) ===== */
.services-detail { padding: 80px 0; }
.detail-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; }
.detail-card {
  background: var(--white); border: 1px solid var(--border);
  overflow: hidden; transition: all 0.35s; position: relative;
}
.detail-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gold); transform: scaleX(0); transition: transform 0.35s;
}
.detail-card:hover { transform: translateY(-4px); box-shadow: 0 10px 36px rgba(15,33,55,0.06); }
.detail-card:hover::after { transform: scaleX(1); }
.detail-card img { width: 100%; height: 180px; object-fit: cover; }
.detail-card-body { padding: 28px; }
.detail-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.detail-card p { font-size: 0.86rem; color: var(--text-light); line-height: 1.7; margin-bottom: 14px; }
.detail-card ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.detail-card ul li { font-size: 0.83rem; color: var(--text-body); padding-left: 18px; position: relative; }
.detail-card ul li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

/* ===== ABOUT PAGE ===== */
.content-section { padding: 80px 0; }
.content-section.alt { background: var(--white); }
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.content-text h2 { font-size: 1.7rem; margin-bottom: 6px; }
.content-text p { margin-top: 14px; font-size: 0.93rem; line-height: 1.8; }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-top: 44px; }
.value-card { text-align: center; padding: 28px 20px; }
.value-icon { font-size: 1.8rem; margin-bottom: 14px; }
.value-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.value-card p { font-size: 0.83rem; color: var(--text-light); line-height: 1.7; }

/* ===== FORMS ===== */
.form-section { padding: 80px 0; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.form-info h3 { font-size: 1.3rem; margin-bottom: 14px; }
.form-info > p { font-size: 0.93rem; line-height: 1.8; margin-bottom: 20px; }
.info-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.info-icon { color: var(--gold); font-size: 1.1rem; margin-top: 2px; }
.info-item strong { display: block; color: var(--navy); font-size: 0.88rem; }
.info-item span { font-size: 0.82rem; color: var(--text-light); }
.info-item a { color: var(--text-light); text-decoration: none; }
.info-item a:hover { color: var(--gold); }
.info-box { margin-top: 28px; padding: 20px; background: var(--gold-glow); border-left: 3px solid var(--gold); }
.info-box strong { color: var(--navy); font-size: 0.88rem; }
.info-box p { font-size: 0.83rem; margin-top: 6px; line-height: 1.7; }
.info-box a { color: var(--gold); font-weight: 600; text-decoration: none; }

.form-card { background: var(--white); border: 1px solid var(--border); padding: 36px; }
.form-card h3 { font-size: 1.15rem; margin-bottom: 6px; }
.form-card label {
  display: block; font-size: 0.76rem; text-transform: uppercase; letter-spacing: 1px;
  font-weight: 600; color: var(--navy); margin-bottom: 5px; margin-top: 18px;
  font-family:'Raleway',sans-serif;
}
.form-card label:first-of-type { margin-top: 0; }
.form-card input, .form-card textarea, .form-card select {
  width: 100%; padding: 11px 14px; border: 1px solid var(--border);
  background: var(--cream); font-family:'Raleway',sans-serif;
  font-size: 0.88rem; color: var(--navy); outline: none;
  transition: border-color 0.3s; border-radius: 0; -webkit-appearance: none;
}
.form-card input:focus, .form-card textarea:focus, .form-card select:focus { border-color: var(--gold); }
.form-card textarea { height: 110px; resize: vertical; }
.form-card button {
  margin-top: 20px; width: 100%; background: var(--gold); color: var(--navy);
  padding: 13px; border: 2px solid var(--gold); font-weight: 600;
  font-size: 0.82rem; letter-spacing: 1px; text-transform: uppercase;
  cursor: pointer; transition: all 0.3s; font-family:'Raleway',sans-serif;
}
.form-card button:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ===== FOOTER ===== */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  padding: 56px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand img {
  height: 36px;
  width: auto;
  margin-bottom: 14px;
}
.footer-brand p { font-size: 0.86rem; line-height: 1.8; }
footer h4 {
  color: var(--gold); font-family:'Raleway',sans-serif;
  font-size: 0.76rem; text-transform: uppercase; letter-spacing: 2px;
  font-weight: 600; margin-bottom: 18px;
}
footer ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
footer ul a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.86rem; transition: color 0.3s; }
footer ul a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px; text-align: center; font-size: 0.78rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .services-grid, .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .why-grid, .content-grid, .form-grid { grid-template-columns: 1fr; gap: 44px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: repeat(2,1fr); }
  .detail-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .menu-btn { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 72px; left: 0; right: 0;
    background: var(--white); padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 20px rgba(0,0,0,0.06); gap: 14px;
  }
  .hero { min-height: 480px; }
  .hero-content { padding: 60px 24px; }
  .page-hero { padding: 56px 24px 40px; }
  .services-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .clients-logos { gap: 28px; }
}

/* Logo fixes - left aligned, bolder */
.nav-inner { justify-content: flex-start; gap: 0; }
.nav-logo { margin-right: auto; }
.nav-logo img { height: 48px; filter: contrast(1.1); }
