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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    margin: 0;
    padding: 0;
    background: #FAFAFA;
    color: #1A1A1A;
    line-height: 1.6;
    scroll-behavior: smooth;
}

/* Header */
/* Navbar Styles */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 50px;
    padding: 15px 25px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    width: auto;
    min-width: 350px;
    max-width: 450px;
    height: 70px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Scroll hide animations */
.navbar.hide {
    transform: translateX(-50%) translateY(-100px);
    opacity: 0;
    pointer-events: none;
}

.navbar.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: all;
}

.navbar.expanded {
    width: 90%;
    max-width: 800px;
}

/* Logo Section */
.logo-section {
    position: relative;
    padding: 12px 25px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

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

.logo-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    background: linear-gradient(135deg, #ffffff, #ffffff);
    box-shadow: 0 5px 15px rgba(108, 0, 176, 0.25);
}

.logo-text {
    color: #500986;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* Navigation Links */
.nav-links {
    display: flex;
    gap: 15px;
    background: rgba(0, 0, 0, 0.03);
    padding: 8px;
    border-radius: 40px;
    backdrop-filter: blur(10px);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 450px;
    max-width: 600px;
}

.nav-links.collapsed {
    max-width: 0;
    padding: 8px 0;
    opacity: 0;
}

.nav-item {
    position: relative;
    padding: 12px 20px;
    color: #1A1A1A;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border-radius: 25px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.nav-item:hover {
    background: rgba(108, 0, 176, 0.08);
    transform: translateY(-1px);
    color: #500986;
}

/* Right actions with bubble design */
.nav-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}
img{
    max-width: 100%;
    height: auto;
}

.action-btn {
    width: 45px;
    height: 45px;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    border-radius: 50%;
    color: #1A1A1A;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.action-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(108, 0, 176, 0.1);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.action-btn:hover {
    transform: scale(1.1);
    background: rgba(108, 0, 176, 0.1);
    box-shadow: 0 10px 30px rgba(108, 0, 176, 0.15);
}

.action-btn:hover::before {
    width: 100%;
    height: 100%;
}

.chat-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    padding: 12px 20px;
    border-radius: 25px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(118, 75, 162, 0.3);
}

.chat-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(118, 75, 162, 0.4);
}

/* Mobile hamburger */
.mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 8px;
    transition: all 0.3s ease;
}

.mobile-toggle span {
    width: 24px;
    height: 3px;
    background: #1A1A1A;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Content area */
.content {
    margin-top: 120px;
    padding: 40px;
    text-align: center;
    color: #1A1A1A;
}

.content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 300;
}

.content p {
    font-size: 1.2rem;
    opacity: 0.7;
    max-width: 600px;
    margin: 0 auto 40px;
}

.content-section {
    margin-bottom: 100vh;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Slide down animation */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Menu button styles for desktop */
.menu-btn {
    background: rgba(0, 0, 0, 0.05);
    border: none;
    border-radius: 50%;
    color: #1A1A1A;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.menu-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(108, 0, 176, 0.1);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.menu-btn:hover {
    background: rgba(108, 0, 176, 0.1);
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(108, 0, 176, 0.15);
}

.menu-btn:hover::before {
    width: 100%;
    height: 100%;
}

/* Responsive design */
@media (max-width: 1024px) {
    .navbar {
        width: calc(100% - 20px);
        padding: 0 20px;
    }
    
    .nav-links {
        gap: 5px;
    }
    
    .nav-item {
        padding: 10px 15px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .navbar {
        height: 60px;
        padding: 0 15px;
    }

    .nav-links.collapsed {
        display: none;
    }

    .nav-links:not(.collapsed) {
        display: flex;
        position: absolute;
        top: 70px;
        left: 15px;
        right: 15px;
        max-width: none;
        opacity: 1;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        border-radius: 15px;
        flex-direction: column;
        padding: 12px;
        gap: 4px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        animation: slideDown 0.3s ease-out;
        height: 400px;
        min-width: 100px;
        max-width: 280px;
        border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-item {
        padding: 12px 16px;
        border-radius: 10px;
        text-align: center;
        font-size: 14px;
        font-weight: 500;
    }

    .chat-btn {
        display: none;
    }

    .logo-text {
        font-size: 16px;
    }

    .content h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .navbar {
        top: 10px;
        width: calc(100% - 10px);
    }

    .logo-section {
        padding: 8px 15px;
    }

    .logo-icon {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .action-btn, .menu-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}

/* Show menu button on desktop when nav is collapsed */
@media (min-width: 769px) {
    .mobile-toggle {
        display: none;
    }
    
    .menu-btn {
        display: flex;
    }
}

/* Hide menu button on mobile */
@media (max-width: 768px) {
    .menu-btn {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
}

/* Contact Hero Section */
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: #FAFAFA;
            overflow-x: hidden;
        }

        /* Advanced Hero Section */
        .contact-hero {
            position: relative;
            min-height: 85vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #F8F8FF 0%, #FFFFFF 50%, #F5F0FA 100%);
            overflow: hidden;
            padding: 120px 20px 80px;
        }

        /* Animated gradient background */
        .contact-hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at 50% 50%, 
                rgba(108, 0, 176, 0.08) 0%, 
                rgba(100, 29, 175, 0.04) 25%, 
                transparent 50%);
            animation: rotateGradient 20s linear infinite;
        }

        @keyframes rotateGradient {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Floating message/contact icons */
        .hero-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .particle {
            position: absolute;
            font-size: 24px;
            opacity: 0;
            animation: floatParticle 15s infinite ease-in-out;
        }

        .particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
        .particle:nth-child(2) { top: 60%; left: 80%; animation-delay: 2s; }
        .particle:nth-child(3) { top: 40%; left: 30%; animation-delay: 4s; }
        .particle:nth-child(4) { top: 80%; left: 60%; animation-delay: 6s; }
        .particle:nth-child(5) { top: 30%; left: 70%; animation-delay: 8s; }
        .particle:nth-child(6) { top: 70%; left: 20%; animation-delay: 10s; }

        @keyframes floatParticle {
            0%, 100% { transform: translate(0, 0) scale(0.8); opacity: 0; }
            10% { opacity: 0.6; }
            90% { opacity: 0.6; }
            50% { transform: translate(50px, -80px) scale(1.2); }
        }

        /* Corner decorative elements - Contact themed */
        .corner-decoration {
            position: absolute;
            pointer-events: none;
            z-index: 1;
        }

        /* Top Left Corner - Email Icon */
        .corner-top-left {
            top: 0;
            left: 0;
            width: 300px;
            height: 300px;
        }

        .corner-top-left::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 150px;
            height: 3px;
            background: linear-gradient(90deg, #6C00B0, transparent);
            box-shadow: 0 0 15px rgba(108, 0, 176, 0.3);
        }

        .corner-top-left::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 3px;
            height: 150px;
            background: linear-gradient(180deg, #6C00B0, transparent);
            box-shadow: 0 0 15px rgba(108, 0, 176, 0.3);
        }

        .corner-top-left .corner-icon {
            position: absolute;
            top: 40px;
            left: 40px;
            width: 70px;
            height: 70px;
            background: rgba(108, 0, 176, 0.08);
            border: 2px solid rgba(108, 0, 176, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            animation: pulseIcon 3s infinite ease-in-out;
        }

        /* Top Right Corner - Phone Icon */
        .corner-top-right {
            top: 0;
            right: 0;
            width: 300px;
            height: 300px;
        }

        .corner-top-right::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 150px;
            height: 3px;
            background: linear-gradient(270deg, #641DAF, transparent);
            box-shadow: 0 0 15px rgba(100, 29, 175, 0.3);
        }

        .corner-top-right::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 3px;
            height: 150px;
            background: linear-gradient(180deg, #641DAF, transparent);
            box-shadow: 0 0 15px rgba(100, 29, 175, 0.3);
        }

        .corner-top-right .corner-icon {
            position: absolute;
            top: 50px;
            right: 50px;
            width: 65px;
            height: 65px;
            background: rgba(100, 29, 175, 0.08);
            border: 2px solid rgba(100, 29, 175, 0.2);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            animation: rotateIcon 8s linear infinite;
            transform-origin: center;
        }

        /* Bottom Left Corner - Location Icon */
        .corner-bottom-left {
            bottom: 0;
            left: 0;
            width: 300px;
            height: 300px;
        }

        .corner-bottom-left::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 150px;
            height: 3px;
            background: linear-gradient(90deg, #8A2BE2, transparent);
            box-shadow: 0 0 15px rgba(138, 43, 226, 0.3);
        }

        .corner-bottom-left::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 3px;
            height: 150px;
            background: linear-gradient(0deg, #8A2BE2, transparent);
            box-shadow: 0 0 15px rgba(138, 43, 226, 0.3);
        }

        .corner-bottom-left .corner-icon {
            position: absolute;
            bottom: 60px;
            left: 60px;
            width: 60px;
            height: 75px;
            background: rgba(138, 43, 226, 0.08);
            border: 2px solid rgba(138, 43, 226, 0.2);
            border-radius: 50% 50% 50% 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
            animation: floatIcon 4s infinite ease-in-out;
        }

        /* Bottom Right Corner - Message Icon */
        .corner-bottom-right {
            bottom: 0;
            right: 0;
            width: 300px;
            height: 300px;
        }

        .corner-bottom-right::before {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 150px;
            height: 3px;
            background: linear-gradient(270deg, #9932CC, transparent);
            box-shadow: 0 0 15px rgba(153, 50, 204, 0.3);
        }

        .corner-bottom-right::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 3px;
            height: 150px;
            background: linear-gradient(0deg, #9932CC, transparent);
            box-shadow: 0 0 15px rgba(153, 50, 204, 0.3);
        }

        .corner-bottom-right .corner-icon {
            position: absolute;
            bottom: 50px;
            right: 50px;
            width: 70px;
            height: 70px;
            background: rgba(153, 50, 204, 0.08);
            border: 2px solid rgba(153, 50, 204, 0.2);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            animation: bounceIcon 3s infinite ease-in-out;
        }

        /* Animations */
        @keyframes pulseIcon {
            0%, 100% { transform: scale(1); opacity: 0.7; }
            50% { transform: scale(1.15); opacity: 1; }
        }

        @keyframes rotateIcon {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        @keyframes floatIcon {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }

        @keyframes bounceIcon {
            0%, 100% { transform: translateY(0) scale(1); }
            50% { transform: translateY(-10px) scale(1.1); }
        }

        /* Hero Content */
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 1000px;
            text-align: center;
            padding: 50px 40px;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(20px);
            border-radius: 30px;
            border: 2px solid rgba(108, 0, 176, 0.15);
            box-shadow: 0 20px 60px rgba(108, 0, 176, 0.12),
                        inset 0 1px 0 rgba(255, 255, 255, 0.9);
        }

        .hero-content::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(135deg, #6C00B0, #641DAF, #8A2BE2, #9932CC);
            border-radius: 30px;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .hero-content:hover::before {
            opacity: 0.2;
            animation: borderGlow 2s infinite;
        }

        @keyframes borderGlow {
            0%, 100% { opacity: 0.2; }
            50% { opacity: 0.4; }
        }

        .hero-title {
            font-size: clamp(2.5rem, 8vw, 5rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 30px;
            color: #1A1A1A;
            text-shadow: 0 2px 20px rgba(108, 0, 176, 0.1);
            animation: fadeInUp 1s ease-out;
        }

        .section-highlight {
            background: linear-gradient(135deg, #6C00B0, #8A2BE2, #9932CC);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            display: inline-block;
            animation: gradientShift 3s infinite;
        }

        @keyframes gradientShift {
            0%, 100% { filter: hue-rotate(0deg); }
            50% { filter: hue-rotate(20deg); }
        }

        .hero-subtitle {
            font-size: clamp(1rem, 2.5vw, 1.3rem);
            color: #4A4A4A;
            line-height: 1.8;
            max-width: 800px;
            margin: 0 auto;
            animation: fadeInUp 1s ease-out 0.3s backwards;
        }

        /* Glowing orbs - subtle in light theme */
        .glow-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.15;
            pointer-events: none;
            animation: floatOrb 8s infinite ease-in-out;
        }

        .orb-1 {
            width: 350px;
            height: 350px;
            background: radial-gradient(circle, #6C00B0, transparent);
            top: 10%;
            left: 5%;
            animation-delay: 0s;
        }

        .orb-2 {
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, #8A2BE2, transparent);
            bottom: 10%;
            right: 5%;
            animation-delay: 2s;
        }

        .orb-3 {
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, #9932CC, transparent);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation-delay: 4s;
        }

        @keyframes floatOrb {
            0%, 100% { transform: translate(0, 0); }
            25% { transform: translate(30px, -30px); }
            50% { transform: translate(-20px, 20px); }
            75% { transform: translate(20px, 30px); }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Grid pattern overlay */
        .grid-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(108, 0, 176, 0.04) 1px, transparent 1px),
                linear-gradient(90deg, rgba(108, 0, 176, 0.04) 1px, transparent 1px);
            background-size: 50px 50px;
            pointer-events: none;
            opacity: 0.4;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .contact-hero {
                padding: 100px 15px 60px;
                min-height: 70vh;
            }

            .hero-content {
                padding: 35px 25px;
            }

            .corner-decoration {
                transform: scale(0.6);
            }

            .corner-top-left { transform-origin: top left; }
            .corner-top-right { transform-origin: top right; }
            .corner-bottom-left { transform-origin: bottom left; }
            .corner-bottom-right { transform-origin: bottom right; }

            .glow-orb {
                transform: scale(0.5);
            }
        }

        @media (max-width: 480px) {
            .corner-decoration {
                transform: scale(0.4);
            }

            .hero-content {
                padding: 30px 20px;
            }
        }
/* Main Content */
.main-content {
    background: linear-gradient(135deg, #FFFFFF 0%, #F5F5F5 100%);
    padding: 80px 20px;
}

.content-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

/* Left Section */
.left-section {
    padding: 40px 20px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1A1A1A;
    line-height: 1.2;
    margin-bottom: 30px;
}

.section-highlight {
    background: linear-gradient(135deg, #6C00B0, #641DAF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.section-subtitle {
    color: #4A4A4A;
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-info {
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.9)!important;
    border: 1px solid rgba(108, 0, 176, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.info-item:hover {
    background: linear-gradient(135deg, #6d00b055, #641daf4b)!important;
    border-color: rgba(100, 29, 175, 0.25);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(100, 29, 175, 0.1);
}

.info-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #6C00B0, #641DAF);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    flex-shrink: 0;
}

.info-text {
    color: #1A1A1A;
    font-weight: 500;
}

/* Right Section - Form */
.right-section {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(108, 0, 176, 0.15);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.right-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #6C00B0, #641DAF);
}

.form-title {
    font-size: 2rem;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 30px;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    flex: 1;
    position: relative;
}

.form-group.full-width {
    flex: 1 1 100%;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    color: #4A4A4A;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 15px 0;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(0, 0, 0, 0.15);
    color: #1A1A1A;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    outline: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    border-bottom-color: #641DAF;
    box-shadow: 0 2px 0 rgba(100, 29, 175, 0.2);
    transform: translateY(-2px);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(0, 0, 0, 0.3);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
    padding-top: 15px;
}

.form-select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%234A4A4A' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 8px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
}

.form-select option {
    background: #FFFFFF;
    color: #1A1A1A;
}

.submit-button {
    background: linear-gradient(135deg, #6C00B0, #641DAF);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 20px;
    box-shadow: 0 8px 25px rgba(100, 29, 175, 0.3);
    position: relative;
    overflow: hidden;
}

.submit-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(100, 29, 175, 0.4);
}

.submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Success/Error States */
.form-input.success,
.form-textarea.success {
    border-bottom-color: #4CAF50;
}

.form-input.error,
.form-textarea.error {
    border-bottom-color: #f44336;
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    z-index: 10000;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    max-width: 400px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.notification.success {
    background: linear-gradient(135deg, #4CAF50, #45a049);
}

.notification.error {
    background: linear-gradient(135deg, #f44336, #d32f2f);
}

.notification.show {
    transform: translateX(0);
}

.notification-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.notification-close {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
}

/* Footer */
.contact-footer {
    background: linear-gradient(135deg, #F8F8F8 0%, #FFFFFF 100%);
    padding: 60px 0 30px;
    color: #1A1A1A;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-logo {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #6C00B0, #641DAF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.footer-tagline {
    font-size: 0.95rem;
    color: #4A4A4A;
}

.footer-nav {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.footer-nav a {
    color: #4A4A4A;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease, transform 0.2s ease;
}

.footer-nav a:hover {
    color: #6C00B0;
    transform: translateY(-1px);
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, rgba(108, 0, 176, 0) 0%, rgba(108, 0, 176, 0.2) 50%, rgba(108, 0, 176, 0) 100%);
    margin: 24px 0;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-copy {
    font-size: 0.95rem;
    color: #4A4A4A;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
}

.fade-in-delay-1 { animation-delay: 0.2s; }
.fade-in-delay-2 { animation-delay: 0.4s; }
.fade-in-delay-3 { animation-delay: 0.6s; }

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    z-index: 101;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(108, 0, 176, 0.15);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #1A1A1A;
    margin: 2px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .left-section {
        text-align: center;
    }

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

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 300px;
        max-width: 80vw;
        background: linear-gradient(135deg, #F8F8F8 0%, #FFFFFF 100%);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        z-index: 100;
        transition: right 0.3s ease;
        border-left: 1px solid rgba(108, 0, 176, 0.15);
        backdrop-filter: blur(20px);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
        padding: 15px 30px;
        width: 100%;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .main-content {
        padding: 60px 16px;
    }

    .content-container {
        gap: 40px;
    }

    .form-row {
        flex-direction: column;
        gap: 25px;
    }

    .right-section {
        padding: 30px 20px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .contact-info {
        margin-bottom: 30px;
    }
}

@media (max-width: 640px) {
    .contact-hero {
        padding: 80px 16px 40px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .main-content {
        padding: 40px 16px;
    }

    .right-section {
        padding: 25px 16px;
    }

    .form-title {
        font-size: 1.5rem;
    }

    .left-section {
        padding: 20px 0;
    }

    .footer-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* Loading States */
.loading {
    position: relative;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top-color: #6C00B0;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===== Glassy Smooth Cursor ===== */
@media (pointer: fine) {
    body { cursor: default; }
  
    .glass-cursor {
      position: fixed;
      top: 0; left: 0;
      width: 28px; height: 28px;
      border-radius: 50%;
      background: rgba(108, 0, 176, 0.08);
      border: 1px solid rgba(108, 0, 176, 0.25);
      box-shadow: 0 8px 24px rgba(108, 0, 176, 0.15), inset 0 0 12px rgba(255,255,255,0.3);
      backdrop-filter: blur(10px) saturate(120%);
      -webkit-backdrop-filter: blur(10px) saturate(120%);
      pointer-events: none;
      z-index: 9999;
      transform: translate3d(-100px, -100px, 0) scale(1);
      transition: opacity 0.3s ease;
      will-change: transform, opacity;
      opacity: 0;
    }
  
    .glass-cursor.visible { opacity: 1; }
    .glass-cursor.hidden { opacity: 0; }
  
    /* Enlarged style over interactive elements */
    .glass-cursor.cursor-hover {
      background: rgba(108, 0, 176, 0.15);
      border-color: rgba(108, 0, 176, 0.4);
      box-shadow: 0 10px 30px rgba(108, 0, 176, 0.2), inset 0 0 18px rgba(255,255,255,0.4);
    }
  }
  
  /* ===== End Glassy Smooth Cursor ===== */