:root {
    /* PREMIUM FINTECH COLOR PALETTE */
    --primary: #0a192f;
    --primary-navy: #0a192f;
    --secondary: #6DB33F;
    --accent: #26D0CE;
    --gold-accent: #d4af37;
    --slate-grey: #8892b0;
    --dark: #FFFFFF;
    --glass: rgba(0, 86, 151, 0.03);
    --glass-border: rgba(0, 0, 0, 0.08);
    --text: #0A192F;
    --text-muted: #8892b0;
    --white: #FFFFFF;

    /* Layout */
    --container: 1200px;
    --header-height: 90px;

    /* Premium Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Manrope', sans-serif;
}

/* DARK THEME OVERRIDES */
body.dark-mode {
    --primary: #005697;
    --secondary: #6DB33F;
    --accent: #26D0CE;
    --dark: #0A192F;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text: #E6F1FF;
    --text-muted: #8892B0;
    --white: #FFFFFF;
}

/* Dark Mode Specific Adjustments */
body.dark-mode .header {
    background: rgba(10, 25, 47, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

body.dark-mode .hero {
    background: #0A192F;
}

body.dark-mode .hero-bg {
    background: radial-gradient(circle, rgba(109, 179, 63, 0.15) 0%, rgba(10, 25, 47, 0) 70%);
}

body.dark-mode .services,
body.dark-mode .why-us,
body.dark-mode .contact,
body.dark-mode .card,
body.dark-mode .glass-card {
    background: transparent;
}

body.dark-mode .card {
    background: var(--glass);
    box-shadow: none;
    border: 1px solid var(--glass-border);
}

body.dark-mode .card:hover {
    background: rgba(255, 255, 255, 0.08);
}

body.dark-mode .glass-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
    border: 1px solid var(--glass-border);
}

body.dark-mode .feature {
    border-left-color: var(--glass-border);
}

body.dark-mode .nav {
    background: #0A192F;
    border-bottom: 1px solid var(--glass-border);
}

body.dark-mode .contact-box a.btn-primary {
    background: white;
    color: var(--primary);
}

/* Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

body.dark-mode .loader {
    background: #0A192F;
}

.loader img {
    width: 80px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Theme Toggle Button */
.theme-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text);
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.theme-btn:hover {
    color: var(--secondary);
}

.sun-icon {
    display: none;
}

.moon-icon {
    display: block;
}

body.dark-mode .sun-icon {
    display: block;
}

body.dark-mode .moon-icon {
    display: none;
}

/* Back to Top Button */
#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 900;
}

#back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

#back-to-top:hover {
    transform: translateY(-5px);
    background: var(--secondary);
}

/* Contact Form */
.contact-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border-radius: 10px;
    border: none;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
}

.form-group textarea {
    resize: vertical;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary {
    background: linear-gradient(90deg, var(--primary), #007cc2);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 124, 194, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 124, 194, 0.4);
}

.btn-outline {
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-lg {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Header */
.header {
    height: var(--header-height);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.8rem;
    /* Increased size */
    font-weight: 700;
    color: var(--primary);
    /* Blue text for logo name */
}

.logo img {
    height: 55px;
    /* Increased logo size from 40px */
}

.nav-list {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-list a {
    font-size: 1rem;
    color: var(--text);
    font-weight: 500;
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--secondary);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: var(--header-height);
    padding-bottom: 0;
    /* Removed gap */
    overflow: hidden;
    background: #0A192F;
    z-index: 1;
}

#vanta-bg {
    display: none;
}

/* Premium Video Background */
.hero-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    /* Base layer, not negative */
    overflow: hidden;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 25, 47, 0.6) 0%, rgba(10, 25, 47, 0.85) 100%);
    z-index: 2;
}

/* Ensure content is strictly above */
.hero-content {
    z-index: 10;

    max-width: 800px;
    position: relative;
    padding: 0 20px;
    text-align: center;
    /* Removed card styling per user request */
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #FFFFFF;
    /* High contrast on dark background */
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    /* Subtle shadow for readability */
}

.hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    /* Light text */
    margin-bottom: 40px;
    max-width: 650px;
    font-weight: 500;
    margin-left: auto;
    margin-right: auto;
}

.text-gradient {
    /* Lighter gradient for dark background */
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.hero-btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    /* Ensure buttons don't overflow on small screens */
}

.hero::before {
    display: none;
}

/* Mouse Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.7;
    z-index: 10;
}

/* Hide scroll indicator on mobile */
@media (max-width: 768px) {
    .hero-scroll-indicator {
        display: none;
    }
}

/* ... existing styles ... */

.glass-card {
    padding: 50px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* ============================================
   SERVICES / OUR EXPERTISE SECTION
   ============================================ */
.services {
    padding: 40px 0 100px;
    /* Aggressively reduced top padding */
    background: linear-gradient(180deg, var(--primary-navy) 0%, #112240 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: var(--white);
    letter-spacing: -0.02em;
}

.section-header p {
    color: var(--slate-grey);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    border-color: var(--gold-accent);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold-accent), #b8962e);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary-navy);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--white);
    letter-spacing: -0.01em;
}

.card p {
    color: var(--slate-grey);
    margin-bottom: 20px;
    line-height: 1.7;
}

.card-list {
    list-style: none;
    padding: 0;
}

.card-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.card-list li::before {
    content: "✓";
    color: var(--gold-accent);
    font-weight: bold;
}

/* ============================================
   WHY US SECTION
   ============================================ */
.why-us {
    padding: 100px 0;
    background: #F8FAFC;
}

.row {
    display: flex;
    gap: 60px;
    align-items: center;
}

.col {
    flex: 1;
}

.text-col h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 40px;
    color: var(--text);
    letter-spacing: -0.02em;
}

.feature {
    padding-left: 20px;
    border-left: 3px solid var(--gold-accent);
    margin-bottom: 30px;
}

.feature h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--text);
}

.feature p {
    color: var(--text-muted);
}

/* Contact */
.contact {
    padding: 80px 0 120px;
    background: #FFFFFF;
}

.contact-box {
    background: linear-gradient(135deg, var(--primary-navy), #112240);
    padding: 60px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(10, 25, 47, 0.4);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.contact-content {
    position: relative;
    z-index: 1;
    color: white;
}

.contact-box h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: white;
    letter-spacing: -0.02em;
}

.contact-box p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-box a.btn-primary {
    background: white;
    color: var(--primary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact-box a.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    background: #0A192F;
    padding: 60px 0 20px;
    color: white;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 55px;
    width: auto;
}

.footer-logo p {
    color: #8892B0;
    max-width: 300px;
    margin-top: 15px;
}

.footer h4 {
    margin-bottom: 20px;
    color: white;
}

.footer-links a {
    display: block;
    color: #8892B0;
    margin-bottom: 10px;
}

.footer-links a:hover {
    color: white;
}

.footer-contact p {
    color: #8892B0;
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #8892B0;
    font-size: 0.9rem;
}

/* Animations via Utility Classes */
/* Animations via Utility Classes */
/* Removed default opacity: 0 to prevent invisible text if JS fails. 
   GSAP will handle the 'from' state automatically. */
.fade-up {
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* ... */

/* Hero Section Refinement */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: var(--header-height);
    padding-bottom: 0;
    /* Removed completely */
    background: #0A192F;
    z-index: 1;
    overflow: hidden;
}

.hero-content {
    z-index: 10;
    max-width: 900px;
    position: relative;
    padding: 0 40px;
    text-align: left;
    width: 100%;
    opacity: 1 !important;
}

.hero-content * {
    opacity: 1 !important;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #FFFFFF;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.02em;
}

.hero p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 700px;
    font-weight: 400;
}

/* Mobile Spacing Fixes */
@media (max-width: 768px) {
    .hero {
        padding-top: 100px;
        min-height: auto;
        padding-bottom: 0;
        /* Removed completely */
        align-items: flex-start;
    }

    .hero-content {
        padding: 0 20px;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .hero p {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }

    .hero-btns {
        justify-content: center;
    }

    /* Reduce services top gap on mobile */
    .services {
        padding-top: 20px;
        /* Much tighter on mobile */
    }
}



/* Button Alignment */
.hero-btns {
    justify-content: flex-start;
    /* Align interactions left */
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

/* Responsive */
/* Nav Actions */
.nav-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.lang-btn {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text);
    padding: 5px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    border-color: var(--secondary);
    color: var(--secondary);
}



/* WhatsApp Widget */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    z-index: 900;
    transition: transform 0.3s ease;
}

.whatsapp-btn:hover {
    transform: translateY(-5px) scale(1.05);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: -100px;
    left: 0;
    width: 100%;
    background: #0A192F;
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2000;
    transition: bottom 0.5s ease;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
}

.cookie-banner.visible {
    bottom: 0;
}

.cookie-banner p {
    font-size: 0.9rem;
    margin-right: 20px;
}

/* RTL / Arabic Support */
[dir="rtl"] {
    direction: rtl;
    text-align: right;
}

[dir="rtl"] .nav-list {
    flex-direction: row-reverse;
}

[dir="rtl"] .feature {
    padding-left: 0;
    padding-right: 20px;
    border-left: none;
    border-right: 3px solid #E0E0E0;
}

[dir="rtl"] .card-list li {
    flex-direction: row-reverse;
}

[dir="rtl"] .card-list li::before {
    margin-left: 10px;
    margin-right: 0;
}

[dir="rtl"] .hero-bg {
    right: auto;
    left: -10%;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .container {
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 20px;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        height: 0;
        background: white;
        overflow: hidden;
        transition: height 0.3s ease;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .nav.open {
        height: 280px;
        /* Increased for better spacing */
    }

    .nav-list {
        flex-direction: column;
        padding: 40px 30px;
        gap: 20px;
        align-items: center;
    }

    /* RTL Mobile Adjustments */
    [dir="rtl"] .nav-list {
        align-items: center;
    }

    .cookie-banner {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .hero {
        text-align: center;
        padding-top: 120px;
        min-height: auto;
        /* Fixed - was 100vh causing the gap */
        padding-bottom: 30px;
        justify-content: flex-start;
    }

    .hero-content {
        margin: 0 auto;
        padding: 0 20px;
        text-align: center;
    }

    .hero-btns {
        justify-content: center;
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .hero-btns .btn {
        width: 100%;
        max-width: 280px;
    }

    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .hero p {
        font-size: 1rem;
        padding: 0 10px;
    }

    /* Mobile Hero Background Fix */
    .hero-bg-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .hero-bg-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
    }

    .hero-overlay {
        background: linear-gradient(180deg, rgba(10, 25, 47, 0.7) 0%, rgba(10, 25, 47, 0.9) 100%);
    }

    /* Stats Section Mobile */
    .stats-counter {
        padding: 40px 15px;
    }

    .stats-grid {
        flex-direction: column;
        gap: 25px;
    }

    .stat-item h3 {
        font-size: 2.5rem;
    }

    .stat-item span {
        font-size: 2.5rem;
    }

    .stat-item p {
        font-size: 0.95rem;
    }

    /* Services Cards Mobile */
    .services {
        padding: 60px 15px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .card {
        padding: 30px 20px;
    }

    .row {
        flex-direction: column;
    }

    .glass-card {
        width: 100%;
        padding: 40px;
    }

    .services,
    .why-us,
    .contact {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .why-us h2 {
        font-size: 2.5rem;
    }

    .contact-box h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        text-align: center;
        justify-content: center;
        padding-top: 100px;
        min-height: 100svh;
        /* Safe viewport height for mobile */
    }

    .hero-content {
        margin: 0 auto;
        text-align: center;
        padding: 0 15px;
    }

    .hero-btns {
        justify-content: center;
        flex-direction: column;
        gap: 12px;
    }

    .hero-btns .btn {
        width: 100%;
        max-width: 260px;
        padding: 14px 30px;
    }

    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.25;
        letter-spacing: -0.01em;
    }

    .hero p {
        font-size: 0.95rem;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.6;
    }

    /* Mobile Hero Background */
    .hero-bg-image {
        object-position: center top;
    }

    /* Stats Mobile Small */
    .stat-item h3 {
        font-size: 2rem;
    }

    .stat-item span {
        font-size: 2rem;
    }

    /* Section Headers Mobile */
    .section-header h2 {
        font-size: 1.6rem;
        padding: 0 10px;
    }

    .section-header p {
        font-size: 0.9rem;
        padding: 0 10px;
    }

    /* Why Us Section Mobile */
    .text-col h2 {
        font-size: 1.8rem;
    }

    .feature {
        padding-left: 15px;
    }

    .feature h3 {
        font-size: 1.1rem;
    }

    /* Contact Section Mobile */
    .contact-box {
        padding: 40px 20px;
        border-radius: 20px;
    }

    .contact-box h2 {
        font-size: 1.6rem;
    }

    .contact-form {
        padding: 0 10px;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px;
        font-size: 16px;
        /* Prevents zoom on iOS */
    }

    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .glass-card {
        padding: 25px 15px;
    }

    .footer-container {
        flex-direction: column;
        gap: 30px;
        text-align: center;
        padding: 0 15px;
    }

    .footer-logo p,
    .contact-box p {
        margin: 0 auto 20px;
    }

    .footer-links a {
        display: inline-block;
        margin: 0 10px 10px;
    }

    /* Header Mobile */
    .header {
        height: 70px;
    }

    .logo img {
        height: 40px;
    }

    .logo span {
        font-size: 1.2rem;
    }
}

/* ============================================
   PREMIUM ANIMATIONS & EFFECTS
   ============================================ */

/* Fade In Up Animation */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Magnetic Button Effect */
.btn-magnetic {
    position: relative;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.3s ease,
        background 0.3s ease;
    will-change: transform;
}

.btn-magnetic:hover {
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    border-color: var(--gold-accent);
    color: var(--gold-accent);
}

/* Gold Accent on Outline Button Hover */
.btn-outline.btn-magnetic:hover {
    background: transparent;
    border-color: var(--gold-accent);
    color: var(--gold-accent);
}

/* Premium Glass Card Hover Glow */
.glass-card:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(212, 175, 55, 0.1);
}

/* Service Card Icon Pulse on Hover */
.card:hover .icon-box {
    animation: icon-pulse 0.6s ease;
}

@keyframes icon-pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}



/* Active Nav Link Gold Underline */
.nav-list a.active,
.nav-list a:hover {
    color: var(--gold-accent);
}

/* Premium Input Focus States */
.form-group input:focus,
.form-group textarea:focus {
    outline: 2px solid var(--gold-accent);
    outline-offset: 2px;
}