/* --- 1. Base Reset & Typography --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Inter:wght@300;400;700&display=swap');

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

html, body {
    width: 100%;
    overflow-x: hidden;
    background-color: #0f0f0f;
    color: white;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

/* --- 2. Animations --- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- 3. Shared Navigation --- */
nav {
    position: fixed; 
    top: 0; 
    width: 100%; 
    padding: 20px 50px;
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    background: rgba(15, 15, 15, 0.85); 
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1000; 
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.logo { 
    font-size: 1.1rem; 
    letter-spacing: 4px; 
    text-transform: lowercase; 
    color: white; 
    text-decoration: none; 
}

.logo::after { 
    content: '.'; 
    color: #d4af37; 
    font-weight: 800; 
}

.nav-links { 
    display: flex; 
    gap: 30px; 
    align-items: center;
}

.nav-links a { 
    color: white; 
    text-decoration: none; 
    font-size: 0.8rem; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    transition: 0.3s ease; 
}

.nav-links a:hover { 
    color: #d4af37; 
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.bar {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: 0.3s ease;
}

/* --- 4. Contact Hero Section --- */
.contact-hero {
    padding: 160px 5% 60px;
    text-align: center;
    background: linear-gradient(to bottom, #1a1a1a, #0f0f0f);
}

.contact-hero h1 { 
    font-family: 'Playfair Display', serif; 
    font-size: clamp(2.5rem, 6vw, 4rem); 
    margin-bottom: 15px; 
    animation: fadeInUp 0.8s ease-out;
}

.contact-hero h1 span { 
    color: #d4af37; 
}

.contact-hero p { 
    opacity: 0.6; 
    font-size: 1.1rem; 
    letter-spacing: 1px; 
    max-width: 600px;
    margin: 0 auto;
}

/* --- 5. Contact Layout --- */
.contact-container {
    max-width: 1200px;
    margin: 0 auto 100px;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    animation: fadeInUp 1s ease-out;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.info-item h3 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #d4af37;
    margin-bottom: 12px;
}

.info-item p, .info-item a {
    font-size: 1.1rem;
    color: white;
    text-decoration: none;
    display: block;
    transition: 0.3s ease;
}

.info-item a:hover { 
    color: #d4af37; 
    transform: translateX(5px);
}

.map-wrapper {
    margin-top: 20px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    height: 250px;
}

/* --- 6. Form Styles --- */
.contact-form {
    background: rgba(255, 255, 255, 0.03);
    padding: 50px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-group { 
    margin-bottom: 25px; 
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 10px;
    opacity: 0.7;
    letter-spacing: 1px;
}

.form-group input, 
.form-group textarea, 
.form-select {
    width: 100%;
    padding: 15px;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    font-family: 'Inter', sans-serif;
    border-radius: 4px;
    transition: 0.3s ease;
}

.form-select option {
    background: #1a1a1a;
    color: white;
}

.form-group input:focus, 
.form-group textarea:focus,
.form-select:focus {
    outline: none;
    border-color: #d4af37;
    background: rgba(0,0,0,0.5);
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: white;
    color: black;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 4px;
}

.submit-btn:hover {
    background: #d4af37;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

/* --- 7. Shared Footer --- */
footer { 
    padding: 60px 20px; 
    background: #0a0a0a; 
    text-align: center; 
    border-top: 1px solid rgba(255,255,255,0.05); 
}

footer p {
    font-size: 0.9rem;
    opacity: 0.6;
}

.social-media { 
    margin-top: 25px; 
    display: flex; 
    justify-content: center; 
    gap: 30px; 
}

.social-media a { 
    color: white; 
    text-decoration: none; 
    font-size: 0.8rem; 
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.6; 
    transition: 0.3s ease; 
}

.social-media a:hover { 
    opacity: 1; 
    color: #d4af37; 
}

/* --- 8. Responsive Fixes --- */
@media (max-width: 968px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-form { 
        padding: 30px; 
    }
}

@media (max-width: 768px) {
    nav { 
        padding: 15px 25px; 
    }

    .menu-toggle { 
        display: flex; 
    }

    .nav-links {
        position: fixed; 
        right: -100%; 
        top: 0; 
        height: 100vh; 
        width: 75%;
        background: rgba(10, 10, 10, 0.98); 
        backdrop-filter: blur(15px);
        flex-direction: column; 
        justify-content: center; 
        align-items: center;
        transition: 0.5s cubic-bezier(0.77, 0.2, 0.05, 1); 
        gap: 40px;
    }

    .nav-links.active { 
        right: 0; 
    }

    /* Hamburger Animation to X */
    .menu-toggle.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .menu-toggle.active .bar:nth-child(2) { opacity: 0; }
    .menu-toggle.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    .contact-hero { 
        padding: 120px 5% 40px; 
    }
}
/* --- Floating WhatsApp Button --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 9999;
    transition: all 0.3s ease;
}

.whatsapp-float img {
    width: 25px;
    height: 25px;
}

.whatsapp-float:hover {
    transform: translateY(-5px);
    background-color: #20ba5a;
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
}

/* Mobile Adjustments for the Floating Button */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        padding: 10px; /* Smaller padding on phones */
    }
    
    .whatsapp-float span {
        display: none; /* Hides the text "Chat with us" on small phones to save space */
    }
    
    .whatsapp-float img {
        width: 30px; /* Makes the icon slightly larger for easier tapping */
        height: 30px;
    }
}
/* --- Enhanced Mobile Responsiveness --- */

/* 1. Global Scaling for Mobile */
@media (max-width: 768px) {
    nav {
        padding: 15px 20px;
    }

    .contact-hero {
        padding: 100px 5% 40px; /* Reduced top padding */
    }

    .contact-hero h1 {
        font-size: 2.2rem; /* Scaled down for mobile screens */
    }

    .contact-container {
        grid-template-columns: 1fr; /* Force single column */
        gap: 30px;
        margin-bottom: 50px;
    }

    /* 2. Info Sidebar Adjustments */
    .contact-info {
        order: 2; /* Put info below the form on mobile */
        text-align: center;
        gap: 25px;
    }

    .info-item h3 {
        font-size: 0.7rem;
    }

    .info-item p, .info-item a {
        font-size: 1rem;
    }

    /* 3. Form Enhancements for Touch */
    .contact-form {
        order: 1; /* Form appears first for better UX */
        padding: 25px 20px;
        border-radius: 8px;
    }

    .form-group input, 
    .form-group textarea, 
    .form-select {
        font-size: 16px; /* Prevents iOS from auto-zooming on focus */
        padding: 12px;
    }

    .submit-btn {
        padding: 15px;
        font-size: 0.9rem;
    }

    /* 4. Map Adjustment */
    .map-wrapper {
        height: 180px;
        margin-top: 10px;
    }

    /* 5. Floating Button Tweak */
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        padding: 8px 15px;
    }
}

/* Extra Small Devices (Phones under 400px wide) */
@media (max-width: 480px) {
    .logo {
        font-size: 0.9rem;
        letter-spacing: 2px;
    }
    
    .contact-hero h1 {
        font-size: 1.8rem;
    }
}
/* --- 1. Base Reset & Typography --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Inter:wght@300;400;700&display=swap');

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

html, body {
    width: 100%;
    overflow-x: hidden;
    background-color: #0f0f0f;
    color: white;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

/* --- 2. Animations --- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- 3. Shared Navigation --- */
nav {
    position: fixed; 
    top: 0; 
    width: 100%; 
    padding: 20px 50px;
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    background: rgba(15, 15, 15, 0.85); 
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1000; 
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.logo { 
    font-size: 1.1rem; 
    letter-spacing: 4px; 
    text-transform: lowercase; 
    color: white; 
    text-decoration: none; 
}

.logo::after { 
    content: '.'; 
    color: #d4af37; 
    font-weight: 800; 
}

.nav-links { 
    display: flex; 
    gap: 30px; 
    align-items: center;
}

.nav-links a { 
    color: white; 
    text-decoration: none; 
    font-size: 0.8rem; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    transition: 0.3s ease; 
}

.nav-links a:hover { 
    color: #d4af37; 
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.bar {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: 0.3s ease;
}

/* --- 4. Contact Hero Section --- */
.contact-hero {
    padding: 160px 5% 60px;
    text-align: center;
    background: linear-gradient(to bottom, #1a1a1a, #0f0f0f);
}

.contact-hero h1 { 
    font-family: 'Playfair Display', serif; 
    font-size: clamp(2.5rem, 6vw, 4rem); 
    margin-bottom: 15px; 
    animation: fadeInUp 0.8s ease-out;
}

.contact-hero h1 span { 
    color: #d4af37; 
}

.contact-hero p { 
    opacity: 0.6; 
    font-size: 1.1rem; 
    letter-spacing: 1px; 
    max-width: 600px;
    margin: 0 auto;
}

/* --- 5. Contact Layout --- */
.contact-container {
    max-width: 1200px;
    margin: 0 auto 100px;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    animation: fadeInUp 1s ease-out;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.info-item h3 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #d4af37;
    margin-bottom: 12px;
}

.info-item p, .info-item a {
    font-size: 1.1rem;
    color: white;
    text-decoration: none;
    display: block;
    transition: 0.3s ease;
}

.info-item a:hover { 
    color: #d4af37; 
    transform: translateX(5px);
}

.map-wrapper {
    margin-top: 20px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    height: 250px;
}

/* --- 6. Form Styles --- */
.contact-form {
    background: rgba(255, 255, 255, 0.03);
    padding: 50px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-group { 
    margin-bottom: 25px; 
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 10px;
    opacity: 0.7;
    letter-spacing: 1px;
}

.form-group input, 
.form-group textarea, 
.form-select {
    width: 100%;
    padding: 15px;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    font-family: 'Inter', sans-serif;
    border-radius: 4px;
    transition: 0.3s ease;
}

.form-select option {
    background: #1a1a1a;
    color: white;
}

.form-group input:focus, 
.form-group textarea:focus,
.form-select:focus {
    outline: none;
    border-color: #d4af37;
    background: rgba(0,0,0,0.5);
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: white;
    color: black;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 4px;
}

.submit-btn:hover {
    background: #d4af37;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

/* --- 7. Shared Footer --- */
footer { 
    padding: 60px 20px; 
    background: #0a0a0a; 
    text-align: center; 
    border-top: 1px solid rgba(255,255,255,0.05); 
}

footer p {
    font-size: 0.9rem;
    opacity: 0.6;
}

.social-media { 
    margin-top: 25px; 
    display: flex; 
    justify-content: center; 
    gap: 30px; 
}

.social-media a { 
    color: white; 
    text-decoration: none; 
    font-size: 0.8rem; 
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.6; 
    transition: 0.3s ease; 
}

.social-media a:hover { 
    opacity: 1; 
    color: #d4af37; 
}

/* --- 8. Responsive Fixes --- */
@media (max-width: 968px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-form { 
        padding: 30px; 
    }
}

@media (max-width: 768px) {
    nav { 
        padding: 15px 25px; 
    }

    .menu-toggle { 
        display: flex; 
    }

    .nav-links {
        position: fixed; 
        right: -100%; 
        top: 0; 
        height: 100vh; 
        width: 75%;
        background: rgba(10, 10, 10, 0.98); 
        backdrop-filter: blur(15px);
        flex-direction: column; 
        justify-content: center; 
        align-items: center;
        transition: 0.5s cubic-bezier(0.77, 0.2, 0.05, 1); 
        gap: 40px;
    }

    .nav-links.active { 
        right: 0; 
    }

    /* Hamburger Animation to X */
    .menu-toggle.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .menu-toggle.active .bar:nth-child(2) { opacity: 0; }
    .menu-toggle.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    .contact-hero { 
        padding: 120px 5% 40px; 
    }
}
/* --- Floating WhatsApp Button --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 9999;
    transition: all 0.3s ease;
}

.whatsapp-float img {
    width: 25px;
    height: 25px;
}

.whatsapp-float:hover {
    transform: translateY(-5px);
    background-color: #20ba5a;
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
}

/* Mobile Adjustments for the Floating Button */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        padding: 10px; /* Smaller padding on phones */
    }
    
    .whatsapp-float span {
        display: none; /* Hides the text "Chat with us" on small phones to save space */
    }
    
    .whatsapp-float img {
        width: 30px; /* Makes the icon slightly larger for easier tapping */
        height: 30px;
    }
}
/* --- Enhanced Mobile Responsiveness --- */

/* 1. Global Scaling for Mobile */
@media (max-width: 768px) {
    nav {
        padding: 15px 20px;
    }

    .contact-hero {
        padding: 100px 5% 40px; /* Reduced top padding */
    }

    .contact-hero h1 {
        font-size: 2.2rem; /* Scaled down for mobile screens */
    }

    .contact-container {
        grid-template-columns: 1fr; /* Force single column */
        gap: 30px;
        margin-bottom: 50px;
    }

    /* 2. Info Sidebar Adjustments */
    .contact-info {
        order: 2; /* Put info below the form on mobile */
        text-align: center;
        gap: 25px;
    }

    .info-item h3 {
        font-size: 0.7rem;
    }

    .info-item p, .info-item a {
        font-size: 1rem;
    }

    /* 3. Form Enhancements for Touch */
    .contact-form {
        order: 1; /* Form appears first for better UX */
        padding: 25px 20px;
        border-radius: 8px;
    }

    .form-group input, 
    .form-group textarea, 
    .form-select {
        font-size: 16px; /* Prevents iOS from auto-zooming on focus */
        padding: 12px;
    }

    .submit-btn {
        padding: 15px;
        font-size: 0.9rem;
    }

    /* 4. Map Adjustment */
    .map-wrapper {
        height: 180px;
        margin-top: 10px;
    }

    /* 5. Floating Button Tweak */
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        padding: 8px 15px;
    }
}

/* Extra Small Devices (Phones under 400px wide) */
@media (max-width: 480px) {
    .logo {
        font-size: 0.9rem;
        letter-spacing: 2px;
    }
    
    .contact-hero h1 {
        font-size: 1.8rem;
    }
}
/* --- 1. The "Golden Thread" Shine --- */
@keyframes glassShine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* --- 2. Floating Background Orbs --- */
.bg-orb {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, rgba(15, 15, 15, 0) 70%);
    z-index: -1;
    filter: blur(80px);
    animation: orbMove 20s infinite alternate ease-in-out;
}

@keyframes orbMove {
    from { transform: translate(-10%, -10%); }
    to { transform: translate(20%, 20%); }
}

/* --- 3. Magnetic Hover for Form Fields --- */
.form-group {
    position: relative;
    overflow: hidden;
}

.form-group input, .form-group textarea {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    z-index: 2;
    position: relative;
}

/* The Secret "Focus Glow" */
.form-group::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: #d4af37;
    transition: width 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 3;
}

.form-group:focus-within::after {
    width: 100%;
}

/* --- 4. Letter-by-Letter Entrance --- */
.contact-hero h1 span {
    display: inline-block;
    animation: letterReveal 1s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

@keyframes letterReveal {
    0% { transform: translateY(100%); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

/* --- 5. The "World Popular" Submit Interaction --- */
.submit-btn {
    transition: all 0.5s cubic-bezier(0.2, 1, 0.2, 1);
    letter-spacing: 5px;
}

.submit-btn:hover {
    letter-spacing: 10px;
    background: #d4af37;
    color: white;
    transform: scale(1.02);
}

.submit-btn:active {
    transform: scale(0.98);
}
/* --- 1. Luxury Text "Shimmer" Effect --- */
@keyframes textShimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.contact-hero h1 {
    background: linear-gradient(90deg, #ffffff, #d4af37, #ffffff);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShimmer 4s linear infinite;
}

/* --- 2. Interactive Glass-Card Glow --- */
.contact-form {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(212, 175, 55, 0.1), transparent 30%);
    animation: rotateGlow 6s linear infinite;
    z-index: -1;
}

@keyframes rotateGlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* --- 3. Magnetic Focus for Inputs --- */
.form-group input, .form-group textarea, .form-select {
    border-left: 0px solid #d4af37;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.form-group input:focus {
    border-left: 5px solid #d4af37;
    padding-left: 20px;
    transform: translateX(5px);
}

/* --- 4. The "World Popular" Submit Button Ripple --- */
.submit-btn {
    overflow: hidden;
    position: relative;
}

.submit-btn::after {
    content: '';
    position: absolute;
    width: 20px; height: 200px;
    background: rgba(255,255,255,0.4);
    top: -50px; left: -100px;
    transform: rotate(35deg);
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.submit-btn:hover::after {
    left: 120%;
}
/* --- 1. Luxury Text "Shimmer" Effect --- */
@keyframes textShimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.contact-hero h1 {
    background: linear-gradient(90deg, #ffffff, #d4af37, #ffffff);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShimmer 4s linear infinite;
}

/* --- 2. Interactive Glass-Card Glow --- */
.contact-form {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(212, 175, 55, 0.1), transparent 30%);
    animation: rotateGlow 6s linear infinite;
    z-index: -1;
}

@keyframes rotateGlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* --- 3. Magnetic Focus for Inputs --- */
.form-group input, .form-group textarea, .form-select {
    border-left: 0px solid #d4af37;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.form-group input:focus {
    border-left: 5px solid #d4af37;
    padding-left: 20px;
    transform: translateX(5px);
    background: rgba(212, 175, 55, 0.05);
}

/* --- 4. The "World Popular" Submit Button Ripple --- */
.submit-btn {
    overflow: hidden;
    position: relative;
    transition: 0.5s cubic-bezier(0.2, 1, 0.2, 1);
}

.submit-btn::after {
    content: '';
    position: absolute;
    width: 40px; height: 300px;
    background: rgba(255,255,255,0.4);
    top: -100px; left: -150px;
    transform: rotate(35deg);
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.submit-btn:hover::after {
    left: 120%;
}

.submit-btn:hover {
    letter-spacing: 4px;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
}
/* --- SUPER ANIMATIONS BLOCK (append) --- */
/* color cycle for yellow white red */
@keyframes colorCycle {0%{color:#d4af37;}33%{color:#fff;}66%{color:#f00;}100%{color:#d4af37;}}
.color-cycle { animation: colorCycle 3s infinite; }

/* slow blink */
@keyframes flashSlow { 0%,50%,100%{opacity:1;}25%,75%{opacity:0;} }
.flash-slow { animation: flashSlow 2s infinite; }

@keyframes swirl { from{transform:rotate(0);}to{transform:rotate(720deg);} }
@keyframes spiral { 0%{transform:scale(0) rotate(0);}100%{transform:scale(1) rotate(1080deg);} }
@keyframes bounceIn { 0%{opacity:0;transform:scale(0.3);}50%{opacity:1;transform:scale(1.05);}70%{transform:scale(0.9);}100%{transform:scale(1);} }
@keyframes bounceOut { 0%{transform:scale(1);}20%{transform:scale(1.1);}100%{opacity:0;transform:scale(0.3);} }
@keyframes slideInBounce { 0%{transform:translateX(-100%) scale(0);}60%{transform:translateX(30%) scale(1.1);}80%{transform:translateX(-10%) scale(0.9);}100%{transform:translateX(0) scale(1);} }
@keyframes flash { 0%,50%,100%{opacity:1;}25%,75%{opacity:0;} }
@keyframes zigzag { 0%{transform:translate(0);}25%{transform:translate(25px,-25px);}50%{transform:translate(-25px,25px);}75%{transform:translate(25px,25px);}100%{transform:translate(0);} }
@keyframes circleScale { 0%{transform:scale(0);}100%{transform:scale(1);} }
@keyframes popBottom { 0%{opacity:0;transform:translateY(100px);}100%{opacity:1;transform:translateY(0);} }
@keyframes popTop { 0%{opacity:0;transform:translateY(-100px);}100%{opacity:1;transform:translateY(0);} }
@keyframes popLeft { 0%{opacity:0;transform:translateX(-100px);}100%{opacity:1;transform:translateX(0);} }
@keyframes popRight { 0%{opacity:0;transform:translateX(100px);}100%{opacity:1;transform:translateX(0);} }
@keyframes wobble2 { 0%{transform:translateX(0);}15%{transform:translateX(-25%) rotate(-5deg);}30%{transform:translateX(20%) rotate(3deg);}45%{transform:translateX(-15%) rotate(-3deg);}60%{transform:translateX(10%) rotate(2deg);}75%{transform:translateX(-5%) rotate(-1deg);}100%{transform:translateX(0);} }
@keyframes rollOut { 0%{opacity:1;transform:translateX(0) rotate(0);}100%{opacity:0;transform:translateX(100%) rotate(120deg);} }
@keyframes fadeInSlow { 0%{opacity:0;}100%{opacity:1;} }
@keyframes fadeOutSlow { 0%{opacity:1;}100%{opacity:0;} }
@keyframes rightShake { 0%,100%{transform:translateX(0);}20%,60%{transform:translateX(10px);}40%,80%{transform:translateX(-10px);} }
@keyframes topBounce { 0%,100%{transform:translateY(0);}50%{transform:translateY(-20px);} }
@keyframes bottomBounce { 0%,100%{transform:translateY(0);}50%{transform:translateY(20px);} }
@keyframes scaleUpDown { 0%,100%{transform:scale(1);}50%{transform:scale(1.2);} }
@keyframes skew { 0%{transform:skewX(0);}50%{transform:skewX(20deg);}100%{transform:skewX(0);} }
@keyframes tilt { 0%,100%{transform:rotate(0);}50%{transform:rotate(10deg);} }
@keyframes slideZoom { 0%{transform:translateY(100%) scale(0);}100%{transform:translateY(0) scale(1);} }
@keyframes ripple { 0%{box-shadow:0 0 0 0 rgba(212,175,55,0.7);}100%{box-shadow:0 0 0 20px rgba(212,175,55,0);} }
@keyframes heartbeat { 0%,100%{transform:scale(1);}14%{transform:scale(1.3);}28%{transform:scale(1);}42%{transform:scale(1.3);}70%{transform:scale(1);} }
@keyframes hanging { 0%{transform:translateY(-100%);}100%{transform:translateY(0);} }
@keyframes creeping { 0%{transform:translateX(-100%);}100%{transform:translateX(0);} }
@keyframes popping { 0%{transform:scale(0);opacity:0;}100%{transform:scale(1);opacity:1;} }
@keyframes vanishing { 0%{opacity:1;}100%{opacity:0;} }
@keyframes spring { 0%{transform:scaleY(1);}30%{transform:scaleY(1.5);}40%{transform:scaleY(1);}50%{transform:scaleY(1.25);}65%{transform:scaleY(0.9);}75%{transform:scaleY(1);} }
@keyframes rollIn2 { 0%{opacity:0;transform:translateX(-100%) rotate(-120deg);}100%{opacity:1;transform:translateX(0) rotate(0);} }
@keyframes rollOut2 { 0%{opacity:1;transform:translateX(0) rotate(0);}100%{opacity:0;transform:translateX(100%) rotate(120deg);} }

/* helper classes for super animations */
.swirl { animation: swirl 2s linear infinite; }
.spiral { animation: spiral 3s linear infinite; }
.bounce-in { animation: bounceIn 1s ease both; }
.bounce-out { animation: bounceOut 1s ease both; }
.slide-in-bounce { animation: slideInBounce 1s ease both; }
.flash { animation: flash 1s infinite; }
.zigzag { animation: zigzag 1.5s ease infinite; }
.circle-scale { animation: circleScale 0.5s ease both; }
.pop-bottom { animation: popBottom 0.6s ease both; }
.pop-top { animation: popTop 0.6s ease both; }
.pop-left { animation: popLeft 0.6s ease both; }
.pop-right { animation: popRight 0.6s ease both; }
.wobble2 { animation: wobble2 1.2s ease both; }
.roll-out { animation: rollOut 0.8s ease both; }
.fade-in-slow { animation: fadeInSlow 2s ease both; }
.fade-out-slow { animation: fadeOutSlow 2s ease both; }
.right-shake { animation: rightShake 0.6s ease both; }
.top-bounce { animation: topBounce 1s infinite; }
.bottom-bounce { animation: bottomBounce 1s infinite; }
.scale-up-down { animation: scaleUpDown 1s infinite; }
.skew { animation: skew 1s ease both; }
.tilt { animation: tilt 1s ease both; }
.slide-zoom { animation: slideZoom 0.8s ease both; }
.ripple { animation: ripple 1.5s ease infinite; }
.heartbeat { animation: heartbeat 1.5s ease infinite; }
.hanging { animation: hanging 0.5s ease both; }
.creeping { animation: creeping 1s ease both; }
.popping { animation: popping 0.5s ease both; }
.vanishing { animation: vanishing 0.5s ease both; }
.spring { animation: spring 1s ease both; }
.roll-in2 { animation: rollIn2 0.8s ease both; }
.roll-out2 { animation: rollOut2 0.8s ease both; }

/* --- end of super animations block --- */
