
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;900&family=Dancing+Script:wght@700&family=Open+Sans:wght@400;600&display=swap');

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

:root {
  --navy: #1F365C;
  --navy2: #1F365C;
  --gold: #D6B89A;
  --blue: #5E84B5;
  --cream: #F6F3EE;
  --white: #ffffff;
  --text: #333333;
  --light: #F6F3EE;
}

html { scroll-behavior: smooth; }
body { font-family: 'Open Sans', sans-serif; color: var(--text); background: var(--white); }

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

/* ── HEADER ── */
#header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
}
.header-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; height: 72px;
}
.logo svg { display: block; }
.nav-list {
  display: flex; gap: 32px; align-items: center;
}
.nav-list a {
  font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 14px;
  color: var(--navy); letter-spacing: .5px; text-transform: uppercase;
  transition: color .2s;
}
.nav-list a:hover, .nav-list a.active { color: var(--gold); }
.nav-cta {
  background: var(--gold); color: var(--white) !important;
  padding: 10px 22px; border-radius: 4px; transition: background .2s !important;
}
.nav-cta:hover { background: #C4A080 !important; color: var(--white) !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px;
}
.hamburger span {
  display: block; width: 26px; height: 3px;
  background: var(--navy); border-radius: 2px; transition: all .3s;
}

/* ── MOBILE NAV ── */
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: var(--navy); flex-direction: column;
  align-items: center; justify-content: center; gap: 32px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 22px;
  color: var(--white); text-transform: uppercase; letter-spacing: 1px;
  transition: color .2s;
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav-close {
  position: absolute; top: 20px; right: 24px;
  background: none; border: none; cursor: pointer;
  font-size: 32px; color: var(--white); line-height: 1;
}

/* ── HERO ── */
.hero {
  background: var(--navy); min-height: 580px;
  display: flex; align-items: center;
  overflow: hidden; position: relative;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(41,121,255,.08) 0%, transparent 60%);
}
.hero-inner {
  max-width: 1200px; width: 100%; margin: 0 auto; padding: 60px 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.hero-text { position: relative; }
.hero-eyebrow {
  font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 12px;
  color: var(--gold); letter-spacing: 4px; text-transform: uppercase;
  margin-bottom: 16px;
}
.hero h1 {
  font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 42px;
  color: var(--white); text-transform: uppercase; line-height: 1.15;
  margin-bottom: 12px;
}
.hero-script {
  font-family: 'Dancing Script', cursive; font-size: 58px;
  color: var(--gold); display: block; margin-bottom: 20px; line-height: 1.1;
}
.hero-sub {
  font-size: 16px; color: rgba(255,255,255,0.75); line-height: 1.7;
  max-width: 440px; margin-bottom: 32px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  background: var(--gold); color: var(--white);
  padding: 14px 32px; border-radius: 4px; font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 14px; letter-spacing: .5px; text-transform: uppercase;
  transition: background .2s, transform .2s;
}
.btn-primary:hover { background: #C4A080; transform: translateY(-2px); }
.btn-outline {
  border: 2px solid rgba(255,255,255,0.5); color: var(--white);
  padding: 12px 28px; border-radius: 4px; font-family: 'Montserrat', sans-serif;
  font-weight: 600; font-size: 14px; text-transform: uppercase; letter-spacing: .5px;
  transition: border-color .2s, background .2s;
}
.btn-outline:hover { border-color: var(--gold); background: rgba(201,149,42,.1); }
.hero-visual { display: flex; justify-content: center; align-items: center; }

/* ── IMAGE PLACEHOLDER ── */
.img-ph {
  border: 2px dashed var(--gold); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(201,149,42,0.07); color: rgba(255,255,255,0.4);
  font-family: 'Montserrat', sans-serif; font-size: 13px; text-align: center;
  aspect-ratio: 4/3; width: 100%; max-width: 480px;
  flex-direction: column; gap: 8px;
}
.img-ph svg { opacity: .4; }
.img-ph.dark { background: rgba(31,54,92,0.05); color: rgba(31,54,92,0.3); border-color: rgba(31,54,92,0.2); }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--white); padding: 48px 24px;
  border-bottom: 1px solid #eee;
}
.trust-bar-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3,1fr); gap: 32px;
}
.trust-item { display: flex; align-items: flex-start; gap: 18px; }
.trust-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gold); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.trust-icon svg { color: var(--white); }
.trust-item h4 {
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 15px;
  color: var(--navy); margin-bottom: 4px;
}
.trust-item p { font-size: 13px; color: #666; line-height: 1.5; }

/* ── SECTION HEADINGS ── */
.section-label {
  font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 11px;
  color: var(--gold); letter-spacing: 4px; text-transform: uppercase;
  margin-bottom: 10px;
}
.section-title {
  font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 34px;
  color: var(--navy); line-height: 1.2;
}
.section-title span { color: var(--gold); }
.section-sub { font-size: 16px; color: #666; line-height: 1.7; max-width: 580px; }
.section-head { text-align: center; margin-bottom: 48px; }
.section-head .section-sub { margin: 12px auto 0; }

/* ── SERVICES GRID ── */
.services-section { padding: 80px 24px; background: var(--light); }
.services-section .container { max-width: 1200px; margin: 0 auto; }
.services-grid {
  display: grid; grid-template-columns: repeat(6,1fr); gap: 20px;
}
.scard {
  background: var(--white); border: 1px solid #e0e4ec; border-radius: 10px;
  padding: 28px 20px; text-align: center;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  cursor: default;
}
.scard:hover {
  transform: translateY(-6px); box-shadow: 0 16px 40px rgba(31,54,92,.13);
  border-color: var(--gold);
}
.scard-icon {
  width: 56px; height: 56px; border-radius: 50%; background: rgba(201,149,42,.1);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.scard h3 {
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 14px;
  color: var(--navy); margin-bottom: 8px;
}
.scard p { font-size: 12px; color: #666; line-height: 1.6; }

/* ── PORTFOLIO PREVIEW ── */
.port-section { padding: 80px 24px; background: var(--white); }
.port-section .container { max-width: 1200px; margin: 0 auto; }
.port-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-bottom: 40px; }
.port-item { position: relative; overflow: hidden; border-radius: 8px; }
.port-item .img-ph { max-width: 100%; aspect-ratio: 4/3; }
.port-item-overlay {
  position: absolute; inset: 0; background: rgba(31,54,92,.8);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s;
}
.port-item:hover .port-item-overlay { opacity: 1; }
.port-item-overlay span {
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 13px;
  color: var(--white); letter-spacing: 1px; text-transform: uppercase;
}
.port-section .section-head + * { margin-top: 0; }
.text-center { text-align: center; }

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--navy); padding: 70px 24px; text-align: center;
}
.cta-banner h2 {
  font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 36px;
  color: var(--white); margin-bottom: 12px;
}
.cta-banner p { font-size: 16px; color: rgba(255,255,255,.7); margin-bottom: 32px; }
.cta-banner .btn-primary { display: inline-block; }

/* ── BOTTOM TRUST BAR ── */
.bottom-trust { background: var(--cream); padding: 40px 24px; }
.bottom-trust-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-around;
  flex-wrap: wrap; gap: 24px;
}
.btrust-item {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 14px;
  color: var(--navy);
}
.btrust-item svg { color: var(--gold); }

/* ── PAGE HERO ── */
.page-hero {
  background: var(--navy); padding: 80px 24px; text-align: center;
}
.page-hero h1 {
  font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 44px;
  color: var(--white); text-transform: uppercase; margin-bottom: 12px;
}
.page-hero p { font-size: 17px; color: rgba(255,255,255,.7); max-width: 520px; margin: 0 auto; }

/* ── ABOUT ── */
.about-split { display: grid; grid-template-columns: 1fr 1fr; }
.about-text {
  padding: 72px 56px; background: var(--white);
  display: flex; flex-direction: column; justify-content: center;
}
.about-text .section-label { margin-bottom: 10px; }
.about-text .section-title { margin-bottom: 20px; }
.about-text p { font-size: 15px; line-height: 1.8; color: #555; margin-bottom: 16px; }
.about-text .btn-primary { display: inline-block; margin-top: 8px; }
.about-img-box {
  background: var(--navy); min-height: 520px;
  display: flex; align-items: center; justify-content: center;
}
.about-img-box .img-ph { border-radius: 0; max-width: 100%; height: 100%; aspect-ratio: unset; min-height: 520px; }

/* ── SMV GRID ── */
.smv-section { background: var(--cream); padding: 80px 24px; }
.smv-section .container { max-width: 1200px; margin: 0 auto; }
.smv-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.smv-card {
  background: var(--white); border-radius: 10px; padding: 36px 28px;
  border-top: 4px solid var(--gold); box-shadow: 0 4px 20px rgba(0,0,0,.06);
}
.smv-card h3 {
  font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 32px;
  color: var(--gold); margin-bottom: 4px;
}
.smv-card h4 {
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 15px;
  color: var(--navy); margin-bottom: 12px;
}
.smv-card p { font-size: 14px; color: #666; line-height: 1.7; }

/* ── SERVICES PAGE ── */
.service-row { padding: 64px 24px; }
.service-row:nth-child(even) { background: var(--light); }
.service-row-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.rev { direction: rtl; }
.rev > * { direction: ltr; }
.service-row h2 {
  font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 30px;
  color: var(--navy); margin-bottom: 16px;
}
.service-row ul { margin: 16px 0; padding-left: 0; }
.service-row ul li {
  font-size: 14px; color: #555; padding: 6px 0;
  padding-left: 20px; position: relative; line-height: 1.6;
}
.service-row ul li::before {
  content: ''; position: absolute; left: 0; top: 14px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--gold);
}
.service-row p { font-size: 15px; color: #555; line-height: 1.8; }

/* ── PORTFOLIO PAGE ── */
.port-page-section { padding: 80px 24px; background: var(--white); }
.port-page-section .container { max-width: 1200px; margin: 0 auto; }
.port-page-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.port-page-card {
  background: var(--white); border-radius: 10px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  transition: transform .25s, box-shadow .25s;
}
.port-page-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(31,54,92,.15); }
.port-page-card .img-ph { border-radius: 0; border: none; max-width: 100%; aspect-ratio: 4/3; }
.port-card-info {
  border-top: 3px solid var(--gold); padding: 20px;
}
.port-card-info h3 {
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 15px;
  color: var(--navy); margin-bottom: 4px;
}
.port-card-info p { font-size: 13px; color: #888; }

/* ── CONTACT PAGE ── */
.contact-section { padding: 80px 24px; }
.contact-section .container { max-width: 1200px; margin: 0 auto; }
.contact-grid {
  display: grid; grid-template-columns: 2fr 3fr; gap: 56px; align-items: start;
}
.contact-info h2 {
  font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 26px;
  color: var(--navy); margin-bottom: 24px;
}
.info-item {
  display: flex; align-items: flex-start; gap: 16px;
  margin-bottom: 24px;
}
.info-icon {
  width: 44px; height: 44px; border-radius: 50%; background: var(--navy);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.info-icon svg { color: var(--white); }
.info-item h4 {
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 13px;
  color: var(--navy); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 4px;
}
.info-item p, .info-item a { font-size: 15px; color: #555; }
.info-item a:hover { color: var(--gold); }
.social-links { display: flex; gap: 12px; margin-top: 8px; }
.social-links a {
  width: 40px; height: 40px; border-radius: 50%; background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.social-links a:hover { background: var(--gold); }
.social-links svg { color: var(--white); }

.contact-form-wrap {
  background: var(--light); border-radius: 12px; padding: 40px;
}
.contact-form-wrap h2 {
  font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 22px;
  color: var(--navy); margin-bottom: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-family: 'Montserrat', sans-serif; font-weight: 600;
  font-size: 12px; color: var(--navy); text-transform: uppercase; letter-spacing: .5px;
  margin-bottom: 6px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 14px; border: 1px solid #ddd; border-radius: 6px;
  font-family: 'Open Sans', sans-serif; font-size: 14px; color: var(--text);
  background: var(--white); transition: border-color .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--gold);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit {
  width: 100%; padding: 15px; background: var(--gold); color: var(--white);
  border: none; border-radius: 6px; font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 15px; letter-spacing: .5px; text-transform: uppercase;
  cursor: pointer; transition: background .2s;
}
.form-submit:hover { background: #C4A080; }
#form-msg {
  margin-top: 16px; padding: 12px 16px; border-radius: 6px;
  font-size: 14px; display: none;
}
#form-msg.success { display: block; background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
#form-msg.error { display: block; background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* ── FOOTER ── */
#footer { background: var(--navy2); padding: 60px 24px 0; }
.footer-main {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 40px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-col h4 {
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 13px;
  color: var(--gold); text-transform: uppercase; letter-spacing: 1px;
  padding-bottom: 10px; border-bottom: 1px solid var(--gold);
  margin-bottom: 18px;
}
.footer-col p, .footer-col a {
  font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.7;
}
.footer-col a { display: block; margin-bottom: 6px; transition: color .2s; }
.footer-col a:hover { color: var(--gold); }
.footer-col .footer-logo { margin-bottom: 16px; }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,.4); }

/* ── FADE IN ── */
.fade-in { transition: opacity .6s ease, transform .6s ease; }
.js-anim .fade-in { opacity: 0; transform: translateY(24px); }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3,1fr); }
  .port-grid { grid-template-columns: repeat(2,1fr); }
  .footer-main { grid-template-columns: repeat(2,1fr); }
  .port-page-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  .nav-list { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero h1 { font-size: 32px; }
  .hero-script { font-size: 44px; }
  .hero-sub { margin: 0 auto 28px; }
  .hero-btns { justify-content: center; }
  .hero-visual { display: none; }
  .trust-bar-inner { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .about-split { grid-template-columns: 1fr; }
  .about-img-box { min-height: 300px; }
  .smv-grid { grid-template-columns: 1fr; }
  .service-row-inner { grid-template-columns: 1fr; }
  .rev { direction: ltr; }
  .port-page-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .page-hero h1 { font-size: 32px; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .port-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 26px; }
  .hero-script { font-size: 36px; }
  .cta-banner h2 { font-size: 26px; }
  .form-row { grid-template-columns: 1fr; }
  .about-text { padding: 40px 24px; }
}

/* ── REAL IMAGE SUPPORT ── */
.hero-visual img { width:100%; height:100%; object-fit:cover; border-radius:12px; display:block; }
.about-img-box img { width:100%; height:100%; object-fit:cover; border-radius:10px; display:block; }

/* Service image grid — 2 images side by side per service */
.service-img-grid { display:grid; grid-template-columns:1fr 1fr; gap:12px; height:320px; }
.service-img-grid img { width:100%; height:100%; object-fit:cover; border-radius:8px; display:block; }
/* Add class="service-img-grid three-col" for 3 images */
.service-img-grid.three-col { grid-template-columns:1fr 1fr 1fr; }

/* Portfolio card images */
.port-page-card > img { width:100%; height:240px; object-fit:cover; display:block; border-radius:8px 8px 0 0; }
.port-page-card .port-multi-img { display:grid; grid-template-columns:1fr 1fr; gap:4px; }
.port-page-card .port-multi-img img { width:100%; height:160px; object-fit:cover; display:block; }
.port-page-card .port-multi-img img:first-child { border-radius:8px 0 0 0; }
.port-page-card .port-multi-img img:last-child { border-radius:0 8px 0 0; }

/* Home portfolio preview items */
.port-item img { width:100%; height:100%; object-fit:cover; display:block; }
