/* =========================================
   Coworkfly - Custom Stylesheet
   ========================================= */

:root {
    /* Color Palette - Updated to match Coworkfly Logo */
    --primary: #2ac5d3;

    /* Light Vibrant Cyan */
    --primary-hover: #1f9ca8;

    /* Darker Cyan Hover */
    --secondary: #004d5a;

    /* Deep Teal/Green */
    --accent: #2ac5d3;

    /* Cyan Accent */
    --accent-light: #e0f8fb;

    /* Pale Cyan Backgrounds */
    --text-dark: #0f172a;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --gradient-teal: linear-gradient(135deg, #004d5a 0%, #2ac5d3 100%);
    --gradient-accent: linear-gradient(135deg, #2ac5d3 0%, #004d5a 100%);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Effects */
    --shadow-sm: 0 4px 10px rgb(0 0 0 / 3%);
    --shadow-md: 0 10px 25px -5px rgb(0 0 0 / 5%), 0 8px 10px -6px rgb(0 0 0 / 1%);
    --shadow-lg: 0 20px 40px -10px rgb(0 0 0 / 7%), 0 10px 15px -10px rgb(0 0 0 / 3%);
    --shadow-xl: 0 30px 60px -15px rgb(0 77 90 / 20%);

    /* Deep teal tinted shadow */
    --border-radius-sm: 0.75rem;
    --border-radius-md: 1.25rem;
    --border-radius-lg: 2rem;
    --border-radius-full: 9999px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--secondary);
    line-height: 1.25;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utilities */
.container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
}

.section-padding {
    padding: clamp(2rem, 6vw, 5rem) 0;
}

.bg-light {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.text-gradient {
    background: var(--gradient-teal);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.center,
.text-center {
    text-align: center;
}

.mt-05 {
    margin-top: 0.5rem;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mt-5 {
    margin-top: 3rem;
}

.pt-5 {
    padding-top: 3rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

.mb-4 {
    margin-bottom: 4rem;
}

.border-top {
    border-top: 1px solid #e2e8f0;
}

.text-muted {
    color: var(--text-muted);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-full);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
}

.btn:active {
    transform: translateY(1px) scale(0.98) !important;
}

.btn .bx {
    font-size: 25px;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

.btn-outline {
    background: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

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

.shadow-lg {
    box-shadow: var(--shadow-lg);
}

/* Navbar */
.navbar {
    position: sticky;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 0;
    border-bottom: 1px solid rgb(0 0 0 / 5%);
    transition: var(--transition);
    background: rgb(255 255 255 / 95%);
    backdrop-filter: blur(10px);
}

.navbar.scrolled {
    padding: 0.75rem 0;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.logo i {
    color: var(--primary);
    font-size: 1.75rem;
}

.logo span {
    color: var(--primary);
}

.brand-logo {
    height: 40px;
    width: auto;
    display: block;
}

.footer-logo-img {
    height: 50px;
    filter: brightness(0) invert(1);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

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

.nav-links a:hover {
    color: var(--primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--secondary);
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    z-index: 1001;
    top: 0;
    right: -100%;
    display: flex;
    flex-direction: column;
    width: min(90vw, 320px);
    height: 100vh;
    padding: 4rem 1.5rem 2rem;
    background: var(--white);
    box-shadow: -5px 0 15px rgb(0 0 0 / 10%);
    transition: 0.4s ease-in-out;
}

.mobile-menu.open {
    right: 0;
}

.close-menu {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-dark);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-nav-links a {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--secondary);
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 0.5rem;
}

/* Hero Section */
.hero {
    position: relative;
    padding-top: 0;
    padding-bottom: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    touch-action: pan-y;
    background: #050609;
}

.hero-bg-slider {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateZ(0);
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.08);
    filter: brightness(0.55);
    transition: opacity 1.4s ease, transform 1.4s ease, filter 1.4s ease;
    will-change: opacity, transform, filter;
}

.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgb(0 0 0 / 15%) 0%, rgb(0 0 0 / 35%) 40%, rgb(0 0 0 / 55%) 100%);
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
    filter: brightness(1);
    animation: heroShift 32s ease-in-out infinite, heroSlideFade 1.3s ease-out 1;
    animation-fill-mode: both;
}

@keyframes heroSlideFade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.hero-bg-slider::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at center, rgb(255 255 255 / 6%), transparent 35%);
}

@keyframes heroShift {

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

    25% {
        transform: scale(1.01) translateX(0.8%) translateY(-0.4%);
    }

    50% {
        transform: scale(1.02) translateX(-1.2%) translateY(-0.8%);
    }

    75% {
        transform: scale(1.01) translateX(1%) translateY(0.3%);
    }
}

.hero-overlay {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(0 77 90 / 80%) 0%, rgb(0 25 30 / 50%) 100%);
    animation: overlayPulse 18s ease-in-out infinite;
}

@keyframes overlayPulse {

    0%,
    100% {
        opacity: 0.92;
    }

    50% {
        opacity: 0.78;
    }
}

.hero-gradient-overlay {
    position: absolute;
    z-index: 3;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg,
            rgb(42 197 211 / 10%) 0%,
            rgb(0 77 90 / 30%) 50%,
            rgb(0 25 30 / 40%) 100%);
    opacity: 0.8;
}

/* Navigation Arrows */
.hero-nav-arrow {
    position: absolute;
    z-index: 6;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgb(255 255 255 / 10%);
    backdrop-filter: blur(10px);
    border: 1px solid rgb(255 255 255 / 20%);
    border-radius: 50%;
    color: rgb(255 255 255 / 90%);
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

.hero:hover .hero-nav-arrow {
    opacity: 1;
}

.hero-nav-arrow:hover {
    background: rgb(255 255 255 / 20%);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgb(0 0 0 / 30%);
}

.hero-nav-prev {
    left: 2rem;
}

.hero-nav-next {
    right: 2rem;
}

/* Slide Indicators */
.hero-indicators {
    position: absolute;
    z-index: 6;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    background: rgb(255 255 255 / 10%);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    border: 1px solid rgb(255 255 255 / 20%);
}

.hero-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgb(255 255 255 / 38%);
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.hero-indicator.active {
    background: rgb(255 255 255 / 98%);
    transform: scale(1.3);
    box-shadow: 0 0 18px rgb(255 255 255 / 35%);
}

.hero-indicator:hover,
.hero-indicator:focus-visible {
    background: rgb(255 255 255 / 70%);
    transform: scale(1.1);
    outline: none;
}

.hero-nav-arrow:focus-visible {
    outline: 2px solid rgb(42 197 211 / 90%);
    outline-offset: 4px;
}

.hero-indicator:focus-visible {
    box-shadow: 0 0 0 4px rgb(42 197 211 / 22%);
}

/* Animated Feature Icons */
.hero-feature-icons {
    position: absolute;
    z-index: 5;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.feature-icon {
    position: absolute;
    width: 68px;
    height: 68px;
    background: radial-gradient(circle at 30% 30%, rgb(255 255 255 / 35%), rgb(255 255 255 / 5%) 40%), rgb(255 255 255 / 10%);
    backdrop-filter: blur(18px);
    border: 1px solid rgb(255 255 255 / 22%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(255 255 255 / 95%);
    font-size: 26px;
    cursor: pointer;
    transition: transform 0.35s ease, background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    animation: float 8.5s ease-in-out infinite;
    box-shadow: 0 18px 45px rgb(0 0 0 / 18%), inset 0 0 0 1px rgb(255 255 255 / 8%);
    pointer-events: auto;
}

.feature-icon::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgb(0 0 0 / 80%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    margin-bottom: 10px;
}

.feature-icon::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: rgb(0 0 0 / 80%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-bottom: 5px;
}

.feature-icon:hover {
    background: linear-gradient(135deg, rgb(42 197 211 / 32%), rgb(255 255 255 / 18%));
    border-color: rgb(42 197 211 / 44%);
    transform: scale(1.18) translateY(-4px);
    box-shadow: 0 20px 55px rgb(42 197 211 / 28%);
    animation-play-state: paused;
}

.feature-icon:hover::before,
.feature-icon:hover::after {
    opacity: 1;
    visibility: visible;
}

.feature-icon i {
    animation: pulse 4s ease-in-out infinite;
    transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
    color: rgb(255 255 255 / 95%);
}

.feature-icon:hover i {
    animation: bounce 0.6s ease-in-out;
    color: #ffffff;
    text-shadow: 0 0 20px rgb(42 197 211 / 55%);
}

.icon-1 {
    top: 18%;
    left: 8%;
    animation-delay: 0s;
}

.icon-2 {
    top: 28%;
    right: 12%;
    animation-delay: 1.5s;
}

.icon-3 {
    bottom: 22%;
    left: 12%;
    animation-delay: 3s;
}

.icon-4 {
    bottom: 18%;
    right: 8%;
    animation-delay: 4.5s;
}

.icon-5 {
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 2.25s;
}

.icon-6 {
    top: 65%;
    right: 20%;
    animation-delay: 5.5s;
}

@keyframes float {

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

    25% {
        transform: translateY(-25px) rotate(8deg);
    }

    50% {
        transform: translateY(-15px) rotate(0deg);
    }

    75% {
        transform: translateY(-30px) rotate(-8deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

@keyframes bounce {

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

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

    60% {
        transform: translateY(-5px);
    }
}

.hero-container {
    position: relative;
    z-index: 4;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.hero-content {
    position: relative;
    width: 100%;
    max-width: 920px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;

    /*
    padding: 2.5rem 2rem 3rem;
    border-radius: 32px;
    background: rgb(255 255 255 / 6%);
    border: 1px solid rgb(255 255 255 / 12%);
    box-shadow: 0 40px 120px rgb(0 0 0 / 22%);
    backdrop-filter: blur(14px);
    */
}

.hero-content::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at 50% 20%, rgb(255 255 255 / 16%), transparent 35%);
    pointer-events: none;
}

/* Slide Content Animation */
.slide-content {
    opacity: 0;
    transform: translate(-50%, -44%) scale(0.96);
    transition: opacity 0.9s ease, transform 0.9s ease;
    position: absolute;
    top: 50%;
    left: 50%;
    text-align: center;
    width: 100%;
    max-width: 760px;
    pointer-events: none;
    padding: 0 1rem;
    will-change: opacity, transform;
}

.slide-content.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: auto;
}

@keyframes heroContentFade {
    0% {
        opacity: 0;
        transform: translate(-50%, -42%) scale(0.94);
        filter: blur(1px);
    }

    40% {
        opacity: 0.65;
        transform: translate(-50%, -46%) scale(0.97);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
        filter: blur(0);
    }
}


.hero-content {
    position: relative;
    z-index: 4;
}

/* Individual Element Animations */
.animate-fade-in {
    animation: fadeIn 1s ease-out forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.animate-slide-up {
    animation: slideUp 1s ease-out forwards;
    animation-delay: 0.4s;
    opacity: 0;
    transform: translateY(30px);
}

.animate-slide-up-delay {
    animation: slideUp 1s ease-out forwards;
    animation-delay: 0.6s;
    opacity: 0;
    transform: translateY(30px);
}

.animate-fade-in-delay {
    animation: fadeIn 1s ease-out forwards;
    animation-delay: 0.8s;
    opacity: 0;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 1s ease-out forwards;
    animation-delay: 1s;
    opacity: 0;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

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

.slide-content .badge {
    margin-bottom: 1.5rem;
}

.slide-content h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.slide-content p {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 85%;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}


@media (width <=768px) {
    .stat-item {
        max-width: 100%;
        width: 100%;
        padding: 0.9rem 1rem;
    }

    .hero-stats {
        gap: 1rem;
        padding-top: 1.5rem;
        margin-top: 1.5rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }
}

/* Responsive Design */
@media (width <=768px) {
    .hero {
        min-height: 100vh;
        padding-top: 0;
        padding-bottom: 0;
    }

    .hero-nav-arrow {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .hero-nav-prev {
        left: 1rem;
    }

    .hero-nav-next {
        right: 1rem;
    }

    .hero-indicators {
        bottom: 1.5rem;
        padding: 0.5rem 1rem;
        gap: 0.5rem;
    }

    .hero-indicator {
        width: 10px;
        height: 10px;
    }

    .hero-feature-icons {
        display: none;
    }

    .hero-container {
        padding: 0 1.25rem;
        min-height: 100vh;
    }

    .hero-content {
        padding: 1.5rem 1rem;
        max-width: 100%;
        min-height: auto;
    }

    .slide-content {
        max-width: 100%;
        padding: 0 0.75rem;
    }

    .slide-content h1 {
        font-size: clamp(2rem, 10vw, 3.4rem);
    }

    .slide-content p {
        font-size: clamp(1rem, 4vw, 1.2rem);
        max-width: 100%;
    }

    .hero-buttons {
        gap: 1rem;
        margin-bottom: 1.75rem;
    }

    .hero-stats {
        gap: 1.25rem;
        padding-top: 1.5rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }
}

@media (width <=480px) {
    .hero-nav-arrow {
        display: none;

        /* Hide arrows on very small screens */
    }

    .hero-indicators {
        bottom: 1rem;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }

    .hero-stats {
        gap: 1.5rem;
    }
}

.badge {
    background: var(--accent-light);
    color: var(--primary-hover);
    padding: 0.5rem 1.5rem;
    border-radius: var(--border-radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.badge-light {
    background: rgb(255 255 255 / 15%);
    color: var(--white);
    border: 1px solid rgb(255 255 255 / 30%);
    backdrop-filter: blur(10px);
}

.hero h1 {
    font-size: clamp(2.4rem, 8vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero p {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.hero-content .badge {
    margin-bottom: 1rem;
}

.text-white {
    color: var(--white) !important;
}

.op-80 {
    opacity: 0.8;
}

.text-gradient-light {
    background: linear-gradient(135deg, var(--accent) 0%, var(--white) 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-buttons.center {
    justify-content: center;
}

.btn-outline-light {
    background: transparent;
    border-color: var(--white);
    color: var(--white);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--secondary);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    border-top: 1px solid rgb(255 255 255 / 20%);
    padding-top: 2rem;
}

.hero-stats.center {
    justify-content: center;
}

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

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 0.875rem;
    color: #ececec;
}

/* Amenities Marquee Slider */
.amenities-marquee-container {
    position: relative;
    display: flex;
    overflow: hidden;
    padding: 1rem 0;
    border-top: 1px solid rgb(255 255 255 / 10%);
    border-bottom: 1px solid rgb(255 255 255 / 10%);
    background: var(--secondary);
    color: var(--white);
    white-space: nowrap;
}

.amenities-marquee-container::before,
.amenities-marquee-container::after {
    content: "";
    position: absolute;
    z-index: 2;
    top: 0;
    width: 80px;
    height: 100%;
}

.amenities-marquee-container::before {
    left: 0;
    background: linear-gradient(to right, var(--secondary) 0%, transparent 100%);
}

.amenities-marquee-container::after {
    right: 0;
    background: linear-gradient(to left, var(--secondary) 0%, transparent 100%);
}

.amenities-marquee {
    display: flex;
    gap: 3rem;
    animation: marquee-left 25s linear infinite;
    padding-left: 3rem;
}

.amenities-marquee span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
}

.amenities-marquee span i {
    color: var(--accent);
    font-size: 1.25rem;
}

@keyframes marquee-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Titles */
.subtitle {
    text-transform: uppercase;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1px;
    display: block;
    margin-bottom: 0.5rem;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 0.7rem;
}

/* About */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.image-wrapper {
    position: relative;
    padding-right: 2rem;
    padding-bottom: 2rem;
}

.image-wrapper img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.image-wrapper::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: 2rem;
    right: 0;
    bottom: 0;
    left: 2rem;
    border-radius: var(--border-radius-lg);
    background: var(--accent-light);
}

.experience-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: var(--gradient-teal);
    color: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
    text-align: center;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--white);
}

.experience-badge h3 {
    margin-bottom: 0.5rem;
}

.experience-badge p {
    font-size: 0.9rem;
}

.feature-list {
    margin: 1rem 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.feature-list i {
    color: var(--primary);
    font-size: 1.25rem;
}

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

.feature-card {
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 2.5rem 2rem;
    border: 1px solid rgb(0 0 0 / 3%);
    border-radius: var(--border-radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-card::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-teal);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-10px);
    border-color: transparent;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover h3,
.feature-card:hover p {
    color: var(--white);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: var(--accent-light);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.icon-box i {
    font-size: 2rem;
    color: var(--primary);
}

.feature-card:hover .icon-box {
    background: rgb(255 255 255 / 20%);
    backdrop-filter: blur(10px);
}

.feature-card:hover .icon-box i {
    color: var(--white);
}

/* Services */
.services-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 0.75rem 2rem;
    border-radius: var(--border-radius-full);
    border: 2px solid transparent;
    background: transparent;
    color: var(--text-muted);
    font-weight: 600;
    font-family: var(--font-body);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.tab-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.tab-btn.active {
    background: var(--gradient-teal);
    color: var(--white);
    box-shadow: var(--shadow-md);
    border-color: transparent;
    transform: translateY(-2px);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

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

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

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

.service-item {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    border: 1px solid rgb(0 0 0 / 3%);
    transition: all 0.4s ease;
}

.service-item:hover {
    border-color: var(--accent-light);
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.service-img {
    width: 80px;
    height: 80px;
    background: var(--accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
}

.service-item:hover .service-img {
    background: var(--gradient-teal);
    transform: scale(1.1);
}

.service-item:hover .service-img i {
    color: var(--white);
}

.service-img i {
    font-size: 2.25rem;
    color: var(--secondary);
    transition: all 0.4s ease;
}

/* Pricing */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.price-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.price-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
}

.price-card.popular {
    border: 2px solid var(--primary);
    transform: scale(1.05);
}

.price-card.popular:hover {
    transform: scale(1.05) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-teal);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: var(--border-radius-full);
    font-size: 0.875rem;
    font-weight: 800;
    box-shadow: 0 4px 15px rgb(42 197 211 / 40%);
    letter-spacing: 0.5px;
}

.price-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.price {
    font-size: 3.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--secondary);
    display: flex;
    align-items: baseline;
    justify-content: center;
    line-height: 1;
    margin: 1rem 0;
}

.price span {
    font-size: 1.5rem;
}

.period {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
    font-family: var(--font-body);
}

.price-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.price-body ul {
    margin-bottom: 2rem;
    flex-grow: 1;
}

.price-body li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.price-body i {
    color: var(--primary);
    font-size: 1.25rem;
}

.price-body i.bx-x {
    color: #cbd5e1;
}

.other-plans {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.mini-plan {
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    min-width: 250px;
    border: 1px solid #e2e8f0;
}

.mini-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0.5rem 0;
}

/* Learning & Virtual */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.split-layout.reverse .split-content {
    order: 2;
}

.split-layout.reverse .split-image {
    order: 1;
}

.rounded-image {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    transition: all 0.5s ease;
}

.rounded-image:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-xl);
}

.abstract-bg {
    position: relative;
    display: flex;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    height: 100%;
    min-height: 450px;

    /* Stronger vertical presence */
    border-radius: var(--border-radius-lg);
    background: var(--gradient-teal);
    box-shadow: var(--shadow-lg);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.abstract-bg:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

@keyframes slide {
    0% {
        transform: translateY(0);
    }

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

.abstract-card {
    z-index: 1;
    padding: 3rem;
    border: 1px solid rgb(255 255 255 / 20%);
    border-radius: var(--border-radius-md);
    background: rgb(255 255 255 / 10%);
    backdrop-filter: blur(10px);
    text-align: center;
    color: var(--white);
}

.abstract-card i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.feature-item>div h4 {
    margin-bottom: 0.5rem;
}

/* Testimonials & FAQ */
.tf-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.testimonials-wrapper {
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

.testimonials-slider {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;

    /* Hide scrollbar for Firefox */
    -ms-overflow-style: none;

    /* Hide scrollbar for IE/Edge */
    padding-bottom: 1rem;
}

.testimonials-slider::-webkit-scrollbar {
    display: none;

    /* Hide scrollbar for Chrome/Safari */
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary);
    min-width: 100%;
    scroll-snap-align: start;
}

.testimonial-card .user-info h4 {
    margin-bottom: 0.2rem;
}

.slider-controls {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.slider-controls button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--primary);
    background: transparent;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.slider-controls button:hover {
    background: var(--primary);
    color: var(--white);
}

.stars {
    color: #fbbf24;
    margin-bottom: 1rem;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.avatar-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-light);
    object-fit: cover;
    box-shadow: var(--shadow-sm);
}

.faq-item {
    background: var(--white);
    border-radius: var(--border-radius-sm);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-btn {
    width: 100%;
    text-align: left;
    padding: 1.5rem;
    background: none;
    border: none;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--secondary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-btn i {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-btn.active i {
    transform: rotate(180deg);
}

.faq-content {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-content {
    padding-bottom: 1.5rem;
    max-height: 200px;
}

/* Contact */
.contact-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.contact-info {
    padding: 4rem;
    background: var(--gradient-teal);
    color: var(--white);
}

.contact-info h2 {
    color: var(--white);
}

.contact-info p {
    opacity: 0.9;
}

.icon-box-small {
    width: 40px;
    height: 40px;
    background: rgb(255 255 255 / 20%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-item span {
    display: block;
    font-size: 0.875rem;
    opacity: 0.8;
}

.info-item strong {
    font-size: 1.125rem;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    filter: grayscale(20%) contrast(1.2);
}

/* Footer */
.footer {
    background: var(--secondary);
    color: rgb(255 255 255 / 80%);
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding: 5rem 0 4rem;
}

.footer-logo {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-logo span {
    color: var(--accent);
}

.footer-bottom {
    padding: 2rem 0;
    border-top: 1px solid rgb(255 255 255 / 10%);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgb(255 255 255 / 10%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--white);
}

.social-links a:hover {
    background: var(--accent);
    color: var(--secondary);
}

.footer-links h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.footer-links ul li {
    margin-bottom: 0.75rem;
}

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

.footer-newsletter h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.footer-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
}

.footer-gallery .gallery-item {
    display: block;
    border-radius: 0.85rem;
    overflow: hidden;
    background: rgb(255 255 255 / 10%);
}

.footer-gallery .gallery-item img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform 0.25s ease;
}

.footer-gallery .gallery-item:hover img {
    transform: scale(1.05);
}

.newsletter-form {
    display: flex;
    margin-top: 1rem;
}

.newsletter-form input {
    width: 100%;
    padding: 1rem 1.5rem;
    border: none;
    background: rgb(255 255 255 / 10%);
    color: var(--white);
    border-radius: var(--border-radius-md) 0 0 var(--border-radius-md);
    outline: none;
    font-family: var(--font-body);
    transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
    color: rgb(255 255 255 / 60%);
}

.newsletter-form input:focus {
    background: rgb(255 255 255 / 20%);
}

.newsletter-form button {
    border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
    padding: 0 1.5rem;
}

/* Floating Actions */
.floating-whatsapp {
    position: fixed;
    z-index: 100;
    right: 2rem;
    bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    color: var(--white);
    font-size: 2rem;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-whatsapp:hover {
    transform: scale(1.1);
}

.floating-book-now {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 100;
}

.floating-book-now .btn {
    background: var(--secondary) !important;
}

.floating-book-now .btn:hover {
    background: var(--primary) !important;
}

/* Media Queries */
@media (width <=1024px) {

    .about-container,
    .split-layout,
    .tf-layout,
    .contact-card {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .hero p {
        max-width: 100%;
    }

    .price-card.popular {
        transform: none;
    }

    .price-card.popular:hover {
        transform: translateY(-5px);
    }

    .floating-card {
        display: none;
    }

    .split-layout.reverse .split-content {
        order: unset;
    }

    .split-layout.reverse .split-image {
        order: unset;
    }

    .experience-badge {
        position: static;
        right: auto;
        bottom: auto;
        left: auto;
        margin-top: 1.5rem;
        transform: none;
        box-shadow: var(--shadow-lg);
    }

    .image-wrapper::before {
        top: 1rem;
        left: 1rem;
        right: 1rem;
    }

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

@media (width <=768px) {
    .btn-lg {
        padding: 0.7rem 1.5rem;
        font-size: 1rem;
    }

    .amenities-marquee-container {
        padding: 0.7rem 0;
    }

    .amenities-marquee span {
        font-size: 0.8rem;
    }

    .nav-links,
    .nav-actions .btn {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .hero {
        min-height: 100vh;
        padding-top: 0;
        padding-bottom: 0;
    }

    .hero h1 {
        font-size: clamp(2rem, 8vw, 3.4rem);
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.25rem;
        align-items: center;
        padding-top: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        margin-bottom: 1.5rem;
    }

    .contact-card {
        grid-template-columns: 1fr;
    }

    .contact-info {
        padding: 2rem 1.5rem;
    }

    .info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .contact-map {
        min-height: 320px;
    }

    .contact-map iframe {
        min-height: 320px;
    }

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

    .floating-whatsapp {
        bottom: 1rem;
        right: 1rem;
        width: 50px;
        height: 50px;
        font-size: 1.75rem;
    }

    .hero-stats.center {
        display: flex;
        justify-content: center;
    }

    .floating-book-now {
        display: none;

        /* Hide sticky button on mobile to save space */
    }
}

/* =========================================
   Desk Booking Modal
   ========================================= */

.modal-overlay {
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 25 30 / 85%);
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.modal {
    position: fixed;
    z-index: 2001;
    top: 50%;
    left: 50%;
    display: flex;
    flex-direction: column;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    border-radius: var(--border-radius-lg);
    transform: translate(-50%, -40%);
    background: var(--white);
    box-shadow: var(--shadow-xl);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal.open {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%);
}

.close-modal {
    position: absolute;
    z-index: 10;
    top: 1.5rem;
    right: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: var(--bg-light);
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    background: #fee2e2;
    color: #ef4444;
    transform: rotate(90deg);
}

.modal-header {
    padding: 2.5rem 2.5rem 1.5rem;
    border-bottom: 1px solid rgb(0 0 0 / 5%);
    text-align: center;
}

.modal-header h2 {
    margin-bottom: 0.5rem;
    color: var(--secondary);
    font-size: 2rem;
}

.modal-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.modal-body {
    padding: 2rem 2.5rem 2.5rem;
    overflow-y: auto;
}

/* Modal Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #cbd5e1;
    border-radius: var(--border-radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-dark);
    background: var(--bg-light);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgb(42 197 211 / 15%);
    background: var(--white);
}

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

/* Submit Button & Loader */
.submit-btn {
    position: relative;
    margin-top: 0;
}

.loader {
    position: absolute;
    right: 1.5rem;
    width: 20px;
    height: 20px;
    border: 3px solid rgb(255 255 255 / 30%);
    border-radius: 50%;
    border-top-color: var(--white);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.submit-btn.loading span,
.submit-btn.loading i {
    opacity: 0;
}

.submit-btn.loading .loader {
    right: 50%;
    display: block !important;
    transform: translateX(50%);
}

/* Form Feedback */
.form-feedback {
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
    display: none;
}

.form-feedback.success {
    display: block;
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.form-feedback.error {
    display: block;
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* Mobile Adjustments for Modal */
@media (width <=640px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .modal-header {
        padding: 2rem 1.5rem 1rem;
    }

    .modal-body {
        padding: 1.5rem;
    }
}