/* =========================
   PURPOSE SECTION LAYOUT
/* =========================
   QUEEN HERO
========================= */
.queen-hero {
    height: 40vh;
    background: url("waxback.jpg") center center/cover no-repeat;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.queen-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.2) 0%,
        rgba(0,0,0,0.65) 100%
    );
}

.queen-hero h1 {
    position: relative;
    z-index: 2;
    color: white;
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}


/* =========================
   MARKET SECTION - DESKTOP
========================= */
.market {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 70px 8%;
    max-width: 1200px;
    margin: 0 auto 20px;
    height: auto;
}

.market h2 {
    flex: 1;
    font-size: 1.8rem;
    font-weight: 700;
    color: #222;
    line-height: 1.4;
}

.divider {
    width: 2px;
    height: 180px;
    background: #dc5406;
    opacity: 0.8;
    border-radius: 40%;
    flex-shrink: 0;
}

.market p {
    flex: 1;
    font-size: 1.1rem;
    font-weight: 600;
    color: green;
    line-height: 1.8;
}


/* =========================
   QUEEN PURPOSE - DESKTOP
========================= */
.queen-purpose {
    padding: 80px 8%;
    background-color: rgb(215, 120, 17);
    height: auto;
}

.content-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

/* IMAGES LEFT */
.purpose-images {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.purpose-images img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.purpose {
    color: brown;
    border-right: solid 2px;
    height: 34px;
    font-size: 1.5rem;
}

/* TEXT RIGHT */
.purpose-text {
    flex: 1;
}

.purpose-text h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 25px;
    color: #ffffff;
    font-family: Arial;
}

.purpose-text p {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fcfbfa;
    font-family: Arial;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.purpose-text p::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #111;
    font-size: 1.2rem;
}


/* =========================
   QUEEN IMPACT - DESKTOP
========================= */
.queen-impact {
    padding: 80px 8%;
    text-align: center;
    background: #f5f5f5;
}

.content-con {
    max-width: 1100px;
    margin: 0 auto;
}

.queen-impact h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 50px;
    color: #222;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.impact-card {
    background: white;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: auto;
}

.impact-card:hover {
    transform: translateY(-8px);
}

.count {
    font-size: 2.5rem;
    font-weight: 900;
    color: #dc5406;
    display: block;
    margin-bottom: 10px;
}

.impact-card h3 {
    font-size: 1rem;
    font-weight: 800;
    color: #333;
    letter-spacing: 1px;
}

.impact-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    font-weight: 500;
    color: #000;
    line-height: 1.8;
}


/* =========================
   TABLET — 769px to 1024px
========================= */
@media (min-width: 769px) and (max-width: 1024px) {

    /* HERO */
    .queen-hero {
        height: 50vh;
    }

    .queen-hero h1 {
        font-size: 2.2rem;
        letter-spacing: 3px;
    }

    /* MARKET */
    .market {
        padding: 55px 6%;
        gap: 30px;
    }

    .market h2 {
        font-size: 1.4rem;
    }

    .divider {
        height: 140px;
    }

    .market p {
        font-size: 1rem;
    }

    /* PURPOSE */
    .queen-purpose {
        padding: 60px 6%;
    }

    .content-container {
        gap: 35px;
    }

    .purpose-text h1 {
        font-size: 2.2rem;
    }

    .purpose-text p {
        font-size: 1rem;
    }

    .purpose-images img {
        height: 150px;
    }

    /* IMPACT */
    .queen-impact {
        padding: 60px 6%;
    }

    .queen-impact h2 {
        font-size: 2rem;
        margin-bottom: 35px;
    }

    .impact-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .impact-text {
        font-size: 1rem;
    }
}


/* =========================
   MOBILE — max 768px
========================= */
@media (max-width: 768px) {

    /* HERO */
    .queen-hero {
        height: 25vh;
    }

    .queen-hero h1 {
        font-size: 1.6rem;
        letter-spacing: 2px;
    }

    /* MARKET */
    .market {
        flex-direction: column;
        padding: 40px 5%;
        gap: 16px;
        text-align: center;
    }

    .market h2 {
        font-size: 1.2rem;
        line-height: 1.45;
        flex: none;
        width: 100%;
    }

    .divider {
        width: 60px;
        height: 3px;
        margin: 4px auto;
    }

    .market p {
        font-size: 0.95rem;
        font-weight: 500;
        flex: none;
        width: 100%;
        line-height: 1.7;
    }

    /* PURPOSE */
    .queen-purpose {
        padding: 40px 5%;
    }

    .content-container {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }

    /* IMAGES - 3 side by side on mobile */
    .purpose-images {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        width: 100%;
    }

    .purpose-images img {
        height: 100px;
        border-radius: 8px;
    }

    /* TEXT */
    .purpose-text {
        width: 100%;
    }

    .purpose-text h1 {
        font-size: 1.6rem;
        margin-bottom: 16px;
        padding-left: 0;
        text-align: center;
    }

    .purpose-text p {
        font-size: 0.95rem;
        padding-left: 20px;
        text-align: left;
        margin-bottom: 10px;
    }

    /* IMPACT */
    .queen-impact {
        padding: 50px 5%;
    }

    .queen-impact h2 {
        font-size: 1.6rem;
        margin-bottom: 25px;
    }

    .impact-grid {
        grid-template-columns: 1fr;   /* stack cards on mobile */
        gap: 15px;
    }

    .impact-card {
        padding: 20px;
    }

    .count {
        font-size: 2rem;
    }

    .impact-card h3 {
        font-size: 0.95rem;
    }

    .impact-text {
        font-size: 0.95rem;
        line-height: 1.7;
    }
}

/* =========================
   CONTACT SECTION
========================= */
/* =========================
   QUEEN CONTACT - DESKTOP
========================= */
.queen-contact {
    position: relative;
    min-height: 70vh;

    background: url("background1.jpg")
    center/cover no-repeat;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;

    padding: 80px 8%;
    color: white;
    gap: 40px;
}

/* OVERLAY */
.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
    z-index: 1;
}

/* BLINK */
.blink-dot {
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* =========================
   LEFT CONTENT
========================= */
.content-containers {
    position: relative;
    z-index: 2;
    width: 40%;
    max-width: 500px;
}

.content-containers h2 {
    font-family: Arial, sans-serif;
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
}

.typing-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #f0e0d0;
}

.btn-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}



.top-btn {
    padding: 13px 28px;
    border: 2px solid white;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    transition: 0.3s;
    display: inline-block;
}

.top-btn:hover {
    background: white;
    color: #111;
}


/* =========================
   RIGHT - FOOTER COLUMNS
========================= */
.class-bottom {
    position: relative;
    z-index: 2;
    width: 55%;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.class-bottom .footer-block h4 {
    color: #f4c430;
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.class-bottom .footer-block p {
    color: #f0e0d0;
    font-size: 0.95rem;
    line-height: 1.9;
    margin-bottom: 4px;
}

.class-bottom .footer-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.class-bottom .footer-block ul li {
    margin-bottom: 10px;
}

.class-bottom .footer-block ul li a {
    color: #f0e0d0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.3s;
}

.class-bottom .footer-block ul li a:hover {
    color: #f4c430;
    padding-left: 4px;
}

/* FORCE VISIBILITY */
.class-bottom,
.class-bottom * {
    opacity: 1 !important;
    filter: none !important;
}


/* =========================
   TABLET — 769px to 1024px
========================= */
@media (min-width: 769px) and (max-width: 1024px) {

    .queen-contact {
        flex-direction: column;
        text-align: center;
        padding: 60px 6%;
        gap: 50px;
        min-height: auto;
    }

    .content-containers {
        width: 100%;
        max-width: 100%;
    }

    .content-containers h2 {
        font-size: 3.2rem;
    }

    .typing-text {
        font-size: 1rem;
        max-width: 600px;
        margin: 0 auto 20px;
    }

    .btn-group {
        justify-content: center;
    }

    .class-bottom {
        width: 100%;
        grid-template-columns: repeat(3, 1fr);  /* keep 3 cols on tablet */
        gap: 25px;
    }

    .footer-block {
        align-items: center;
        text-align: center;
    }

    .class-bottom .footer-block h4 {
        font-size: 1rem;
    }

    .class-bottom .footer-block p,
    .class-bottom .footer-block ul li a {
        font-size: 0.9rem;
    }
}


/* =========================
   MOBILE — max 768px
========================= */
@media (max-width: 768px) {

    .queen-contact {
        flex-direction: column;
        text-align: center;
        padding: 50px 5%;
        gap: 40px;
        min-height: auto;
    }

    .content-containers {
        width: 100%;
        max-width: 100%;
    }

    .content-containers h2 {
        font-size: 2.4rem;        /* ← reduced from 5rem */
        margin-bottom: 16px;
    }

    .typing-text {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .btn-group {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .contact-btn,
    .top-btn {
        width: 100%;
        max-width: 260px;
        text-align: center;
        padding: 12px 20px;
        font-size: 15px;
    }

    .class-bottom {
        width: 100%;
        grid-template-columns: 1fr;   /* ← stack columns on mobile */
        gap: 30px;
    }

    .footer-block {
        align-items: center;
        text-align: center;
    }

    .class-bottom .footer-block h4 {
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .class-bottom .footer-block p,
    .class-bottom .footer-block ul li a {
        font-size: 0.9rem;
    }

    .class-bottom .footer-block ul li {
        margin-bottom: 8px;
    }
}





/* =========================
   FADE ANIMATIONS
========================= */
.fade-left,
.fade-right {
    opacity: 0;
    transform: translateX(0);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-left {
    transform: translateX(-40px);
}

.fade-right {
    transform: translateX(40px);
}

.fade-left.show-section,
.fade-right.show-section {
    opacity: 1;
    transform: translateX(0);
}
