@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --primary: #1B4332;
    --primary-light: #2D6A4F;
    --secondary: #D4A373;
    --accent: #FFB703;
    --text: #2D3142;
    --text-muted: #6C757D;
    --bg: #F8F9FA;
    --white: #FFFFFF;
    --glass: rgba(255, 255, 255, 0.8);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.brand {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
}

h2 {
    font-size: clamp(2rem, 5vw, 2rem);
}

h3 {
    font-size: clamp(1.6rem, 4vw, 1.2rem);
}

h4 {
    font-size: clamp(1.3rem, 3vw, .8rem);
}

h5 {
    font-size: clamp(1.1rem, 2.5vw, .4rem);
}

h6 {
    font-size: clamp(1rem, 2vw, .2rem);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Navigation */
header {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(45deg, #001a19, #1b4332, #001a19);
    transition: var(--transition);
    padding: 0;
    ;
}

header.scrolled {
    background: var(--white);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.brand {
    font-size: 1.5rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brand span {
    color: var(--secondary);
}

.nav-links {
    display: flex;
    gap: 1.3rem;
    align-items: center;
    margin-bottom: 0;
}

.nav-item {
    position: relative;
}

header.scrolled .brand {
    color: var(--primary);
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: #fff;
    padding: 30px 0;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link:hover {
    color: var(--secondary);
}

/* Dropdown */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-radius: 0px;
    border-top: 3px solid var(--secondary);
    min-width: 280px;
    padding: 7px 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 0rem;
}

header.scrolled .menu-btn {
    color: #000;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    padding: 0.3rem 0rem;
    border-radius: 8px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text);
    transition: var(--transition);
}

.dropdown-link i {
    color: var(--secondary);
    font-size: 1rem;
    width: 20px;
    text-align: center;
    transform: rotate(316deg);
    transform: 0.5s e ase-in-out;
}

.dropdown-link:hover {
    color: var(--secondary);
}

/* Multi-level Dropdown */
.dropdown-submenu {
    position: relative;
    width: 100%;
}

.dropdown-submenu .dropdown.nested {
    top: 0;
    left: 100%;
    margin-top: -5px;
    margin-left: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: var(--transition);
}

/* Left-opening nested dropdown */
.dropdown-submenu .dropdown.nested.left-side {
    left: auto;
    right: 100%;
    transform: translateX(-10px);
}

.dropdown-submenu:hover>.dropdown.nested {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.dropdown-submenu:hover>.dropdown.nested.left-side {
    transform: translateX(0);
}

/* Ensure parent dropdown doesn't hide when hovering submenu */
.dropdown:hover {
    opacity: 1;
    visibility: visible;
}

footer {
    position: relative;
    background:
        linear-gradient(135deg,
            rgba(0, 26, 25, 0.92),
            rgba(27, 67, 50, 0.88),
            rgba(0, 26, 25, 0.95)),
        url('../images/footer_bg.jpg');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    padding: 80px 0;
    color: #ffffff;
    overflow: hidden;
}

/* Mega Menu Styles */
.mega-menu {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 90%;
    max-width: 1200px;
    background: var(--white);
    box-shadow: var(--shadow);
    border-radius: 20px;
    padding: 2.5rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.nav-item:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-column h4 {
    margin-bottom: 1.2rem;
    color: var(--primary);
    border-bottom: 2px solid var(--secondary);
    display: inline-block;
    padding-bottom: 0.25rem;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgb(0 0 0 / 41%), rgb(0 0 0 / 72%)), url(/static/images/hero.png);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 0 2rem;
}

.hero-content {
    max-width: 900px;
}

.hero h1 {
    margin-bottom: 1.5rem;
    color: white;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

/* Buttons */
.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    display: inline-block;
}

/* Creative Buttons */
.btn-creative {
    padding: 0.8rem 1rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-join {
    background: linear-gradient(135deg, var(--secondary), #BC8A5F);
    color: white;
    box-shadow: 0 4px 15px rgba(212, 163, 115, 0.4);
}

.btn-join:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 163, 115, 0.6);
}

header.scrolled .btn-login {
    background: rgba(27, 67, 50, 0.05);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-login {
    background: rgba(27, 67, 50, 0.05);
    color: #ffffff;
    border: 2px solid #ffffff;
}

.hero-btns a {
    border: 1px solid #fff;
    color: #fff;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-login:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* Side Drawer (Mobile) */
.side-drawer {
    position: fixed;
    top: 0;
    left: -100%;
    width: 338px;
    height: 100vh;
    background: var(--white);
    z-index: 2000;
    transition: all 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.side-drawer.active {
    left: 0;
}

.drawer-header {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
}

.close-btn {
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary);
}

.drawer-links {
    padding: 2rem;
    flex-grow: 1;
    overflow-y: auto;
}

.drawer-links li {
    margin-bottom: 1.2rem;
}

.drawer-links a,
.drawer-link-toggle {
    font-size: 1.1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* Ensure everything stays left */
    gap: 1rem;
    color: var(--text);
    cursor: pointer;
    width: 100%;
}

.drawer-link-toggle .fa-chevron-down {
    margin-left: auto;
    /* Push only the chevron to the right */
}


.drawer-link-toggle span {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.drawer-links i {
    color: var(--secondary);
    width: 25px;
    text-align: center;
}

.drawer-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding-left: 2.5rem;
    list-style: none;
    margin-top: 0.5rem;
}

.drawer-item.active .drawer-submenu {
    max-height: 2000px;
}

.drawer-item.active .drawer-link-toggle .fa-chevron-down {
    transform: rotate(180deg);
}

.drawer-submenu li {
    margin-bottom: 0.8rem;
}

.drawer-submenu a {
    font-size: 0.95rem;
    color: var(--text-muted);
}


.drawer-footer {
    padding: 2rem;
    border-top: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.drawer-footer .btn-creative {
    width: 100%;
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Sections */

section {
    padding: 100px 2rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    margin-bottom: 1rem;
}

.section-title .underline {
    width: 80px;
    height: 4px;
    background: var(--secondary);
    margin: 0 auto;
}

/* Grid Layouts */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}


.card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(27, 67, 50, 0.05);
    color: var(--secondary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.card:hover .icon-box {
    background: var(--secondary);
    color: var(--white);
    transform: rotate(10deg);
}


/* Vision/Mission Section */
.vision-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.content-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: var(--shadow);
}

/* Mobile Nav */
.menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--white);
}

@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .menu-btn {
        display: block;
    }
}

/* Pride Grid */
.pride-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.pride-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 20px;
    transition: var(--transition);
}

.pride-item:hover {
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.pride-item i {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 1rem;
    display: block;
}

/* FAQ Accordion */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 0 !important;
    /* Overriding previous padding */
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question h4 {
    margin: 0;
    color: var(--primary);
    font-size: 1.1rem;
}

.faq-question i {
    color: var(--secondary);
    transition: var(--transition);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
}

.faq-answer p {
    padding: 2rem;
    margin: 0;
    color: var(--text-muted);
}

/* Active State */
.faq-item.active {
    box-shadow: var(--shadow);
    border-color: var(--secondary);
}

.faq-item.active .faq-question {
    background: rgba(212, 163, 115, 0.05);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    /* Adjust as needed */
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
    color: var(--primary);
}


/* Product Card */
.product-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
}

.product-card h4 {
    margin: 1rem 0 0.5rem;
}

.product-card .price {
    display: block;
    font-weight: 700;
    color: var(--primary);
    font-size: 1.25rem;
    margin-top: 0.5rem;
}

.btn-text {
    color: var(--secondary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

header.scrolled .nav-link {
    color: var(--primary);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0d3924;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    visibility: visible;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.loader-icon img {
    width: 80px;
    height: 80px;
    animation: bounce 1s infinite;
}

/* Loading text animation */
#loading-text {
    font-size: 24px;
    color: #fff;
    margin-top: 10px;
    opacity: 0;
    animation: fadeInText 2s ease-out forwards;
}

/* Keyframes for the animations */
@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes fadeInText {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
    bottom: 40px;
}

.back-to-top:hover {
    background: var(--secondary);
    transform: translateY(-5px);
}

.side-drawer .drawer-header .brand {
    color: var(--primary);
}

.side-drawer .btn-login {
    background-color: var(--primary);
    color: white;
}

@media (max-width: 768px) {

    header,
    header.scrolled {
        padding: 15px 0;
    }

    .nav-container {
        padding: 0 15px;
    }

    .btn {
        padding: 0.5rem 1.5rem;
    }

    .vision-mission {
        display: block;
    }
}

/* Footer Social Icons */
.footer-social {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: #cf9e6f;
    color: white !important;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
    /* box-shadow: 0 4px 10px rgba(214, 51, 108, 0.3); */
    box-shadow: 0 4px 15px rgba(212, 163, 115, 0.4);
}



.social-icon i {
    color: white;
}

footer a {
    transition: var(--transition);
}

footer a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

footer .btn-join {
    background: var(--secondary);
    transition: var(--transition);
}

footer .btn-join:hover {
    background: #BC8A5F;
}

/* Contact Grid Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-image-box {
    position: relative;
}

.creative-img {
    width: 100%;
    border-radius: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.creative-img:hover {
    transform: scale(1.02);
}

.floating-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.floating-card i {
    font-size: 1.5rem;
    color: var(--secondary);
}

.contact-form-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-form-card .form-group {
    margin-bottom: 1.5rem;
}

.contact-form-card label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary);
    font-size: 0.9rem;
}

.contact-form-card input,
.contact-form-card textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #eee;
    border-radius: 12px;
    background: #f8f9fa;
    font-family: inherit;
    transition: var(--transition);
}

.contact-form-card input:focus,
.contact-form-card textarea:focus {
    outline: none;
    border-color: var(--secondary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(212, 163, 115, 0.1);
}

.contact-form-card textarea {
    height: 120px;
    resize: none;
}

.btn-block {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem;
    font-size: 1.1rem;
}

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

    .contact-image-box {
        order: 2;
    }

    .contact-form-card {
        order: 1;
    }
}

/* Work Card Styles */
.work-card {
    padding: 0 !important;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.work-card .card-image {
    height: 200px;
    overflow: hidden;
}

.work-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.work-card:hover .card-image img {
    transform: scale(1.1);
}

.work-card .card-body {
    padding: 2rem;
}

.work-card h3 {
    margin-bottom: 1rem;
    color: var(--primary);
    font-size: 1.25rem;
}

/* ============================= */
/* LOGIN PAGE STYLES */
/* ============================= */

.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(27, 67, 50, 0.05), rgba(212, 163, 115, 0.05));
    padding: 50px 0;
}

.auth-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 1200px;
    width: 100%;
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.auth-left {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    padding: 4rem;
    display: flex;
    flex-direction: column;
}

.auth-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.auth-brand i {
    font-size: 2.5rem;
}

.auth-brand h2 {
    font-size: 1.8rem;
    margin: 0;
}

.auth-brand span {
    color: var(--secondary);
}

.auth-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.auth-info p {
    font-size: 1rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
}

.auth-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature i {
    font-size: 1.5rem;
    color: var(--secondary);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.feature span {
    font-size: 0.95rem;
    line-height: 1.5;
}

.auth-right {
    padding: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-card {
    width: 100%;
    max-width: 400px;
}

.auth-card h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.auth-subtitle {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.9rem;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    color: var(--secondary);
    font-size: 1rem;
    left: 1rem;
}

.input-wrapper input,
.input-wrapper select {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.8rem;
    border: 1px solid #ddd;
    border-radius: 12px;
    background: #f8f9fa;
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
}

.input-wrapper input:focus,
.input-wrapper select:focus {
    outline: none;
    border-color: var(--secondary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(212, 163, 115, 0.1);
}

.toggle-password {
    position: absolute;
    right: 43px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--secondary);
    font-size: 1rem;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-message {
    color: #dc3545;
    font-size: 0.85rem;
    display: none;
}

.error-message.show {
    display: block;
}

.form-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text);
}

.checkbox-wrapper input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary);
}

.forgot-link {
    color: var(--secondary);
    font-weight: 500;
    transition: var(--transition);
}

.forgot-link:hover {
    color: var(--primary);
}

.btn-full {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(27, 67, 50, 0.3);
}

.divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #ddd;
}

.social-login {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.social-btn {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    border: 1px solid #ddd;
    background: #f8f9fa;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary);
    transition: var(--transition);
}

.social-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.auth-footer {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.link-highlight {
    color: var(--primary);
    font-weight: 600;
    transition: var(--transition);
}

.link-highlight:hover {
    color: var(--secondary);
}

/* ============================= */
/* JOIN US PAGE STYLES */
/* ============================= */



.join-hero {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    padding: 6rem 2rem;
    text-align: center;
}

.join-hero .hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.join-hero .hero-content p {
    font-size: 1.1rem;
    opacity: 0.95;
}

.join-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.join-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefits-card,
.steps-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.benefits-card h3,
.steps-card h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(27, 67, 50, 0.1), rgba(212, 163, 115, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefit-text h4 {
    color: var(--primary);
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.benefit-text p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.steps-timeline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--primary);
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.step-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.join-right {
    display: flex;
    align-items: center;
}

.join-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    width: 100%;
}

.join-card h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.join-subtitle {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.join-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.account-type-select {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
}

.radio-wrapper {
    position: relative;
    cursor: pointer;
}

.radio-wrapper input[type="radio"] {
    display: none;
}

.radio-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.2rem;
    border: 2px solid #ddd;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    background: #f8f9fa;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
}

.radio-wrapper input[type="radio"]:checked+.radio-label {
    border-color: var(--primary);
    background: rgba(27, 67, 50, 0.05);
    color: var(--primary);
}

.radio-label i {
    font-size: 1.5rem;
    color: var(--secondary);
}

.radio-wrapper input[type="radio"]:checked+.radio-label i {
    color: var(--primary);
}

.password-strength {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.strength-bar {
    width: 100%;
    height: 6px;
    background: #eee;
    border-radius: 3px;
    overflow: hidden;
}

.strength-bar::after {
    content: '';
    display: block;
    height: 100%;
    background: #ccc;
    width: 0%;
    transition: width 0.3s ease;
}

.strength-bar.weak::after {
    background: #dc3545;
    width: 25%;
}

.strength-bar.fair::after {
    background: #ffc107;
    width: 50%;
}

.strength-bar.good::after {
    background: #17a2b8;
    width: 75%;
}

.strength-bar.strong::after {
    background: #28a745;
    width: 100%;
}

.strength-text {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.checkbox-wrapper.large {
    font-size: 0.9rem;
}

.join-footer {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ============================= */
/* RESPONSIVE DESIGN */
/* ============================= */

@media (max-width: 1024px) {

    .auth-wrapper,
    .join-wrapper {
        grid-template-columns: 1fr;
    }

    .auth-left {
        padding: 3rem;
    }

    .join-left {
        order: 2;
    }

    .join-right {
        order: 1;
    }
}

@media (max-width: 768px) {
    .auth-container {
        padding: 1rem;
    }

    .auth-wrapper {
        border-radius: 15px;
    }

    .auth-left {
        padding: 2rem;
        display: none;
    }

    .auth-right {
        padding: 2rem;
    }

    .auth-card {
        max-width: 100%;
    }

    .auth-brand h2 {
        font-size: 1.4rem;
    }

    .auth-card h2 {
        font-size: 1.5rem;
    }



    .join-hero {
        padding: 3rem 1rem;
    }

    .join-hero .hero-content h1 {
        font-size: 1.8rem;
    }

    .join-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1rem;
    }

    .join-card {
        padding: 2rem;
    }

    .account-type-select {
        grid-template-columns: 1fr;
    }

    .benefits-card,
    .steps-card {
        padding: 1.5rem;
    }

    .input-wrapper input,
    .input-wrapper select {
        padding: 0.6rem 0.8rem 0.6rem 2.3rem;
    }
}

/* Live Support Floating Button */
.live-support-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #ff8c00;
    /* Matching the orange color from screenshot */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    z-index: 1001;
    transition: var(--transition);
}

.live-support-btn:hover {
    transform: scale(1.1);
    background: #e67e00;
}

/* Support Popup */
.support-popup {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 350px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 1002;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.support-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.support-header {
    background: #0d1b2a;
    /* Dark blue from screenshot */
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.support-header-content {
    display: flex;
    gap: 15px;
    align-items: center;
}

.support-icon {
    width: 45px;
    height: 45px;
    background: #007bff;
    /* Blue icon background */
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.support-title h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.support-title p {
    margin: 2px 0 0;
    font-size: 0.85rem;
    opacity: 0.8;
}

.support-close {
    cursor: pointer;
    font-size: 1.2rem;
    opacity: 0.7;
    transition: 0.2s;
}

.support-close:hover {
    opacity: 1;
}

.support-body {
    padding: 20px;
    background: #f8f9fa;
}

.support-option {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 15px;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    border: 1px solid #eee;
    transition: var(--transition);
}

.support-option:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-color: #25d366;
}

.option-icon.whatsapp {
    width: 40px;
    height: 40px;
    background: rgba(37, 211, 102, 0.1);
    color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.option-text {
    flex: 1;
}

.option-text h5 {
    margin: 0;
    font-size: 1rem;
    color: #333;
}

.option-text p {
    margin: 2px 0 0;
    font-size: 0.8rem;
    color: #666;
}

.option-arrow {
    color: #ccc;
    font-size: 0.8rem;
}

/* Hide back-to-top when support popup is open on mobile */
@media (max-width: 768px) {
    .support-popup {
        width: calc(100% - 40px);
        right: 20px;
        bottom: 90px;
    }

    .live-support-btn {
        bottom: 20px;
        right: 20px;
    }
}

/* Shared Content Page Styles */
.page-hero {
    position: relative;
    padding: 120px 0 80px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: center;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(13, 27, 42, 0.7), rgba(13, 27, 42, 0.8));
    z-index: 1;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-section {
    padding: 80px 0;
}

/* Creative Cards */
.card-creative {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
    height: 100%;
    transition: var(--transition);
    border-top: 5px solid var(--secondary);
    position: relative;
    overflow: hidden;
}

.card-creative:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.icon-box-creative {
    width: 70px;
    height: 70px;
    background: rgba(212, 163, 115, 0.1);
    color: var(--secondary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

/* Language Toggle */
.lang-toggle-wrapper {
    margin-top: 30px;
}

.lang-btn {
    padding: 0.6rem 2rem;
    border-radius: 50px;
    border: 2px solid white;
    background: transparent;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin: 0 5px;
}

.lang-btn.active {
    background: white;
    color: var(--primary);
}

.content-section {
    display: none;
}

.content-section.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

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

/* Timeline (Rajas Page) */
.timeline-creative {
    position: relative;
    padding: 50px 0;
}

.timeline-creative::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: var(--secondary);
    transform: translateX(-50%);
}

.timeline-item-creative {
    margin-bottom: 50px;
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.timeline-content-creative {
    width: 45%;
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.timeline-dot-creative {
    position: absolute;
    top: 30px;
    left: 50%;
    width: 20px;
    height: 20px;
    background: var(--primary);
    border: 4px solid var(--secondary);
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

/* Blueprint (Agro Productions) */
.blueprint-box-creative {
    background: var(--bg);
    border-radius: 30px;
    padding: 3rem;
    margin-top: 50px;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.05);
}

.bp-step-creative {
    text-align: center;
}

.bp-step-creative i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

/* Other UI Helpers */
.quote-box-creative {
    border-left: 10px solid var(--secondary);
    padding: 2rem;
    background: var(--bg);
    margin: 3rem 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    border-radius: 0 15px 15px 0;
}

.heli-badge-creative {
    background: #e63946;
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .timeline-creative::before {
        left: 20px;
    }

    .timeline-content-creative {
        width: 85% !important;
        margin-left: 40px !important;
    }

    .timeline-dot-creative {
        left: 20px;
    }

    .timeline-item-creative {
        justify-content: flex-start;
    }

    .card-creative {
        padding: 1.5rem;
    }

    .page-hero {
        padding: 100px 0 60px;
    }
}