 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-gold: #FF9933;
            --primary-black: #000000;
            --primary-dark: #0a1929;
            --secondary-dark: #1a2f4f;
            --light-gold: #FFB366;
            --accent-gold: #FFD699;
            --text-light: #f5f5f5;
            --text-dark: #2c3e50;
            --border-color: rgba(255, 153, 51, 0.3);
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--primary-dark);
            color: var(--text-light);
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        /* Navbar Styling */
        .navbar {
            background: var(--primary-black);
            border-bottom: 2px solid var(--primary-gold);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(255, 153, 51, 0.1);
        }

        .navbar-brand {
            font-family: 'Cinzel', serif;
            font-size: 1.8rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--primary-gold) 0%, var(--light-gold) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 1px;
        }

        .navbar-logo {
            max-height: 70px;
            width: auto;
            filter: drop-shadow(0 0 8px rgba(255, 153, 51, 0.3));
            transition: all 0.3s ease;
        }

        .navbar-brand:hover .navbar-logo {
            filter: drop-shadow(0 0 15px rgba(255, 153, 51, 0.5));
            transform: scale(1.05);
        }

        .nav-link {
            font-family: 'Poppins', sans-serif;
            font-weight: 500;
            color: var(--text-light) !important;
            margin: 0 0.5rem;
            position: relative;
            transition: all 0.3s ease;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--primary-gold), var(--light-gold));
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .nav-link:hover {
            color: var(--primary-gold) !important;
        }

        /* Hero Section */
        .hero {
            /*min-height: 100vh;*/
            /*background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);*/
            
             min-height: 100vh;
    background-image: url('img/fire-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 20% 50%, rgba(255, 153, 51, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 153, 51, 0.05) 0%, transparent 50%);
            pointer-events: none;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 800px;
            animation: fadeInUp 1s ease-out;
        }

        .hero-logo {
            width: 250px;
            height: 250px;
            margin: 0 auto 2rem;
            animation: float 3s ease-in-out infinite;
            filter: drop-shadow(0 0 30px rgba(255, 153, 51, 0.3));
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: 4.5rem;
            font-weight: 900;
            margin: 2rem 0 1rem 0;
            background: linear-gradient(135deg, var(--primary-gold) 0%, var(--light-gold) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -1px;
            line-height: 1.2;
        }

        .hero .tagline {
            font-family: 'Cinzel', serif;
            font-size: 1.3rem;
            color: var(--accent-gold);
            margin-bottom: 2rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-weight: 600;
        }

        .hero p {
            font-size: 1.1rem;
            color: #ccc;
            margin-bottom: 2rem;
            line-height: 1.8;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .btn-primary-gold {
            background: linear-gradient(135deg, var(--primary-gold) 0%, var(--light-gold) 100%);
            border: none;
            color: var(--primary-dark);
            padding: 1rem 2.5rem;
            font-weight: 600;
            font-size: 1rem;
            border-radius: 50px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
        }

        .btn-primary-gold:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(255, 153, 51, 0.3);
            color: var(--primary-dark);
        }

        .btn-outline-gold {
            border: 2px solid var(--primary-gold);
            color: var(--primary-gold);
            background: transparent;
            padding: 0.9rem 2.3rem;
            font-weight: 600;
            font-size: 1rem;
            border-radius: 50px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            margin-left: 1rem;
        }

        .btn-outline-gold:hover {
            background: var(--primary-gold);
            color: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(255, 153, 51, 0.3);
        }

        /* Section Styling */
        /*section {*/
        /*    padding: 6rem 0;*/
        /*    position: relative;*/
        /*}*/
        
        

        /*section.light-bg {*/
        /*    background: linear-gradient(135deg, var(--primary-dark) 0%, #111827 100%);*/
        /*    border-top: 1px solid var(--border-color);*/
        /*    border-bottom: 1px solid var(--border-color);*/
        /*}*/
        
        section {
    background-image: url('img/fire-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* parallax feel as you scroll */
}

/* Override the light-bg sections too */
section.light-bg {
    background-image: url('img/fire-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            font-weight: 900;
            text-align: center;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, var(--primary-gold) 0%, var(--light-gold) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-subtitle {
            text-align: center;
            color: #aaa;
            font-size: 1.1rem;
            margin-bottom: 4rem;
            font-weight: 300;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .divider {
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
            margin: 2rem auto;
        }

        /* About Section */
        .about-card {
            background: linear-gradient(135deg, rgba(255, 153, 51, 0.05) 0%, rgba(26, 47, 79, 0.3) 100%);
            border: 1px solid var(--border-color);
            border-radius: 15px;
            padding: 3rem 2rem;
            margin-bottom: 2rem;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .about-card:hover {
            border-color: var(--primary-gold);
            box-shadow: 0 15px 40px rgba(255, 153, 51, 0.2);
            transform: translateY(-5px);
        }

        .about-card h3 {
            color: var(--primary-gold);
            font-family: 'Cinzel', serif;
            font-size: 1.5rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .about-card p {
            color: #ccc;
            line-height: 1.8;
        }
        
        /* About Section - Redesign */
.about-intro {
    max-width: 700px;
    color: #ccc;
    font-size: 1.05rem;
    line-height: 1.8;
}

.why-choose-wrapper {
    background: linear-gradient(135deg, rgba(255, 153, 51, 0.07) 0%, rgba(26, 47, 79, 0.4) 100%);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 3rem 4rem;
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
    backdrop-filter: blur(10px);
}

.why-choose-title {
    font-family: 'Cinzel', serif;
    color: var(--primary-gold);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.why-choose-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    display: inline-block;
}

.why-choose-list li {
    color: #ccc;
    font-size: 1rem;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.why-choose-list li i {
    color: var(--primary-gold);
    font-size: 0.85rem;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .why-choose-wrapper {
        padding: 2rem 1.5rem;
    }
}

        /* Services Section */
        .service-card {
            background: linear-gradient(135deg, rgba(255, 153, 51, 0.08) 0%, rgba(26, 47, 79, 0.4) 100%);
            border: 2px solid var(--border-color);
            border-radius: 15px;
            padding: 2.5rem;
            margin-bottom: 2rem;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 153, 51, 0.1), transparent);
            transition: left 0.6s ease;
        }

        .service-card:hover::before {
            left: 100%;
        }

        .service-card:hover {
            border-color: var(--primary-gold);
            box-shadow: 0 20px 50px rgba(255, 153, 51, 0.25);
            transform: translateY(-8px);
        }

        .service-icon {
            font-size: 3rem;
            color: var(--primary-gold);
            margin-bottom: 1.5rem;
        }

        .service-card h3 {
            color: var(--accent-gold);
            font-family: 'Cinzel', serif;
            font-size: 1.4rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .service-card p {
            color: #bbb;
            line-height: 1.7;
        }

        /* Category Cards */
        .category-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .category-card {
            background: linear-gradient(135deg, rgba(255, 153, 51, 0.1) 0%, rgba(26, 47, 79, 0.5) 100%);
            border: 2px solid var(--border-color);
            border-radius: 15px;
            padding: 2rem;
            transition: all 0.3s ease;
            cursor: pointer;
            backdrop-filter: blur(10px);
            position: relative;
        }

        .category-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255, 153, 51, 0.3) 0%, transparent 100%);
            border-radius: 15px;
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }

        .category-card:hover::after {
            opacity: 1;
        }

        .category-card:hover {
            border-color: var(--primary-gold);
            transform: translateY(-10px);
            box-shadow: 0 25px 60px rgba(255, 153, 51, 0.3);
        }

        .category-card h4 {
            color: var(--primary-gold);
            font-family: 'Cinzel', serif;
            font-size: 1.3rem;
            margin-bottom: 0.8rem;
            font-weight: 700;
        }

        .category-card p {
            color: #bbb;
            font-size: 0.95rem;
        }

        .category-card .arrow {
            color: var(--primary-gold);
            margin-top: 1rem;
            font-weight: 600;
            transition: transform 0.3s ease;
        }

        .category-card:hover .arrow {
            transform: translateX(5px);
        }

        /* Contact Section */
        .contact-form {
            background: linear-gradient(135deg, rgba(255, 153, 51, 0.05) 0%, rgba(26, 47, 79, 0.3) 100%);
            border: 1px solid var(--border-color);
            border-radius: 15px;
            padding: 3rem;
            backdrop-filter: blur(10px);
        }

        .form-control {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border-color);
            color: var(--text-light);
            padding: 1rem;
            border-radius: 8px;
            transition: all 0.3s ease;
            font-family: 'Poppins', sans-serif;
        }

        .form-control:focus {
            background: rgba(255, 153, 51, 0.1);
            border-color: var(--primary-gold);
            box-shadow: 0 0 15px rgba(255, 153, 51, 0.2);
            color: var(--text-light);
        }

        .form-control::placeholder {
            color: #666;
        }

        .form-label {
            color: var(--accent-gold);
            font-weight: 600;
            margin-bottom: 0.5rem;
            font-family: 'Cinzel', serif;
        }

        /* Reviews Section */
        .review-card {
            background: linear-gradient(135deg, rgba(255, 153, 51, 0.08) 0%, rgba(26, 47, 79, 0.4) 100%);
            border: 1px solid var(--border-color);
            border-radius: 15px;
            padding: 2rem;
            margin-bottom: 2rem;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .review-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(255, 153, 51, 0.15);
            border-color: var(--primary-gold);
        }

        .review-header {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }

        .review-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-gold) 0%, var(--light-gold) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-dark);
            font-weight: 700;
            font-size: 1.2rem;
            margin-right: 1rem;
        }

        .review-name {
            color: var(--primary-gold);
            font-weight: 600;
            font-family: 'Cinzel', serif;
        }

        .review-rating {
            color: var(--primary-gold);
            font-size: 0.9rem;
        }

        .review-text {
            color: #bbb;
            line-height: 1.7;
            font-style: italic;
        }

        /* Footer */
        footer {
            background: var(--primary-black);
            border-top: 2px solid var(--border-color);
            padding: 3rem 0 1rem 0;
            color: #aaa;
        }

        .footer-content {
            margin-bottom: 2rem;
        }

        .footer-title {
            color: var(--primary-gold);
            font-family: 'Cinzel', serif;
            font-weight: 700;
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }

        .footer-link {
            color: #999;
            text-decoration: none;
            transition: color 0.3s ease;
            display: block;
            margin-bottom: 0.8rem;
        }

        .footer-link:hover {
            color: var(--primary-gold);
        }

        .social-icons {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 153, 51, 0.1);
            border: 1px solid var(--border-color);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-gold);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .social-icon:hover {
            background: var(--primary-gold);
            color: var(--primary-dark);
            transform: translateY(-3px);
        }

        .visitor-stats {
            background: linear-gradient(135deg, rgba(255, 153, 51, 0.08) 0%, rgba(26, 47, 79, 0.3) 100%);
            border: 1px solid var(--border-color);
            border-radius: 10px;
            padding: 1.5rem;
            text-align: center;
            margin-top: 2rem;
        }

        .visitor-count {
            color: var(--primary-gold);
            font-size: 2rem;
            font-weight: 700;
            font-family: 'Cinzel', serif;
        }

        .visitor-label {
            color: #999;
            font-size: 0.9rem;
            margin-top: 0.5rem;
        }

        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid var(--border-color);
            color: #666;
            font-size: 0.9rem;
        }

        /* Animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            animation: fadeInUp 0.8s ease-out;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }

            .hero .tagline {
                font-size: 1rem;
            }

            .hero-logo {
                width: 150px;
                height: 150px;
            }

            .section-title {
                font-size: 2rem;
            }

            .btn-outline-gold {
                margin-left: 0;
                margin-top: 1rem;
                display: block;
                width: 100%;
            }

            .btn-primary-gold {
                display: block;
                width: 100%;
            }

            .category-grid {
                grid-template-columns: 1fr;
            }

            .hero-buttons {
                display: flex;
                flex-direction: column;
                gap: 1rem;
            }
        }

        /* Scroll animations */
        .scroll-animate {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .scroll-animate.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        
        /* ============ MODAL & FORM CUSTOM STYLING ============ */

/* Modal Styling */
.modal-content {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    border: 2px solid var(--primary-gold);
    border-radius: 20px;
}

.modal-header {
    border-bottom: 1px solid var(--border-color) !important;
}

.modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--light-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-close-white {
    filter: brightness(0) invert(1);
}

.btn-close-white:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 153, 51, 0.25);
}

/* Form Controls */
.form-control {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 2px solid var(--border-color) !important;
    color: var(--text-light) !important;
    padding: 12px 18px !important;
    border-radius: 10px !important;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
}

.form-control:focus {
    background: rgba(255, 153, 51, 0.15) !important;
    border-color: var(--primary-gold) !important;
    box-shadow: 0 0 20px rgba(255, 153, 51, 0.3) !important;
    color: var(--text-light) !important;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-control:disabled,
.form-control[readonly] {
    background-color: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.6);
}

/* Form Labels */
.form-label {
    color: var(--accent-gold);
    font-weight: 600;
    font-family: 'Cinzel', serif;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    display: block;
}

/* Select Dropdown Styling */
select.form-control {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23FF9933' d='M6 9L1 4h10z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 15px center !important;
    padding-right: 40px !important;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

select.form-control option {
    background-color: #1a2f4f !important;
    color: #f5f5f5 !important;
    padding: 12px !important;
    margin: 5px 0 !important;
}

select.form-control option:hover {
    background: linear-gradient(#FF9933, #FF9933) !important;
    color: #0a1929 !important;
}

select.form-control option:checked {
    background: linear-gradient(#FF9933, #FF9933) !important;
    color: #0a1929 !important;
}

select.form-control option:disabled {
    background-color: #0a1929 !important;
    color: #999 !important;
}

select.form-control::-ms-expand {
    display: none;
}

/* Textarea Styling */
textarea.form-control {
    resize: vertical;
    min-height: 100px;
    font-family: 'Poppins', sans-serif;
}

textarea.form-control:focus {
    background: rgba(255, 153, 51, 0.15) !important;
    border-color: var(--primary-gold) !important;
    box-shadow: 0 0 20px rgba(255, 153, 51, 0.3) !important;
}

/* Button Styles */
.btn-primary-gold {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--light-gold) 100%) !important;
    border: none !important;
    color: var(--primary-dark) !important;
    padding: 12px 30px !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    border-radius: 10px !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    font-family: 'Cinzel', serif;
}

.btn-primary-gold:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 40px rgba(255, 153, 51, 0.4) !important;
    color: var(--primary-dark) !important;
}

.btn-primary-gold:active {
    transform: translateY(-1px) !important;
}

.btn-primary-gold:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Modal Dialog Responsive */
@media (max-width: 576px) {
    .modal-dialog {
        margin: 0.5rem !important;
    }

    .modal-content {
        border-radius: 15px;
    }

    .modal-title {
        font-size: 1.4rem;
    }

    .form-label {
        font-size: 0.85rem;
    }

    .form-control {
        padding: 10px 15px !important;
        font-size: 14px;
    }

    .btn-primary-gold {
        padding: 10px 20px !important;
        font-size: 0.9rem !important;
    }
}

/* Alert Styling */
.alert {
    border-radius: 10px;
    border: 2px solid;
    padding: 15px 20px;
    font-weight: 500;
}

.alert-success {
    background: rgba(76, 175, 80, 0.1) !important;
    border-color: #4CAF50 !important;
    color: #90EE90 !important;
}

.alert-danger {
    background: rgba(244, 67, 54, 0.1) !important;
    border-color: #f44336 !important;
    color: #FF6B6B !important;
}

.alert-dismissible .btn-close {
    padding: 0.25rem;
    filter: opacity(0.7) brightness(1.5);
}

.alert-dismissible .btn-close:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 153, 51, 0.25);
}

/* Input Validation Styling */
.form-control:invalid:focus {
    border-color: #f44336 !important;
    box-shadow: 0 0 20px rgba(244, 67, 54, 0.3) !important;
}

.form-control:valid {
    border-color: var(--border-color) !important;
}

/* Smooth Transitions */
.form-control,
.btn-primary-gold,
select.form-control {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Modal Animations */
.modal.fade .modal-dialog {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal.show .modal-dialog {
    transform: translateY(0);
    opacity: 1;
}

/* Focus Visible States */
.form-control:focus-visible,
.btn-primary-gold:focus-visible,
.btn-close:focus-visible {
    outline: 2px solid var(--primary-gold);
    outline-offset: 2px;
}

/* Required Field Indicator */
.form-label span {
    margin-left: 4px;
}

/* Input Group Styling */
.input-group .form-control {
    border-right: 2px solid var(--border-color) !important;
}

.input-group-text {
    background: rgba(255, 153, 51, 0.1);
    border: 2px solid var(--border-color);
    color: var(--primary-gold);
    border-radius: 10px 0 0 10px;
}

/* Floating Label Support */
.form-floating > .form-control {
    padding-top: 1.625rem;
    padding-bottom: 0.625rem;
}

.form-floating > label {
    color: var(--accent-gold);
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: var(--primary-gold);
}

.password-toggle {
    cursor: pointer;
    color: var(--primary-gold);
    transition: color 0.3s ease;
}

.password-toggle:hover {
    color: var(--light-gold);
}

/* Checkbox and Radio Customization */
.form-check-input {
    width: 1.25em;
    height: 1.25em;
    margin-top: 0.125em;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--border-color);
    cursor: pointer;
}

.form-check-input:checked {
    background-color: var(--primary-gold);
    border-color: var(--primary-gold);
}

.form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 153, 51, 0.25);
}

.form-check-label {
    color: var(--text-light);
    cursor: pointer;
    user-select: none;
}

.btn-primary-gold.loading {
    opacity: 0.7;
    pointer-events: none;
}

.btn-primary-gold.loading::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-left: 8px;
    border: 2px solid transparent;
    border-top-color: var(--primary-dark);
    border-right-color: var(--primary-dark);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.tooltip-inner {
    background-color: var(--primary-gold);
    color: var(--primary-dark);
    border-radius: 10px;
    padding: 10px 15px;
    font-weight: 600;
}

.tooltip-arrow::before {
    border-top-color: var(--primary-gold);
}

/* Help Text */
.form-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin-top: 5px;
}

/* Input Error Message */
.invalid-feedback {
    display: block;
    color: #FF6B6B;
    font-size: 0.85rem;
    margin-top: 5px;
}

.valid-feedback {
    display: block;
    color: #90EE90;
    font-size: 0.85rem;
    margin-top: 5px;
}


.review-card-new {
    background: linear-gradient(135deg, rgba(255,153,51,0.06) 0%, rgba(26,47,79,0.5) 100%);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.8rem;
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    height: 100%;
}

.review-card-new:hover {
    border-color: var(--primary-gold);
    box-shadow: 0 15px 40px rgba(255,153,51,0.15);
    transform: translateY(-5px);
}

.review-quote {
    position: absolute;
    top: 1.2rem;
    right: 1.4rem;
    color: rgba(255,153,51,0.35);
    font-size: 1.4rem;
}

.review-header-new {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 1.1rem;
}

.review-avatar-new {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-gold), var(--light-gold));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(255,153,51,0.3);
}

.review-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.review-name-new {
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.95rem;
    font-family: 'Cinzel', serif;
}

.review-stars {
    display: flex;
    gap: 2px;
    margin: 2px 0;
}

.review-city {
    color: #888;
    font-size: 0.78rem;
    margin-top: 1px;
}

.review-text-new {
    color: #bbb;
    font-size: 0.9rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.2rem;
}

.review-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: auto;
}

.review-tag {
    background: rgba(255,153,51,0.12);
    border: 1px solid rgba(255,153,51,0.3);
    color: var(--accent-gold);
    font-size: 0.75rem;
    padding: 3px 12px;
    border-radius: 20px;
    font-weight: 500;
}

.reviews-cta {
    text-align: center;
    margin-top: 3.5rem;
    padding: 2rem 1rem;
}

.reviews-cta-question {
    color: var(--text-light);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.reviews-cta-sub {
    color: #aaa;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.85rem 2.2rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(37,211,102,0.25);
    letter-spacing: 0.5px;
}

.whatsapp-btn i {
    font-size: 1.2rem;
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(37,211,102,0.35);
    color: #fff;
}


.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.contact-info-card {
    background: linear-gradient(135deg, rgba(255,153,51,0.06) 0%, rgba(26,47,79,0.4) 100%);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 1.5rem 1.8rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.contact-info-card:hover {
    border-color: var(--primary-gold);
    box-shadow: 0 10px 30px rgba(255,153,51,0.15);
    transform: translateY(-3px);
}

.contact-info-card h4 {
    color: var(--primary-gold);
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info-card p {
    color: #bbb;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 576px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}

footer {
    background: var(--primary-black);
    border-top: 1px solid var(--border-color);
    padding: 3rem 0 1.5rem;
    color: #aaa;
}

.footer-logo-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.footer-logo-img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    filter: drop-shadow(0 0 6px rgba(255,153,51,0.3));
}

.footer-brand-name {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-gold), var(--light-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-main-row {
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.footer-title {
    color: var(--primary-gold) !important;
    font-family: 'Cinzel', serif !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    margin-bottom: 1.2rem !important;
    letter-spacing: 0.5px;
}

.footer-link {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 0.6rem;
    font-size: 0.88rem;
}

.footer-link:hover {
    color: var(--primary-gold);
    padding-left: 4px;
}

.footer-contact-item {
    color: #999;
    font-size: 0.88rem;
    margin-bottom: 0.6rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    line-height: 1.5;
}

.footer-contact-item i {
    color: var(--primary-gold);
    margin-top: 3px;
    flex-shrink: 0;
    width: 14px;
}

.social-icons {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.2rem;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,153,51,0.1);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 0.85rem;
}

.social-icon:hover {
    background: var(--primary-gold);
    color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255,153,51,0.3);
}

.footer-tagline {
    text-align: center;
    padding: 1.5rem 0 0.5rem;
    color: #777;
    font-size: 0.9rem;
    font-style: italic;
    letter-spacing: 0.5px;
}

.copyright {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,153,51,0.1);
    color: #555;
    font-size: 0.82rem;
    margin-top: 0.5rem;
}

.service-card-new {
    /*background: linear-gradient(160deg, rgba(60, 25, 5, 0.85) 0%, rgba(20, 10, 2, 0.95) 100%);*/
    border: 1px solid rgba(255, 153, 51, 0.4);
    border-radius: 16px;
    padding: 2.5rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,153,51,0.1);
}

.service-card-new:hover {
    border-color: var(--primary-gold);
    box-shadow: 0 20px 50px rgba(255, 153, 51, 0.2), inset 0 1px 0 rgba(255,153,51,0.2);
    transform: translateY(-6px);
}

.service-icon-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 2px solid rgba(255, 153, 51, 0.6);
    background: rgba(255, 153, 51, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 20px rgba(255, 153, 51, 0.15);
    flex-shrink: 0;
}

.service-title-new {
    font-family: 'Cinzel', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 0.9rem;
    line-height: 1.4;
}

.service-desc-new {
    color: #bbb;
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 280px;
}

.service-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 1.8rem 0;
    width: 100%;
    text-align: left;
    columns: 1;
    flex-grow: 1;
}

.service-checklist li {
    color: #ccc;
    font-size: 0.85rem;
    padding: 0.3rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    line-height: 1.5;
}

.service-checklist li i {
    color: var(--primary-gold);
    font-size: 0.7rem;
    margin-top: 4px;
    flex-shrink: 0;
}

.service-cta {
    margin-top: auto;
    width: 100%;
}

.service-btn {
    background: linear-gradient(135deg, rgba(255,153,51,0.15), rgba(255,153,51,0.05));
    border: 1px solid rgba(255,153,51,0.5);
    color: var(--primary-gold);
    font-family: 'Cinzel', serif;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.service-btn:hover {
    background: linear-gradient(135deg, var(--primary-gold), var(--light-gold));
    color: var(--primary-dark);
    border-color: var(--primary-gold);
    box-shadow: 0 8px 25px rgba(255,153,51,0.3);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .service-card-new {
        padding: 2rem 1.5rem;
    }
    .service-title-new {
        font-size: 1.1rem;
    }
}