:root {
    --navy: #0b2742;
    --navy-2: #143a5a;
    --gold: #b58b2a;
    --gold-2: #d8b766;
    --cream: #f6f0e3;
    --white: #fff;
    --ink: #17212b;
    --muted: #637082;
    --line: #e5decf;
    --teal: #16756f;
    --shadow: 0 18px 50px rgba(11, 39, 66, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Cairo, Arial, sans-serif; color: var(--ink); background: var(--white); line-height: 1.8; }
a { color: inherit; }

.site-header {
    position: fixed; inset: 0 0 auto; z-index: 50;
    min-height: 72px; display: flex; align-items: center; gap: 16px;
    padding: 10px 18px; background: rgba(255,255,255,.96);
    border-bottom: 1px solid var(--line); box-shadow: 0 8px 25px rgba(11,39,66,.08);
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; min-width: 230px; }
.brand img { width: 74px; height: 48px; object-fit: contain; }
.brand strong, .brand small { display: block; line-height: 1.35; }
.brand strong { color: var(--navy); font-size: 15px; font-weight: 900; }
.brand small { color: var(--gold); font-size: 12px; font-weight: 800; }
.main-nav { display: flex; justify-content: center; gap: 6px; flex: 1; }
.main-nav a { padding: 8px 10px; color: var(--navy); text-decoration: none; font-size: 14px; font-weight: 800; border-radius: 8px; }
.main-nav a:hover { background: var(--cream); }
.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 8px; background: var(--cream); color: var(--navy); }

.header-action, .btn, .quick-link, .small-action {
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    min-height: 44px; padding: 10px 16px; border-radius: 8px;
    border: 0; text-decoration: none; font-family: inherit; font-weight: 900; cursor: pointer;
}
.header-action { color: var(--white); background: var(--teal); white-space: nowrap; }
.btn-primary { color: var(--white); background: var(--gold); box-shadow: 0 12px 28px rgba(181,139,42,.28); }
.btn-secondary { color: var(--navy); background: var(--white); border: 1px solid var(--line); }

.section-inner { width: min(1180px, calc(100% - 32px)); margin-inline: auto; }
.hero {
    min-height: 86svh; display: flex; align-items: center; padding: 112px 0 60px; color: var(--white);
    background: linear-gradient(90deg, rgba(7,26,44,.88), rgba(7,26,44,.55)), var(--hero-image) center/cover no-repeat, var(--navy);
}
.hero-content { width: min(780px, calc(100% - 32px)); margin-inline: auto; }
.eyebrow { margin: 0 0 8px; color: var(--gold-2); font-weight: 900; font-size: 13px; }
h1, h2, h3 { margin-top: 0; color: var(--navy); line-height: 1.35; font-weight: 900; }
.hero h1 { color: var(--white); font-size: 46px; }
.hero-lead { margin: 14px 0 8px; font-size: 26px; font-weight: 900; }
.hero-copy { max-width: 680px; color: rgba(255,255,255,.88); font-size: 17px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.quick-band { position: relative; z-index: 3; margin-top: -34px; }
.quick-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.quick-link { min-height: 86px; color: var(--navy); background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow); }
.quick-link i, .service-icon, .values-grid i { color: var(--white); background: var(--gold); }

.section { padding: 82px 0; }
.section-white { background: var(--white); }
.section-soft { background: #f8f5ee; }
.section-navy { color: var(--white); background: var(--navy); }
.section-navy h2, .section-navy p, .section-navy li { color: var(--white); }
.split-layout, .feature-layout, .request-layout, .contact-layout, .review-layout {
    display: grid; grid-template-columns: 1.05fr .95fr; gap: 32px; align-items: center;
}

.values-grid, .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.values-grid article, .service-card, .contact-card, details, .request-form {
    background: var(--white); border: 1px solid var(--line); border-radius: 8px; box-shadow: 0 10px 30px rgba(11,39,66,.06);
}
.values-grid article { padding: 20px; }
.values-grid i, .service-icon { width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center; border-radius: 8px; margin-bottom: 12px; }
.service-card { overflow: hidden; }
.service-image { display: block; min-height: 168px; background: linear-gradient(180deg, rgba(11,39,66,.08), rgba(11,39,66,.35)), var(--card-image) center/cover no-repeat; }
.service-body { padding: 18px; }
.service-icon { margin-top: -40px; border: 3px solid var(--white); }
.service-card p, .section p, .contact-card p { color: var(--muted); }
.service-card ul, .check-list { margin: 0 0 18px; padding: 0; list-style: none; }
.service-card li, .check-list li { position: relative; padding-inline-start: 20px; color: var(--muted); font-size: 14px; }
.service-card li::before, .check-list li::before { content: ""; position: absolute; inset-inline-start: 0; top: 14px; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.small-action { width: 100%; color: var(--white); background: var(--navy); }

.feature-section { padding: 82px 0; }
.feature-media, .photo-box { min-height: 430px; border-radius: 8px; background: var(--feature-image, var(--photo)) center/cover no-repeat; box-shadow: var(--shadow); }
.notice { padding: 12px 14px; border: 1px solid rgba(216,183,102,.36); border-radius: 8px; background: rgba(216,183,102,.15); color: var(--gold-2); font-weight: 800; }
.tag-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.tag-list span { min-height: 36px; padding: 7px 12px; border-radius: 8px; background: var(--cream); border: 1px solid var(--line); color: var(--navy); font-weight: 800; }

.request-section { color: var(--white); background: linear-gradient(90deg, rgba(11,39,66,.95), rgba(20,58,90,.9)), url("https://images.unsplash.com/photo-1516321497487-e288fb19713f?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat; }
.request-section h2, .request-section p { color: var(--white); }
.request-form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; padding: 24px; }
.request-form label { display: grid; gap: 6px; }
.request-form span { color: var(--navy); font-weight: 900; }
input, select, textarea { width: 100%; min-height: 46px; padding: 10px 12px; border: 1px solid var(--line); border-radius: 8px; font-family: inherit; font-size: 15px; }
textarea { resize: vertical; }
.checkbox-line, .form-message, .request-form button, .wide-field { grid-column: 1 / -1; }
.checkbox-line { display: flex !important; align-items: flex-start; gap: 10px; padding: 12px; background: #fffaf1; border: 1px solid var(--line); border-radius: 8px; }
.checkbox-line input { width: 20px; min-height: 20px; }
.hp-field { position: absolute; left: -9999px; opacity: 0; }
.form-message.success { color: var(--teal); }
.form-message.error { color: #b42318; }

.contact-section { background: var(--navy); }
.contact-card { padding: 24px; }
.floating-whatsapp { position: fixed; z-index: 60; right: 18px; bottom: 18px; display: inline-flex; gap: 10px; padding: 12px 18px; color: var(--white); background: #118c58; border-radius: 8px; text-decoration: none; font-weight: 900; box-shadow: 0 15px 35px rgba(17,140,88,.32); }
.site-footer { padding: 24px 0 86px; color: rgba(255,255,255,.8); background: #071a2c; }
.site-footer a { color: var(--gold-2); font-weight: 900; text-decoration: none; }
details { margin-bottom: 10px; padding: 16px; }
summary { cursor: pointer; color: var(--navy); font-weight: 900; }

@media (max-width: 980px) {
    .site-header { flex-wrap: wrap; }
    .brand { flex: 1; min-width: 0; }
    .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
    .main-nav { order: 3; flex-basis: 100%; display: none; grid-template-columns: repeat(2, 1fr); }
    .main-nav.open { display: grid; }
    .header-action { display: none; }
    .quick-grid, .values-grid, .services-grid, .split-layout, .feature-layout, .request-layout, .contact-layout, .review-layout { grid-template-columns: 1fr; }
    .quick-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .hero { min-height: 78svh; padding-top: 124px; }
    .hero h1 { font-size: 30px; }
    .hero-lead { font-size: 22px; }
    .section { padding: 58px 0; }
    .quick-band { margin-top: 0; padding-top: 12px; background: #f8f5ee; }
    .quick-grid, .request-form { grid-template-columns: 1fr; }
    .btn, .header-action { width: 100%; }
}
