/* maa/assets/css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary-gold: #d4af37;
    --gold-gradient: linear-gradient(135deg, #d4af37 0%, #aa7c11 100%);
    --bg-dark: #121212;
    --bg-darker: #0a0a0a;
    --text-light: #f5f5f5;
    --text-muted: #a0a0a0;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --premium-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
}
.text-gold {
    color: var(--primary-gold) !important;
}
.bg-gold {
    background: var(--gold-gradient) !important;
}
.text-muted {
    color: var(--text-muted) !important;
}

/* Glassmorphism Classes */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    box-shadow: var(--premium-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.5);
    border-color: var(--primary-gold);
}

/* Custom Buttons */
.btn-gold {
    background: var(--gold-gradient);
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}
.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
    color: #fff;
}
.btn-outline-gold {
    background: transparent;
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
    border-radius: 30px;
    padding: 8px 23px;
    transition: all 0.3s ease;
}
.btn-outline-gold:hover {
    background: var(--gold-gradient);
    color: #fff;
    border-color: transparent;
}

/* Navbar */
.navbar {
    background: rgba(10, 10, 10, 0.9) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    padding: 15px 0;
}
.navbar-brand img {
    height: 50px;
    border-radius: 5px;
}
.nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    position: relative;
    margin: 0 10px;
    transition: color 0.3s;
}
.nav-link:hover, .nav-link.active {
    color: var(--primary-gold) !important;
}
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}
.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('../images/hero-bg.jpg') no-repeat center center/cover;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;left: 0;right: 0;bottom: 0;
    background: rgba(0, 0, 0, 0.7);
}
.hero-content {
    position: relative;
    z-index: 1;
}

/* Marquee */
.marquee-wrapper {
    background: var(--bg-darker);
    border-top: 1px solid var(--primary-gold);
    border-bottom: 1px solid var(--primary-gold);
    padding: 10px 0;
    overflow: hidden;
    position: relative;
}
.marquee-content {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
    color: var(--primary-gold);
    font-weight: 500;
}
@keyframes marquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Footer */
.footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--glass-border);
    padding: 60px 0 20px;
    margin-top: 50px;
}
.footer-heading {
    color: var(--primary-gold);
    margin-bottom: 20px;
}

/* Sticky Contact Buttons */
.sticky-contact-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.contact-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    box-shadow: var(--premium-shadow);
    text-decoration: none;
    transition: transform 0.3s;
}

.contact-btn:hover {
    transform: scale(1.1);
    color: white;
}

.call-btn {
    background: #3a86ff;
    animation: pulse-blue 2s infinite;
}

.whatsapp-btn {
    background: #25d366;
    animation: pulse-green 2s infinite;
    animation-delay: 1s;
}

@keyframes pulse-blue {
    0% { box-shadow: 0 0 0 0 rgba(58, 134, 255, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(58, 134, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(58, 134, 255, 0); }
}

@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Loading Screen */
#loader {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: var(--bg-darker);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeOutLoader 0.4s ease-in-out 0.6s forwards;
}
@keyframes fadeOutLoader {
    0% { opacity: 1; visibility: visible; }
    99% { opacity: 0; visibility: visible; }
    100% { opacity: 0; visibility: hidden; pointer-events: none; display: none; }
}
.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary-gold);
    animation: spin 1s ease-in-out infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}

/* OTP Verification Popup */
.otp-digit { width: 45px; height: 50px; text-align: center; font-size: 20px; font-weight: bold; border: 2px solid #ccc; border-radius: 8px; margin: 0 4px; }
.otp-digit:focus { border-color: var(--primary-gold); outline: none; box-shadow: 0 0 5px rgba(212, 175, 55, 0.5); }
.otp-container { display: flex; justify-content: center; margin-top: 15px; margin-bottom: 20px; }
