/* ================================================
   OSITEX CREATIVE HUB - Hero Section Styles
   hero.css
   ================================================ */


/* ------------------------------------------------
   1. HERO SECTION CONTAINER
------------------------------------------------ */

.hero {
    position: relative;
    height: 100vh;
    max-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--bg-primary);
    overflow: hidden;
    padding-top: 0px;
    margin-top: -30px;
    /* pulls content up slightly */
    /* accounts for sticky navbar height */
}


/* ------------------------------------------------
   2. GEOMETRIC BACKGROUND PATTERN
------------------------------------------------ */

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.geo-shape {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transform: rotate(45deg);
}

.shape-1 {
    width: 320px;
    height: 320px;
    top: -110px;
    left: -110px;
    border-color: rgba(0, 51, 204, 0.15);
    animation: rotateSlow 22s linear infinite;
}

.shape-2 {
    width: 220px;
    height: 220px;
    top: 55px;
    right: 110px;
    border-color: rgba(204, 0, 0, 0.12);
    animation: rotateSlow 17s linear infinite reverse;
}

.shape-3 {
    width: 160px;
    height: 160px;
    top: 42%;
    left: 6%;
    border-color: rgba(255, 204, 0, 0.09);
    animation: rotateSlow 13s linear infinite;
}

.shape-4 {
    width: 440px;
    height: 440px;
    bottom: -160px;
    right: -160px;
    border-color: rgba(0, 51, 204, 0.11);
    animation: rotateSlow 28s linear infinite reverse;
}

.shape-5 {
    width: 110px;
    height: 110px;
    bottom: 105px;
    left: 16%;
    border-color: rgba(204, 0, 0, 0.09);
    animation: rotateSlow 11s linear infinite;
}

@keyframes rotateSlow {
    from {
        transform: rotate(45deg);
    }
    to {
        transform: rotate(405deg);
    }
}


/* ------------------------------------------------
   3. HERO WRAPPER
------------------------------------------------ */

.hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3.5rem;
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 2.5rem;
}


/* ------------------------------------------------
   4. HERO LEFT SIDE
------------------------------------------------ */

.hero-left {
    flex: 1;
    min-width: 280px;
    max-width: 580px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


/* Welcome tag */

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(0, 51, 204, 0.15);
    border: 1px solid rgba(0, 51, 204, 0.3);
    padding: 0.3rem 0.85rem;
    border-radius: 50px;
    margin-bottom: 0.6rem;
    width: fit-content;
}

.hero-tag span {
    color: var(--gray);
    font-size: clamp(0.85rem, 1.2vw, 1rem);
    font-weight: 500;
}

.tag-dot {
    width: 7px;
    height: 7px;
    min-width: 7px;
    background: var(--yellow);
    border-radius: 50%;
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 204, 0, 0.6);
    }
    50% {
        box-shadow: 0 0 0 5px rgba(255, 204, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 204, 0, 0);
    }
}


/* Hero title */

.hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 0.6rem;
}

.hero-title-highlight {
    color: var(--yellow);
    display: block;
}


/* Hero description */

.hero-desc {
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    color: var(--gray-light);
    line-height: 1.6;
    margin-bottom: 1rem;
    max-width: 480px;
}


/* Buttons */

.hero-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.hero-buttons .btn-primary,
.hero-buttons .btn-outline {
    padding: 0.65rem 1.6rem;
    font-size: clamp(0.9rem, 1.2vw, 1rem);
}


/* Social media */

.hero-socials {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.socials-label {
    color: var(--gray-light);
    font-size: clamp(0.875rem, 1.2vw, 1rem);
    font-weight: 500;
    white-space: nowrap;
    position: relative;
    padding-right: 1rem;
}

.socials-label::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 16px;
    background: var(--gray-border);
}

.socials-icons {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.socials-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--gray-border);
    border-radius: 50%;
    transition: all var(--transition-normal);
}

.socials-icons a:hover {
    background: var(--red);
    border-color: var(--red);
    transform: translateY(-3px);
    box-shadow: var(--shadow-red);
}

.socials-icons svg {
    color: var(--white);
    transition: color var(--transition-normal);
}

.socials-icons a:hover svg {
    color: var(--white);
}


/* ------------------------------------------------
   5. HERO RIGHT SIDE
------------------------------------------------ */

.hero-right {
    flex: 1;
    min-width: 260px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo-container {
    position: relative;
    width: clamp(200px, 28vw, 340px);
    height: clamp(200px, 28vw, 340px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.1);
}

.ring-outer {
    width: 100%;
    height: 100%;
    border-color: rgba(0, 51, 204, 0.2);
    animation: ringRotate 20s linear infinite;
}

.ring-middle {
    width: 78%;
    height: 78%;
    border-color: rgba(204, 0, 0, 0.2);
    animation: ringRotate 15s linear infinite reverse;
}

.ring-inner {
    width: 56%;
    height: 56%;
    border-color: rgba(255, 204, 0, 0.2);
    animation: ringRotate 10s linear infinite;
}

@keyframes ringRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.hero-logo-box {
    position: relative;
    z-index: 2;
    width: clamp(80px, 11vw, 140px);
    height: clamp(80px, 11vw, 140px);
    background: var(--bg-card);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--gray-border);
    box-shadow: 0 0 40px rgba(0, 51, 204, 0.3), 0 0 80px rgba(0, 51, 204, 0.1);
    animation: floatUpDown 4s ease-in-out infinite;
}

.hero-logo-img {
    width: 65%;
    height: 65%;
    object-fit: contain;
}

@keyframes floatUpDown {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}


/* Floating badges */

.hero-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--bg-card);
    border: 1px solid var(--gray-border);
    border-radius: 50px;
    padding: 0.35rem 0.75rem;
    white-space: nowrap;
    z-index: 3;
    box-shadow: var(--shadow-md);
}

.badge-icon {
    font-size: 0.9rem;
}

.badge-text {
    color: var(--white);
    font-size: clamp(0.75rem, 1vw, 0.875rem);
    font-weight: 600;
}

.badge-1 {
    top: 5%;
    left: -15px;
    animation: floatBadge1 4s ease-in-out infinite;
    border-left: 3px solid var(--yellow);
}

.badge-2 {
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
    animation: floatBadge2 4s ease-in-out infinite 0.5s;
    border-left: 3px solid var(--red);
}

.badge-3 {
    bottom: 5%;
    left: -15px;
    animation: floatBadge3 4s ease-in-out infinite 1s;
    border-left: 3px solid var(--blue-light);
}

@keyframes floatBadge1 {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-7px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes floatBadge2 {
    0% {
        transform: translateY(-50%);
    }
    50% {
        transform: translateY(calc(-50% - 7px));
    }
    100% {
        transform: translateY(-50%);
    }
}

@keyframes floatBadge3 {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(7px);
    }
    100% {
        transform: translateY(0px);
    }
}


/* ------------------------------------------------
   6. SCROLL DOWN INDICATOR
------------------------------------------------ */

.hero-scroll {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    z-index: 1;
}

.hero-scroll span {
    color: var(--gray-light);
    font-size: 0.6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 30px;
    background: var(--gray-border);
    position: relative;
    overflow: hidden;
}

.scroll-dot {
    width: 100%;
    height: 30%;
    background: var(--yellow);
    position: absolute;
    top: -30%;
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0% {
        top: -30%;
    }
    100% {
        top: 130%;
    }
}


/* ------------------------------------------------
   7. RESPONSIVE - Tablets (max 1024px)
------------------------------------------------ */

@media (max-width: 1024px) {
    .hero {
        padding-top: 65px;
        margin-top: 0;
    }
    .hero-wrapper {
        gap: 1.5rem;
        margin-top: 0;
    }
}


/* ------------------------------------------------
   8. RESPONSIVE - Mobile (max 768px)
------------------------------------------------ */

@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding-top: 60px;
        padding-bottom: 2rem;
        margin-top: 0;
        overflow-y: auto;
    }
    .hero-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 1.25rem;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 0 1.25rem;
        margin-top: 0;
    }
    .hero-left {
        max-width: 100%;
        width: 100%;
        align-items: center;
    }
    .hero-right {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .hero-title {
        font-size: clamp(2rem, 7vw, 2.5rem);
    }
    .hero-desc {
        font-size: clamp(1rem, 3.5vw, 1.1rem);
        text-align: center;
    }
    .hero-tag span {
        font-size: clamp(0.85rem, 3vw, 1rem);
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-buttons .btn-primary,
    .hero-buttons .btn-outline {
        padding: 0.65rem 1.5rem;
        font-size: clamp(0.9rem, 3vw, 1rem);
    }
    .hero-socials {
        justify-content: center;
    }
    .socials-label {
        font-size: clamp(0.875rem, 3vw, 1rem);
    }
    .socials-icons a {
        width: 38px;
        height: 38px;
    }
    .badge-text {
        font-size: clamp(0.8rem, 2.5vw, 0.875rem);
    }
    .hero-badge {
        padding: 0.4rem 0.85rem;
    }
    .badge-icon {
        font-size: 0.9rem;
    }
    .hero-scroll {
        display: none;
    }
    .badge-1 {
        top: 5px;
        left: 50%;
        transform: translateX(-50%);
    }
    .badge-2 {
        right: 0;
        top: auto;
        bottom: 45px;
        transform: none;
    }
    .badge-3 {
        bottom: 5px;
        left: 50%;
        transform: translateX(-50%);
    }
    .hero .container {
        padding: 0 1.25rem;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}


/* ------------------------------------------------
   9. RESPONSIVE - Small phones (max 480px)
------------------------------------------------ */

@media (max-width: 480px) {
    .hero {
        padding-top: 55px;
    }
    .hero-wrapper {
        gap: 1rem;
        padding: 0 1rem;
    }
    .hero-title {
        font-size: clamp(1.8rem, 8vw, 2.2rem);
    }
    .hero-desc {
        font-size: clamp(0.95rem, 3.5vw, 1.05rem);
    }
    .hero-tag span {
        font-size: clamp(0.8rem, 3vw, 0.9rem);
    }
    .hero-buttons .btn-primary,
    .hero-buttons .btn-outline {
        padding: 0.6rem 1.4rem;
        font-size: clamp(0.85rem, 3vw, 0.95rem);
    }
    .socials-label {
        font-size: clamp(0.85rem, 3vw, 0.95rem);
    }
    .socials-icons a {
        width: 36px;
        height: 36px;
    }
    .badge-text {
        font-size: clamp(0.75rem, 2.5vw, 0.85rem);
    }
    .hero-badge {
        padding: 0.35rem 0.75rem;
    }
}


/* ------------------------------------------------
   10. RESPONSIVE - Very small phones (max 360px)
------------------------------------------------ */

@media (max-width: 360px) {
    .hero-wrapper {
        gap: 0.75rem;
        padding: 0 0.75rem;
    }
    .hero-title {
        font-size: clamp(1.6rem, 8vw, 2rem);
    }
    .hero-desc {
        font-size: clamp(0.9rem, 3.5vw, 1rem);
    }
    .hero-tag {
        padding: 0.25rem 0.7rem;
    }
    .hero-tag span {
        font-size: clamp(0.75rem, 3vw, 0.85rem);
    }
    .badge-text {
        font-size: 0.75rem;
    }
    .socials-icons a {
        width: 32px;
        height: 32px;
    }
    .hero-badge {
        padding: 0.3rem 0.65rem;
    }
}


/* ================================================
   INTRO ANIMATION OVERLAY
================================================ */

.intro-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.intro-overlay.slide-up {
    animation: introSlideUp 0.8s ease-in-out forwards;
}

@keyframes introSlideUp {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(-100%);
        opacity: 0;
    }
}

.intro-overlay.hidden {
    display: none;
}

.intro-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.intro-shape {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transform: rotate(45deg);
}

.ishape-1 {
    width: 400px;
    height: 400px;
    top: -150px;
    left: -150px;
    border-color: rgba(0, 51, 204, 0.15);
    animation: rotateSlow 20s linear infinite;
}

.ishape-2 {
    width: 250px;
    height: 250px;
    top: 50px;
    right: 50px;
    border-color: rgba(204, 0, 0, 0.1);
    animation: rotateSlow 15s linear infinite reverse;
}

.ishape-3 {
    width: 500px;
    height: 500px;
    bottom: -200px;
    right: -200px;
    border-color: rgba(0, 51, 204, 0.1);
    animation: rotateSlow 25s linear infinite;
}

.ishape-4 {
    width: 150px;
    height: 150px;
    bottom: 100px;
    left: 10%;
    border-color: rgba(255, 204, 0, 0.08);
    animation: rotateSlow 12s linear infinite reverse;
}

.intro-flare {
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient( circle, rgba(255, 204, 0, 0.4) 0%, rgba(255, 204, 0, 0.1) 40%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    filter: blur(20px);
}

.intro-flare.animate {
    animation: flareMove 1.5s ease-in-out forwards;
}

@keyframes flareMove {
    0% {
        opacity: 0;
        top: -100px;
        left: -100px;
        transform: scale(0.5);
    }
    30% {
        opacity: 1;
        transform: scale(1.2);
    }
    70% {
        opacity: 0.8;
    }
    100% {
        opacity: 0;
        top: 100%;
        left: 100%;
        transform: scale(0.3);
    }
}

.intro-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1rem;
}

.intro-logo {
    opacity: 0;
    transform: scale(0.8) translateY(20px);
    animation: logoFadeIn 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
}

.intro-logo img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(255, 204, 0, 0.4));
    animation: logoPulse 2s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% {
        filter: drop-shadow(0 0 30px rgba(255, 204, 0, 0.4));
    }
    50% {
        filter: drop-shadow(0 0 40px rgba(255, 204, 0, 0.6));
    }
}

@keyframes logoFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }
    60% {
        transform: scale(1.05) translateY(-5px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.intro-welcome {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.intro-welcome.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.intro-welcome span {
    color: var(--gray-light);
    font-size: var(--text-md);
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-family: var(--font-main);
}

.intro-company {
    opacity: 0;
    transform: translateX(-50px) scale(0.95);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.intro-company.show {
    opacity: 1;
    transform: translateX(0) scale(1);
}

#introTyping {
    color: var(--white);
    font-size: var(--text-3xl);
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: var(--font-main);
}

.intro-cursor {
    color: var(--yellow);
    font-size: var(--text-3xl);
    font-weight: 300;
    animation: cursorBlink 0.7s ease-in-out infinite;
}

@keyframes cursorBlink {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

.intro-sub {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.intro-sub.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.intro-sub p {
    color: var(--yellow);
    font-size: var(--text-md);
    font-weight: 500;
    letter-spacing: 2px;
    font-family: var(--font-main);
    margin: 0;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .intro-logo img {
        width: 90px;
        height: 90px;
    }
    #introTyping {
        font-size: var(--text-2xl);
    }
    .intro-cursor {
        font-size: var(--text-2xl);
    }
    .intro-welcome span {
        font-size: var(--text-base);
        letter-spacing: 3px;
    }
    .intro-sub p {
        font-size: var(--text-base);
        letter-spacing: 1px;
    }
}

@media (max-width: 480px) {
    .intro-logo img {
        width: 70px;
        height: 70px;
    }
    #introTyping {
        font-size: var(--text-xl);
        letter-spacing: 2px;
    }
    .intro-cursor {
        font-size: var(--text-xl);
    }
    .intro-welcome span {
        font-size: var(--text-sm);
        letter-spacing: 2px;
    }
    .intro-sub p {
        font-size: var(--text-sm);
    }
}


/* ================================================
   GET STARTED MODAL POPUP
================================================ */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.modal-box {
    background: var(--bg-secondary);
    border: 1px solid var(--gray-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow-lg);
    transform: translateY(-30px);
    transition: transform var(--transition-normal);
}

.modal-overlay.open .modal-box {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    color: var(--gray-light);
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
    transition: color var(--transition-normal);
    padding: 0;
}

.modal-close:hover {
    color: var(--red);
}

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.modal-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.modal-logo img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.modal-header h3 {
    font-size: var(--text-xl);
    color: var(--white);
    margin-bottom: 0.5rem;
}

.modal-header p {
    color: var(--gray-light);
    font-size: var(--text-sm);
    margin: 0;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--gray-border);
    border-radius: var(--radius-md);
    padding: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: var(--white);
    font-size: var(--text-sm);
    font-weight: 600;
}

.required {
    color: var(--red);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--bg-secondary);
    border: 1px solid var(--gray-border);
    border-radius: var(--radius-sm);
    padding: 0.8rem 1rem;
    color: var(--white);
    font-size: var(--text-base);
    font-family: var(--font-main);
    transition: border-color var(--transition-normal);
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--yellow);
    outline: none;
}

.form-group select option {
    background: var(--bg-card);
    color: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.modal-submit {
    width: 100%;
    padding: 1rem;
    font-size: var(--text-md);
    margin-top: 0.5rem;
}

.modal-thankyou {
    display: none;
    text-align: center;
    padding: 2rem 0;
}

.modal-thankyou.show {
    display: block;
}

.thankyou-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.modal-thankyou h3 {
    font-size: var(--text-2xl);
    color: var(--white);
    margin-bottom: 1rem;
}

.modal-thankyou p {
    color: var(--gray-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.modal-box::-webkit-scrollbar {
    width: 5px;
}

.modal-box::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

.modal-box::-webkit-scrollbar-thumb {
    background: var(--blue-light);
    border-radius: var(--radius-full);
}

@media (max-width: 480px) {
    .modal-box {
        padding: 2rem 1.5rem;
    }
    .modal-header h3 {
        font-size: var(--text-lg);
    }
    .modal-form {
        padding: 1rem;
    }
}