/* CSS Variables */
:root {
    --maroon: #5F1919;
    --maroon-dark: #3D0F0F;
    --gold: #BC8B3A;
    --gold-light: #E8C46A;
    --crest-navy: #26446F;
    --charcoal: #180805;
    --slate: #334155;
    --off-white: #E0DED4;
    --white: #FFFFFF;

    --font-family: 'Inter', system-ui, -apple-system, sans-serif;
    --container-width: 1200px;
    --header-height: 80px;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    --radius: 6px;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: var(--charcoal);
    background-color: var(--white);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--charcoal);
}

p {
    margin-bottom: 1rem;
    color: var(--slate);
}

a {
    text-decoration: none;
    color: var(--crest-navy);
    transition: color 0.2s ease;
}

a:hover {
    color: var(--maroon);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.section-spacing {
    padding: var(--spacing-xl) 0;
}

.bg-offwhite {
    background-color: var(--off-white);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: var(--spacing-lg);
    font-weight: 700;
}

/* API: Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--maroon);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--maroon-dark);
    color: var(--gold-light);
    /* Subtle gold text on hover for premium feel */
}

.btn-secondary {
    background-color: transparent;
    color: var(--maroon);
    border-color: var(--maroon);
}

.btn-secondary:hover {
    background-color: var(--maroon);
    color: var(--white);
}

.btn-block {
    display: block;
    width: 100%;
}

/* Header */
.sticky-header {
    position: sticky;
    top: 0;
    background-color: var(--maroon-dark);
    /* Using dark maroon for nav */
    color: var(--white);
    height: var(--header-height);
    z-index: 1000;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-logo {
    height: 60px;
    /* Slightly larger to account for padding */
    width: auto;
    background-color: var(--white);
    padding: 5px;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.02em;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #DDDDDD;
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-buttons {
    display: flex;
    gap: 1rem;
}

.nav-buttons .btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.nav-buttons .btn-secondary {
    border-color: var(--white);
    color: var(--white);
}

.nav-buttons .btn-secondary:hover {
    background-color: var(--white);
    color: var(--maroon-dark);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    border-radius: 2px;
}

/* Hero Section */
/* Hero Section */
.hero {
    background-color: var(--off-white);
    padding: var(--spacing-xl) 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    object-fit: cover;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.hero-headline {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subheadline {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 90%;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

.summary-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border-top: 4px solid var(--gold);
}

.summary-card h3 {
    color: var(--maroon);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.summary-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.summary-list .icon {
    color: var(--gold);
    font-weight: bold;
}

/* About Section */
.about-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--spacing-lg);
    align-items: start;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--maroon);
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.about-principles {
    background-color: rgba(95, 25, 25, 0.05);
    /* Light maroon tint */
    padding: 2rem;
    border-radius: var(--radius);
    border-left: 3px solid var(--maroon);
}

.principles-list li {
    margin-bottom: 0.75rem;
    color: var(--slate);
}

.principles-list strong {
    color: var(--maroon-dark);
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform 0.2s ease;
    border-bottom: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.service-card h3 {
    color: var(--maroon);
    font-size: 1.5rem;
}

.service-best-for {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--maroon-dark);
    font-style: italic;
    background-color: #f9f9f9;
    padding: 0.5rem;
    border-radius: 4px;
}

/* Why Choose */
.why-choose {
    background-image: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), url('why-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.reasons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.reason-item h3 {
    font-size: 1.25rem;
    color: var(--maroon);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.reason-item h3::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: var(--gold);
    border-radius: 50%;
    margin-right: 10px;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-size: 6rem;
    color: var(--off-white);
    position: absolute;
    top: -10px;
    left: 20px;
    z-index: 0;
}

.testimonial-card .quote {
    position: relative;
    z-index: 1;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--maroon-dark);
}

.testimonial-card .author {
    margin-top: 1.5rem;
    font-weight: 700;
    text-align: right;
    color: var(--gold);
}

/* CTA */
.cta-container {
    text-align: center;
    max-width: 800px;
}

.cta h2 {
    font-size: 2.5rem;
    color: var(--maroon-dark);
}

.cta-buttons {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.cta-email {
    margin-top: 1.5rem;
    font-weight: 600;
}

/* Contact Form */
.contact-container {
    max-width: 800px;
}

.contact-form-wrapper {
    background-color: var(--white);
    padding: 3rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.contact-form-wrapper h2 {
    color: var(--maroon);
}

.contact-form {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--maroon-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--maroon);
    box-shadow: 0 0 0 3px rgba(95, 25, 25, 0.1);
}

/* Footer */
.main-footer {
    background-color: var(--maroon-dark);
    color: var(--white);
    padding: var(--spacing-lg) 0 2rem 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.brand-name-footer {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer-email {
    color: var(--gold);
    display: block;
    margin-bottom: 1rem;
}

.footer-email:hover {
    color: var(--gold-light);
}

.service-area {
    color: #aaa;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    /* Adjusted gap for icon aesthetics */
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: right;
}

.footer-links a {
    color: #ddd;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-social-list a {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
}

.social-icon {
    width: 24px;
    height: 24px;
    stroke: var(--gold);
    transition: stroke 0.2s ease;
    pointer-events: none;
    /* Ensure click passes to parent anchor */
}

.footer-social-list a:hover .social-icon {
    stroke: var(--white);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #888;
}

/* Info Bands */
.info-band {
    padding: 1rem 0;
    text-align: center;
    font-size: 1.1rem;
}

.bg-maroon {
    background-color: var(--maroon);
    color: var(--white);
}

.bg-light {
    background-color: #f8f9fa;
    color: var(--charcoal);
    border-bottom: 1px solid #eee;
}

/* Service Deliverables */
.service-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: var(--radius) var(--radius) 0 0;
    margin: -2rem -2rem 1.5rem -2rem;
    /* Pull image to edges of padding */
    width: calc(100% + 4rem);
    /* Compensate for negative margin */
    max-width: none;
}

.deliverables {
    margin-top: 1rem;
    font-size: 0.95rem;
}

.deliverables h4 {
    font-size: 1rem;
    color: var(--maroon);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.deliverables ul {
    list-style: disc;
    padding-left: 1.2rem;
}

.deliverables li {
    margin-bottom: 0.3rem;
}

/* How It Works */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.step-number {
    background: var(--gold);
    color: var(--maroon);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 1rem auto;
    font-size: 1.2rem;
}

/* What to Expect */
.expect-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.expect-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    border-left: 5px solid var(--maroon);
    box-shadow: var(--shadow);
}

.expect-card h3 {
    color: var(--maroon);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

/* Utils */
.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

.section-intro {
    max-width: 700px;
    margin: 0 auto;
    color: var(--slate);
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 900px) {
    .section-title {
        font-size: 2rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-headline {
        font-size: 2.5rem;
    }

    .hero-subheadline {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .summary-card {
        text-align: left;
        max-width: 500px;
        margin: 0 auto;
    }

    .about-container {
        grid-template-columns: 1fr;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        align-items: center;
    }

    .footer-links {
        align-items: center;
    }

    .footer-links ul {
        gap: 1rem;
        text-align: center;
    }

    .why-choose {
        background-attachment: scroll;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .main-nav {
        position: absolute;
        top: var(--header-height);
        left: 0;
        right: 0;
        background-color: var(--maroon-dark);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    }

    .main-nav.active {
        transform: translateY(0);
    }

    .nav-links {
        flex-direction: column;
        text-align: center;
    }

    .nav-buttons {
        flex-direction: column;
        width: 100%;
    }

    /* Navigation Mobile Fix */
    .nav-buttons .btn {
        width: 100%;
    }
}

/* Collapsible About Section */
.about-details summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s;
}

.about-details summary::-webkit-details-marker {
    display: none;
}

.about-details summary:hover {
    border-bottom-color: var(--gold);
}

.dropdown-icon {
    color: var(--gold);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.about-details[open] .dropdown-icon {
    transform: rotate(180deg);
}

.about-details[open] .about-text {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}