/* =========================
   GLOBAL
========================= */

/* =========================================
   PANNYX BRAND COLORS
========================================= */

:root {
    --background: #F3EEE6;
    --surface: #E7DED2;

    --dark: #25211E;

    --primary: #8C5A3C;
    --secondary: #66705A;
    --accent: #B88A5A;

    --text: #35312D;
    --muted: #766F68;

    --border: #D6CBBE;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--background);
    color: var(--text);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
}


/* =========================
   NAVBAR
========================= */

.navbar {
    width: 100%;
    padding: 20px 7%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--background);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo a {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -1px;
}

.logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    transition: 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}


/* =========================
   BUTTONS
========================= */

.primary-button,
.secondary-button,
.nav-button {
    display: inline-block;
    padding: 13px 22px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    transition: 0.3s;
}

.primary-button {
    background: var(--primary);
    color: var(--background);
}

.primary-button:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.secondary-button {
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text);
}

.secondary-button:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.nav-button {
    background: var(--dark);
    color: var(--background);
}

.nav-button:hover {
    background: var(--primary);
}


/* =========================
   HERO
========================= */

.hero {
    min-height: 650px;
    padding: 100px 7%;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 70px;
    align-items: center;
    background: var(--background);
}

.small-heading {
    color: var(--primary);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

.hero h1 {
    font-size: clamp(45px, 6vw, 75px);
    line-height: 1.05;
    letter-spacing: -3px;
    margin-bottom: 25px;
}

.hero h1 span {
    color: var(--primary);
}

.hero-description {
    max-width: 620px;
    color: var(--muted);
    font-size: 18px;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}


/* =========================
   CODE CARD
========================= */

.hero-card {
    display: flex;
    justify-content: center;
}

.code-window {
    width: 100%;
    max-width: 480px;
    border-radius: 15px;
    background: #2B2724;
    box-shadow: 0 30px 70px rgba(37, 33, 30, 0.18);
    overflow: hidden;
}

.window-top {
    padding: 15px;
    display: flex;
    gap: 7px;
    border-bottom: 1px solid #453E38;
}

.window-top span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #5F5952;
}

.code-content {
    padding: 35px;
    color: #F3EEE6;
    font-family: Consolas, monospace;
    line-height: 2;
}

.indent {
    padding-left: 25px;
}

.code-purple {
    color: #B88A5A;
}

.code-blue {
    color: #9A9D87;
}

.code-green {
    color: #A4AD8D;
}


/* =========================
   TRUST
========================= */

.trust-section {
    padding: 45px 7%;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.trust-section > p {
    font-size: 12px;
    font-weight: 800;
    color: #8A8178;
    margin-bottom: 25px;
}

.business-types {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    color: #5F5952;
    font-weight: 600;
}


/* =========================
   SECTIONS
========================= */

.section {
    padding: 100px 7%;
}

.section-heading {
    max-width: 700px;
    margin-bottom: 55px;
}

.section-heading h2 {
    font-size: 48px;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 18px;
}

.section-heading > p:last-child {
    color: var(--muted);
}


/* =========================
   SERVICES
========================= */

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 15px;
    background: var(--background);
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 40px rgba(37, 33, 30, 0.08);
}

.service-icon {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary);
}

.service-card h3 {
    margin-bottom: 10px;
}

.service-card p {
    color: var(--muted);
    font-size: 14px;
}


/* =========================
   DARK SECTION
========================= */

.dark-section {
    background: var(--dark);
    color: #F3EEE6;
    padding: 100px 7%;
}

.dark-section .section-heading > p:last-child {
    color: #B5ADA4;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
}

.features-grid strong {
    color: var(--accent);
    font-size: 14px;
}

.features-grid h3 {
    margin: 15px 0 10px;
}

.features-grid p {
    color: #B5ADA4;
    font-size: 14px;
}


/* =========================
   PRICING
========================= */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.price-card {
    position: relative;
    padding: 40px 30px;
    border: 1px solid var(--border);
    border-radius: 15px;
    background: var(--background);
}

.price-card.popular {
    border: 2px solid var(--primary);
    transform: scale(1.03);
}

.popular-label {
    position: absolute;
    top: -14px;
    left: 25px;
    padding: 5px 12px;
    border-radius: 20px;
    background: var(--primary);
    color: #F3EEE6;
    font-size: 11px;
    font-weight: 800;
}

.price {
    font-size: 40px;
    font-weight: 800;
    margin: 15px 0;
}

.price-card > p {
    color: var(--muted);
    margin-bottom: 25px;
}

.price-card ul {
    list-style: none;
    margin-bottom: 30px;
}

.price-card li {
    margin-bottom: 10px;
    font-size: 14px;
}


/* =========================
   CTA
========================= */

.cta-section {
    padding: 100px 7%;
    text-align: center;
    background: var(--surface);
}

.cta-section h2 {
    font-size: 50px;
    line-height: 1.1;
    margin-bottom: 15px;
}

.cta-section p {
    color: var(--muted);
    margin-bottom: 30px;
}


/* =========================
   FOOTER
========================= */

footer {
    background: var(--dark);
    color: #F3EEE6;
    padding: 70px 7% 25px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
}

.footer-content h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.footer-content h3 {
    margin-bottom: 15px;
}

.footer-content p,
.footer-content a {
    display: block;
    color: #B5ADA4;
    margin-bottom: 8px;
    font-size: 14px;
}

.footer-content a:hover {
    color: #F3EEE6;
}

.copyright {
    padding-top: 25px;
    border-top: 1px solid #453E38;
    color: #766F68;
    text-align: center;
    font-size: 13px;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1000px) {

    .hero {
        grid-template-columns: 1fr;
        padding-top: 70px;
    }

    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: auto;
    }

    .price-card.popular {
        transform: none;
    }

}


@media (max-width: 600px) {

    .navbar {
        padding: 17px 5%;
    }

    .nav-button {
        display: none;
    }

    .hero {
        padding: 70px 5%;
    }

    .hero h1 {
        font-size: 45px;
        letter-spacing: -2px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons a {
        text-align: center;
    }

    .section,
    .dark-section {
        padding: 70px 5%;
    }

    .section-heading h2,
    .cta-section h2 {
        font-size: 38px;
    }

    .service-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .business-types {
        flex-direction: column;
        gap: 12px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

}


/* =========================
   ABOUT PAGE
========================= */

.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.about-story > div {
    padding: 35px;
    border: 1px solid var(--border);
    border-radius: 15px;
    background: var(--background);
}

.about-story h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.about-story p {
    color: var(--muted);
    margin-bottom: 15px;
}


/* ABOUT MOBILE */

@media (max-width: 700px) {

    .about-story {
        grid-template-columns: 1fr;
    }

}


/* =====================================================
   PRICING PAGE
===================================================== */


/* PLAN ICON */

.plan-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #E9E0D6;
    color: var(--primary);
    font-size: 21px;
    margin-bottom: 20px;
}


/* PLAN DESCRIPTION */

.plan-for {
    color: var(--muted);
    font-size: 14px;
    min-height: 45px;
}


/* STARTING PRICE */

.starting {
    color: #8A8178;
    font-size: 12px;
    margin-top: -10px;
    margin-bottom: 25px;
}


/* PRICE */

.price-card .price {
    display: flex;
    align-items: baseline;
    gap: 3px;
    flex-wrap: wrap;
}

.price-card .price span {
    font-size: 15px;
    font-weight: 500;
    color: var(--muted);
}


/* PRICE LIST */

.price-card ul {
    margin-top: 20px;
}

.price-card li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-card li i {
    color: var(--primary);
    font-size: 12px;
}


/* BUTTON ARROW */

.price-card .secondary-button,
.price-card .primary-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}


/* PRICING NOTE */

.pricing-note {
    max-width: 900px;
    margin: 45px auto 0;
    padding: 20px 25px;

    display: flex;
    align-items: flex-start;
    gap: 15px;

    background: var(--surface);

    border: 1px solid var(--border);

    border-radius: 12px;
}

.pricing-note i {
    color: var(--primary);
    font-size: 18px;
    margin-top: 3px;
}

.pricing-note p {
    color: var(--muted);
    font-size: 14px;
    margin: 0;
}


/* =====================================================
   MAINTENANCE
===================================================== */

.maintenance-section {
    background: var(--surface);
}


/* =====================================================
   FAQ
===================================================== */

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-container details {
    border-bottom: 1px solid var(--border);
    padding: 22px 0;
}

.faq-container details:first-child {
    border-top: 1px solid var(--border);
}

.faq-container summary {
    list-style: none;
    cursor: pointer;

    display: flex;
    justify-content: space-between;
    align-items: center;

    font-size: 17px;
    font-weight: 700;
}

.faq-container summary::-webkit-details-marker {
    display: none;
}

.faq-container summary i {
    color: var(--primary);
    transition: 0.3s;
}

.faq-container details[open] summary i {
    transform: rotate(45deg);
}

.faq-container details p {
    color: var(--muted);
    font-size: 15px;
    max-width: 800px;
    padding-top: 15px;
}


/* =====================================================
   PRICING RESPONSIVE
===================================================== */

@media (max-width: 700px) {

    .pricing-note {
        flex-direction: column;
        gap: 8px;
    }

    .plan-for {
        min-height: auto;
    }

}


/* =====================================================
   CONTACT PAGE
===================================================== */


/* CONTACT HERO CARD */

.contact-hero-card {
    background: #2B2724;
    color: #F3EEE6;
    padding: 45px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 30px 70px rgba(37, 33, 30, 0.18);
}

.contact-card-icon {
    width: 65px;
    height: 65px;

    margin: 0 auto 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--primary);

    font-size: 25px;
}

.contact-card-small {
    color: #8A8178;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.2px;
    margin-bottom: 8px;
}

.contact-hero-card h3 {
    font-size: 30px;
    margin-bottom: 12px;
}

.contact-hero-card > p:not(.contact-card-small) {
    color: #B5ADA4;
    font-size: 14px;
    margin-bottom: 25px;
}


/* =====================================================
   CONTACT GRID
===================================================== */

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}


.contact-card {
    padding: 25px;

    display: flex;
    align-items: center;

    gap: 18px;

    border: 1px solid var(--border);

    border-radius: 15px;

    background: var(--background);

    transition: 0.3s;
}


.contact-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 15px 40px rgba(37, 33, 30, 0.08);

    border-color: var(--primary);
}


.contact-icon {
    width: 55px;
    height: 55px;

    min-width: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: #E9E0D6;

    color: var(--primary);

    font-size: 21px;
}


.contact-card span {
    display: block;

    color: #8A8178;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.2px;

    margin-bottom: 4px;
}


.contact-card h3 {
    font-size: 16px;

    margin-bottom: 3px;
}


.contact-card p {
    color: var(--muted);

    font-size: 13px;
}


.contact-arrow {
    margin-left: auto;

    color: #A59B91;

    font-size: 13px;
}


/* =====================================================
   FORM CTA
===================================================== */

.contact-form-cta {

    max-width: 900px;

    margin: auto;

    padding: 35px;

    display: flex;

    align-items: center;

    gap: 25px;

    border: 1px solid #453E38;

    border-radius: 16px;

    background: #2B2724;
}


.contact-form-icon {

    width: 65px;
    height: 65px;

    min-width: 65px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 15px;

    background: var(--primary);

    font-size: 25px;
}


.contact-form-cta h3 {
    font-size: 24px;

    margin-bottom: 8px;
}


.contact-form-cta p {
    color: #B5ADA4;

    font-size: 14px;

    margin-bottom: 20px;
}


/* =====================================================
   CONTACT RESPONSIVE
===================================================== */

@media (max-width: 800px) {

    .contact-grid {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 600px) {

    .contact-form-cta {
        flex-direction: column;

        align-items: flex-start;

        padding: 25px;
    }


    .contact-hero-card {
        padding: 30px 20px;
    }


    .contact-card {
        padding: 20px;
    }


    .contact-arrow {
        display: none;
    }

}


/* =====================================================
   PROJECT FORM PAGE
===================================================== */


/* FORM HERO */

.form-hero {
    padding: 100px 7% 80px;
    background: var(--surface);
    text-align: center;
}


.form-hero-content {
    max-width: 800px;
    margin: auto;
}


.form-hero h1 {
    font-size: clamp(45px, 6vw, 70px);
    line-height: 1.05;
    letter-spacing: -3px;
    margin-bottom: 25px;
}


.form-hero h1 span {
    color: var(--primary);
}


.form-hero-content > p:not(.small-heading) {
    max-width: 650px;
    margin: auto;
    color: var(--muted);
    font-size: 17px;
}


/* FORM BENEFITS */

.form-benefits {
    margin-top: 30px;

    display: flex;
    justify-content: center;

    flex-wrap: wrap;

    gap: 20px;
}


.form-benefits div {
    display: flex;
    align-items: center;
    gap: 8px;

    color: #5F5952;

    font-size: 13px;

    font-weight: 600;
}


.form-benefits i {
    color: var(--primary);
}


/* =====================================================
   GOOGLE FORM
===================================================== */

.form-section {
    background: var(--background);
}


.google-form-container {
    max-width: 850px;
    margin: auto;

    min-height: 500px;

    border: 1px solid var(--border);

    border-radius: 18px;

    overflow: hidden;

    background: var(--surface);

    box-shadow:
        0 15px 50px rgba(37, 33, 30, 0.05);
}


/* PLACEHOLDER */

.form-placeholder {
    min-height: 500px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    text-align: center;

    padding: 50px;
}


.form-placeholder-icon {
    width: 75px;
    height: 75px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 18px;

    background: #E9E0D6;

    color: var(--primary);

    font-size: 28px;

    margin-bottom: 25px;
}


.form-placeholder h3 {
    font-size: 24px;

    margin-bottom: 10px;
}


.form-placeholder p {
    color: var(--muted);

    font-size: 14px;

    max-width: 500px;
}


.form-placeholder .placeholder-small {
    color: #8A8178;

    font-size: 12px;

    margin-top: 10px;
}


/* ACTUAL GOOGLE FORM */

.google-form-container iframe {
    width: 100%;

    min-height: 1200px;

    border: none;

    display: block;
}


/* =====================================================
   FORM MOBILE
===================================================== */

@media (max-width: 600px) {

    .form-hero {
        padding: 70px 5% 60px;
    }


    .form-hero h1 {
        font-size: 45px;

        letter-spacing: -2px;
    }


    .form-benefits {
        flex-direction: column;

        align-items: center;

        gap: 12px;
    }


    .form-placeholder {
        padding: 35px 20px;
    }

}


/* ================================
   MOBILE RESPONSIVE DESIGN
================================ */

@media (max-width: 768px) {

    /* Navbar */
    .navbar {
        padding: 15px 20px;
    }

    .nav-links {
        display: none;
    }

    /* Hero */
    .hero {
        padding: 70px 20px 50px;
        text-align: center;
    }

    .hero h1 {
        font-size: 38px;
        line-height: 1.15;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    /* Sections */
    .section {
        padding: 60px 20px;
    }

    .section h2 {
        font-size: 30px;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Pricing */
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
    }

    /* CTA */
    .cta {
        padding: 60px 20px;
    }

    .cta h2 {
        font-size: 30px;
    }

    /* Footer */
    .footer {
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 25px;
    }

    /* Google Form */
    .google-form-container {
        width: 100%;
        overflow: hidden;
    }

    .google-form-container iframe {
        width: 100%;
        min-height: 1500px;
    }
}


/* Smaller phones */
@media (max-width: 480px) {

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 15px;
    }

    .section h2 {
        font-size: 26px;
    }

    .btn {
        padding: 12px 22px;
        font-size: 14px;
    }

    .nav-links {
        gap: 8px;
    }

    .nav-links a {
        font-size: 11px;
    }
}


/* =========================================
   PANNYX MOBILE HAMBURGER
========================================= */

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--dark);
    font-size: 24px;
    cursor: pointer;
}


/* MOBILE */

@media (max-width: 768px) {

    .navbar {
        position: relative;
        padding: 15px 5%;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;

        flex-direction: column;
        align-items: flex-start;

        gap: 0;
        padding: 15px 5%;

        background: var(--surface);

        border-top: 1px solid var(--border);

        box-shadow: 0 10px 25px rgba(37, 33, 30, 0.08);

        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        width: 100%;
        padding: 12px 0;
        font-size: 15px;
    }

    .nav-links .nav-button {
        display: block;
        text-align: center;
        margin-top: 8px;
        width: 100%;
    }
}
/* =====================================================
   WOMEN EMPOWERMENT SECTION
===================================================== */

.woman-section {
    position: relative;
    padding: 110px 7%;
    background: var(--surface);
    overflow: hidden;
}


/* SUBTLE DECORATIVE CIRCLE */

.woman-section::before {
    content: "";
    position: absolute;

    width: 300px;
    height: 300px;

    border: 1px solid var(--border);
    border-radius: 50%;

    top: -150px;
    right: -80px;

    opacity: 0.6;
}


/* CONTAINER */

.woman-container {
    max-width: 1200px;
    margin: auto;

    display: grid;
    grid-template-columns: 1.1fr 0.9fr;

    gap: 80px;

    align-items: center;

    position: relative;
    z-index: 1;
}


/* LEFT CONTENT */

.woman-content {
    max-width: 650px;
}


/* SMALL LABEL */

.woman-label {
    color: var(--primary);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 20px;
}


/* HEADING */

.woman-content h2 {
    font-size: clamp(42px, 5vw, 64px);

    line-height: 1.05;

    letter-spacing: -2.5px;

    margin-bottom: 30px;
}


/* ACCENT WORDS */

.woman-content h2 span {
    display: block;

    color: var(--primary);
}


/* PARAGRAPHS */

.woman-text {
    max-width: 580px;

    color: var(--muted);

    font-size: 16px;

    line-height: 1.8;

    margin-bottom: 16px;
}


/* HIGHLIGHT */

.woman-highlight {
    display: flex;

    align-items: center;

    gap: 15px;

    margin-top: 30px;
}


.highlight-line {
    width: 45px;
    height: 1px;

    background: var(--primary);
}


.woman-highlight p {
    margin: 0;

    color: var(--text);

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 0.5px;
}


/* =====================================================
   QUOTE CARD
===================================================== */

.woman-quote-card {
    position: relative;

    padding: 55px 45px;

    min-height: 330px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    background: var(--dark);

    color: var(--background);

    border-radius: 18px;

    box-shadow:
        0 25px 60px rgba(37, 33, 30, 0.12);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}


/* HOVER */

.woman-quote-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 35px 70px rgba(37, 33, 30, 0.18);
}


/* QUOTE MARK */

.quote-mark {
    position: absolute;

    top: 18px;
    left: 30px;

    font-family: Georgia, serif;

    font-size: 90px;

    line-height: 1;

    color: var(--accent);

    opacity: 0.8;
}


/* QUOTE */

.woman-quote-card h3 {
    position: relative;

    z-index: 1;

    font-size: 29px;

    line-height: 1.35;

    font-weight: 600;

    letter-spacing: -0.5px;
}


.woman-quote-card h3 span {
    color: var(--accent);
}


/* QUOTE BOTTOM */

.quote-bottom {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 35px;
}


.quote-bottom span {
    width: 35px;

    height: 1px;

    background: var(--accent);
}


.quote-bottom p {
    margin: 0;

    color: #B8AEA4;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


/* =====================================================
   WOMEN SECTION ANIMATION
===================================================== */

@keyframes womanFadeUp {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


.woman-content {
    animation: womanFadeUp 0.8s ease forwards;
}


.woman-quote-card {
    animation: womanFadeUp 0.9s ease 0.15s both;
}


/* =====================================================
   WOMEN SECTION MOBILE
===================================================== */

@media (max-width: 850px) {

    .woman-section {
        padding: 80px 5%;
    }


    .woman-container {
        grid-template-columns: 1fr;

        gap: 45px;
    }


    .woman-content {
        max-width: 100%;
    }


    .woman-content h2 {
        font-size: 45px;
    }


    .woman-text {
        max-width: 100%;
    }


    .woman-quote-card {
        min-height: 280px;

        padding: 45px 30px;
    }


    .woman-quote-card h3 {
        font-size: 25px;
    }

}


/* SMALL MOBILE */

@media (max-width: 480px) {

    .woman-section {
        padding: 70px 20px;
    }


    .woman-content h2 {
        font-size: 37px;

        letter-spacing: -1.5px;
    }


    .woman-text {
        font-size: 15px;

        line-height: 1.7;
    }


    .woman-quote-card {
        padding: 45px 25px;

        min-height: 260px;
    }


    .woman-quote-card h3 {
        font-size: 22px;
    }


    .quote-mark {
        font-size: 70px;

        left: 20px;
    }

}
/* =========================================
   PANNYX SCROLL REVEAL
========================================= */

.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}


/* Cards thode softer reveal */

.reveal-card {
    opacity: 0;
    transform: translateY(25px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.reveal-card.show {
    opacity: 1;
    transform: translateY(0);
}


/* Small delay for cards */

.reveal-card:nth-child(1) {
    transition-delay: 0.05s;
}

.reveal-card:nth-child(2) {
    transition-delay: 0.15s;
}

.reveal-card:nth-child(3) {
    transition-delay: 0.25s;
}

.reveal-card:nth-child(4) {
    transition-delay: 0.35s;
}


/* Respect reduced motion */

@media (prefers-reduced-motion: reduce) {

    .reveal,
    .reveal-card {
        opacity: 1;
        transform: none;
        transition: none;
    }

}
