* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --navy-blue: #0F4C81;
    --mint-green: #7ED957;
    --dark-navy: #1A2332;
    --lighter-navy: #2D5F8D;
    --off-white: #F5F9FC;
    --white: #FFFFFF;
    --text-dark: #1A2332;
    --text-gray: #5A6C7D;
    --border-color: #E1E8ED;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    background-color: var(--off-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header & Navigation */
.header {
    background: var(--white);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(15, 76, 129, 0.08);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy-blue);
    line-height: 1.2;
}

.logo-subtitle {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-gray);
    line-height: 1.2;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--navy-blue);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--lighter-navy);
}

/* Buttons */
.btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-primary {
    background: var(--mint-green);
    color: var(--text-dark);
    box-shadow: 0 4px 12px rgba(126, 217, 87, 0.3);
}

.btn-primary:hover {
    background: #6FC847;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(126, 217, 87, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--navy-blue);
    border: 2px solid var(--navy-blue);
}

.btn-secondary:hover {
    background: var(--navy-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(15, 76, 129, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--navy-blue);
    border: 2px solid var(--navy-blue);
}

.btn-outline:hover {
    background: var(--navy-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(15, 76, 129, 0.3);
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

/* Hero Section */
.hero {
    padding: 80px 0 100px;
    background: linear-gradient(135deg, #F5F9FC 0%, #E8F4FD 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(126, 217, 87, 0.1) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    border-radius: 50%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    color: var(--navy-blue);
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.hero-right {
    position: relative;
}

.active-badge {
    position: absolute;
    top: -20px;
    right: -10px;
    background: var(--mint-green);
    color: var(--text-dark);
    padding: 8px 20px;
    border-radius: 24px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(126, 217, 87, 0.4);
    animation: pulse 2s infinite;
    z-index: 10;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.stats-card {
    background: var(--white);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 12px 40px rgba(15, 76, 129, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stats-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(15, 76, 129, 0.2);
}

.stats-header {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--border-color);
}

.stats-icon {
    flex-shrink: 0;
}

.stats-info {
    flex: 1;
}

.stats-number {
    font-size: 22px;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 4px;
}

.stats-label {
    font-size: 14px;
    color: var(--text-gray);
}

.industry-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--off-white);
    padding: 12px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--navy-blue);
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-gray);
    font-size: 14px;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: var(--white);
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--navy-blue);
    text-align: center;
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    text-align: center;
    margin-bottom: 60px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.step-card {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 48px 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(15, 76, 129, 0.12);
    border-color: var(--navy-blue);
}

.step-number {
    width: 72px;
    height: 72px;
    background: var(--navy-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    margin: 0 auto 24px;
}

.step-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--navy-blue);
}

/* Industries Section */
.industries {
    padding: 80px 0;
    background: var(--off-white);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.industry-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(15, 76, 129, 0.15);
    border-color: var(--mint-green);
}

.industry-badge-small {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #E8F9E0;
    color: var(--mint-green);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.industry-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #0F4C81 0%, #2D5F8D 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--white);
}

.industry-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 12px;
}

.industry-description {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #F5F9FC 0%, #E8F4FD 100%);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.btn-cta-primary {
    background: var(--mint-green);
    color: var(--text-dark);
    padding: 18px 48px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(126, 217, 87, 0.4);
}

.btn-cta-primary:hover {
    background: #6FC847;
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(126, 217, 87, 0.5);
}

.btn-cta-secondary {
    background: var(--navy-blue);
    color: var(--white);
    padding: 18px 48px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(15, 76, 129, 0.4);
}

.btn-cta-secondary:hover {
    background: var(--lighter-navy);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(15, 76, 129, 0.5);
}

/* Footer */
.footer {
    background: var(--dark-navy);
    color: var(--white);
    padding: 60px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--mint-green);
    color: var(--text-dark);
    transform: translateY(-4px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--mint-green);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--mint-green);
}

.made-with {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-left,
.hero-right,
.step-card,
.industry-card {
    animation: fadeInUp 0.6s ease-out;
}

.step-card:nth-child(1) {
    animation-delay: 0.1s;
}

.step-card:nth-child(2) {
    animation-delay: 0.2s;
}

.step-card:nth-child(3) {
    animation-delay: 0.3s;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 40px;
    }

    .steps-grid,
    .industries-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .nav-menu {
        gap: 16px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 32px;
    }

    .section-title {
        font-size: 32px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .nav-link {
        display: none;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* Blog Preview Section (Homepage) */
.blog-preview {
    padding: 80px 0;
    background: var(--white);
}

.blog-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.blog-preview-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 12px rgba(15, 76, 129, 0.08);
    border: 2px solid transparent;
}

.blog-preview-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 16px 48px rgba(15, 76, 129, 0.2);
    border-color: var(--mint-green);
}

.blog-preview-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #E8F4FD 0%, #C8E6F8 100%);
}

.blog-preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-preview-card:hover .blog-preview-image img {
    transform: scale(1.1);
}

.blog-preview-content {
    padding: 24px;
}

.blog-preview-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 12px;
    line-height: 1.4;
    min-height: 50px;
}

.blog-preview-excerpt {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 16px;
}

.blog-preview-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--navy-blue);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-preview-link:hover {
    color: var(--mint-green);
    gap: 10px;
}

.blog-view-all {
    text-align: center;
}

/* Blog Page Styles */
.blog-hero {
    padding: 60px 0;
    background: linear-gradient(135deg, #0F4C81 0%, #2D5F8D 100%);
    text-align: center;
}

.blog-hero-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
}

.blog-hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.blog-section {
    padding: 80px 0;
    background: var(--off-white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.blog-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(15, 76, 129, 0.08);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(15, 76, 129, 0.15);
}

.blog-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #E8F4FD 0%, #C8E6F8 100%);
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-category {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-category.retail {
    background: #FFEAA7;
    color: #2D3436;
}

.blog-category.hospitality {
    background: #81ECEC;
    color: #2D3436;
}

.blog-category.remote {
    background: #A29BFE;
    color: #FFFFFF;
}

.blog-category.about {
    background: #74B9FF;
    color: #FFFFFF;
}

.blog-content {
    padding: 24px;
}

.blog-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    color: var(--text-gray);
    font-size: 13px;
}

.blog-date,
.blog-time {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-excerpt {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 16px;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--navy-blue);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-link:hover {
    color: var(--mint-green);
    gap: 10px;
}

/* Individual Blog Post Page Styles */
.blog-post-hero {
    padding: 60px 0 40px;
    background: linear-gradient(135deg, #0F4C81 0%, #2D5F8D 100%);
    text-align: center;
}

.blog-post-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.blog-post-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.2;
}

.blog-post-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.blog-post-content {
    padding: 80px 0;
    background: var(--off-white);
}

.blog-post-content .container {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
    max-width: 1200px;
}

.blog-post-body {
    background: var(--white);
    border-radius: 16px;
    padding: 48px;
    box-shadow: 0 4px 12px rgba(15, 76, 129, 0.08);
}

.blog-post-featured-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 40px;
}

.blog-post-body h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--navy-blue);
    margin: 40px 0 20px 0;
}

.blog-post-body h2:first-of-type {
    margin-top: 0;
}

.blog-post-body h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--navy-blue);
    margin: 32px 0 16px 0;
}

.blog-post-body p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.blog-post-body ul,
.blog-post-body ol {
    margin: 20px 0;
    padding-left: 32px;
}

.blog-post-body li {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.blog-post-body strong {
    color: var(--navy-blue);
    font-weight: 600;
}

.blog-post-body em {
    font-style: italic;
    color: var(--text-gray);
}

.blog-post-cta {
    display: flex;
    gap: 20px;
    margin: 48px 0 32px 0;
    padding: 32px;
    background: linear-gradient(135deg, #F5F9FC 0%, #E8F4FD 100%);
    border-radius: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.blog-post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 2px solid var(--border-color);
}

.tag {
    padding: 8px 16px;
    background: var(--off-white);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy-blue);
    transition: all 0.3s ease;
}

.tag:hover {
    background: var(--mint-green);
    border-color: var(--mint-green);
    color: var(--text-dark);
}

/* Blog Sidebar */
.blog-post-sidebar {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.sidebar-section {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 12px rgba(15, 76, 129, 0.08);
}

.sidebar-section h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 20px;
}

.sidebar-link {
    display: block;
    padding: 12px 0;
    color: var(--text-gray);
    text-decoration: none;
    font-size: 15px;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.sidebar-link:last-child {
    border-bottom: none;
}

.sidebar-link:hover {
    color: var(--navy-blue);
    padding-left: 8px;
}

/* Responsive Blog Post Styles */
@media (max-width: 968px) {
    .blog-post-content .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .blog-post-title {
        font-size: 36px;
    }

    .blog-post-body {
        padding: 32px 24px;
    }

    .blog-post-featured-image {
        height: 300px;
    }

    .blog-post-body h2 {
        font-size: 28px;
    }

    .blog-post-body h3 {
        font-size: 22px;
    }
}

@media (max-width: 640px) {
    .blog-post-title {
        font-size: 28px;
    }

    .blog-post-subtitle {
        font-size: 16px;
    }

    .blog-post-body {
        padding: 24px 20px;
    }

    .blog-post-featured-image {
        height: 220px;
    }

    .blog-post-body h2 {
        font-size: 24px;
    }

    .blog-post-body h3 {
        font-size: 20px;
    }

    .blog-post-body p,
    .blog-post-body li {
        font-size: 16px;
    }

    .blog-post-cta {
        flex-direction: column;
        padding: 24px 20px;
    }
}

/* Form Page Styles */
.form-section {
    padding: 60px 0;
    background: var(--off-white);
}

.form-header {
    text-align: center;
    margin-bottom: 48px;
}

.form-main-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--navy-blue);
    margin-bottom: 12px;
}

.form-main-subtitle {
    font-size: 20px;
    color: var(--text-gray);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(15, 76, 129, 0.12);
}

.form-header-gradient {
    background: linear-gradient(135deg, #0F4C81 0%, #7ED957 100%);
    padding: 40px;
    text-align: center;
    color: var(--white);
}

.form-header-gradient.company {
    background: linear-gradient(135deg, #0F4C81 0%, #2D5F8D 100%);
}

.form-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
}

.form-subtitle {
    font-size: 16px;
    opacity: 0.95;
}

.registration-form {
    padding: 40px;
}

.form-group {
    margin-bottom: 28px;
}

.form-label {
    display: block;
    font-weight: 600;
    color: var(--navy-blue);
    margin-bottom: 10px;
    font-size: 15px;
}

.required {
    color: #E74C3C;
}

.form-hint {
    font-weight: 400;
    color: var(--text-gray);
    font-size: 13px;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-input:focus {
    outline: none;
    border-color: var(--navy-blue);
    box-shadow: 0 0 0 3px rgba(15, 76, 129, 0.1);
}

.input-with-icon {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-gray);
    pointer-events: none;
}

.form-input.with-icon {
    padding-left: 48px;
}

.form-textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: var(--white);
    resize: vertical;
    min-height: 120px;
}

.form-textarea:focus {
    outline: none;
    border-color: var(--navy-blue);
    box-shadow: 0 0 0 3px rgba(15, 76, 129, 0.1);
}

/* Checkbox Grid */
.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 12px;
}

.checkbox-label,
.radio-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 12px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.checkbox-label:hover,
.radio-label:hover {
    background: var(--off-white);
}

.checkbox-label input[type="checkbox"],
.checkbox-label input[type="radio"],
.radio-label input[type="radio"] {
    display: none;
}

.checkbox-custom,
.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    position: relative;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.radio-custom {
    border-radius: 50%;
}

.checkbox-label input[type="checkbox"]:checked+.checkbox-custom,
.checkbox-label input[type="radio"]:checked+.checkbox-custom,
.radio-label input[type="radio"]:checked+.radio-custom {
    background: var(--navy-blue);
    border-color: var(--navy-blue);
}

.checkbox-label input[type="checkbox"]:checked+.checkbox-custom::after,
.checkbox-label input[type="radio"]:checked+.checkbox-custom::after {
    content: '✓';
    position: absolute;
    color: white;
    font-size: 14px;
    font-weight: 700;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.radio-label input[type="radio"]:checked+.radio-custom::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.checkbox-text {
    font-size: 14px;
    color: var(--text-dark);
}

.radio-group {
    display: flex;
    gap: 12px;
    margin-top: 12px;
    flex-wrap: wrap;
}

/* Submit Button */
.btn-submit {
    width: 100%;
    padding: 18px 32px;
    background: var(--mint-green);
    color: var(--text-dark);
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(126, 217, 87, 0.3);
    margin-top: 32px;
}

.btn-submit:hover {
    background: #6FC847;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(126, 217, 87, 0.4);
}

.form-footer-text {
    text-align: center;
    color: var(--text-gray);
    font-size: 13px;
    margin-top: 20px;
    line-height: 1.6;
}

.nav-link.active {
    color: var(--mint-green);
    font-weight: 600;
}

/* Responsive Design for Blog and Forms */
@media (max-width: 968px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .checkbox-grid {
        grid-template-columns: 1fr;
    }

    .form-main-title,
    .blog-hero-title {
        font-size: 36px;
    }

    .registration-form {
        padding: 32px 24px;
    }

    .form-header-gradient {
        padding: 32px 24px;
    }

    .blog-preview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .form-main-title,
    .blog-hero-title {
        font-size: 28px;
    }

    .blog-hero-subtitle,
    .form-main-subtitle {
        font-size: 16px;
    }

    .registration-form {
        padding: 24px 20px;
    }

    .form-header-gradient {
        padding: 24px 20px;
    }

    .form-title {
        font-size: 24px;
    }


    .radio-group {
        flex-direction: column;
    }

    .blog-preview-grid {
        grid-template-columns: 1fr;
    }
}

/* ================================
   CAMPUS BOT GUIDE STYLES
   ================================ */

/* Bot Container */
.campus-bot-container {
    position: fixed;
    right: 30px;
    top: 30vh;
    z-index: 999;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.campus-bot-container:hover {
    transform: scale(1.1);
}

/* Bot Label */
.bot-label {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--lighter-navy) 100%);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(15, 76, 129, 0.3);
    animation: labelFloat 3s ease-in-out infinite;
}

@keyframes labelFloat {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Bot Avatar - Pure Human Entity (No Circle) */
.bot-avatar {
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    animation: botFloat 4s ease-in-out infinite;
    filter: drop-shadow(0 8px 24px rgba(15, 76, 129, 0.3));
}

@keyframes botFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-10px) rotate(2deg);
    }

    50% {
        transform: translateY(0) rotate(0deg);
    }

    75% {
        transform: translateY(-10px) rotate(-2deg);
    }
}

.campus-bot-container:hover .bot-avatar {
    box-shadow: 0 12px 48px rgba(126, 217, 87, 0.4);
    border-color: var(--navy-blue);
}

/* Bot SVG Animations */
.bot-arm-left {
    animation: waveLeft 2s ease-in-out infinite;
    transform-origin: 25px 48px;
}

.bot-arm-right {
    animation: waveRight 2s ease-in-out infinite;
    transform-origin: 55px 48px;
}

@keyframes waveLeft {

    0%,
    100% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(-15deg);
    }
}

@keyframes waveRight {

    0%,
    100% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(15deg);
    }
}

.bot-pulse-ring {
    animation: pulseRing 2s ease-out infinite;
}

@keyframes pulseRing {
    0% {
        opacity: 0.6;
        transform: scale(0.8);
    }

    50% {
        opacity: 0.3;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(1.2);
    }
}

/* Bot Tooltip - Compact Horizontal Design */
.bot-tooltip {
    position: absolute;
    right: calc(100% + 15px);
    top: 50%;
    transform: translateY(-50%) translateX(20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
}

.bot-tooltip.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

.tooltip-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(20px);
    border: 2px solid var(--mint-green);
    border-radius: 12px;
    padding: 10px 18px;
    min-width: 140px;
    max-width: 180px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--navy-blue);
    box-shadow: 0 8px 24px rgba(15, 76, 129, 0.25);
    position: relative;
    text-align: center;
    white-space: nowrap;
}

.tooltip-content::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 7px 0 7px 10px;
    border-color: transparent transparent transparent var(--mint-green);
}

/* AI Chatbot Window */
.bot-faq-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(6px);
    z-index: 10000;
    display: flex;
    align-items: flex-end; /* Align to bottom right */
    justify-content: flex-end;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 30px 40px; /* spacing from desktop edge */
}

.bot-faq-modal.active {
    opacity: 1;
    visibility: visible;
}

.chat-window {
    background: var(--white);
    border-radius: 24px;
    width: 380px; /* fixed neat width for desktop */
    height: 600px;
    max-height: calc(100vh - 150px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 80px rgba(15, 76, 129, 0.28);
    border: 1px solid rgba(15, 76, 129, 0.1);
    transform: translateY(30px) scale(0.96);
    opacity: 0;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.bot-faq-modal.active .chat-window {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.chat-header {
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--lighter-navy) 100%);
    color: var(--white);
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1.5px solid rgba(255,255,255,0.08);
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-avatar-small {
    width: 38px;
    height: 38px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.chat-status-indicator {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: var(--mint-green);
    border-radius: 50%;
    margin-right: 6px;
    box-shadow: 0 0 8px var(--mint-green);
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(126, 217, 87, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(126, 217, 87, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(126, 217, 87, 0); }
}

.faq-close {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: var(--white);
    font-size: 20px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.faq-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.chat-history {
    flex: 1;
    overflow-y: auto;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: #f8fafc; /* premium soft blue-gray background */
    scroll-behavior: smooth;
}

/* Premium Thin Scrollbar */
.chat-history::-webkit-scrollbar {
    width: 5px;
}
.chat-history::-webkit-scrollbar-track {
    background: transparent;
}
.chat-history::-webkit-scrollbar-thumb {
    background: rgba(15, 76, 129, 0.12);
    border-radius: 10px;
}
.chat-history::-webkit-scrollbar-thumb:hover {
    background: rgba(15, 76, 129, 0.25);
}

/* Chat bubble styles */
.chat-bubble {
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 13.5px;
    line-height: 1.55;
    max-width: 82%;
    word-wrap: break-word;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
    animation: bubbleSlideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes bubbleSlideUp {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.bot-message {
    background: var(--white);
    color: var(--text-dark);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    border: 1px solid rgba(15, 76, 129, 0.05);
}

.user-message {
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--lighter-navy) 100%);
    color: var(--white);
    align-self: flex-end;
    border-bottom-right-radius: 4px;
    box-shadow: 0 4px 12px rgba(15, 76, 129, 0.12);
}

/* Chip buttons styling */
.quick-questions-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 4px;
    align-self: flex-start;
    width: 100%;
}

.quick-question-chip {
    background: var(--white);
    border: 1.5px solid rgba(126, 217, 87, 0.6);
    color: var(--navy-blue);
    border-radius: 12px;
    padding: 10px 14px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: all 0.25s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.02);
    width: 100%;
}

.quick-question-chip:hover {
    background: var(--mint-green);
    color: var(--text-dark);
    border-color: var(--mint-green);
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(126, 217, 87, 0.2);
}

.chat-link-btn {
    display: inline-block;
    background: var(--mint-green);
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 8px;
    margin-top: 10px;
    font-size: 12px;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.chat-link-btn:hover {
    background: var(--navy-blue);
    color: var(--white);
    transform: translateY(-1px);
}

/* Typing Indicator */
.typing-indicator {
    display: flex;
    align-items: center;
    gap: 4px;
    background: var(--white);
    padding: 12px 16px;
    border-radius: 16px;
    border-bottom-left-radius: 4px;
    align-self: flex-start;
    border: 1px solid rgba(15, 76, 129, 0.05);
}

.typing-dot {
    width: 6px;
    height: 6px;
    background: var(--text-gray);
    border-radius: 50%;
    animation: typingBounce 1.4s infinite ease-in-out both;
}

.typing-dot:nth-child(1) { animation-delay: -0.32s; }
.typing-dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes typingBounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

/* Chat Input Bar */
.chat-input-form {
    display: flex;
    background: var(--white);
    padding: 14px 18px;
    border-top: 1px solid rgba(15, 76, 129, 0.08);
    gap: 10px;
    align-items: center;
}

.chat-input-field {
    flex: 1;
    padding: 10px 16px;
    border-radius: 24px;
    border: 1.5px solid var(--border-color);
    outline: none;
    font-family: inherit;
    font-size: 13.5px;
    transition: all 0.25s ease;
}

.chat-input-field:focus {
    border-color: var(--mint-green);
    box-shadow: 0 0 0 3px rgba(126, 217, 87, 0.2);
}

.chat-send-btn {
    background: var(--navy-blue);
    border: none;
    color: var(--white);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: 0 4px 10px rgba(15, 76, 129, 0.15);
}

.chat-send-btn:hover {
    background: var(--mint-green);
    color: var(--text-dark);
    transform: scale(1.05);
}

/* Highly Responsive Media Queries */
@media (max-width: 768px) {
    .bot-faq-modal {
        padding: 20px;
    }
    
    .chat-window {
        width: 350px;
        height: 520px;
    }
}

@media (max-width: 576px) {
    .bot-faq-modal {
        padding: 0;
        align-items: stretch;
        justify-content: stretch;
        background: transparent;
    }
    
    .chat-window {
        width: 100%;
        height: 100%;
        max-height: 100vh;
        border-radius: 0;
        border: none;
        transform: translateY(100%);
        transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }
    
    .bot-faq-modal.active .chat-window {
        transform: translateY(0);
    }
    
    .chat-header {
        padding: 16px 20px;
    }
    
    .chat-history {
        padding: 20px 16px;
    }
    
    .chat-input-form {
        padding: 12px 16px;
        padding-bottom: max(12px, env(safe-area-inset-bottom)); /* handles bottom notch on iOS */
    }
}

/* ================================
   MOBILE RESPONSIVE STYLES
   ================================ */

/* Tablet (max-width: 968px) */
@media (max-width: 968px) {
    .container {
        padding: 0 24px;
    }

    /* Navigation - Hamburger Menu */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--navy-blue);
        flex-direction: column;
        padding: 100px 32px 32px;
        transition: right 0.4s ease;
        z-index: 999;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu .nav-link {
        color: var(--white);
        padding: 16px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu .btn {
        margin: 16px 0;
        width: 100%;
        text-align: center;
    }

    /* Hamburger Icon */
    .hamburger {
        display: block;
        width: 30px;
        height: 24px;
        cursor: pointer;
        position: relative;
        z-index: 1000;
    }

    .hamburger span {
        display: block;
        width: 100%;
        height: 3px;
        background: var(--white);
        border-radius: 3px;
        position: absolute;
        transition: all 0.3s ease;
    }

    .hamburger span:nth-child(1) {
        top: 0;
    }

    .hamburger span:nth-child(2) {
        top: 10px;
    }

    .hamburger span:nth-child(3) {
        top: 20px;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg);
        top: 10px;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg);
        top: 10px;
    }

    /* Hero Section */
    .hero {
        padding: 80px 0 60px;
    }

    .hero-title {
        font-size: 44px;
        line-height: 1.15;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    /* How It Works */
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    /* Industries Grid */
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Blog Preview Grid */
    .blog-preview-grid {
        grid-template-columns: 1fr;
    }

    /* Form Pages */
    .form-main-title {
        font-size: 38px;
    }

    .registration-form {
        padding: 32px 24px;
    }
}

/* Mobile (max-width: 640px) */
@media (max-width: 640px) {
    .container {
        padding: 0 16px;
    }

    /* Logo */
    .logo-text {
        display: none;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
    }

    /* Hero Section */
    .hero {
        padding: 60px 0 40px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    /* Section Headings */
    .section-title {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    /* Industries Grid */
    .industries-grid {
        grid-template-columns: 1fr;
    }

    .industry-card {
        padding: 28px 24px;
    }

    /* CTA Section */
    .cta-section {
        padding: 48px 0;
    }

    .cta-title {
        font-size: 32px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    /* Blog Page */
    .blog-grid {
        grid-template-columns: 1fr;
    }

    /* Blog Post Page */
    .blog-post-content .container {
        flex-direction: column;
    }

    .blog-post-body {
        width: 100%;
        padding-right: 0;
    }

    .blog-post-sidebar {
        width: 100%;
        margin-top: 48px;
    }

    .blog-post-title {
        font-size: 32px;
    }

    .blog-post-cta {
        flex-direction: column;
    }

    /* Form Pages */
    .form-section {
        padding: 40px 0;
    }

    .form-main-title {
        font-size: 28px;
    }

    .form-main-subtitle {
        font-size: 16px;
    }

    .form-title {
        font-size: 24px;
    }

    .form-header-gradient {
        padding: 28px 24px;
    }

    .registration-form {
        padding: 24px 20px;
    }

    .checkbox-grid {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }

    .footer-links {
        width: 100%;
        flex-direction: column;
        gap: 32px;
    }

    .footer-column {
        text-align: center;
    }

    /* Buttons */
    .btn {
        padding: 14px 28px;
        font-size: 15px;
    }

    .btn-large {
        padding: 16px 32px;
        font-size: 16px;
    }
}

/* Extra Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 28px;
    }

    .form-main-title {
        font-size: 24px;
    }

    .cta-title {
        font-size: 28px;
    }

    .blog-post-title {
        font-size: 28px;
    }
}

/* Responsive Bot Styles */
@media (max-width: 968px) {
    .campus-bot-container {
        right: 20px;
    }

    .bot-tooltip {
        display: none;
        /* Hide tooltips on mobile for cleaner UI */
    }

    .faq-modal-content {
        max-width: 100%;
        border-radius: 16px;
    }

    .faq-header {
        padding: 20px 24px;
    }

    .faq-header h2 {
        font-size: 22px;
    }

    .faq-list {
        padding: 20px 24px;
    }
}

@media (max-width: 640px) {
    .campus-bot-container {
        right: 15px;
        top: auto;
        bottom: 80px;
    }

    .bot-avatar {
        width: 60px;
        height: 60px;
    }

    .bot-avatar svg {
        width: 60px;
        height: 60px;
    }

    .bot-label {
        font-size: 11px;
        padding: 6px 12px;
        top: -30px;
    }

    .faq-header {
        padding: 16px 20px;
    }

    .faq-header h2 {
        font-size: 20px;
    }

    .faq-list {
        padding: 16px 20px;
    }

    .faq-footer {
        padding: 16px 20px;
    }
}

/* ==========================================================================
   CAMPUS CREW ADDED EXPANSION STYLES
   ========================================================================== */

/* Expanded Navigation & Dropdown Styling */
.header {
    transition: all 0.3s ease;
}
.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 8px 0;
    box-shadow: 0 4px 20px rgba(15, 76, 129, 0.12);
}
.nav-menu {
    display: flex;
    align-items: center;
    gap: 20px;
}
.nav-item {
    position: relative;
}
.dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 0;
    color: var(--navy-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s ease;
    cursor: pointer;
    background: none;
    border: none;
    font-family: inherit;
}
.dropdown-trigger svg {
    transition: transform 0.3s ease;
}
.nav-item:hover .dropdown-trigger svg {
    transform: rotate(180deg);
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background: var(--white);
    min-width: 250px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(15, 76, 129, 0.15);
    border: 1px solid var(--border-color);
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(5px);
}
.dropdown-item {
    padding: 10px 16px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
}
.dropdown-item:hover {
    background: var(--off-white);
    color: var(--navy-blue);
    padding-left: 20px;
}

/* Custom Hamburger coloring for light header */
.hamburger span {
    background: var(--navy-blue) !important;
}
.hamburger.active span {
    background: var(--white) !important;
}

/* Animated Stats Bar (Below Hero) */
.hero-stats-bar {
    background: var(--white);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 28px 0;
    margin-top: 40px;
}
.stats-bar-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    text-align: center;
}
.stat-bar-item {
    border-right: 1px solid var(--border-color);
}
.stat-bar-item:last-child {
    border-right: none;
}
.stat-bar-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--navy-blue);
    margin-bottom: 6px;
}
.stat-bar-label {
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 600;
}

/* City Badge Pill Tags */
.city-tags-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}
.city-tag {
    background: var(--white);
    color: var(--navy-blue);
    border: 1px solid var(--border-color);
    padding: 8px 18px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 2px 6px rgba(15, 76, 129, 0.04);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}
.city-tag:hover {
    transform: translateY(-2px);
    border-color: var(--mint-green);
    box-shadow: 0 4px 12px rgba(126, 217, 87, 0.2);
}

/* Scroll Arrow Indicator */
.scroll-indicator-wrap {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    animation: bounceIndicator 2s infinite;
}
.scroll-indicator-arrow {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    color: var(--navy-blue);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    gap: 6px;
}
@keyframes bounceIndicator {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Trust Bar / Infinite Logo Marquee */
.trust-bar {
    padding: 40px 0;
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}
.trust-title {
    text-align: center;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-gray);
    margin-bottom: 24px;
    font-weight: 700;
}
.ticker-wrap {
    width: 100%;
    overflow: hidden;
    position: relative;
}
.ticker-wrap::before, .ticker-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.ticker-wrap::before {
    left: 0;
    background: linear-gradient(to right, var(--white), transparent);
}
.ticker-wrap::after {
    right: 0;
    background: linear-gradient(to left, var(--white), transparent);
}
.ticker {
    display: flex;
    width: max-content;
    animation: marquee 25s linear infinite;
}
.ticker:hover {
    animation-play-state: paused;
}
.ticker-item {
    padding: 0 40px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Toggleable How It Works */
.how-it-works-toggle {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 50px;
}
.toggle-btn {
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 30px;
    border: 2px solid var(--navy-blue);
    background: transparent;
    color: var(--navy-blue);
    cursor: pointer;
    transition: all 0.3s ease;
}
.toggle-btn.active {
    background: var(--navy-blue);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(15, 76, 129, 0.2);
}
.how-it-works-content {
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.how-it-works-content.hidden {
    display: none;
    opacity: 0;
    transform: translateY(15px);
}

/* Services Section Expansion */
.services-section {
    padding: 80px 0;
    background: var(--off-white);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}
.service-card {
    background: var(--white);
    border-radius: 16px;
    padding: 36px 30px;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(15, 76, 129, 0.1);
    border-color: var(--mint-green);
}
.service-icon {
    font-size: 40px;
    margin-bottom: 20px;
}
.service-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 16px;
}
.service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
}
.service-list-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.5;
}
.service-list-item::before {
    content: "✓";
    color: var(--mint-green);
    font-weight: bold;
}

/* Infinity League Neon Glow Banner */
.infinity-banner-section {
    background: #0a0a0a;
    padding: 90px 0;
    border-top: 2px solid #8a2be2;
    border-bottom: 2px solid #00f0ff;
    position: relative;
    overflow: hidden;
}
.infinity-banner-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.15) 0%, transparent 60%);
    pointer-events: none;
}
.infinity-banner-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}
.badge-intro {
    display: inline-block;
    background: rgba(138, 43, 226, 0.2);
    color: #a150eb;
    border: 1px solid #8a2be2;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 24px;
    text-transform: uppercase;
    box-shadow: 0 0 8px rgba(138, 43, 226, 0.3);
}
.infinity-banner-title {
    font-size: 46px;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.6);
}
.infinity-banner-subtitle {
    font-size: 22px;
    color: #00f0ff;
    margin-bottom: 24px;
    font-weight: 600;
    text-shadow: 0 0 5px rgba(0, 240, 255, 0.4);
}
.infinity-banner-desc {
    color: #cccccc;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 36px;
}
.game-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}
.game-tag {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}
.game-tag:hover {
    border-color: #00f0ff;
    background: rgba(0, 240, 255, 0.1);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
}
.infinity-banner-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.btn-gaming-neon {
    border: 2px solid #00f0ff;
    background: transparent;
    color: #ffffff;
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
}
.btn-gaming-neon:hover {
    background: #00f0ff;
    color: #000000;
    box-shadow: 0 0 20px #00f0ff;
    transform: translateY(-2px);
}
.btn-gaming-neon-alt {
    border: 2px solid #8a2be2;
    background: transparent;
    color: #ffffff;
    box-shadow: 0 0 10px rgba(138, 43, 226, 0.2);
}
.btn-gaming-neon-alt:hover {
    background: #8a2be2;
    color: #ffffff;
    box-shadow: 0 0 20px #8a2be2;
    transform: translateY(-2px);
}

/* Pay Transparency Section */
.pay-section {
    padding: 80px 0;
    background: var(--white);
}
.pay-table-wrap {
    max-width: 800px;
    margin: 0 auto 40px auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(15, 76, 129, 0.08);
    border: 1px solid var(--border-color);
}
.pay-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}
.pay-table th {
    background: var(--navy-blue);
    color: var(--white);
    padding: 18px 24px;
    font-weight: 700;
    font-size: 16px;
}
.pay-table td {
    padding: 16px 24px;
    border-bottom: 1px solid var(--border-color);
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 500;
}
.pay-table tr:last-child td {
    border-bottom: none;
}
.pay-table tr:nth-child(even) {
    background: var(--off-white);
}
.pay-trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.pay-trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--navy-blue);
    font-size: 15px;
}

/* Testimonials Carousel */
.testimonials-section {
    padding: 80px 0;
    background: var(--off-white);
    position: relative;
}
.carousel-container {
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    padding: 20px 10px;
}
.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.testimonial-card-item {
    min-width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}
.testimonial-card-inner {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 25px rgba(15, 76, 129, 0.05);
    text-align: center;
    position: relative;
}
.testimonial-stars {
    color: #ffb800;
    font-size: 20px;
    margin-bottom: 20px;
}
.testimonial-quote {
    font-size: 18px;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 24px;
    font-weight: 500;
}
.testimonial-author {
    font-weight: 700;
    color: var(--navy-blue);
    font-size: 16px;
}
.carousel-control-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--border-color);
    color: var(--navy-blue);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(15, 76, 129, 0.1);
    transition: all 0.3s ease;
    z-index: 10;
}
.carousel-control-btn:hover {
    background: var(--navy-blue);
    color: var(--white);
}
.carousel-control-btn.prev {
    left: 10px;
}
.carousel-control-btn.next {
    right: 10px;
}

/* Why Choose Us Cards */
.why-section {
    padding: 80px 0;
    background: var(--white);
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}
.why-card {
    background: var(--off-white);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
    border-left: 4px solid var(--navy-blue);
}
.why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(15, 76, 129, 0.08);
}
.why-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 12px;
}
.why-card-desc {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* WhatsApp Banner */
.whatsapp-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, #1A2332 0%, #0F4C81 100%);
    color: var(--white);
    text-align: center;
    position: relative;
}
.whatsapp-banner h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
}
.whatsapp-banner p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 36px;
}
.whatsapp-benefits-list {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 36px;
    list-style: none;
    padding: 0;
}
.whatsapp-benefit-item {
    font-size: 14px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 18px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.whatsapp-benefit-item::before {
    content: "✓";
    color: var(--mint-green);
}
.btn-whatsapp-join {
    background: #25D366;
    color: var(--white);
    padding: 16px 40px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}
.btn-whatsapp-join:hover {
    background: #1ebd59;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* FAQ Accordion Section */
.faq-section {
    padding: 80px 0;
    background: var(--white);
}
.faq-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}
.faq-tab-btn {
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 30px;
    border: 2px solid var(--border-color);
    background: var(--white);
    color: var(--text-gray);
    cursor: pointer;
    transition: all 0.3s ease;
}
.faq-tab-btn.active {
    border-color: var(--navy-blue);
    color: var(--navy-blue);
    box-shadow: 0 4px 12px rgba(15, 76, 129, 0.08);
}
.faq-accordion-wrap {
    max-width: 800px;
    margin: 0 auto;
}
.faq-group-content {
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.faq-group-content.hidden {
    display: none;
    opacity: 0;
    transform: translateY(15px);
}
.faq-accordion-item {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.faq-accordion-header {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    font-size: 17px;
    font-weight: 700;
    color: var(--navy-blue);
    text-align: left;
    cursor: pointer;
    font-family: inherit;
}
.faq-accordion-header svg {
    transition: transform 0.3s ease;
    color: var(--text-gray);
    flex-shrink: 0;
}
.faq-accordion-item.active .faq-accordion-header svg {
    transform: rotate(180deg);
}
.faq-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: var(--off-white);
}
.faq-accordion-body-inner {
    padding: 20px 24px;
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: var(--white);
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.whatsapp-float:hover {
    background-color: #20ba5a;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 105px;
    width: 60px;
    height: 60px;
    background-color: var(--navy-blue);
    color: var(--white);
    border-radius: 50%;
    border: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}
.back-to-top:hover {
    background-color: var(--lighter-navy);
    transform: scale(1.1);
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-navy);
    color: var(--white);
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    border-top: 2px solid var(--border-color);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    font-size: 14px;
    transition: all 0.5s ease;
}
.cookie-consent.hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
}
.cookie-consent-text {
    margin: 0;
    font-weight: 500;
}
.cookie-consent-btn {
    background-color: var(--mint-green);
    color: var(--text-dark);
    border: none;
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 20px;
    flex-shrink: 0;
}
.cookie-consent-btn:hover {
    background-color: #6FC847;
}

/* Custom Modal Success Notification */
.success-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 35, 50, 0.6);
    backdrop-filter: blur(4px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.success-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}
.success-modal-content {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    max-width: 480px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 50px rgba(15, 76, 129, 0.25);
    transform: scale(0.8);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.success-modal-overlay.active .success-modal-content {
    transform: scale(1);
}
.success-modal-icon {
    width: 80px;
    height: 80px;
    background: #E8F9E0;
    color: var(--mint-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 24px auto;
}
.success-modal-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--navy-blue);
    margin-bottom: 12px;
}
.success-modal-message {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 30px;
}
.success-modal-btn {
    background: var(--navy-blue);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}
.success-modal-btn:hover {
    background: var(--lighter-navy);
}

/* Scroll Fade Animation utility */
.scroll-fade {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.scroll-fade.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Title Staggered Animation */
.hero-title span {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUpWord 0.5s ease forwards;
}
@keyframes fadeInUpWord {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Custom Search and Filters on Blog Page */
.blog-controls-wrap {
    padding: 40px 0;
    background: var(--off-white);
    border-bottom: 1px solid var(--border-color);
}
.blog-controls-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}
.blog-search-box {
    position: relative;
    max-width: 400px;
    width: 100%;
}
.blog-search-input {
    width: 100%;
    padding: 14px 20px 14px 48px;
    border-radius: 30px;
    border: 2px solid var(--border-color);
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    transition: all 0.3s ease;
}
.blog-search-input:focus {
    border-color: var(--navy-blue);
    outline: none;
    box-shadow: 0 4px 12px rgba(15, 76, 129, 0.05);
}
.blog-search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-gray);
}
.blog-filter-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.blog-filter-tab {
    padding: 10px 20px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    background: var(--white);
    color: var(--text-gray);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.blog-filter-tab.active, .blog-filter-tab:hover {
    background: var(--navy-blue);
    color: var(--white);
    border-color: var(--navy-blue);
}
/* Utility to show line breaks only on desktop viewports */
.desktop-only {
    display: inline;
}
@media (max-width: 968px) {
    .desktop-only {
        display: none !important;
    }
}

/* Responsive Overrides */
@media (max-width: 968px) {
    .nav-menu {
        gap: 0;
    }
    .nav-menu .nav-item {
        width: 100%;
    }
    .nav-menu .dropdown-trigger {
        color: var(--white) !important;
        padding: 16px 0 !important;
        width: 100% !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
        font-size: 15px !important;
        font-weight: 600 !important;
    }
    .dropdown-menu {
        position: static !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        box-shadow: none !important;
        border: none !important;
        background: rgba(255, 255, 255, 0.05) !important;
        padding: 8px 16px !important;
        margin-top: 5px !important;
        width: 100% !important;
        min-width: 100% !important;
        display: none; /* Controlled by JS active class */
    }
    .dropdown-menu.active {
        display: flex !important;
    }
    .dropdown-item {
        color: rgba(255, 255, 255, 0.8) !important;
        padding: 10px 12px !important;
        font-size: 14px !important;
        border-bottom: none !important;
    }
    .dropdown-item:hover {
        background: rgba(255, 255, 255, 0.1) !important;
        color: var(--white) !important;
        padding-left: 12px !important;
    }

    .stats-bar-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    .stat-bar-item {
        flex: 1 1 180px;
        max-width: 240px;
        border-right: none !important;
        padding: 10px 5px;
    }

    .services-grid, .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .back-to-top {
        right: 85px;
        width: 50px;
        height: 50px;
        bottom: 20px;
        font-size: 20px;
    }
    .whatsapp-float {
        right: 20px;
        width: 50px;
        height: 50px;
        bottom: 20px;
        font-size: 26px;
    }
    .cookie-consent {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    .cookie-consent-btn {
        margin-left: 0;
        width: 100%;
    }
}
@media (max-width: 640px) {
    .stats-bar-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    .stat-bar-item {
        flex: 1 1 140px;
        max-width: 100%;
        border-right: none !important;
        padding: 8px 4px;
    }
    .services-grid, .why-grid {
        grid-template-columns: 1fr;
    }
    .infinity-banner-title {
        font-size: 32px;
    }
    .infinity-banner-subtitle {
        font-size: 18px;
    }
    .infinity-banner-buttons {
        flex-direction: column;
        gap: 12px;
    }
    .infinity-banner-buttons .btn {
        width: 100%;
    }
    .pay-table th, .pay-table td {
        padding: 12px 16px;
        font-size: 13px;
    }
    .testimonial-card-inner {
        padding: 24px;
    }
    .testimonial-quote {
        font-size: 15px;
    }
}