:root {
            --luxury-gold: #D4AF37;
            --deep-gold: #B8860B;
            --rich-navy: #0F1419;
            --elegant-navy: #1A2332;
            --soft-gold: #F4E4BC;
            --pearl-white: #FEFEFE;
            --champagne: #F7E7CE;
            --text-muted: #8B9DC3;
            --accent-blue: #2C5282;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            /* background: linear-gradient(135deg, var(--rich-navy) 0%, var(--elegant-navy) 100%); */
            color: var(--pearl-white);
            overflow-x: hidden;
            height: 100vh;
            /* overflow-y: hidden; */
        }
        .main_section{
            background: linear-gradient(135deg, var(--rich-navy) 0%, var(--elegant-navy) 100%);
            height: 100vh;
            background: url("../images/banner-bg.jpg");
            background-repeat: no-repeat;
            background-size: cover;
        }

        .luxury-serif {
            font-family: 'Playfair Display', serif;
        }

        .elegant-serif {
            font-family: 'Cormorant Garamond', serif;
        }

        /* Header Styles */
        .luxury-header {
            /* background: rgba(15, 20, 25, 0.95); */
            backdrop-filter: blur(20px);
            border-bottom: 2px solid var(--luxury-gold);
            padding: 0.4rem 0;
            position: relative;
            z-index: 1000;
        }

        .luxury-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--luxury-gold), transparent);
        }

        /* .brand-logo {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-weight: 800;
            color: var(--luxury-gold);
            text-decoration: none;
            letter-spacing: 2px;
            position: relative;
        }

        .brand-logo::before {
            content: '◆';
            margin-right: 12px;
            font-size: 1.2rem;
            color: var(--luxury-gold);
        } */
         .brand-logo img{
            max-width: 170px;
            filter: invert();
         }

        .luxury-btn-primary {
            /* background: linear-gradient(45deg, var(--luxury-gold), var(--deep-gold)); */
            background: linear-gradient(45deg, #d4af3700, #b8860b00);
            border: 2px solid var(--luxury-gold);
            /* color: var(--rich-navy); */
            color: #fff;
            padding: 8px 8px;
            font-weight: 600;
            font-size: 0.70rem;
            border-radius: 50px;
            transition: all 0.4s ease;
            text-transform: uppercase;
            letter-spacing: 0px;
            position: relative;
            overflow: hidden;
        }

        .luxury-btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.6s;
        }

        .luxury-btn-primary:hover::before {
            left: 100%;
        }

        .luxury-btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
            background: linear-gradient(45deg, var(--luxury-gold), var(--deep-gold));
            color: var(--rich-navy);
            /* color: #fff; */
        }

        /* Main Content Container */
        .main-content {
            height: calc(100vh - 70px);
            display: flex;
            flex-direction: column;
            padding: 1rem 0;
            /* background: url("../images/banner-bg.jpg");
            background-repeat: no-repeat;
            background-size: cover; */
        }
        .main-content:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(270deg, rgb(37 46 85 / 65%) 0%, rgba(37, 46, 85, 0.6) 48%, rgba(0, 13, 55, 1) 100%);
        }

        /* Feature Boxes Section - Compact */
        .features-section {
            padding: 1rem 0;
            background: rgba(26, 35, 50, 0.3);
            border-bottom: 1px solid rgba(212, 175, 55, 0.2);
            margin-top: 20px;
        }

        .feature-box {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(212, 175, 55, 0.3);
            border-radius: 12px;
            padding: 1rem;
            margin-bottom: 0;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.8rem;
            height: 70px;
        }

        .feature-box:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
            border-color: var(--luxury-gold);
        }

        .feature-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(45deg, var(--luxury-gold), var(--deep-gold));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            color: var(--rich-navy);
            flex-shrink: 0;
        }

        .feature-content h4 {
            font-family: 'Playfair Display', serif;
            font-size: 1rem;
            font-weight: 600;
            color: var(--luxury-gold);
            margin-bottom: 0.2rem;
            line-height: 1.2;
        }

        .feature-content p {
            font-size: 0.75rem;
            color: #fff;
            margin: 0;
            line-height: 1.3;
        }

        .highlight-price {
            color: var(--luxury-gold);
            font-weight: 700;
            font-size: 16px;
        }

        /* Hero Content Section */
        .hero-content-section {
            flex: 1;
            display: flex;
            align-items: center;
            padding: 1rem 0;
            z-index: 99;
        }

        .hero-title {
            font-family: 'Playfair Display', serif;
            font-size: 28px;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 0.8rem;
            background: linear-gradient(45deg, var(--luxury-gold), #FFD700);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 1.2rem;
            font-weight: 300;
            margin-bottom: 1rem;
            color: var(--text-muted);
        }

        .hero-description {
            font-size: 16px;
            line-height: 1.5;
            margin-bottom: 1.5rem;
            max-width: 500px;
            text-align: justify;
        }
        .hero-description span{
            color: #FFD700;
        }

        .luxury-btn {
            background: linear-gradient(45deg, var(--luxury-gold), var(--deep-gold));
            border: none;
            padding: 10px 30px;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--rich-navy);
            border-radius: 50px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .luxury-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
            color: var(--rich-navy);
        }

        /* Contact Form - Very Compact */
        .contact-form-container {
            background: rgba(255, 255, 255, 0.12);
            backdrop-filter: blur(25px);
            /* border: 2px solid rgba(212, 175, 55, 0.3); */
            border-radius: 15px;
            padding: 1.2rem;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
            position: relative;
            height: fit-content;
            max-height: 450px;
            max-width: 370px;
        }

        .contact-form-container::before {
            content: '';
            position: absolute;
            top: -1px;
            left: -1px;
            right: -1px;
            bottom: -1px;
            background: linear-gradient(45deg, #857a56, transparent, #87816e);
            border-radius: 15px;
            z-index: -1;
            opacity: 0.5;
        }

        .form-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            font-weight: 600;
            color: #fff;
            text-align: center;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .luxury-form-control {
            /* background: rgba(255, 255, 255, 0.1); */
            background: transparent;
            /* border: 1px solid rgba(212, 175, 55, 0.3); */
            border-radius: 8px;
            padding: 8px 12px;
            color: var(--pearl-white);
            font-size: 0.85rem;
            margin-bottom: 0.6rem;
            transition: all 0.3s ease;
            font-weight: 400;
            height: 35px;
            width: 100%;
            border: none;
            border-radius: 0;
            border-bottom: 1px solid #fff;
        }

        .luxury-form-control:focus {
            /* background: rgba(255, 255, 255, 0.15);
            border-color: var(--luxury-gold);
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.4); */
            background: none;
            border-color: none;
            box-shadow: none;
            color: var(--pearl-white);
            outline: none;
        }

        .luxury-form-control::placeholder {
            color: #fff;
            font-weight: 300;
            font-size: 0.8rem;
        }

        .luxury-select {
            /* background: rgba(255, 255, 255, 0.1); */
            background: transparent;
            /* border: 1px solid rgba(212, 175, 55, 0.3); */
            border: none;
            border-bottom: 1px solid #fff;
            border-radius: 0px;
            padding: 8px 8px;
            color: var(--pearl-white);
            margin-bottom: 0.6rem;
            font-size: 0.85rem;
            height: 35px;
            width: 100%;
        }

        .luxury-select option {
            background: var(--rich-navy);
            color: var(--pearl-white);
        }

        .consent-section {
            margin-bottom: 8px;
        }

        .consent-text {
            font-size: 0.5rem;
            color: #fff;
            line-height: 1.3;
            margin-left: 0px;
        }

        .luxury-checkbox {
            width: 14px;
            height: 14px;
            accent-color: var(--luxury-gold);
        }

        .submit-btn {
            background: linear-gradient(45deg, var(--luxury-gold), var(--deep-gold));
            border: none;
            color: var(--rich-navy);
            padding: 10px 25px;
            font-size: 0.9rem;
            font-weight: 700;
            border-radius: 50px;
            width: 100%;
            transition: all 0.4s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
            height: 40px;
        }

        .submit-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.6s;
        }

        .submit-btn:hover::before {
            left: 100%;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
        }

        /* Bottom Content */
        .bottom-content {
            background: rgba(247, 231, 206, 0.95);
            color: var(--rich-navy);
            padding: 1.5rem 0;
            text-align: center;
        }

        .bottom-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 0.8rem;
            line-height: 1.2;
        }

        .bottom-description {
            font-size: 0.9rem;
            line-height: 1.5;
            max-width: 650px;
            margin: 0 auto;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in-up {
            animation: fadeInUp 0.6s ease-out;
        }

        .floating {
            animation: floating 4s ease-in-out infinite;
        }

        @keyframes floating {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-5px); }
        }
        .d_view{
            display: block;
        }
        .m_view{
            display: none;
        }

        .modal-title {
            color: #000;
            margin: 0 auto;
        }
        .modal-header .btn-close {
            margin-left: 0;
        }
        .modal .luxury-form-control{
            color: #000;
            border-bottom: 1px solid #000;
        }
        .modal .luxury-form-control::placeholder{
            color: #000;
        }
        .modal .luxury-select{
            color: #000;
            border-bottom: 1px solid #000;
        }
        .modal .consent-text {
            color: #000;
            margin-left: 0;
        }
        .d_view{
            display: block;
        }
        footer{
            padding: 15px 0;
            background: #111609;
        }
        .dis {
            text-align: center;
        }
        .box {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0px 110px;
        }
        .dis p {
            letter-spacing: 1px;
            margin-bottom: 0px;
            font-size: 10px;
            color: #fff;
        }
        .dis p a {
            color: #fff;
            text-decoration: none;
        }
        .banner-image{
            display: none;
        }
        @media(max-width:1366px){
            .features-section {
                margin-top: 8px;
            }
        }
        /* Responsive Design */
        @media (max-width: 768px) {
            /* .brand-logo {
                font-size: 1.6rem;
            } */
            .brand-logo img {
                max-width: 150px;
            }
            .hero-content-section {
                padding: 1rem 0 0;
            }
            .main_section {
                height: unset;
                background: linear-gradient(135deg, var(--rich-navy) 0%, var(--elegant-navy) 100%);
            }
            .d_view{
                display: none;
            }
            
            .hero-title {
                font-size: 1.2rem;
                line-height: 26px;
            }
            
            .feature-box {
                padding: 0.8rem;
                /* flex-direction: column; */
                text-align: center;
                gap: 0.4rem;
                height: auto;
                min-height: 60px;
                /* display: flex; */
                text-align: left;
                margin-bottom: 0.5rem;
            }
            
            .feature-icon {
                width: 35px;
                height: 35px;
                font-size: 1rem;
            }
            
            .contact-form-container {
                padding: 1rem;
                margin-top: 1rem;
            }
            
            .form-title {
                font-size: 1.1rem;
            }
            
            .main-content {
                height: auto;
                min-height: calc(100vh - 70px);
                background: url(../images/banner-bg.jpg);
                background-repeat: no-repeat;
                background-size: cover;
            }
            
            body {
                overflow-y: auto;
            }
            
            .luxury-form-control, .luxury-select {
                height: 32px;
                padding: 6px 10px;
                font-size: 0.8rem;
            }
            
            .submit-btn {
                height: 36px;
                font-size: 0.8rem;
            }

            .luxury-btn-primary{
                padding: 8px 8px;
                font-weight: 600;
                font-size: 0.65rem;
            }   
            .hero-description {
                font-size: 14px;
                line-height: 1.5;
                margin-bottom: 1rem;
            }         
            .main-content {
                background: unset;
            }
            .d_view{
                display: none;
            }
            .m_view{
                display: block;
                margin: 0 10px;
            }
            .dis p {
                margin-bottom: 5px;            
            }
            .box {
                flex-direction: column;
                padding: 0 10px;
            }
            .banner-image {
                display: block;
                position: absolute;
                height: 100vh;
                object-fit: cover;
            }
        }

        @media (max-width: 576px) {
            .features-section .row {
                gap: 0.3rem;
            }
            
            .feature-box {
                margin-bottom: 0.3rem;
            }
        }