:root {
    /* Premium Vibrant Light Color Palette */
    --bg-main: #F8FAFC;
    /* Soft, premium off-white */
    --navy-900: #0f172a;
    --navy-800: #1e293b;
    --navy-700: #334155;
    --accent-blue: #0ea5e9;
    --accent-emerald: #10b981;
    --accent-purple: #8b5cf6;
    --accent-pink: #ec4899;
    --text-main: #1e293b;
    /* Deep slate for readability */
    --text-muted: #64748b;

    /* Spacing & Transitions */
    --padding-container: 2rem;
    --transition-smooth: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Shadows & Glassmorphism */
    --shadow-soft: 0 10px 30px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.02);
    --shadow-premium: 0 20px 40px -10px rgba(0, 0, 0, 0.08);
    --shadow-glow: 0 0 20px rgba(14, 165, 233, 0.2);
    --glass-bg: rgba(255, 255, 255, 0.6);
    /* Frosted light glass */
    --glass-bg-hover: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.4);

    /* Typography */
    --font-main: 'Outfit', 'Inter', system-ui, sans-serif;
}


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

html,
body {
    font-family: var(--font-main);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    width: 100%;
    min-height: 100vh;
}

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

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

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

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

@keyframes scaleUp {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}



/* Background Decoration - Atmospheric Blobs */
body::before {
    content: '';
    position: fixed;
    top: -20%;
    right: -10%;
    width: 70%;
    height: 90%;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.1) 0%, rgba(248, 250, 252, 0) 70%);
    z-index: -1;
    border-radius: 50%;
    filter: blur(100px);
    animation: pulse 15s infinite alternate ease-in-out;
}

body::after {
    content: '';
    position: fixed;
    bottom: -20%;
    left: -10%;
    width: 60%;
    height: 70%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, rgba(248, 250, 252, 0) 70%);
    z-index: -1;
    border-radius: 50%;
    filter: blur(80px);
    animation: pulse 20s infinite alternate-reverse ease-in-out;
}

@keyframes pulse {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(5%, 5%) scale(1.1);
    }
}


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

/* Header Navigation */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 70px;
    background-color: transparent;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: -webkit-sticky;
    /* For Safari */
    position: sticky;
    top: 0;
    z-index: 9999;
    transition: var(--transition-smooth);
}

header.scrolled {
    padding: 5px 70px;
    background-color: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}


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

.logo-container {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition-bounce);
}

.logo-container:hover {
    transform: translateY(-2px) scale(1.02);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
}

.logo-container img {
    height: 60px;
    width: auto;
    display: block;
}

/* Header Search - Premium Refinement */
.search-header {
    position: relative;
    width: 900px;
    max-width: 100%;
}

.search-header input {
    width: 100%;
    padding: 0.9rem 7rem 0.9rem 3.5rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    /* Thinner, softer border */
    border-radius: 12px;
    /* Less rounded, more like the screenshot */
    font-size: 1rem;
    font-weight: 500;
    font-family: var(--font-main);
    outline: none;
    transition: var(--transition-smooth);
    background: #ffffff;
    color: var(--navy-700);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    /* Very soft shadow */
}

.search-header input::placeholder {
    color: var(--text-muted);
}

.search-header input:focus {
    background: #ffffff;
    border-color: rgba(14, 165, 233, 0.5);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}


.search-header svg {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: var(--text-muted);
    transition: var(--transition-bounce);
    opacity: 0.6;
    /* Lighter icon */
    z-index: 2;
}

.search-btn {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    padding: 0.65rem 1.8rem;
    background: linear-gradient(to right, var(--accent-blue) 0%, var(--accent-emerald) 100%);
    /* Bright blue to emerald gradient */
    color: white;
    border: none;
    border-radius: 50px;
    /* Fully rounded pill shape */
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 2;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
}

.search-btn:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
    background: linear-gradient(to right, #0284c7 0%, #059669 100%);
}



.search-header input:focus+svg {
    color: var(--accent-blue);
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}


.btn {
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: 0.3s;
    display: inline-block;
}

.btn-gradient {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-purple) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
}

/* Hero Section */
.hero {
    padding: 6rem 0;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 4rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.highlight {
    color: var(--accent-blue);
}

.hero-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-image img {
    width: 100%;
    height: auto;
}

@media (max-width: 968px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 4rem 0;
    }

    .hero-content p {
        margin: 0 auto 2.5rem;
    }

    nav,
    .header-btn {
        display: none;
    }
}

/* Premium Ramadan Offer Marquee */
.ramadan-marquee-container {
    width: 100%;
    overflow: hidden;
    background: transparent;
    padding: 16px 0;
    /* margin-bottom: 3rem; */
    position: relative;
    display: flex;
    white-space: nowrap;
}

.ramadan-marquee-content {
    display: inline-flex;
    animation: marquee-scroll 30s linear infinite;
    /* Slightly slower, smoother */
}

.ramadan-marquee-content:hover {
    animation-play-state: paused;
}

.ramadan-marquee-content span {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy-800);
    padding: 0 4rem;
    font-family: var(--font-main);
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 12px;
}

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

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

/* Ecosystem Section - Premium Overhaul */
.ecosystem {
    /* padding: 0px 0 0; */
    padding-top: 0;
    background: transparent;
}

.section-hero {
    text-align: left;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    animation: scaleUp 0.8s var(--transition-bounce);
}




.section-hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}


.bento-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    /* adjusted margin */
    animation: scaleUp 1s var(--transition-bounce) 0.2s both;
    perspective: 1000px;
    /* For 3D transforms */
}



/* Enhanced Premium Bento Card */

/* Clean Transparent Bento Card */
.bento-card {
    background: #ffffff;
    border-radius: 32px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-soft);
    cursor: pointer;
    transition: var(--transition-bounce);
    display: flex;
    flex-direction: row;
    /* Changed to row for parallel layout */
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 160px;
    /* adjusted back a bit for breathing room */
    position: relative;
    gap: 1.5rem;
    overflow: hidden;
    transform-style: preserve-3d;
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 32px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));
    z-index: 1;
    pointer-events: none;
}

.bento-card:hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(-5deg);
    background: #ffffff;
    border-color: var(--accent-blue);
}

/* Base Shadow Adjustments for specific cards */
/* Card 1 */
.bento-card:nth-child(1):hover {
    box-shadow: 0 25px 40px -15px rgba(14, 165, 233, 0.3), 0 0 15px rgba(14, 165, 233, 0.1);
    border-color: rgba(14, 165, 233, 0.4);
}

/* Card 2 */
.bento-card:nth-child(2):hover {
    box-shadow: 0 25px 40px -15px rgba(139, 92, 246, 0.3), 0 0 15px rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.4);
}

/* Card 3 */
.bento-card:nth-child(3):hover {
    box-shadow: 0 25px 40px -15px rgba(16, 185, 129, 0.3), 0 0 15px rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.4);
}

/* Specific adjustment for timer card */
#timer-card {
    flex-direction: column;
    /* Stack Logo and Timer */
    gap: 1rem;
    padding: 2rem 2rem 0.5rem 2rem;
    text-decoration: none !important;
    border-bottom: none !important;
}

#timer-card * {
    text-decoration: none !important;
    border-bottom: none !important;
    z-index: 2;
    /* keep above before element */
}

/* Adjust specifically for the first logo to match physical height of others */
#timer-card .card-logo {
    height: 55px;
}

.card-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-bounce);
    z-index: 2;
    mix-blend-mode: multiply;
    /* Will universally make white/off-white perfectly transparent on the #ffffff background */
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.05));
}

.card-logo-wrapper {
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1), inset 0 0 0 1px rgba(255, 255, 255, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-bounce);
    width: 65%;
    height: 70%;
}

.logo-container img {
    height: 60px;
    width: auto;
    display: block;
}

.bento-card:hover .card-logo {
    transform: scale(1.08) translateZ(20px);
}

.bento-card span {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-main);
}

.bento-card.main {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
}



/* AI Tools Section - Premium Refinement */
.ai-group {
    background: var(--glass-bg);
    padding: 2.5rem;
    border-radius: 32px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-soft);
    margin-top: 1rem;
    animation: scaleUp 1s var(--transition-bounce) 0.4s both;
}


.ai-header {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-main);
    letter-spacing: -0.5px;
    position: relative;
    width: fit-content;
    text-shadow: none;
}

.ai-header div {
    width: 40px;
    height: 4px;
    border-radius: 10px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.15);
}

.ai-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.ai-card {
    padding: 1.25rem 1.75rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition-bounce);
    color: var(--text-main);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    backdrop-filter: blur(8px);
}

.timer-wrapper {
    position: relative;
    margin-top: -10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    z-index: 5;
    text-decoration: none !important;
    background: rgba(255, 255, 255, 0.8);
    padding: 8px 16px;
    border-radius: 100px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

#timer-display {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-main);
    text-shadow: none;
    background: transparent;
    padding: 0;
    text-decoration: none;
    border-bottom: none;
    font-variant-numeric: tabular-nums;
}

.timer-controls {
    display: flex;
    gap: 8px;
}

.timer-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    color: white;
    font-size: 0.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-bounce);
    text-decoration: none !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.timer-btn:hover {
    transform: scale(1.15);
    filter: brightness(1.2);
}

#play-btn {
    background: var(--accent-emerald);
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.2);
}

#stop-btn {
    background: #ef4444;
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.2);
}

/* Individual Tool Card Hovers with specific glows */
.ai-card:nth-child(1):hover {
    border-color: #10a37f;
    box-shadow: 0 15px 30px -10px rgba(16, 163, 127, 0.1), inset 0 0 15px rgba(16, 163, 127, 0.03);
    transform: translateY(-8px);
    background: rgba(16, 163, 127, 0.03);
}

.ai-card:nth-child(2):hover {
    border-color: #4285f4;
    box-shadow: 0 15px 30px -10px rgba(66, 133, 244, 0.1), inset 0 0 15px rgba(66, 133, 244, 0.03);
    transform: translateY(-8px);
    background: rgba(66, 133, 244, 0.03);
}

.ai-card:nth-child(3):hover {
    border-color: #b200ff;
    box-shadow: 0 15px 30px -10px rgba(178, 0, 255, 0.1), inset 0 0 15px rgba(178, 0, 255, 0.03);
    transform: translateY(-8px);
    background: rgba(178, 0, 255, 0.03);
}

.ai-icon {
    width: 28px;
    height: 28px;
    transition: var(--transition-bounce);
    flex-shrink: 0;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
}

.ai-card:hover .ai-icon {
    transform: rotate(12deg) scale(1.15);
    filter: drop-shadow(0 0 12px currentColor);
}


/* Social Media Hover Effects - Overriding nth-child using !important */
.ai-card.social-instagram:hover {
    border-color: #E1306C !important;
    box-shadow: 0 15px 30px -10px rgba(225, 48, 108, 0.2), inset 0 0 15px rgba(225, 48, 108, 0.05) !important;
    transform: translateY(-8px);
    background: rgba(225, 48, 108, 0.03);
}

.ai-card.social-threads:hover {
    border-color: #000000 !important;
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.15), inset 0 0 15px rgba(0, 0, 0, 0.05) !important;
    transform: translateY(-8px);
    background: rgba(0, 0, 0, 0.02);
}

.ai-card.social-threads .ai-icon {
    color: #000000 !important;
    /* Update back to black for light mode */
}

.ai-card.social-facebook:hover {
    border-color: #1877F2 !important;
    box-shadow: 0 15px 30px -10px rgba(24, 119, 242, 0.2), inset 0 0 15px rgba(24, 119, 242, 0.05) !important;
    transform: translateY(-8px);
    background: rgba(24, 119, 242, 0.03);
}

.ai-card.social-linkedin:hover {
    border-color: #0A66C2 !important;
    box-shadow: 0 15px 30px -10px rgba(10, 102, 194, 0.2), inset 0 0 15px rgba(10, 102, 194, 0.05) !important;
    transform: translateY(-8px);
    background: rgba(10, 102, 194, 0.03);
}

.ai-card.social-x:hover {
    border-color: #000000 !important;
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.15), inset 0 0 15px rgba(0, 0, 0, 0.05) !important;
    transform: translateY(-8px);
    background: rgba(0, 0, 0, 0.02);
}

.ai-card.social-x .ai-icon {
    color: #000000 !important;
    /* Update back to black for light mode */
}

.ai-card.social-messenger:hover {
    border-color: #00B2FF !important;
    box-shadow: 0 15px 30px -10px rgba(0, 178, 255, 0.2), inset 0 0 15px rgba(0, 178, 255, 0.05) !important;
    transform: translateY(-8px);
    background: rgba(0, 178, 255, 0.03);
}


@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .ai-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer - Clean & Minimal */
.footer {
    width: 100%;
    background: #ffffff;
    padding: 1rem 0 1.5rem;
    text-align: center;
    margin-top: 2rem;
}

/* Contact Info Cards */
.footer-info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
    margin-top: 2rem;
}

.info-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition-bounce);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    border-color: rgba(14, 165, 233, 0.2);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: #f8fafc;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    transition: var(--transition-bounce);
}

.info-icon i {
    font-size: 1.5rem;
    color: var(--navy-700);
}

/* Specific Icon Colors Matching Design */
.info-card:nth-child(1) .info-icon i {
    color: #dc2626;
}

/* Address Red */
.info-card:nth-child(2) .info-icon i {
    color: #64748b;
}

/* Email Gray */
.info-card:nth-child(3) .info-icon i {
    color: #475569;
}

/* Clock Gray */

.info-card:nth-child(1) .info-icon {
    background: #fef2f2;
}

.info-card:nth-child(2) .info-icon {
    background: #f8fafc;
}

.info-card:nth-child(3) .info-icon {
    background: #f1f5f9;
}


.info-card:hover .info-icon {
    transform: scale(1.1);
}

.info-content h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--navy-800);
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.info-content p,
.info-content a {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    text-decoration: none;
    font-weight: 500;
}

.info-content a:hover {
    color: var(--accent-blue);
}

/* Contact Us Section Header Styling */
.ai-header.contact-title-header {
    justify-content: center;
    margin-bottom: 3rem;
    margin-top: 1rem;
}

.contact-header-text {
    font-size: 2rem;
    /* Large display font */
    font-weight: 800;
    color: #2D3E4F;
    /* Navy Blue color for "Contact" */
    margin: 0;
    letter-spacing: -1px;
    font-family: 'Outfit', sans-serif;
}

.contact-header-text .highlight-green {
    color: #8EC63F;
    /* Bright green color for "Us" */
}

/* Contact Section Split Layout */
.contact-section-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2rem;
    align-items: start;
    margin-top: 2rem;
}

/* Override grid for the cards when inside the split layout */
.contact-info-column.footer-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 0;
    margin-top: 0;
}

.contact-form-column {
    background: #ffffff;
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

/* Premium Form Styles */
.premium-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.premium-form input,
.premium-form textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    font-family: var(--font-main);
    font-size: 1rem;
    color: var(--text-main);
    background: #f8fafc;
    transition: var(--transition-bounce);
    outline: none;
}

.premium-form input:focus,
.premium-form textarea:focus {
    background: #ffffff;
    border-color: var(--accent-emerald);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

.premium-form button {
    margin-top: 0.5rem;
    align-self: center;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-emerald) 100%);
    color: white;
    font-weight: 700;
    transition: var(--transition-bounce);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.premium-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.footer-logo {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.footer-logo img {
    height: 50px;
    width: auto;
    opacity: 0.95;
    transition: var(--transition-bounce);
}

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

.footer-bottom {
    width: 100%;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding-top: 1.5rem;
    display: flex;
    justify-content: center;
}

.footer p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-muted);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    letter-spacing: 0.2px;
}

.footer a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--accent-blue);
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    header {
        height: auto;
        padding: 15px 20px;
        position: relative;
        flex-direction: column;
    }

    header.scrolled {
        padding: 10px 20px;
    }

    .nav-content {
        flex-direction: column;
        gap: 15px;
        padding: 0;
    }

    .logo-container {
        margin: 0;
        justify-content: center;
        width: 100%;
    }

    .logo-container img {
        height: 45px;
    }

    .search-header {
        width: 100%;
    }

    .search-header input {
        font-size: 0.95rem;
        padding: 0.8rem 6rem 0.8rem 2.8rem;
    }

    .search-btn {
        padding: 0.5rem 1.2rem;
        font-size: 0.9rem;
        right: 6px;
    }

    .search-header svg {
        left: 14px;
        width: 18px;
        height: 18px;
    }

    .ecosystem {
        padding-top: 2rem;
        padding-bottom: 4rem;
    }

    /* Footer Info Cards Mobile Stack */
    .footer-info-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Contact Section Mobile Stack */
    .contact-section-inner {
        grid-template-columns: 1fr;
    }

    .premium-form .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-column {
        padding: 1.5rem;
    }
}

/* --- Floating Action Buttons --- */
.back-to-top,
.fb-messenger-fixed {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    z-index: 996;
    width: 45px;
    height: 45px;
    transition: all 0.4s;
    background: #007bff;
    /* Default blue, will override for messenger */
    color: #fff;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
}

.back-to-top {
    right: 15px;
    bottom: 15px;
    border-radius: 8px;
    /* Square with rounded corners */
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-emerald) 100%);
}

.fb-messenger-fixed {
    left: 15px;
    bottom: 15px;
    border-radius: 50%;
    /* Circle */
    background: #0084FF;
    /* Messenger blue */
}

.back-to-top i,
.fb-messenger-fixed i {
    font-size: 24px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: linear-gradient(135deg, var(--accent-blue) 0%, #059669 100%);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
}

.fb-messenger-fixed:hover {
    background: #0076e0;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0px 8px 20px rgba(0, 132, 255, 0.3);
}

.back-to-top.active,
.fb-messenger-fixed.active {
    visibility: visible;
    opacity: 1;
}