:root {
    --navy: #0A2A4A;
    --blue: #1B6FB3;
    --green: #7AB648;
    --green-dark: #6aa53d;
    --light: #F5F7FA;
    --white: #ffffff;
    --text: #4a5568;
    --text-dark: #1a202c;
    --border: #e2e8f0;
    --shadow: 0 10px 30px rgba(10, 42, 74, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, h5, h6 { color: var(--navy); margin: 0 0 1rem; line-height: 1.2; }
p { margin: 0 0 1rem; }
.container { width: min(1200px, 92%); margin: 0 auto; }
.section { padding: 5rem 0; }
.section-title {
    text-align: center;
    font-size: clamp(1.35rem, 2.8vw, 2.5rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.2;
}
.section-title .accent { color: var(--green); }
.section-subtitle {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 2.5rem;
    color: var(--text);
    padding: 0 0.25rem;
}
.highlight { color: var(--green); }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.5rem;
    border-radius: 999px;
    font-weight: 600;
    border: 2px solid transparent;
    cursor: pointer;
    transition: 0.25s ease;
    font-family: inherit;
    font-size: 0.95rem;
}
.btn .icon { width: 18px; height: 18px; display: inline-flex; }
.btn .icon svg { width: 100%; height: 100%; }
.btn-primary { background: var(--green); color: var(--white); }
.btn-primary:hover { background: var(--green-dark); }
.btn-secondary { background: var(--blue); color: var(--white); }
.btn-secondary:hover { background: #155a94; }
.btn-outline { background: transparent; border-color: var(--white); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,0.1); }
.btn-outline-dark { background: transparent; border-color: var(--navy); color: var(--navy); }
.btn-white { background: var(--white); color: var(--green); }
.btn-white:hover { background: #f0f0f0; }

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.35rem 0;
    flex-wrap: wrap;
}
.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    line-height: 0;
    z-index: 1002;
}
.logo img {
    height: clamp(52px, 10vw, 100px);
    width: auto;
    max-width: min(300px, 58vw);
    object-fit: contain;
    object-position: left center;
    display: block;
}
.header-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 1002;
}
.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}
.main-nav ul {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}
.main-nav a {
    font-weight: 500;
    color: var(--navy);
    font-size: 0.95rem;
    white-space: nowrap;
}
.main-nav a:hover { color: var(--green); }
.mobile-nav-cta { display: none; }
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
}
.nav-toggle-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle.is-active .nav-toggle-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav-toggle.is-active .nav-toggle-line:nth-child(2) {
    opacity: 0;
}
.nav-toggle.is-active .nav-toggle-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 42, 74, 0.45);
    z-index: 999;
}

/* Hero */
.hero-section {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    color: var(--white);
}
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10,42,74,0.88) 0%, rgba(10,42,74,0.55) 55%, rgba(10,42,74,0.2) 100%);
}
.hero-section .container { position: relative; z-index: 1; }
.hero-content { max-width: 620px; }
.hero-content h1 {
    color: var(--white);
    font-size: clamp(1.65rem, 5vw, 3.5rem);
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    line-height: 1.15;
}
.hero-content h1 .highlight { white-space: nowrap; }
.hero-content h1 .hero-subline { display: inline-block; white-space: nowrap; }
.hero-content p { font-size: 1.05rem; opacity: 0.95; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }

.page-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 480px;
    background: var(--white);
}
.page-hero-content {
    display: flex;
    align-items: center;
    padding: 3rem clamp(1.25rem, 5vw, 4rem);
}
.page-hero-content-inner {
    max-width: 560px;
    width: 100%;
}
.page-hero-label {
    color: var(--green);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}
.page-hero-content h1 {
    font-size: clamp(1.5rem, 3.5vw, 3rem);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.15;
}
.page-hero-content h1 .accent { color: var(--green); white-space: nowrap; }
.page-hero-image {
    position: relative;
    overflow: hidden;
    min-height: 280px;
}
.page-hero-image img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    clip-path: ellipse(90% 100% at 100% 50%);
}
.page-hero-dark {
    background: var(--navy);
    color: var(--white);
}
.page-hero-dark .page-hero-content h1 { color: var(--white); }
.page-hero-dark .page-hero-content p { color: rgba(255,255,255,0.85); }

.hero-features {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}
.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    font-weight: 500;
}
.hero-feature .icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(122,182,72,0.15);
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-feature .icon svg { width: 18px; height: 18px; }

/* Feature bar */
.feature-bar {
    background: var(--navy);
    color: var(--white);
    padding: 2rem 0;
}
.feature-bar-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}
.feature-bar-item {
    text-align: center;
}
.feature-bar-item .icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 0.75rem;
    color: var(--green);
}
.feature-bar-item .icon svg { width: 100%; height: 100%; }
.feature-bar-item h4 {
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 0.35rem;
}
.feature-bar-item p { font-size: 0.8rem; opacity: 0.85; margin: 0; }

/* How it works */
.how-it-works { background: var(--white); }
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    position: relative;
}
.step-item {
    text-align: center;
    position: relative;
    padding: 0 0.5rem;
}
.step-item:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -0.5rem;
    top: 42px;
    color: var(--green);
    font-size: 1.5rem;
    font-weight: 700;
}
.step-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 3px solid transparent;
}
.step-circle.green { background: rgba(122,182,72,0.12); color: var(--green); border-color: var(--green); }
.step-circle.blue { background: rgba(27,111,179,0.12); color: var(--blue); border-color: var(--blue); }
.step-circle svg { width: 36px; height: 36px; }
.step-number {
    position: absolute;
    bottom: -4px;
    right: -4px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}
.step-item h4 {
    font-size: 0.95rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}
.step-item p { font-size: 0.85rem; margin: 0; }

/* Lifestyle grid */
.lifestyle-section { padding: 0; }
.lifestyle-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.lifestyle-content {
    display: flex;
    align-items: center;
    padding: 0;
}
.lifestyle-content-inner {
    width: 100%;
    padding: clamp(2rem, 5vw, 3.5rem) clamp(1.25rem, 5vw, 4rem);
}
.lifestyle-content h2 {
    font-size: clamp(1.35rem, 2.8vw, 2.5rem);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}
.lifestyle-content h2 .highlight { white-space: nowrap; }
.lifestyle-content h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--green);
    margin-top: 0.75rem;
}
.lifestyle-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.lifestyle-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.lifestyle-item .icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--green);
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.lifestyle-item .icon svg { width: 20px; height: 20px; }
.lifestyle-item h4 { font-size: 0.95rem; margin-bottom: 0.25rem; }
.lifestyle-item p { font-size: 0.85rem; margin: 0; }

.cta-panel {
    background: var(--navy);
    color: var(--white);
    padding: 0;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.cta-panel-inner {
    width: 100%;
    padding: clamp(2rem, 5vw, 3.5rem) clamp(1.25rem, 5vw, 4rem);
    position: relative;
}
.cta-panel h2 {
    color: var(--white);
    font-size: clamp(1.25rem, 2.8vw, 2.25rem);
    text-transform: uppercase;
    max-width: 100%;
    word-break: break-word;
}
.cta-panel p { opacity: 0.9; }
.cta-panel-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}
.cta-panel-actions .btn { min-width: 0; }
.cta-panel-image {
    position: absolute;
    right: 0;
    bottom: 0;
    width: clamp(100px, 18vw, 180px);
    opacity: 0.9;
    pointer-events: none;
}

/* Why choose */
.why-choose { background: var(--light); }
.why-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
}
.why-item { text-align: center; }
.why-item .icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 2px solid var(--green);
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}
.why-item .icon svg { width: 28px; height: 28px; }
.why-item h4 { font-size: 0.9rem; text-transform: uppercase; margin-bottom: 0.5rem; }
.why-item p { font-size: 0.8rem; margin: 0; }

/* Services grid */
.services-grid-wrap { background: var(--white); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.service-card {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    transition: 0.25s ease;
}
.service-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.service-card .icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid var(--green);
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}
.service-card .icon svg { width: 28px; height: 28px; }
.service-card h4 { color: var(--blue); font-size: 1rem; margin-bottom: 0.75rem; }
.service-card p { font-size: 0.9rem; margin: 0; }

/* Testimonials */
.testimonials-section {
    background: var(--navy);
    color: var(--white);
}
.testimonials-section .section-title { color: var(--white); }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.testimonial-card {
    background: rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.1);
}
.testimonial-card .quote-icon {
    color: var(--green);
    width: 32px;
    height: 32px;
    margin-bottom: 1rem;
}
.testimonial-card .quote-icon svg { width: 100%; height: 100%; }
.testimonial-card p { color: rgba(255,255,255,0.9); font-size: 0.95rem; }
.testimonial-stars { color: #fbbf24; margin: 1rem 0 0.5rem; display: inline-flex; gap: 0.2rem; align-items: center; }
.testimonial-stars svg { width: 16px; height: 16px; }
.testimonial-author { font-weight: 600; color: var(--white); }

/* CTA banners */
.cta-banner {
    padding: 2.5rem 0;
}
.cta-banner.green { background: var(--green); color: var(--white); }
.cta-banner.navy { background: var(--navy); color: var(--white); }
.cta-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}
.cta-banner-text {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}
.cta-banner-text .icon { width: 40px; height: 40px; flex-shrink: 0; }
.cta-banner-text .icon svg { width: 100%; height: 100%; }
.cta-banner-text p { margin: 0; font-size: 1.05rem; font-weight: 500; }
.cta-banner-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Trust bar */
.trust-bar { background: var(--light); padding: 3rem 0; }

/* Who we are */
.who-we-are { background: var(--light); }
.who-we-are-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.who-we-are-title {
    font-size: clamp(1.35rem, 2.8vw, 2.5rem);
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 1rem;
    line-height: 1.2;
}
.who-we-are-title .accent { color: var(--green); white-space: nowrap; }
.who-we-are-lead {
    font-size: 1.05rem;
    color: var(--text);
    margin-bottom: 1rem;
}
.who-we-are-body {
    color: var(--text);
    margin-bottom: 1.5rem;
}
.who-we-are-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: grid;
    gap: 0.75rem;
}
.who-we-are-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    color: var(--navy);
}
.who-we-are-features .icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(122, 182, 72, 0.15);
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.who-we-are-features .icon svg { width: 18px; height: 18px; }
.who-we-are-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow);
    object-fit: cover;
    min-height: 360px;
}
.posts-section { background: var(--white); }
.section-cta-center {
    text-align: center;
    margin-top: 2.5rem;
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.trust-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.trust-item .icon {
    width: 48px;
    height: 48px;
    color: var(--green);
    flex-shrink: 0;
}
.trust-item .icon svg { width: 100%; height: 100%; }
.trust-item h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 0.35rem;
}
.trust-item p { font-size: 0.85rem; margin: 0; }

/* FAQ */
.faq-section { background: var(--white); }
.faq-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    align-items: start;
}
.faq-list { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
    width: 100%;
    background: none;
    border: 0;
    padding: 1.25rem 0;
    text-align: left;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--green);
    transition: 0.25s;
}
.faq-item.active .faq-question::after { content: '−'; }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.faq-item.active .faq-answer { max-height: 500px; padding-bottom: 1.25rem; }
.faq-answer p { font-size: 0.95rem; }
.faq-sidebar {
    background: rgba(122,182,72,0.12);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
}
.faq-sidebar img { width: 120px; margin: 0 auto 1.5rem; }
.faq-sidebar h3 { font-size: 1.25rem; margin-bottom: 1.5rem; }

/* Rich text */
.rich-text-section { background: var(--white); }
.rich-text-content {
    max-width: 800px;
    margin: 0 auto;
    overflow-wrap: break-word;
}
.rich-text-content img {
    max-width: 100%;
    height: auto;
}
.rich-text-content h2, .rich-text-content h3 { margin-top: 2rem; }
.rich-text-content ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.rich-text-content li { margin-bottom: 0.5rem; }

/* Forms */
.form-section { background: var(--light); }
.contact-layout {
    display: grid;
    grid-template-columns: minmax(240px, 320px) 1fr;
    gap: 1.5rem;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}
.contact-info-card {
    background: var(--white);
    padding: 1.75rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
}
.contact-info-card h3 { margin: 0 0 1rem; font-size: 1.15rem; }
.contact-info-list { list-style: none; padding: 0; margin: 0 0 1.25rem; }
.contact-info-list li { margin-bottom: 1rem; }
.contact-info-list strong { display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.05em; color: #64748b; margin-bottom: 0.25rem; }
.contact-info-list a { color: var(--blue); text-decoration: none; }
.contact-info-list a:hover { text-decoration: underline; }
.contact-layout .form-card { max-width: none; margin: 0; }
.form-card {
    max-width: 760px;
    margin: 0 auto;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.form-group { margin-bottom: 1rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.35rem;
    color: var(--navy);
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.5rem;
}
.alert {
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}
.alert-success { background: #d1fae5; color: #065f46; }
.alert-error { background: #fee2e2; color: #991b1b; }

/* Blog */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.blog-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.blog-card-image img { width: 100%; height: 200px; object-fit: cover; }
.blog-card-body { padding: 1.5rem; }
.blog-card-meta {
    font-size: 0.8rem;
    color: var(--green);
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.blog-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    line-height: 1.35;
    word-break: break-word;
}
.blog-card p { font-size: 0.9rem; }
.post-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 0.25rem;
    overflow-wrap: break-word;
}
.post-content img { border-radius: 12px; margin: 1.5rem 0; }
.post-meta { color: var(--text); font-size: 0.9rem; margin-bottom: 2rem; }

/* Service detail */
.service-detail-hero {
    background: var(--navy);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}
.service-detail-hero h1 { color: var(--white); }
.service-detail-content { max-width: 800px; margin: 0 auto; padding: 4rem 0; }

/* Footer */
.site-footer {
    background: var(--navy);
    color: rgba(255,255,255,0.85);
    padding-top: 4rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 2rem;
    padding-bottom: 3rem;
}
.footer-brand-name {
    display: inline-block;
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}
.footer-brand-name:hover { color: var(--green); }
.footer-lead {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}
.footer-about {
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
    max-width: 320px;
    opacity: 0.88;
}
.social-links { display: flex; gap: 0.75rem; }
.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}
.social-links a:hover { background: var(--green); border-color: var(--green); }
.footer-col h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 1rem;
}
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col a { font-size: 0.9rem; opacity: 0.85; }
.footer-col a:hover { opacity: 1; color: var(--green); }
.contact-list .contact-address { line-height: 1.55; opacity: 0.85; font-size: 0.9rem; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.25rem 0;
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
}
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a:hover { color: var(--green); }
.footer-credit { margin: 0; opacity: 0.75; }
.footer-credit a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-weight: 600;
}
.footer-credit a:hover { color: var(--green); }
.footer-copyright { margin: 0; }

.page-404 { text-align: center; padding: 6rem 0; }
.page-404 h1 { font-size: 4rem; }

/* Responsive */
@media (min-width: 1025px) {
    .main-nav {
        position: static;
        width: auto;
        height: auto;
        transform: none;
        box-shadow: none;
        padding: 0;
        overflow: visible;
        flex: 1;
        flex-direction: row;
        background: transparent;
    }

    .main-nav ul { flex-direction: row; }
    .main-nav li { border-bottom: 0; width: auto; }
    .main-nav a { display: inline; padding: 0; font-size: 0.95rem; }
    .mobile-nav-cta { display: none !important; }
    .nav-toggle { display: none !important; }
    .btn-book-header { display: inline-flex !important; }
    .nav-overlay { display: none !important; }
}

@media (max-width: 1024px) {
    .header-inner { flex-wrap: nowrap; padding: 0.5rem 0; }

    .nav-toggle { display: flex; }
    .btn-book-header { display: none; }

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: min(320px, 88vw);
        height: 100vh;
        height: 100dvh;
        flex: none;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        background: var(--white);
        box-shadow: -8px 0 30px rgba(10, 42, 74, 0.15);
        padding: 5rem 1.25rem 2rem;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 1001;
        overflow-y: auto;
    }

    .main-nav.is-open { transform: translateX(0); }

    .main-nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
    }

    .main-nav li {
        width: 100%;
        border-bottom: 1px solid var(--border);
    }

    .main-nav a {
        display: block;
        padding: 0.9rem 0.25rem;
        font-size: 1rem;
        white-space: normal;
    }

    .mobile-nav-cta {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        border-top: 1px solid var(--border);
    }

    .mobile-nav-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .section { padding: 3.75rem 0; }

    .page-hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .page-hero-image { order: -1; min-height: 240px; }
    .page-hero-image img { clip-path: none; min-height: 240px; }
    .page-hero-content { padding: 2rem clamp(1.25rem, 5vw, 2rem); }

    .feature-bar-grid { grid-template-columns: repeat(3, 1fr); }
    .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .step-item:not(:last-child)::after { display: none; }
    .why-grid { grid-template-columns: repeat(3, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .faq-grid { grid-template-columns: 1fr; }

    .lifestyle-grid { grid-template-columns: 1fr; }

    .who-we-are-grid { grid-template-columns: 1fr; gap: 2rem; }
    .who-we-are-image { order: -1; }
    .who-we-are-image img { min-height: 220px; }

    .cta-panel-image { opacity: 0.25; width: 100px; }
}

@media (max-width: 768px) {
    .section { padding: 2.75rem 0; }
    .container { width: min(1200px, 90%); }

    .hero-section {
        min-height: min(520px, 85vh);
        background-position: 70% center;
    }

    .hero-section::before {
        background: linear-gradient(180deg, rgba(10,42,74,0.9) 0%, rgba(10,42,74,0.75) 100%);
    }

    .hero-content { max-width: 100%; }
    .hero-content p { font-size: 0.95rem; }
    .hero-actions { flex-direction: column; margin-top: 1.5rem; }
    .hero-actions .btn { width: 100%; }

    .page-hero-content { padding: 1.75rem clamp(1rem, 4vw, 1.5rem) 2rem; }
    .page-hero-image,
    .page-hero-image img { min-height: 220px; }

    .feature-bar { padding: 1.25rem 0; }
    .feature-bar-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .feature-bar-item .icon { width: 36px; height: 36px; }
    .feature-bar-item h4 { font-size: 0.85rem; }

    .section-subtitle { margin-bottom: 2rem; font-size: 0.95rem; }

    .steps-grid { grid-template-columns: 1fr; gap: 2rem; }
    .step-circle { width: 76px; height: 76px; }
    .step-circle svg { width: 30px; height: 30px; }

    .why-grid { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
    .why-item .icon { width: 58px; height: 58px; }

    .services-grid { grid-template-columns: 1fr; gap: 1.25rem; }
    .service-card { padding: 1.5rem 1rem; }

    .testimonial-card { padding: 1.5rem; }

    .trust-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .trust-item h4 { font-size: 0.85rem; }

    .lifestyle-items { grid-template-columns: 1fr; gap: 1.25rem; }
    .lifestyle-content h2 { margin-bottom: 1.25rem; }

    .cta-panel-actions { flex-direction: column; }
    .cta-panel-actions .btn { width: 100%; }
    .cta-panel-image { display: none; }

    .who-we-are-title { font-size: clamp(1.35rem, 5vw, 2rem); }
    .who-we-are-image img { min-height: 200px; }
    .who-we-are-content .btn { width: 100%; justify-content: center; }

    .blog-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .section-cta-center .btn { width: 100%; max-width: 320px; }

    .faq-question { font-size: 0.95rem; padding: 1rem 0; }
    .faq-sidebar { padding: 1.75rem 1.25rem; }
    .faq-sidebar .btn { width: 100%; }

    .cta-banner { padding: 2rem 0; }
    .cta-banner-inner { flex-direction: column; text-align: center; }
    .cta-banner-text { flex-direction: column; }
    .cta-banner-text p { font-size: 0.95rem; }
    .cta-banner-actions { width: 100%; flex-direction: column; }
    .cta-banner-actions .btn { width: 100%; }

    .form-grid { grid-template-columns: 1fr; }
    .contact-layout { grid-template-columns: 1fr; }
    .form-card { padding: 1.25rem; }
    .form-section .section-title { margin-bottom: 0.5rem; }
    .form-actions { flex-direction: column; }
    .form-actions .btn { width: 100%; }

    .hero-features { flex-direction: column; gap: 0.75rem; align-items: flex-start; }

    .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; padding-bottom: 2rem; }
    .site-footer { padding-top: 2.5rem; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
    .footer-links { justify-content: center; flex-wrap: wrap; }

    .service-detail-hero { padding: 2.5rem 0; }
    .service-detail-hero h1 { font-size: clamp(1.35rem, 5vw, 2rem); }
    .service-detail-content { padding: 2.5rem 0; }
    .service-detail-content .form-actions { flex-direction: column; }
    .service-detail-content .form-actions .btn { width: 100%; justify-content: center; }

    .post-content h1 { font-size: clamp(1.35rem, 5vw, 2rem); }
    .page-404 { padding: 4rem 0; }
    .page-404 h1 { font-size: 3rem; }
}

@media (max-width: 480px) {
    .section { padding: 2.25rem 0; }
    .container { width: min(1200px, 88%); }

    .feature-bar-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }

    .hero-section { min-height: 460px; }
    .hero-content h1 .hero-subline { white-space: normal; }

    .main-nav { width: 100vw; padding-top: 4.5rem; }

    .btn { padding: 0.75rem 1.15rem; font-size: 0.9rem; }

    .lifestyle-content-inner,
    .cta-panel-inner { padding: 1.75rem clamp(1rem, 4vw, 1.5rem); }

    .step-item h4 { font-size: 0.85rem; }
}
