/* General Reset & Variables */
:root {
    --bg-color: #f6eedc;
    --navy-blue: #1a3a8f;
    --navy-hover: #0f2566;
    --gold: #c8962a;
    --gold-light: #e8c06a;
    --text-muted: #8d7b68;
    --text-light-blue: #1a3a8f;
    --line-color: rgba(184, 150, 107, 0.15);
    --margin-line: 100px;
    --margin-color: transparent;

    --font-sans: 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', serif;
}

@media (min-width: 1600px) {
    :root {
        --margin-color: rgba(210, 80, 80, 0.4);
    }
}

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

body {
    background-color: var(--bg-color);
    color: #2d2d2d;
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Notebook background lines */
.notebook-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(to right,
            transparent calc(var(--margin-line) - 1px),
            var(--margin-color) calc(var(--margin-line) - 1px),
            var(--margin-color) calc(var(--margin-line) + 1px),
            transparent calc(var(--margin-line) + 1px)),
        linear-gradient(var(--line-color) 1px, transparent 1px);
    background-size:
        100% 100%,
        100% 32px;
    background-repeat:
        no-repeat,
        repeat;
    pointer-events: none;
    z-index: -1;
}

/* Header */
.header {
    max-width: 1400px;
    margin: 0 auto;
    padding: 24px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 60px;
    width: auto;
    display: block;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-title {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.2px;
}

.logo-subtitle {
    font-size: 14px;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--navy-blue);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    position: relative;
    padding-bottom: 4px;
    transition: opacity 0.2s;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    font-weight: 600;
    color: var(--navy-blue);
}

.nav-link.active::after {
    width: 100%;
}

.btn-consultation {
    background-color: var(--navy-blue);
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.btn-consultation:hover {
    background-color: var(--navy-hover);
}

/* Main Container */
.main-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px 0;
}

/* Hero Section */
.hero {
    margin-bottom: 70px;
    position: relative;
}

.hero-quote {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 12px;
    font-style: italic;
}

.strikeout-container {
    position: relative;
    display: inline-block;
    margin-bottom: 16px;
}

.hero-strikeout-text {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 400;
    color: #4a4a4a;
    display: inline-block;
    opacity: 0.8;
}

.strike-line {
    position: absolute;
    top: 50%;
    left: -10px;
    right: -70px;
    height: 3px;
    background-color: #2b7a78;
    /* Muted teal/blue strike line */
    transform: rotate(-1.5deg);
    pointer-events: none;
}

.stamp-badge {
    position: absolute;
    right: -100px;
    top: -30px;
    width: 100px;
    height: 100px;
    color: #2b7a78;
    transform: rotate(8deg);
}

.stamp-svg {
    width: 100%;
    height: 100%;
}

.stamp-text-arc {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 8.5px;
    letter-spacing: 0.5px;
    fill: #2b7a78;
}

.stamp-text-center {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.5px;
    fill: #2b7a78;
}

.hero-heading {
    font-family: var(--font-serif);
    font-size: 54px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 28px;
    letter-spacing: -0.5px;
    max-width: 900px;
}

.hero-italic {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    color: var(--gold);
}

.hero-navy {
    color: var(--navy-blue);
}

.highlight-underline {
    position: relative;
    display: inline;
    background-image: linear-gradient(var(--gold), var(--gold));
    background-position: 0 92%;
    background-size: 100% 4px;
    background-repeat: no-repeat;
    padding-bottom: 6px;
}

.hero-description {
    font-size: 17px;
    color: #4a4a4a;
    max-width: 600px;
    margin-bottom: 32px;
    line-height: 1.6;
    font-weight: 400;
}

.cta-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-primary {
    background-color: var(--navy-blue);
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 14px 28px;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.btn-primary:hover {
    background-color: var(--navy-hover);
}

.cta-note {
    color: var(--text-muted);
    font-size: 14px;
}

/* Cards Section */
.cards-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 100px;
}

.card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1),
        box-shadow 0.3s cubic-bezier(0.165, 0.84, 0.44, 1),
        border-color 0.3s ease;
}

.card:hover {
    transform: translateY(-6px);
    border-color: rgba(26, 58, 143, 0.12);
    box-shadow: 0 12px 32px rgba(26, 58, 143, 0.06);
}

.card-pill {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-light-blue);
    border: 1.5px solid var(--text-light-blue);
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-title {
    font-family: var(--font-serif);
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 12px;
}

.card-subtitle {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 18px;
    color: var(--gold);
    margin-bottom: 14px;
    line-height: 1.45;
}

.card-text {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* What We Do Section */
.what-we-do {
    border-top: 1px solid rgba(13, 37, 69, 0.1);
    padding-top: 50px;
    margin-bottom: 80px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 12px;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: var(--gold);
    border-radius: 1.5px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.service-item {
    display: flex;
    flex-direction: column;
}

@media (min-width: 769px) {
    .service-item:not(:first-child) {
        border-left: 1px solid rgba(13, 37, 69, 0.1);
        padding-left: 30px;
    }
}

.service-num {
    font-size: 15px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 8px;
}

.service-title {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
}

.service-desc {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Contact Section & Form */


.contact-subtitle-text {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 20px;
    color: var(--gold);
    margin-bottom: 24px;
    line-height: 1.45;
}

.contact-offer-text {
    font-size: 16.5px;
    color: #4a4a4a;
    line-height: 1.7;
}

.contact-form {
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy-blue);
}

.form-input,
.form-select,
.form-textarea {
    font-family: var(--font-sans);
    font-size: 15px;
    padding: 12px 16px;
    border: 1.5px solid rgba(13, 37, 69, 0.1);
    border-radius: 6px;
    background-color: #fcfcfc;
    color: #2d2d2d;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--navy-blue);
    box-shadow: 0 0 0 3px rgba(26, 58, 143, 0.08);
}

.form-textarea {
    min-height: 100px;
    resize: vertical;
}

.form-submit-btn {
    align-self: flex-start;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border: none;
}

.form-note {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
}

@media (max-width: 768px) {
    .form-submit-btn {
        width: 100%;
        text-align: center;
    }
}

/* Footer */
.footer {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px 40px;
    border-top: 1px solid rgba(13, 37, 69, 0.4);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-brand-desc {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 320px;
}

.footer-heading {
    font-size: 15px;
    font-weight: 600;
    color: var(--navy-blue);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s, padding-left 0.2s;
    display: inline-flex;
    align-items: center;
}

.footer-links a::before {
    content: "→";
    display: inline-block;
    margin-right: 8px;
    color: var(--gold);
    transition: transform 0.2s, color 0.2s;
}

.footer-links a:hover {
    color: var(--navy-blue);
    padding-left: 4px;
}

.footer-links a:hover::before {
    color: var(--navy-blue);
    transform: translateX(2px);
}

.footer-contact-info {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.footer-contact-info a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact-info a:hover {
    color: var(--navy-blue);
}

.developer-link {
    color: var(--gold) !important;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.developer-link:hover {
    color: var(--navy-blue) !important;
}

.btn-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #0077b5;
    /* LinkedIn Blue */
    color: #ffffff !important;
    /* Force white text */
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 4px;
    width: fit-content;
    transition: background-color 0.2s, transform 0.2s;
}

.btn-linkedin:hover {
    background-color: #005987;
    transform: translateY(-1px);
    padding-left: 16px !important;
    /* Prevent sliding text movement inherited from other links */
}

.linkedin-icon {
    width: 14px;
    height: 14px;
}


.footer-bottom {
    border-top: 1px solid rgba(13, 37, 69, 0.2);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copy {
    font-size: 13.5px;
    color: var(--text-muted);
}

.footer-slogan {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 16px;
    color: var(--gold);
}

/* ── Hamburger Toggle ── */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.menu-toggle .bar {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--navy-blue);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
    transform-origin: center;
}

/* Animated X when open */
.menu-toggle.open .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.open .bar:nth-child(2) {
    opacity: 0;
    width: 0;
}

.menu-toggle.open .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Responsive Design */
@media (max-width: 768px) {
    :root {
        --margin-line: 60px;
    }

    /* Show hamburger, hide desktop nav */
    .menu-toggle {
        display: flex;
    }

    .nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        position: absolute;
        top: 85%;
        left: 0;
        right: 0;
        background-color: var(--bg-color);
        border-top: 1px solid var(--line-color);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        padding: 0 24px;
        z-index: 1000;

        /* Smooth slide-down */
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transition:
            max-height 0.35s ease,
            opacity 0.3s ease,
            padding 0.3s ease,
            visibility 0s linear 0.35s;
    }

    .nav.open {
        display: flex;
        max-height: 400px;
        opacity: 1;
        visibility: visible;
        padding: 16px 24px 24px;
        transition:
            max-height 0.35s ease,
            opacity 0.3s ease,
            padding 0.3s ease,
            visibility 0s linear 0s;
    }

    .nav .nav-link {
        padding: 14px 0;
        font-size: 17px;
        border-bottom: 1px solid var(--line-color);
        width: 100%;
    }

    .nav .nav-link.active::after,
    .nav .nav-link:hover::after {
        width: 15%;
    }

    .nav .btn-consultation {
        margin-top: 16px;
        width: 100%;
        text-align: center;
        padding: 14px 20px;
    }

    .hero-heading {
        font-size: 32px;
    }

    .hero-strikeout-text {
        font-size: 24px;
    }

    .stamp-badge {
        right: -30px;
        top: -45px;
        width: 80px;
        height: 80px;
    }

    .strike-line {
        right: -20px;
    }

    .cards-section {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    :root {
        --margin-line: 40px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

/* ──────────────────────────────────────────────────────────────────────────
   ABOUT US PAGE STYLES
   ────────────────────────────────────────────────────────────────────────── */
.about-hero {
    margin-top: 40px;
    margin-bottom: 60px;
}

.about-heading {
    font-family: var(--font-serif);
    font-size: 54px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy-blue);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 16px;
}

.about-heading::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 4px;
    background-color: var(--gold);
    border-radius: 2px;
}

.about-intro {
    font-family: var(--font-serif);
    font-size: 24px;
    line-height: 1.5;
    color: #4a4a4a;
    margin-bottom: 40px;
    max-width: 800px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    align-items: center;
}

.about-col p {
    font-size: 16.5px;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 24px;
}

.about-img {
    width: 80%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 12px 36px rgba(13, 37, 69, 0.08);
    border: 1px solid rgba(13, 37, 69, 0.06);
    display: block;
    margin: 0 auto;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
        box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.about-img:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 24px 48px rgba(13, 37, 69, 0.15);
}

.values-section {
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    margin-bottom: 80px;
}

.values-title {
    font-family: var(--font-serif);
    font-size: 28px;
    color: var(--navy-blue);
    margin-bottom: 24px;
}

.values-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.values-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.value-bullet {
    width: 24px;
    height: 24px;
    background-color: var(--gold-light);
    color: var(--navy-blue);
    font-weight: 600;
    font-size: 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.value-text {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.6;
}

/* ──────────────────────────────────────────────────────────────────────────
   SERVICES PAGE STYLES
   ────────────────────────────────────────────────────────────────────────── */
.services-hero {
    /* margin-top: 40px; */
    margin-bottom: 60px;
}

.services-heading {
    font-family: var(--font-serif);
    font-size: 54px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy-blue);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 16px;
}

.services-heading::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 4px;
    background-color: var(--gold);
    border-radius: 2px;
}

.services-intro {
    font-family: var(--font-serif);
    font-size: 24px;
    line-height: 1.5;
    color: #4a4a4a;
    margin-bottom: 40px;
    max-width: 800px;
}

.services-list-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 36px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1),
        box-shadow 0.3s cubic-bezier(0.165, 0.84, 0.44, 1),
        border-color 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(26, 58, 143, 0.12);
    box-shadow: 0 12px 32px rgba(26, 58, 143, 0.06);
}

.service-card-title {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 600;
    color: var(--navy-blue);
    margin-bottom: 14px;
}

.service-card-desc {
    font-size: 15px;
    color: #4a4a4a;
    line-height: 1.6;
}

.services-cta-section {
    background-color: var(--navy-blue);
    color: #ffffff;
    border-radius: 12px;
    padding: 60px 40px;
    text-align: center;
    margin-bottom: 80px;
}

.services-cta-title {
    font-family: var(--font-serif);
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 16px;
}

.services-cta-desc {
    font-size: 17px;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta-gold {
    background-color: var(--gold);
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 4px;
    display: inline-block;
    transition: background-color 0.2s, transform 0.2s;
}

.btn-cta-gold:hover {
    background-color: #b08125;
    transform: translateY(-1px);
}

/* ──────────────────────────────────────────────────────────────────────────
   CONTACT US PAGE STYLES
   ────────────────────────────────────────────────────────────────────────── */
.contact-page-container {
    /* margin-top: 40px; */
    margin-bottom: 60px;
}

.contact-grid-layout {
    display: grid;
    grid-template-columns: 1.2fr 1.8fr;
    gap: 60px;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-page-title {
    font-family: var(--font-serif);
    font-size: 54px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy-blue);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 16px;
}

.contact-page-title::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 4px;
    background-color: var(--gold);
    border-radius: 2px;
}

.contact-panel-desc {
    font-size: 16.5px;
    color: #4a4a4a;
    line-height: 1.7;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-icon-box {
    width: 48px;
    height: 48px;
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    flex-shrink: 0;
}

.contact-icon-box svg {
    width: 20px;
    height: 20px;
}

.contact-detail-text {
    display: flex;
    flex-direction: column;
}

.contact-detail-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-weight: 600;
}

.contact-detail-value {
    font-size: 16px;
    color: var(--navy-blue);
    font-weight: 500;
    text-decoration: none;
}

.contact-detail-value:hover {
    text-decoration: underline;
}

/* ──────────────────────────────────────────────────────────────────────────
   LEGAL PAGES STYLES (Privacy, Terms, Refund)
   ────────────────────────────────────────────────────────────────────────── */
.legal-content {
    margin-top: 40px;
    margin-bottom: 80px;
}

.legal-content h1 {
    font-family: var(--font-serif);
    font-size: 42px;
    color: var(--navy-blue);
    margin-bottom: 20px;
}

.legal-content h2 {
    font-family: var(--font-serif);
    font-size: 24px;
    color: var(--navy-blue);
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-content p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 20px;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.legal-content li {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 8px;
}

.last-updated {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 40px;
}

/* ──────────────────────────────────────────────────────────────────────────
   MEDIA QUERIES FOR SEPARATE PAGES
   ────────────────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {

    .about-heading,
    .services-heading,
    .contact-page-title {
        font-size: 40px;
    }

    .about-intro,
    .services-intro {
        font-size: 20px;
    }

    .about-grid,
    .services-list-grid,
    .contact-grid-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .services-cta-title {
        font-size: 28px;
    }
}

/* Stats Section */
.stats-section {
    border-top: 1px solid rgba(13, 37, 69, 0.2);
    border-bottom: 1px solid rgba(13, 37, 69, 0.2);
    padding: 60px 0;
    margin-bottom: 60px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 48px;
    font-weight: 700;
    color: var(--navy-blue);
    line-height: 1;
}

.stat-desc {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 260px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .stats-section {
        padding: 40px 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .stat-number {
        font-size: 40px;
    }
}

/* Why Us / Sticky Notes Section */
.why-us-section {
    margin-bottom: 80px;
}

.sticky-notes-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 20px 0;
}

.sticky-note {
    padding: 32px 24px;
    border-radius: 4px;
    box-shadow: 2px 10px 24px rgba(13, 37, 69, 0.03), 0 4px 6px rgba(13, 37, 69, 0.02);
    position: relative;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.15),
        box-shadow 0.3s ease;
}

.note-gold {
    background-color: #fbf6ea;
    border-left: 4px solid var(--gold);
    transform: rotate(-1.5deg);
}

.note-navy {
    background-color: #f1f5fa;
    border-left: 4px solid var(--navy-blue);
    transform: rotate(1deg);
}

.note-warm {
    background-color: #faf5eb;
    border-left: 4px solid var(--text-muted);
    transform: rotate(-0.8deg);
}

.sticky-note:hover {
    transform: translateY(-8px) rotate(0deg) scale(1.02);
    box-shadow: 4px 16px 28px rgba(13, 37, 69, 0.09);
    z-index: 10;
}

.note-title {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 12px;
}

.note-text {
    font-size: 14.5px;
    color: #4a4a4a;
    line-height: 1.65;
}

@media (max-width: 768px) {
    .sticky-notes-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .sticky-note {
        transform: none !important;
    }

    .sticky-note:hover {
        transform: translateY(-4px) scale(1.01) !important;
    }
}

/* ──────────────────────────────────────────────────────────────────────────
   CLASSROOM BOARD STYLE (PROBLEM & SOLUTION)
   ────────────────────────────────────────────────────────────────────────── */
.classroom-board-section {
    margin-bottom: 80px;
}

.board-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: stretch;
}

/* Challenge Board Column */
.challenge-board {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.board-tag.font-handwritten {
    font-family: 'Covered By Your Grace', cursive;
    font-size: 26px;
    color: var(--gold);
    display: inline-block;
    margin-bottom: 5px;
}

.board-heading {
    font-family: var(--font-serif);
    font-size: 38px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--navy-blue);
    margin-bottom: 10px;
}

.sticky-notes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding-top: 20px;
}

.board-sticky-note {
    padding: 30px 20px 24px 20px;
    border-radius: 2px;
    position: relative;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05), 0 3px 6px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.15),
        box-shadow 0.3s ease;
}

/* Sticky Tape Graphic */
.tape-graphic {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%) rotate(-3deg);
    width: 70px;
    height: 24px;
    background-color: rgba(246, 238, 220, 0.75);
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.note-yellow {
    background-color: #fffde8;
    transform: rotate(-2deg);
}

.note-pink {
    background-color: #fff2f5;
    transform: rotate(1.5deg);
}

.note-blue {
    background-color: #f0f7ff;
    transform: rotate(-1deg);
}

.board-sticky-note:hover {
    transform: translateY(-8px) rotate(0deg) scale(1.03);
    box-shadow: 0 16px 28px rgba(13, 37, 69, 0.08);
    z-index: 5;
}

.note-index {
    font-family: 'Covered By Your Grace', cursive;
    font-size: 24px;
    color: var(--gold);
    display: block;
    margin-bottom: 8px;
}

.note-heading {
    font-family: var(--font-serif);
    font-size: 17px;
    font-weight: 600;
    color: var(--navy-blue);
    margin-bottom: 10px;
}

.note-desc {
    font-size: 13.5px;
    color: #4a4a4a;
    line-height: 1.6;
}

/* Solution Notebook Column */
.solution-notebook {
    position: relative;
    padding-top: 15px;
}

/* Paper Clip Graphic styling */
.paper-clip-graphic {
    position: absolute;
    top: 0px;
    left: 40px;
    width: 28px;
    height: 60px;
    background-color: transparent;
    border: 3px solid #8e9bb0;
    border-radius: 15px;
    transform: rotate(-15deg);
    z-index: 10;
    box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.1);
}

.paper-clip-graphic::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 4px;
    width: 14px;
    height: 38px;
    border: 3px solid #8e9bb0;
    border-radius: 10px;
    border-top: none;
}

.notebook-sheet {
    background-color: #ffffff;
    border: 1px solid rgba(13, 37, 69, 0.08);
    border-radius: 8px;
    padding: 50px 40px;
    box-shadow: 0 15px 35px rgba(13, 37, 69, 0.04);
    height: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-image: linear-gradient(rgba(13, 37, 69, 0.04) 1px, transparent 1px);
    background-size: 100% 28px;
    line-height: 28px;
}

.sheet-tag.font-handwritten {
    font-family: 'Covered By Your Grace', cursive;
    font-size: 26px;
    color: var(--gold);
    display: block;
    margin-bottom: 12px;
}

.sheet-heading {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 700;
    color: var(--navy-blue);
    line-height: 1.3;
    margin-bottom: 20px;
}

.sheet-desc {
    font-size: 15px;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 30px;
}

.sheet-footer {
    border-top: 1px dashed rgba(13, 37, 69, 0.15);
    padding-top: 24px;
    margin-top: auto;
}

.sheet-quote.font-handwritten {
    font-family: 'Covered By Your Grace', cursive;
    font-size: 32px;
    color: var(--navy-blue);
    line-height: 1.2;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.sheet-sub {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .board-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .sticky-notes-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .board-sticky-note {
        transform: none !important;
    }

    .board-sticky-note:hover {
        transform: translateY(-4px) scale(1.01) !important;
    }

    .board-heading {
        font-size: 30px;
    }

    .notebook-sheet {
        padding: 40px 24px;
    }

    .sheet-heading {
        font-size: 24px;
    }
}

/* ──────────────────────────────────────────────────────────────────────────
   HOW IT WORKS SECTION (SPIRAL NOTEBOOK STYLE)
   ────────────────────────────────────────────────────────────────────────── */
.how-it-works-section {
    border-top: 1px solid rgba(13, 37, 69, 0.1);
    padding-top: 60px;
    margin-bottom: 80px;
}

.spiral-notebooks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding-top: 10px;
}

.spiral-notebook-card {
    background-color: #ffffff;
    border: 1px solid rgba(13, 37, 69, 0.08);
    border-radius: 8px;
    position: relative;
    padding: 44px 24px 28px 24px;
    box-shadow: 0 10px 25px rgba(13, 37, 69, 0.03);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.15),
        box-shadow 0.3s ease;
    overflow: visible;
    /* Let spirals clip out cleanly */
}

/* Spiral Holes styling at the top */
.spiral-holes {
    position: absolute;
    top: 10px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    padding: 0 20px;
    box-sizing: border-box;
}

.spiral-holes .hole {
    width: 10px;
    height: 10px;
    background-color: #f6eedc;
    /* Matches notebook-bg warm cream background color */
    border: 1px solid rgba(13, 37, 69, 0.15);
    border-radius: 50%;
    position: relative;
    box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.08);
}

.spiral-holes .hole::after {
    content: '';
    position: absolute;
    top: -12px;
    left: 2px;
    width: 4px;
    height: 15px;
    border: 2px solid #8e9bb0;
    border-radius: 4px;
    border-bottom: none;
}

.spiral-notebook-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 35px rgba(13, 37, 69, 0.08);
    border-color: rgba(200, 150, 42, 0.2);
}

.step-num.font-handwritten {
    font-family: 'Covered By Your Grace', cursive;
    font-size: 28px;
    color: var(--gold);
    display: block;
    margin-bottom: 12px;
}

.step-title {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 14px;
}

.step-desc {
    font-size: 14.5px;
    color: #4a4a4a;
    line-height: 1.65;
}

@media (max-width: 992px) {
    .spiral-notebooks-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ──────────────────────────────────────────────────────────────────────────
   TESTIMONIALS SECTION (POLAROID STYLE)
   ────────────────────────────────────────────────────────────────────────── */
.testimonials-section {
    border-top: 1px solid rgba(13, 37, 69, 0.1);
    padding-top: 60px;
    margin-bottom: 80px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.polaroid-card {
    background-color: #ffffff;
    padding: 32px 28px;
    border: 1px solid rgba(13, 37, 69, 0.06);
    box-shadow: 0 10px 24px rgba(13, 37, 69, 0.03), 0 4px 6px rgba(13, 37, 69, 0.02);
    border-radius: 6px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.15),
        box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
}

.polaroid-content {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.polaroid-text {
    font-size: 14.5px;
    color: #4a4a4a;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 16px;
    min-height: 80px;
}

.polaroid-name.font-handwritten {
    font-family: 'Covered By Your Grace', cursive;
    font-size: 24px;
    color: var(--navy-blue);
    margin-bottom: 2px;
}

.polaroid-sub {
    font-size: 12.5px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* Polaroid Tilting Effects */
.polaroid-tilt-left {
    transform: rotate(-3deg);
}

.polaroid-tilt-right {
    transform: rotate(2deg);
}

.polaroid-tilt-straight {
    transform: rotate(-0.5deg);
}

.polaroid-card:hover {
    transform: translateY(-12px) rotate(0deg) scale(1.03);
    box-shadow: 0 20px 40px rgba(13, 37, 69, 0.1);
    z-index: 10;
}

@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 45px;
        max-width: 400px;
        margin: 0 auto;
    }

    .polaroid-card {
        transform: none !important;
    }

    .polaroid-card:hover {
        transform: translateY(-6px) scale(1.02) !important;
    }
}

/* ──────────────────────────────────────────────────────────────────────────
   CTA SECTION (HOME PAGE)
   ────────────────────────────────────────────────────────────────────────── */
.cta-section {
    border-top: 1px solid rgba(13, 37, 69, 0.1);
    padding-top: 60px;
    margin-bottom: 80px;
}

.cta-banner {
    background-color: var(--navy-blue);
    border-radius: 16px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(13, 37, 69, 0.12);
    position: relative;
    overflow: hidden;
}

/* Subtle lined paper overlay inside the dark card */
.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: linear-gradient(#ffffff 1px, transparent 1px);
    background-size: 100% 24px;
    pointer-events: none;
}

.cta-tag.font-handwritten {
    font-family: 'Covered By Your Grace', cursive;
    font-size: 26px;
    color: var(--gold-light);
    display: inline-block;
    margin-bottom: 12px;
}

.cta-title {
    font-family: var(--font-serif);
    font-size: 38px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 18px;
    line-height: 1.3;
}

.cta-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    max-width: 650px;
    margin: 0 auto 32px auto;
}

.cta-btn {
    display: inline-block;
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    background-color: var(--gold);
    color: #ffffff;
    border-radius: 4px;
    transition: background-color 0.2s, transform 0.2s;
}

.cta-btn:hover {
    background-color: #b08125;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cta-banner {
        padding: 40px 24px;
    }

    .cta-title {
        font-size: 28px;
    }

    .cta-desc {
        font-size: 14.5px;
        margin-bottom: 24px;
    }

    .cta-btn {
        width: 100%;
        box-sizing: border-box;
        text-align: center;
    }
}

/* ──────────────────────────────────────────────────────────────────────────
   STARTING LINE SECTION (ABOUT US)
   ────────────────────────────────────────────────────────────────────────── */
.starting-line-section {
    margin-bottom: 80px;
    border-top: 1px solid rgba(13, 37, 69, 0.1);
    padding-top: 60px;
}

.starting-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.starting-card {
    background-color: #ffffff;
    border: 1px solid rgba(13, 37, 69, 0.06);
    border-radius: 12px;
    padding: 30px 24px;
    position: relative;
    box-shadow: 0 8px 24px rgba(13, 37, 69, 0.02);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.15),
        box-shadow 0.4s ease,
        border-color 0.4s ease;
    display: flex;
    flex-direction: column;
}

.card-num-handwritten.font-handwritten {
    font-family: 'Covered By Your Grace', cursive;
    font-size: 26px;
    color: var(--gold);
    display: block;
    margin-bottom: 6px;
    line-height: 1;
}

.starting-pill {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    align-self: flex-start;
    margin-bottom: 16px;
}

.starting-pill.gold-pill {
    background-color: rgba(200, 150, 42, 0.08);
    color: #b08125;
}

.starting-pill.navy-pill {
    background-color: rgba(26, 58, 143, 0.06);
    color: var(--navy-blue);
}

.starting-card-title {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 12px;
    line-height: 1.2;
}

.starting-card-desc {
    font-size: 13.5px;
    color: #4a4a4a;
    line-height: 1.6;
}

.starting-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 32px rgba(13, 37, 69, 0.06);
    border-color: rgba(200, 150, 42, 0.2);
}

@media (max-width: 992px) {
    .starting-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .starting-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* ──────────────────────────────────────────────────────────────────────────
   SERVICES PAGE STYLING
   ────────────────────────────────────────────────────────────────────────── */
.services-hero {
    margin-bottom: 60px;
}

.services-heading {
    font-family: var(--font-serif);
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy-blue);
    margin-bottom: 12px;
}

.services-intro {
    font-size: 16.5px;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 600px;
}

.programs-container {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-bottom: 90px;
}

.program-sheet {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 50px;
    background-color: #ffffff;
    border: 1px solid rgba(13, 37, 69, 0.08);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(13, 37, 69, 0.03);
    align-items: stretch;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-sheet:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(13, 37, 69, 0.06);
}

.program-main {
    display: flex;
    flex-direction: column;
}

.program-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.program-num.font-handwritten {
    font-family: 'Covered By Your Grace', cursive;
    font-size: 32px;
    color: var(--gold);
    line-height: 1;
}

.program-pill {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.program-pill.gold-pill {
    background-color: rgba(200, 150, 42, 0.08);
    color: #b08125;
}

.program-pill.navy-pill {
    background-color: rgba(26, 58, 143, 0.06);
    color: var(--navy-blue);
}

.program-title {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 16px;
}

.program-desc {
    font-size: 15px;
    color: #4a4a4a;
    line-height: 1.65;
    margin-bottom: 24px;
}

.coverage-title {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 600;
    color: var(--navy-blue);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.coverage-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
}

.coverage-list li {
    font-size: 14.5px;
    color: #4a4a4a;
    position: relative;
    padding-left: 20px;
    line-height: 1.5;
}

.coverage-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

/* Sidebar Outcomes Box */
.program-sidebar {
    border-radius: 8px;
    padding: 30px 24px;
    position: relative;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.program-sidebar.note-yellow {
    background-color: #fffde8;
    transform: rotate(1deg);
}

.program-sidebar.note-blue {
    background-color: #f0f7ff;
    transform: rotate(-1.5deg);
}

.program-sidebar.note-pink {
    background-color: #fff2f5;
    transform: rotate(1.2deg);
}

.sidebar-title.font-handwritten {
    font-family: 'Covered By Your Grace', cursive;
    font-size: 28px;
    color: var(--navy-blue);
    margin-bottom: 16px;
    line-height: 1.1;
}

.sidebar-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-bullets li {
    font-size: 13.5px;
    color: #333333;
    line-height: 1.5;
    position: relative;
    padding-left: 16px;
}

.sidebar-bullets li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--gold);
}

@media (max-width: 992px) {
    .program-sheet {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .program-sidebar {
        transform: none !important;
        max-width: 100%;
    }

    .coverage-list {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

/* ──────────────────────────────────────────────────────────────────────────
   FORM VALIDATION & MESSAGES (CONTACT PAGE)
   ────────────────────────────────────────────────────────────────────────── */
.form-group.error .form-input,
.form-group.error .form-select,
.form-group.error .form-textarea {
    border-color: #e74c3c;
}

.error-message {
    display: none;
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    font-weight: 500;
}

.form-group.error .error-message {
    display: block;
}

/* Success & Error Popups / Containers */
.form-message {
    display: none;
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
    align-items: flex-start;
    gap: 16px;
    animation: formSlideUp 0.3s ease forwards;
}

.form-message.show {
    display: flex;
}

.success-message {
    background-color: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #15803d;
}

.error-message-box {
    background-color: #fef2f2;
    border: 1px solid #fca5a5;
    color: #b91c1c;
}

.form-message-content h4 {
    margin: 0 0 4px 0;
    font-size: 16px;
    font-weight: 600;
}

.form-message-content p {
    margin: 0;
    font-size: 14px;
    opacity: 0.9;
}

/* Button Loading state */
.btn-submit {
    position: relative;
    overflow: hidden;
}

.btn-submit .btn-loader {
    display: none;
}

.btn-submit.loading .btn-text {
    display: none;
}

.btn-submit.loading .btn-loader {
    display: inline-block;
}

@keyframes formSlideUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}