* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
        --primary: #6366f1;
        --secondary: #ec4899;
        --dark: #ffffff;              /* White background */
        --dark-lighter: #f8fafc;      /* Light gray background */
        --text: #0f172a;              /* Dark text */
        --text-soft: #64748b;         /* Medium gray text */
        --gradient: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
    }

        body {
        font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
        background: #f1f5f9;          /* Light background */
        color: var(--text);
        overflow-x: hidden;
    }

        h1, h2, h3 {
            font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px 20px;
        }

        /* NAVBAR */
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 30px 20px;
            position: sticky;
            top: 0;
            background: rgba(255, 255, 255, 0.95);  
            backdrop-filter: blur(10px);
            z-index: 1000;
            border-bottom: 1px solid rgba(99, 102, 241, 0.15);
            animation: slideDown 0.5s ease;
        }

        @keyframes slideDown {
            from {
                transform: translateY(-100%);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .logo {
            font-size: 35px;
            font-weight: 800;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        nav ul {
            display: flex;
            gap: 35px;
            list-style: none;
            }

        .nav-links {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap:35px;
        }

        .nav-links a {
            color: var(--text);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--primary);
        }

        /* HERO SECTION */
        .contact-hero {
            text-align: center;
            padding: 120px 20px 60px;
            position: relative;
            overflow: hidden;
        }

        .contact-hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: 50%;
            transform: translateX(-50%);
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
            pointer-events: none;
            animation: pulse 4s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.5; }
            50% { transform: translateX(-50%) scale(1.1); opacity: 0.8; }
        }

        .contact-hero h1 {
            font-size: 56px;
            font-weight: 800;
            margin-bottom: 20px;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: fadeInUp 0.8s ease;
            position: relative;
            z-index: 1;
        }

        .contact-hero p {
            font-size: 20px;
            color: var(--text-soft);
            max-width: 600px;
            margin: 0 auto;
            animation: fadeInUp 0.8s ease 0.2s backwards;
            position: relative;
            z-index: 1;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* CONTACT SECTION */
        .contact-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            max-width: 1200px;
            margin: 40px auto 100px;
            padding: 0 20px;
        }

        .contact-form-container {
            background: var(--dark-lighter);
            border-radius: 25px;
            padding: 50px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
            border: 1px solid rgba(99, 102, 241, 0.2);
            animation: fadeInLeft 0.8s ease;
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .contact-form-container h2 {
            font-size: 28px;
            margin-bottom: 25px;
            color: var(--text);
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 10px;
            font-weight: 600;
            color: var(--text);
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 16px 20px;
            background: rgba(255, 255, 255, 0.9);
            border: 1px solid rgba(99, 102, 241, 0.2);
            border-radius: 12px;
            color: var(--text);
            font-size: 15px;
            transition: all 0.3s ease;
            font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
            resize: vertical;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.08);
            background: rgba(15, 23, 42, 0.8);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: var(--text-soft);
        }

        .submit-btn {
            width: 100%;
            padding: 18px;
            background: var(--gradient);
            color: white;
            border: none;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
            position: relative;
            overflow: hidden;
        }

        .submit-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.2);
            transition: left 0.5s ease;
        }

        .submit-btn:hover::before {
            left: 100%;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(99, 102, 241, 0.5);
        }

        /* CONTACT INFO */
        .contact-info {
            animation: fadeInRight 0.8s ease;
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .info-card {
            background: var(--dark-lighter);
            border-radius: 20px;
            padding: 30px;
            margin-bottom: 25px;
            border: 1px solid rgba(99, 102, 241, 0.2);
            transition: all 0.3s ease;
        }

        .info-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(99, 102, 241, 0.2);
            border-color: rgba(99, 102, 241, 0.3);
        }

        .info-card h3 {
            font-size: 20px;
            margin-bottom: 15px;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .info-card h3 i {
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .info-card p {
            color: var(--text-soft);
            line-height: 1.8;
            margin-bottom: 8px;
        }

        .info-card a {
            color: var(--primary);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .info-card a:hover {
            color: var(--secondary);
        }

        .map-container {
            background: var(--dark-lighter);
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid rgba(99, 102, 241, 0.2);
            margin-bottom: 25px;
        }

        .map-container iframe {
            width: 100%;
            height: 300px;
            display: block;
        }

        .social-icons {
            display: flex;
            gap: 15px;
        }

        .social-icons a {
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(99, 102, 241, 0.08);
            border-radius: 50%;
            color: var(--text);
            font-size: 20px;
            transition: all 0.3s ease;
            border: 1px solid rgba(99, 102, 241, 0.2);
        }

        .social-icons a:hover {
            background: var(--gradient);
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 10px 25px rgba(99, 102, 241, 0.4);
        }

        /* SUCCESS MESSAGE */
        .success-message {
            position: fixed;
            top: 100px;
            right: 30px;
            background: var(--dark-lighter);
            border: 2px solid var(--primary);
            padding: 25px 30px;
            border-radius: 15px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
            z-index: 10000;
            opacity: 0;
            transform: translateX(400px);
            transition: all 0.4s ease;
            max-width: 350px;
        }

        .success-message.show {
            opacity: 1;
            transform: translateX(0);
        }

        .success-message i {
            font-size: 24px;
            color: var(--primary);
            margin-right: 15px;
        }

        .success-message p {
            display: inline;
            color: var(--text);
            font-weight: 600;
        }

        /* FOOTER */
        footer {
            background: var(--dark-lighter);
            padding: 40px 20px;
            text-align: center;
            border-top: 1px solid rgba(99, 102, 241, 0.08);
        }

        footer p {
            color: var(--text-soft);
            font-size: 14px;
        }

        /* RESPONSIVE */
        @media (max-width: 968px) {
            .contact-section {
                grid-template-columns: 1fr;
            }

            .contact-hero h1 {
                font-size: 36px;
            }

            .contact-hero p {
                font-size: 16px;
            }

            .nav-links {
                gap: 15px;
                font-size: 14px;
            }

            .contact-form-container {
                padding: 30px;
            }

            .success-message {
                top: 80px;
                right: 20px;
                left: 20px;
                max-width: none;
            }
        }