 :root {
            --primary: #ffdd00;
            --bg-gradient: linear-gradient(135deg, #2a0845 0%, #6441a5 100%);
            --glass: rgba(255, 255, 255, 0.1);
        }

        body {
            margin: 0;
            font-family: 'Inter', sans-serif;
            background: var(--bg-gradient);
            background-attachment: fixed;
            color: white;
            min-height: 100vh;
        }

        .container {
            max-width: 900px;
            margin: 50px auto;
            padding: 20px;
        }

        .back-link {
            text-decoration: none; 
            color: var(--primary); 
            font-weight: 700;
            margin-bottom: 30px;
            display: inline-block;
            background: rgba(255, 221, 0, 0.1);
            padding: 8px 20px;
            border-radius: 50px;
            transition: 0.3s;
        }
        .back-link:hover { background: var(--primary); color: #000; }

        .contact-box {
            background: var(--glass);
            backdrop-filter: blur(20px);
            padding: 50px;
            border-radius: 30px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 25px 50px rgba(0,0,0,0.3);
        }

        h2 { text-align: center; font-size: 2.5rem; margin-bottom: 10px; font-weight: 800; }
        .info-text { text-align: center; opacity: 0.8; margin-bottom: 40px; }

        .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

        .field { margin-bottom: 20px; }
        .field label { display: block; margin-bottom: 8px; font-weight: 600; color: var(--primary); font-size: 0.9rem; }
        
        .field input, .field textarea {
            width: 90%;
            padding: 15px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 12px;
            color: white;
            font-size: 1rem;
            outline: none;
            transition: 0.3s;
        }

        .field input:focus, .field textarea:focus {
            border-color: var(--primary);
            background: rgba(255, 255, 255, 0.1);
        }

        textarea { height: 150px; resize: none; }

        .btn-send {
            width: 100%;
            padding: 18px;
            background: var(--primary);
            color: #000;
            border: none;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 800;
            cursor: pointer;
            transition: 0.3s;
            margin-top: 10px;
            text-transform: uppercase;
        }

        .btn-send:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(255, 221, 0, 0.3); }

        .msg {
            padding: 15px;
            border-radius: 12px;
            text-align: center;
            margin-bottom: 30px;
            font-weight: 600;
        }
        .success { background: #10b981; color: white; }
        .error { background: #ef4444; color: white; }

        .map-section {
            margin-top: 50px;
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.1);
        }

        footer {
            margin-top: 80px;
            text-align: center;
            padding: 40px 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .copyright-warning {
            color: rgba(255, 255, 255, 0.4);
            font-size: 0.75rem;
            max-width: 800px;
            margin: 20px auto;
            text-align: justify;
        }

       /* --- MOBILE OPTIMIZATION (600px Breakpoint) --- */
@media screen and (max-width: 600px) {
    /* 1. Container Adjustments */
    .container {
        padding: 20px 15px; /* Reduce side padding for more screen space */
        margin: 10px auto;
    }

    /* 2. Hero Typography */
    .hero h1 {
        font-size: 1.8rem !important; /* Smaller, readable titles on phones */
        line-height: 1.2;
    }

    /* 3. Grid to List Transformation */
    .feature-grid, .form-grid {
        grid-template-columns: 1fr !important; /* Forces 1 column */
        gap: 15px;
    }

    /* 4. Glassmorphism Card Scaling */
    .feature-card, .contact-box {
        padding: 20px !important; /* Less internal padding */
        border-radius: 15px;
    }

    /* 5. Navigation & Buttons */
    nav {
        display: flex;
        flex-wrap: wrap; /* Wraps menu items if they are too long */
        justify-content: center;
        gap: 10px;
    }

    .btn-main, .btn-send {
        width: 100%; /* Full width buttons for easy thumb tapping */
        font-size: 1rem;
        padding: 15px;
    }

    /* 6. Footer Adjustments */
    .social-icons {
        gap: 20px; /* Closer icons for mobile */
    }

    .social-icons a {
        font-size: 1.8rem !important;
    }

    .copyright-warning {
        text-align: center; /* Better readability on small screens */
        font-size: 0.7rem;
    }

    /* 7. Map Scaling */
    .map-section iframe {
        height: 200px; /* Shorter map on mobile */
    }
}