        :root {
            --gold-dark: #b8972e;
            --gold:rgb(230, 186, 106);
            --black: #000000;
            --dark-bg: #1a1a1a;
        }

        body {
            background-color: var(--black);
            color: #fff;
            font-family: 'Cinzel', serif;
        }

        #header {
            background: linear-gradient(to right, rgba(15,15,15,0.95), rgba(26,26,26,0.8));
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            border-bottom: 1px solid rgba(212, 175, 55, 0.2);
            transition: all 0.4s ease;
        }

        #header.scrolled {
            background: rgba(15, 15, 15, 0.98);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        .header-container {
            padding: 1rem 0;
        }

        .header-container {
            padding: 1rem 0;
            display: flex;
            align-items: center;
            position: relative;              
            flex-wrap: wrap;
            gap: 3rem;   
            justify-content: space-between;                    
        }

        /* Brand */
        .brand {
            text-decoration: none;
        }

        .logo-img {
            height: 60px;
            width: auto;
            transition: transform 0.3s ease;
        }

        .logo-img:hover {
            transform: scale(1.08);
        }
        .logo-video {
            height: 1em;      
            width: auto;
            vertical-align: middle;
        }

        .brand-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--gold);
            margin: 0;
            letter-spacing: 1px;
            text-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
            line-height: 1;
        }

        .brand-tagline {
            font-size: 0.85rem;
            color: #aaa;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-weight: 300;
            margin-top: 3px;
        }

        /* Navigation */
        .nav-links {
            list-style: none;
            display: flex;
            gap: 2.5rem;
            margin: 0;
            padding: 0;
        }

        .nav-links a {
            color: #ccc;
            text-decoration: none;
            font-weight: 500;
            letter-spacing: 1px;
            position: relative;
            transition: all 0.3s ease;
            padding: 0.5rem 0;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--gold) !important;
        }

        /* Gold underline hover effect */
        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 50%;
            background: var(--gold);
            transition: all 0.4s ease;
            transform: translateX(-50%);
        }

        .nav-links a:hover::after,
        .nav-links a.active::after {
            /* width: 100%; */
             width: 100% !important;
            background: var(--gold);
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
        }
        #header.scrolled .nav-links a.active::after {
            height: 3px;
        }
        /* Mobile Menu Button */
        .mobile-menu {
            display: none;
            background: transparent;
            border: none;
            color: var(--gold);
            font-size: 2rem;
            cursor: pointer;
            padding: 0.5rem;
        }

        /* Mobile Responsive */
        @media (max-width: 992px) {
            .nav-links {
                position: fixed;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(15, 15, 15, 0.98);
                flex-direction: column;
                align-items: center;
                padding: 2rem 0;
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: all 0.4s ease;
                border-top: 1px solid rgba(212, 175, 55, 0.2);
            }

            .nav-links.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
                gap: 0px;
                width: 50%;
                left: 50%;
            }

            .nav-links li {
                margin: 0.5rem 0;
            }

            .mobile-menu {
                display: block;
            }

            .brand-title {
                font-size: 1.7rem;
            }
        }
        
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&display=swap');

/* Optional animated gold particles overlay (luxury touch) */
.hero-bg::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(212,175,55,0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(212,175,55,0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 2;
}

/* Gold Text Color */
.text-gold {
    color: var(--gold) !important;
}

/* Custom Gold Button */
.btn-gold {
    background: linear-gradient(135deg, #f1d08a 0%, #d4af37 50%, #b8972e 100%);
    border: none;
    color: #000;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, #fff 0%, #d4af37 100%);
    color: #000;
}

.btn-outline-gold {
    border: 2px solid var(--gold);
    color: var(--gold);
    background: transparent;
    transition: all 0.4s ease;
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

/* Hero Image Luxury Effect */
.hero-image {
    max-width: 100%;
    height: auto;
    border: 3px solid rgba(212, 175, 55, 0.3);
    transition: all 0.6s ease;
    object-fit: cover;
}

.hero-image:hover {
    transform: scale(1.03);
    border-color: var(--gold);
    box-shadow: 0 30px 60px rgba(0,0,0,0.7);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero-container {
        text-align: center;
    }
    .hero-content h1 {
        font-size: 2.8rem !important;
    }
    .hero-image {
        max-height: 400px;
        object-fit: cover;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2.4rem !important;
    }
    .btn-gold, .btn-outline-gold {
        width: 100%;
        max-width: 280px;
    }
}

/* Services Section - Luxury Black & Gold */
.services {
    background: var(--black);
    position: relative;
    padding: 80px 0;
}

/* Service Cards */
.service-card {
    background: rgba(30, 30, 30, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-15px);
    border-color: var(--gold);
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.15);
    background: rgba(40, 40, 40, 0.9);
}

.service-icon i {
    font-size: 1rem;
    color: var(--gold);
    opacity: 0.9;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon i {
    transform: scale(1.15);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

.service-features li {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}
.service-card h4{
    font-size: 1rem;
}

/* Highlighted Premium Card */
.highlight-card {
    background: linear-gradient(135deg, rgba(50, 40, 20, 0.9), rgba(30, 25, 15, 0.95));
    border: 2px solid var(--gold) !important;
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
    transform: scale(1.03);
}

.highlight-card:hover {
    transform: translateY(-15px) scale(1.05) !important;
    box-shadow: 0 30px 60px rgba(212, 175, 55, 0.3);
}
#high_lighted_premium a{
    text-decoration: none;
    color: var(--gold);
}
.premium-badge {
    position: absolute;
    top: 16px;
    right: -60px;
    background: var(--gold);
    color: #000;
    padding: 8px 50px;
    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 1px;
    transform: rotate(45deg);
    z-index: 2;
}

.cta-badge {
    margin-top: 1.5rem;
    padding: 10px 20px;
    background: linear-gradient(90deg, var(--gold), #f1d08a);
    color: #000;
    border-radius: 50px;
    font-weight: bold;
    font-size: 0.9rem;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* CTA Section */
.services-cta {
    background: linear-gradient(rgba(20,20,20,0.95), rgba(10,10,10,0.98)),
                url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?ixlib=rb-4.0.3&auto=format&fit=crop&q=80') center/cover;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(212,175,55,0.05), transparent, rgba(212,175,55,0.08));
}

/* Responsive */
@media (max-width: 768px) {
    .services {
        padding: 80px 0;
    }
    .premium-badge {
        right: -45px;
        font-size: 0.75rem;
        padding: 6px 45px;
    }
}

/* Why Choose Us - Luxury Black & Gold */
.why-choose {
    background: var(--black);
    padding: 140px 0;
    position: relative;
}

/* Gold underline below title */
.underline-gold {
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    border-radius: 2px;
}

/* Feature Cards - Glassmorphism + Luxury */
.feature-card {
    background: rgba(35, 35, 35, 0.6);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 1;
}

.feature-card:hover {
    transform: translateY(-20px);
    border-color: var(--gold);
    background: rgba(45, 45, 45, 0.9);
    box-shadow: 0 30px 60px rgba(212, 175, 55, 0.18);
}

.feature-icon i {
    font-size: 3.8rem;
    background: linear-gradient(135deg, var(--gold), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.5));
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon i {
    transform: scale(1.2) rotate(5deg);
}

/* Subtle shine hover effect */
.shine-effect {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, transparent 30%, rgba(212, 175, 55, 0.15) 50%, transparent 70%);
    transform: rotate(30deg);
    opacity: 0;
    transition: all 0.6s ease;
    pointer-events: none;
}

.feature-card:hover .shine-effect {
    opacity: 1;
    animation: shine 2s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(30deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(30deg); }
}



/* Responsive */
@media (max-width: 768px) {
    .why-choose {
        padding: 100px 0;
    }
    .feature-card {
        padding: 2rem 1.5rem;
    }
    .feature-icon i {
        font-size: 3rem;
    }
}

/* About Section - Luxury Black & Gold */
.about {
    background: var(--black);
    padding: 140px 0;
    position: relative;
}

/* Reuse underline from Why Choose section */
.underline-gold {
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    border-radius: 2px;
}

/* About Text Card */
.about-text {
    background: rgba(30, 30, 30, 0.7);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.5s ease;
    z-index: 1;
}

.about-text:hover {
    border-color: var(--gold);
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.15);
    transform: translateY(-10px);
}

/* Luxury Image Wrapper */
.image-wrapper {
    position: relative;
    border: 3px solid rgba(212, 175, 55, 0.3);
    transition: all 0.6s ease;
}

.image-wrapper:hover {
    border-color: var(--gold);
    transform: scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

/* Floating Gold Badge */
.year-badge {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, #1a1a1a 0%, #0f0f0f 100%);
    border: 4px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 0 60px rgba(212, 175, 55, 0.6),
        inset 0 0 40px rgba(212, 175, 55, 0.2);
    animation: badgePulse 4s infinite;
}

.badge-inner {
    text-align: center;
    color: var(--gold);
}

.year-display {
    display: block;
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
}

.year-label {
    display: block;
    font-size: 1rem;
    letter-spacing: 4px;
    margin-top: 8px;
    font-weight: 600;
}

.badge-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(212,175,55,0.3) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: badgeGlow 6s infinite alternate;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 60px rgba(212,175,55,0.6), inset 0 0 40px rgba(212,175,55,0.2); }
    50% { box-shadow: 0 0 90px rgba(212,175,55,0.9), inset 0 0 60px rgba(212,175,55,0.4); }
}

@keyframes badgeGlow {
    0% { opacity: 0.4; transform: scale(1); }
    100% { opacity: 0.8; transform: scale(1.1); }
}

/* Responsive */
@media (max-width: 992px) {
    .about-content {
        text-align: center;
    }
    .about-text {
        padding: 2.5rem !important;
    }
    .year-badge {
        width: 150px;
        height: 150px;
    }
    .year-display {
        font-size: 2.6rem;
    }
}

@media (max-width: 576px) {
    .about {
        padding: 100px 0;
    }
}


/* Contact Section - Black & Gold Luxury */
.contact {
    background: var(--black);
    padding: 140px 0;
    position: relative;
}

/* Glassmorphic Containers */
.contact-info,
.contact-form {
    background: rgba(30, 30, 30, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: all 0.5s ease;
}

.contact-info:hover,
.contact-form:hover {
    border-color: var(--gold);
    box-shadow: 0 30px 60px rgba(212, 175, 55, 0.15);
    transform: translateY(-8px);
}

/* Contact Methods */
.contact-method {
    background: rgba(40, 40, 40, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: all 0.4s ease;
}

.contact-method:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
    transform: translateX(10px);
}

.contact-icon i {
    font-size: 2.2rem;
    background: linear-gradient(135deg, var(--gold), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.4));
}

/* Custom Form Inputs */
.form-control, 
.form-control:focus {
    background: rgba(20, 20, 20, 0.7);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #fff;
    padding: 1rem 1.2rem;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.4s ease;
    box-shadow: none;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.25);
    background: rgba(30, 30, 30, 0.9);
    outline: none;
}

textarea.form-control {
    resize: none;
}

/* Submit Button - Reuse .btn-gold from hero */
.btn-gold {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.7s;
    z-index: -1;
}

.btn-gold:hover::before {
    left: 100%;
}

/* Responsive */
@media (max-width: 992px) {
    .contact {
        padding: 100px 0;
    }
    .contact-info,
    .contact-form {
        padding: 2rem !important;
    }
}

@media (max-width: 768px) {
    .contact-method:hover {
        transform: none;
    }
    .btn-gold {
        width: 100%;
    }
}

/* Footer - Luxury Black & Gold */
.footer {
    background: linear-gradient(to top, #0a0a0a, #111);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    color: #ccc;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-logo {
    height: 55px;
    filter: brightness(1.2);
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 2.4;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 8px;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--gold);
}

.footer-links a:hover::before {
    opacity: 1;
    left: -5px;
}

/* Social Icons - Luxury Black & Gold */
.social-icons a.social-icon,
.social-floating a.social-float-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    background: rgba(30, 30, 30, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    color: #ccc;
    font-size: 1.6rem;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.social-icons a.social-icon:hover,
.social-floating a.social-float-icon:hover {
    background: var(--gold);
    color: #000 !important;
    border-color: var(--gold);
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.4);
}

/* Gold shine sweep on hover */
.social-icons a.social-icon::before,
.social-floating a.social-float-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.3) 50%, transparent 60%);
    transform: rotate(30deg);
    opacity: 0;
    transition: opacity 0.6s;
}

.social-icons a.social-icon:hover::before,
.social-floating a.social-float-icon:hover::before {
    opacity: 1;
    animation: shineSweep 1.5s forwards;
}

@keyframes shineSweep {
    0% { transform: translateX(-100%) translateY(-100%) rotate(30deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(30deg); }
}

/* Floating Sidebar Version */
.social-floating {
    position: fixed;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.social-floating a.social-float-icon {
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
}

/* Responsive */
@media (max-width: 992px) {
    .social-floating {
        display: none; /* Hide floating bar on mobile */
    }
    .social-icons a.social-icon {
        width: 52px;
        height: 52px;
        font-size: 1.4rem;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .footer {
        text-align: center;
    }
    .footer-brand {
        justify-content: center;
    }
    .social-icons {
        justify-content: center;
    }
}



/* FINAL FIX: STOP BOOTSTRAP FROM RUINING YOUR PERFECT MODAL (2025) */
body.modal-open {
    padding-right: var(--scrollbar-width, 0px) !important;
    margin-right: 0 !important;
}

/* Disable Bootstrap's backdrop (you have your own beautiful one) */
.modal-backdrop,
.modal-backdrop.show {
    display: none !important;
}

/* Ensure your custom modal is above everything */
.modal-overlay {
    z-index: 1055 !important;   /* Bootstrap modals use 1050 */
}
.modal-overlay.active {
    z-index: 1056 !important;
}

/* Calculate scrollbar width automatically (works everywhere) */
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 1px;
    pointer-events: none;
    visibility: hidden;
    z-index: -1;
}

/* Fallback for browsers that don't support CSS variables */
@supports not (padding-right: env(safe-area-inset-right)) {
    body.modal-open { padding-right: 17px; }
}

/* Mac users who hide scrollbars – use border instead of padding */
@media (-webkit-scrollbar: none), (scrollbar-width: none) {
    body.modal-open {
        padding-right: 0 !important;
        border-right: 17px solid transparent;
    }
}

/* Your existing modal styles – just add this tiny tweak */
.modal-overlay {
    position: fixed;
    inset: 0;                      /* modern way instead of top/left/right/bottom */
    background: rgba(0, 0, 0, 0.94);
    backdrop-filter: blur(12px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: #111;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    max-width: 800px;
    width: 100%;
    max-height: 90dvh;             /* use dvh for mobile */
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(212, 175, 55, 0.2);
    transform: scale(0.94);
    transition: transform 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.modal-overlay.active .modal-container {
    transform: scale(1);
}
/* Luxury Modal System - Black & Gold */

.modal-container {
    background: #111;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(212, 175, 55, 0.2);
    transform: scale(0.9);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.modal-overlay.active .modal-container {
    transform: scale(1);
}

.modal-header {
    background: linear-gradient(135deg, rgba(212,175,55,0.1), transparent);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    color: var(--gold);
    font-size: 1.8rem;
    margin: 0;
    font-weight: 700;
}

.modal-close {
    background: none;
    border: none;
    color: var(--gold);
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}
.modal-close:hover {
    background: var(--gold);
    color: #000;
    transform: rotate(90deg);
}

.modal-body {
    padding: 2rem;
    max-height: 70vh;
    overflow-y: auto;
    color: #ddd;
}

.modal-body::-webkit-scrollbar {
    width: 8px;
}

.modal-body::-webkit-scrollbar-track {
    background: #1a1a1a;
}

.modal-body::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
}

.legal-content .intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.legal-section {
    margin-bottom: 2rem;
}

.legal-section h3 {
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.legal-list {
    padding-left: 1.5rem;
    line-height: 1.8;
}

.legal-list li {
    margin-bottom: 0.5rem;
}

.legal-highlight {
    background: rgba(212, 175, 55, 0.15);
    border-left: 4px solid var(--gold);
    padding: 1rem 1.5rem;
    border-radius: 0 8px 8px 0;
    margin: 2rem 0;
    font-weight: 500;
}

.contact-legal, .last-updated {
    background: rgba(212, 175, 55, 0.1);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1.5rem;
}

.last-updated {
    text-align: center;
    opacity: 0.7;
    font-size: 0.9rem;
}
/* ================================= */
/* Pricing Plan Modal Specific Styles */
#premiumPlanModal .modal-container {
    max-width: 1000px;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    color: #fff;
    border: 1px solid rgba(212, 175, 55, 0.3);
    overflow-y: scroll;
}

#premiumPlanModal .modal-header {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    border-bottom: 2px solid var(--gold);
    padding: 30px 40px;
}

#premiumPlanModal .modal-header h2 {
    color: var(--gold);
    font-size: 2.2rem;
    font-weight: 700;
}

#premiumPlanModal .modal-header h2 i {
    color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
    padding: 12px;
    border-radius: 50%;
    margin-right: 15px;
}

#premiumPlanModal .modal-close {
    color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

#premiumPlanModal .modal-close:hover {
    background: var(--gold);
    color: #0f0f0f;
    transform: rotate(90deg);
}

#premiumPlanModal .modal-content {
    background: transparent;
    padding: 40px;
}

/* Pricing Header */
.pricing-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.pricing-tagline {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.3rem;
    max-width: 700px;
    margin: 20px auto 0;
    line-height: 1.6;
    font-weight: 300;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.pricing-card {
    background: rgba(26, 26, 26, 0.8);
    border-radius: 20px;
    padding: 35px 30px;
    position: relative;
    transition: all 0.4s ease;
    border: 2px solid rgba(212, 175, 55, 0.2);
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    backdrop-filter: blur(10px);
}

.pricing-card:hover {
    transform: translateY(-15px);
    border-color: var(--gold);
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.2);
}

.pricing-card.popular {
    border-color: var(--gold);
    background: rgba(26, 26, 26, 0.95);
    position: relative;
    transform: scale(1.05);
    z-index: 2;
}

.pricing-card.popular::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    border-radius: 20px 20px 0 0;
}

.pricing-card.popular::after {
    content: 'MOST POPULAR';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: #0f0f0f;
    padding: 8px 25px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.pricing-icon {
    font-size: 60px;
    color: var(--gold);
    margin-bottom: 25px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.pricing-icon::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    z-index: -1;
}

.pricing-title {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 600;
}

.pricing-amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 5px;
    line-height: 1;
    text-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.pricing-period {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-weight: 300;
}

.savings-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.pricing-features {
    list-style: none;
    margin: 30px 0;
    flex-grow: 1;
}

.pricing-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    text-align: left;
}

.pricing-features li i {
    color: var(--gold);
    margin-right: 12px;
    font-size: 1.1rem;
    min-width: 25px;
}

.pricing-cta {
    margin-top: auto;
}

.pricing-btn {
    width: 100%;
    padding: 18px 25px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #0f0f0f;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.pricing-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, #e3b00b, #c19a2e);
}

.pricing-btn.secondary {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.pricing-btn.secondary:hover {
    background: var(--gold);
    color: #0f0f0f;
}

/* Additional Charges Section */
.additional-charges {
    background: rgba(15, 15, 15, 0.8);
    border-radius: 20px;
    padding: 40px;
    margin-top: 40px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
}

.additional-charges h4 {
    color: var(--gold);
    margin-bottom: 30px;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 600;
}

.additional-charges h4 i {
    margin-right: 15px;
    background: rgba(212, 175, 55, 0.1);
    padding: 12px;
    border-radius: 50%;
}

.charges-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.charge-item {
    background: rgba(26, 26, 26, 0.8);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.charge-item:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.charge-icon {
    font-size: 40px;
    color: var(--gold);
    margin-bottom: 20px;
}

.charge-title {
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.charge-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 10px;
}

.charge-note {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Value Proposition */
.value-proposition {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    color: #fff;
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    margin-top: 50px;
    position: relative;
    border: 2px solid var(--gold);
    overflow: hidden;
}

.value-proposition::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark), var(--gold));
}

.value-icon {
    font-size: 70px;
    color: var(--gold);
    margin-bottom: 25px;
    filter: drop-shadow(0 5px 15px rgba(212, 175, 55, 0.4));
}

.value-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--gold);
    font-weight: 700;
}

.value-text {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.7;
    font-weight: 300;
}

.gst-note {
    text-align: center;
    margin-top: 30px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    padding: 15px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.gst-note i {
    color: var(--gold);
    margin-right: 10px;
}

/* Responsive Design */
@media (max-width: 1100px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
        margin: 0 auto 40px;
    }
    
    .pricing-card.popular {
        transform: scale(1);
    }
    
    .charges-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    #premiumPlanModal .modal-content {
        padding: 30px 20px;
    }
    
    #premiumPlanModal .modal-header {
        padding: 25px 20px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        gap: 25px;
    }
    
    .charges-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .additional-charges {
        padding: 30px 25px;
    }
    
    .value-proposition {
        padding: 40px 25px;
    }
    
    .value-title {
        font-size: 1.8rem;
    }
    
    .value-text {
        font-size: 1.1rem;
    }
    
    .pricing-card {
        padding: 30px 25px;
    }
    
    .pricing-amount {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    #premiumPlanModal .modal-header h2 {
        font-size: 1.8rem;
    }
    
    .pricing-tagline {
        font-size: 1.1rem;
    }
    
    .pricing-amount {
        font-size: 2.5rem;
    }
    
    .value-proposition {
        padding: 30px 20px;
    }
    
    .value-icon {
        font-size: 50px;
    }
    
    .value-title {
        font-size: 1.6rem;
    }
    
    .pricing-icon {
        font-size: 50px;
    }
}

/* Scrollbar for this modal */
#premiumPlanModal .modal-container::-webkit-scrollbar {
    width: 8px;
}

#premiumPlanModal .modal-container::-webkit-scrollbar-track {
    background: rgba(26, 26, 26, 0.5);
    border-radius: 10px;
}

#premiumPlanModal .modal-container::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 10px;
    border: 2px solid #0f0f0f;
}

#premiumPlanModal .modal-container::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #e3b00b, #c19a2e);
}
.is-invalid {
    border-color: #dc3545 !important;
}






/* ========================================================
=============================================================

*/


/* ================================================ */
/* RESPONSIVE ENHANCEMENTS - WITHOUT CHANGING THEME */
/* ================================================ */

/* 1. GLOBAL RESPONSIVE FIXES */
@media (max-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 95%;
    }
}

/* 2. HERO SECTION RESPONSIVE */
@media (max-width: 1200px) {
    .hero-content h1.display-3 {
        font-size: 3.5rem !important;
        line-height: 1.2 !important;
    }
    
    .hero-content p.fs-5 {
        font-size: 1.1rem !important;
        max-width: 100% !important;
    }
}

@media (max-width: 992px) {
    .hero-content h1.display-3 {
        font-size: 2.8rem !important;
    }
    
    .hero video {
        max-width: 90%;
        height: auto;
        margin-top: 2rem !important;
    }
    
    .hero .row.align-items-center {
        text-align: center;
    }
    
    .hero-content {
        padding-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-content h1.display-3 {
        font-size: 2.2rem !important;
    }
    
    .hero-content p.fs-5 {
        font-size: 1rem !important;
        line-height: 1.6 !important;
    }
    
    .btn-outline-gold.btn-lg {
        padding: 0.8rem 2rem !important;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-content h1.display-3 {
        font-size: 1.8rem !important;
        text-align: center;
    }
    
    .hero-container {
        padding-top: 6rem;
    }
}

/* 3. HEADER RESPONSIVE ENHANCEMENT */
@media (max-width: 1200px) {
    .header-container {
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .nav-links {
        gap: 1.5rem;
    }
}

@media (max-width: 992px) {
    .header-container {
        padding: 0.8rem 1rem;
    }
    
    .logo-img {
        height: 50px;
    }
    
    .brand-title {
        font-size: 1.3rem;
    }
    
    .brand-tagline {
        font-size: 0.75rem;
    }
    
    .nav-links.active {
        width: 80%;
        left: 10%;
    }
}

@media (max-width: 768px) {
    .header-container .d-flex {
        flex-direction: row;
        width: 100%;
    }
    
    .nav-links.active {
        width: 90%;
        left: 5%;
        padding: 1.5rem 0;
    }
    
    .nav-links a {
        padding: 0.8rem 1.5rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .brand {
        gap: 1rem !important;
    }
    
    .logo-img {
        height: 45px;
    }
    
    .brand-title {
        font-size: 1.2rem;
    }
    
    .brand-tagline {
        font-size: 0.7rem;
        letter-spacing: 1px;
    }
    
    .mobile-menu {
        font-size: 1.8rem;
    }
}

/* 4. ABOUT SECTION RESPONSIVE */
@media (max-width: 1200px) {
    .about-text {
        padding: 2.5rem !important;
    }
    
    .year-badge {
        width: 160px;
        height: 160px;
    }
    
    .year-display {
        font-size: 2.8rem;
    }
}

@media (max-width: 992px) {
    .about {
        padding: 5rem 0 !important;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-text {
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .mt-5.d-flex.align-items-center.gap-4 {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .vr {
        display: none;
    }
    
    .about-image {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .section-title.display-5 {
        font-size: 2.5rem !important;
    }
    
    .about-text p.lead,
    .about-text p.text-light {
        font-size: 1.1rem;
        line-height: 1.6;
    }
    
    .year-badge {
        width: 140px;
        height: 140px;
    }
    
    .year-display {
        font-size: 2.4rem;
    }
    
    .year-text {
        font-size: 1.5rem !important;
    }
}

@media (max-width: 576px) {
    .about-text {
        padding: 1.5rem !important;
    }
    
    .about .text-center.mb-5 p.fs-5 {
        font-size: 1.1rem !important;
        padding: 0 1rem;
    }
    
    .mt-5.d-flex.align-items-center.gap-4 {
        gap: 2rem !important;
    }
    
    .mt-5.d-flex.align-items-center.gap-4 > div {
        flex: 0 0 30%;
    }
    
    .year-badge {
        width: 120px;
        height: 120px;
    }
    
    .year-display {
        font-size: 2rem;
    }
}

/* 5. SERVICES SECTION RESPONSIVE */
@media (max-width: 1400px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 1200px) {
    .services-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem !important;
    }
}

@media (max-width: 992px) {
    .services {
        padding: 5rem 0 !important;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .service-card {
        max-width: 100%;
    }
    
    #high_lighted_premium {
        order: -1;
    }
}

@media (max-width: 768px) {
    .services .section-subtitle {
        font-size: 1.1rem !important;
        padding: 0 1rem;
    }
    
    .service-card h3.h5 {
        font-size: 1.3rem !important;
    }
    
    .service-features li {
        font-size: 0.95rem;
    }
    
    .premium-badge {
        right: -50px;
        padding: 6px 45px;
        font-size: 0.75rem;
    }
}

@media (max-width: 576px) {
    .services-grid {
        gap: 1rem;
    }
    
    .service-card {
        padding: 1.25rem !important;
    }
    
    .premium-badge {
        right: -40px;
        padding: 5px 40px;
        font-size: 0.7rem;
    }
    
    .cta-badge {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}

/* 6. WHY CHOOSE SECTION RESPONSIVE */
@media (max-width: 1200px) {
    .features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .why-choose {
        padding: 5rem 0 !important;
    }
    
    .features {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .feature-card {
        padding: 2.5rem !important;
    }
}

@media (max-width: 768px) {
    .feature-card {
        padding: 2rem 1.5rem !important;
    }
    
    .feature-icon i {
        font-size: 3rem;
    }
    
    .feature-card h3.h4 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .why-choose .text-center.mb-5 p.fs-5 {
        font-size: 1.1rem !important;
        padding: 0 1rem;
    }
    
    .feature-card {
        padding: 1.5rem 1.25rem !important;
    }
    
    .feature-icon i {
        font-size: 2.5rem;
    }
}

/* 7. CONTACT SECTION RESPONSIVE */
@media (max-width: 1200px) {
    .contact-methods {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-method {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 992px) {
    .contact {
        padding: 5rem 0 !important;
    }
    
    .contact-info {
        padding: 2.5rem !important;
    }
    
    .contact-methods {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-method {
        max-width: 350px;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .contact-info h2.section-title {
        font-size: 2.5rem !important;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem !important;
    }
    
    .contact-icon.me-4 {
        margin-right: 0 !important;
        margin-bottom: 1rem;
    }
    
    .contact-method h4.text-gold {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .contact-info {
        padding: 1.5rem !important;
    }
    
    .contact .text-center.mb-5 p.fs-5 {
        font-size: 1.1rem !important;
        padding: 0 1rem;
    }
    
    .btn-gold.btn-lg {
        padding: 0.8rem 2rem !important;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
    }
    
    .contact-method {
        padding: 1.25rem !important;
    }
}

/* 8. FOOTER RESPONSIVE */
@media (max-width: 1200px) {
    .footer .row.g-5 {
        gap: 2rem !important;
    }
}

@media (max-width: 992px) {
    .footer {
        padding: 3rem 0 !important;
    }
    
    .footer .row.g-5 {
        gap: 3rem !important;
    }
    
    .footer .col-lg-4,
    .footer .col-lg-2,
    .footer .col-lg-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .social-icons {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .footer .row.g-5 {
        gap: 2.5rem !important;
    }
    
    .footer .col-lg-4,
    .footer .col-lg-2,
    .footer .col-lg-3,
    .footer .col-6 {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: center;
    }
    
    .footer-brand {
        justify-content: center;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .footer-links a:hover {
        padding-left: 0;
    }
    
    .footer-links a::before {
        display: none;
    }
    
    .contact-info-small {
        text-align: center;
    }
    
    .contact-info-small p.d-flex {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 2rem 0 !important;
    }
    
    .footer-logo {
        height: 50px;
    }
    
    .social-icons a.social-icon {
        width: 48px;
        height: 48px;
        font-size: 1.4rem;
    }
   
}
/* 9. MODAL RESPONSIVE */
@media (max-width: 1200px) {
    .modal-container {
        max-width: 90%;
        margin: 1rem;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .modal-container {
        max-height: 85vh;
    }
    
    .modal-body {
        max-height: 60vh;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .charges-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .modal-overlay {
        padding: 10px;
    }
    
    .modal-container {
        max-height: 80vh;
    }
    
    .modal-header {
        padding: 1.25rem 1.5rem;
    }
    
    .modal-body {
        padding: 1.5rem;
        max-height: 55vh;
    }
    
    #premiumPlanModal .modal-content {
        padding: 1.5rem;
    }
    
    .charges-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    .pricing-amount {
        font-size: 2.5rem !important;
    }
}

@media (max-width: 576px) {
    .modal-container {
        max-height: 90vh;
        border-radius: 12px;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .modal-close {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    #premiumPlanModal .modal-header h2 {
        font-size: 1.6rem;
    }
    
    .pricing-title {
        font-size: 1.5rem;
    }
    
    .pricing-features li {
        font-size: 0.9rem;
    }
    
    .additional-charges,
    .value-proposition {
        padding: 1.5rem;
    }
    
    .legal-content .intro-text {
        font-size: 1rem;
    }
    
    .legal-section h3 {
        font-size: 1.2rem;
    }
}

/* 10. UTILITY RESPONSIVE FIXES */
@media (max-width: 768px) {
    .display-3 {
        font-size: 2.5rem !important;
    }
    
    .display-5 {
        font-size: 2.2rem !important;
    }
    
    .fs-5 {
        font-size: 1.1rem !important;
    }
    
    .py-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }
    
    .py-4 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
    
    .px-5 {
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }
}

@media (max-width: 576px) {
    .display-3 {
        font-size: 2rem !important;
    }
    
    .display-5 {
        font-size: 1.8rem !important;
    }
    
    .section-title {
        font-size: 1.8rem !important;
    }
    
    .btn-lg {
        padding: 0.75rem 1.5rem !important;
        font-size: 1rem;
    }
}

/* 11. TOUCH DEVICE OPTIMIZATIONS */
@media (hover: none) and (pointer: coarse) {
    .service-card:hover,
    .feature-card:hover,
    .contact-info:hover,
    .contact-form:hover,
    .contact-method:hover,
    .social-icon:hover,
    .pricing-card:hover {
        transform: none !important;
    }
    
    .nav-links a:hover::after {
        width: 0 !important;
    }
    
    .btn-gold:hover,
    .btn-outline-gold:hover,
    .pricing-btn:hover {
        transform: none !important;
    }
    
    /* Increase tap target sizes for mobile */
    .nav-link,
    .btn,
    .social-icon,
    .modal-close {
        min-height: 44px;
        min-width: 44px;
    }
    
    .nav-links a {
        padding: 1rem 0;
    }
}

/* 12. LANDSCAPE ORIENTATION */
@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
    }
    
    .hero .row.align-items-center {
        min-height: 100vh;
    }
    
    .modal-container {
        max-height: 80vh;
    }
    
    .modal-body {
        max-height: 50vh;
    }
}

/* 13. PRINT STYLES */
@media print {
    .hero-bg,
    .nav-links,
    .mobile-menu,
    .footer,
    .modal-overlay,
    .social-floating,
    .btn {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .container {
        max-width: 100% !important;
    }
}

/* 14. ACCESSIBILITY FOCUS STATES */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* 15. DARK MODE SUPPORT */
@media (prefers-color-scheme: dark) {
    /* Your existing dark theme is already perfect */
}

/* 16. HIGH CONTRAST MODE */
@media (prefers-contrast: high) {
    .text-gold,
    .gold {
        color: #ffd700 !important;
    }
    
    .btn-gold {
        background: #ffd700 !important;
        color: #000 !important;
    }
    
    .btn-outline-gold {
        border-color: #ffd700 !important;
        color: #ffd700 !important;
    }
}

/* 17. SAFARI SPECIFIC FIXES */
@supports (-webkit-touch-callout: none) {
    .hero {
        min-height: -webkit-fill-available;
    }
    
    .hero .row.align-items-center {
        min-height: -webkit-fill-available;
    }
}


/* ============================================= */

/* Footer Styles */
.footer-bottom {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, var(--dark-bg) 100%);
    padding-top: 2rem;
    margin-top: 3rem;
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--gold) 20%, 
        var(--gold) 80%, 
        transparent 100%);
    opacity: 0.3;
}

.footer-bottom p {
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
    padding: 1rem 0;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.text-gold {
    color: var(--gold) !important;
    transition: color 0.3s ease;
    position: relative;
}

.text-gold:hover {
    color: var(--gold-dark) !important;
}

.text-gold::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.text-gold:hover::after {
    width: 100%;
}

.footer-bottom .bi-heart-fill {
    animation: heartbeat 1.5s ease-in-out infinite;
    margin: 0 3px;
    position: relative;
    top: -1px;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

/* Separator styling */
.footer-bottom span.mx-3 {
    color: var(--gold);
    opacity: 0.5;
    font-weight: 300;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-bottom {
        padding-top: 1.5rem;
        margin-top: 2rem;
        padding-bottom: 1rem;
    }
    
    .footer-bottom p {
        font-size: 0.85rem;
        padding: 0.75rem 1rem;
        line-height: 1.5;
    }
    
    .footer-bottom .mx-3 {
        margin: 0 0.75rem !important;
    }
    
    .footer-bottom::before {
        left: 5%;
        right: 5%;
    }
}

@media (max-width: 576px) {
    .footer-bottom {
        margin-top: 1.5rem;
        padding-top: 1.25rem;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
    
    .footer-bottom .mx-3 {
        display: none; /* Hide separator on very small screens */
    }
    
    .footer-bottom span:last-child {
        margin-top: 0.25rem;
        display: block;
    }
}

/* Optional: Add a subtle pattern overlay */
.footer-bottom {
    position: relative;
    overflow: hidden;
}

.footer-bottom::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(230, 186, 106, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(230, 186, 106, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Add smooth scroll effect for the whole page */
html {
    scroll-behavior: smooth;
}

/* Optional: Back to top button for footer area */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--gold);
    color: var(--black);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    border: 2px solid var(--gold-dark);
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(184, 151, 46, 0.3);
}