/* Luxury Real Estate Website Styles */

:root {
    /*--primary: #E8B4B8;*/
    /*--primary-dark: #D4959A;*/
    --primary:#967727;
    --primary-dark:#d3d495;
    --secondary: #B8D4E3;
    --secondary-dark: #9BBDD0;
    --accent: #C5E8C5;
    --accent-dark: #A8D8A8;
    --dark: #4A4A4A;
    --dark-light: #6B6B6B;
    --light: #FDF6F6;
    --white: #FFFFFF;
    --pastel-pink: #FFB6C1;
    --pastel-blue: #ADD8E6;
    --pastel-mint: #98FF98;
    --pastel-lavender: #E6E6FA;
    --pastel-peach: #FFDAB9;
    --pastel-coral: #F08080;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

/* Navigation */
.luxury-nav {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.luxury-nav.scrolled {
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.luxury-brand {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary) !important;
    letter-spacing: 2px;
}

.luxury-nav .nav-link {
    color: var(--white) !important;
    font-weight: 500;
    margin: 0 5px;
    transition: color 0.3s ease;
}

.luxury-nav .nav-link:hover {
    color:#ffffff !important;
}

.btn-gold {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    color: var(--white);
    padding: 12px 30px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(232, 180, 184, 0.4);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)),
                url('https://images.unsplash.com/photo-1613490493576-7fde63acd811?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
}

.hero-content {
    position: relative;
    z-index: 1;
    padding-top: 80px;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--light);
    margin-bottom: 40px;
    font-weight: 300;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-cta {
    animation: fadeInUp 1s ease 0.4s backwards;
}

.hero-cta .btn {
    padding: 15px 40px;
    font-size: 1rem;
    letter-spacing: 1px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Project Overview */
.project-overview {
    background: var(--white);
}

.overview-text {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.overview-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.stat-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    color: var(--white);
}

.stat-card h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
    color: var(--dark);
}

.stat-card p {
    color: #666;
    font-size: 0.9rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 20px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--primary);
    margin: 15px auto 0;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

.section-text {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.brand-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Features Section */
.features-section {
    background: var(--light);
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.feature-card p {
    color: #666;
    font-size: 0.95rem;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.amenity-item i {
    font-size: 1.5rem;
    color: var(--primary);
    width: 30px;
}

.amenity-item span {
    font-size: 0.95rem;
    color: #555;
}

/* Floor Plans Section */
.floorplans-section {
    background: var(--dark);
    color: var(--white);
}

.floorplans-section .section-title {
    color: var(--white);
}

.floorplans-section .section-subtitle {
    color: #aaa;
}

.floor-table {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
}

.floor-table th {
    background: var(--dark-light);
    border: none;
    color: var(--white);
    font-weight: 600;
    padding: 20px;
}

.floor-table td {
    padding: 20px;
    border-color: #eee;
    color: var(--dark);
    vertical-align: middle;
}

.floor-table tr:hover td {
    background: #f8f8f8;
}

/* Navigation Buttons */
.btn-download-brochure,
.btn-inquire {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    color: var(--white);
    padding: 10px 25px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.btn-download-brochure:hover,
.btn-inquire:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--white);
    transform: translateY(-2px);
}

/* Master Plan Section */
.masterplan-section {
    background: var(--light);
}

.plan-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.plan-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.plan-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.plan-placeholder {
    background: var(--light);
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 2px dashed #ddd;
}

.plan-placeholder i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.plan-placeholder p {
    color: #888;
    font-size: 0.9rem;
}

/* Amenities Section */
.amenities-section {
    background: var(--white);
}

.amenities-grid {
    margin-top: 30px;
}

.amenity-card {
    background: var(--light);
    padding: 25px 20px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.amenity-card:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.amenity-card:hover i,
.amenity-card:hover span {
    color: var(--white);
}

.amenity-card i {
    font-size: 2rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.amenity-card span {
    font-size: 0.9rem;
    color: #555;
    font-weight: 500;
    transition: all 0.3s ease;
}

/* Specifications Section */
.specifications-section {
    background: var(--light);
}

.accordion-button {
    background: var(--white);
    color: var(--dark);
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    transition: all 0.3s ease;
    position: relative;
}

.accordion-button:not(.collapsed) {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(232, 180, 184, 0.3);
}

.accordion-button:focus {
    box-shadow: 0 0 0 3px rgba(232, 180, 184, 0.2);
}

.accordion-button::after {
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg);
}

.accordion-collapse {
    transition: all 0.4s ease;
}

.accordion-body {
    background: var(--white);
    color: #555;
    line-height: 1.8;
    padding: 20px;
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.accordion-item {
    border: 1px solid #eee;
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.accordion-item:first-child {
    border-radius: 8px;
}

/* Location Section */
.location-section {
    background: var(--white);
}

/* Highlights Section */
.highlights-section {
    background: var(--light);
}

.highlight-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.highlight-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.highlight-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark);
    font-family: 'Playfair Display', serif;
}

.highlight-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.highlight-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.highlight-card ul li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.highlight-card ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.location-category {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.location-category:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.location-category h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-category h3 i {
    color: var(--primary);
}

.location-category ul {
    list-style: none;
    padding: 0;
}

.location-category ul li {
    padding: 8px 0;
    color: #666;
    border-bottom: 1px solid #eee;
}

.location-category ul li:last-child {
    border-bottom: none;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, var(--dark-light), var(--dark));
    color: var(--white);
}

.contact-section .section-title {
    color: var(--white);
}

.contact-section .section-subtitle {
    color: #ccc;
}

.contact-info p {
    color: #aaa;
    margin-bottom: 15px;
}

.contact-info a {
    color: var(--primary);
    text-decoration: none;
}

.contact-info a:hover {
    color: var(--white);
}

.rera-section {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    color: var(--dark);
}

.rera-section h3 {
    color: var(--dark);
    margin-bottom: 10px;
}

.rera-number {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 20px;
}

.disclaimer {
    background: var(--light);
    padding: 15px;
    border-radius: 5px;
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-links .luxury-brand {
    font-size: 32px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.luxury-brand:hover {
    color: var(--primary-dark);
}

.navbar-logo {
    height: 50px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
}

/* Modal Styles */
.modal-content {
    border-radius: 15px;
    border: none;
}

.modal-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border-radius: 15px 15px 0 0;
}

.modal-title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.btn-close {
    filter: brightness(0) invert(1);
}

.modal-body {
    padding: 30px;
}

.location-card {
    text-align: center;
    padding: 40px 30px;
    border: 1px solid #eee;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.location-card:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(232, 180, 184, 0.15);
}

.location-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--white);
}

.location-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.location-card p {
    color: #666;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, var(--dark-light), var(--dark));
    color: var(--white);
}

.contact-section .section-title {
    color: var(--white);
}

.contact-section .section-subtitle {
    color: #ccc;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.contact-form label {
    color: var(--dark);
    font-weight: 500;
    margin-bottom: 8px;
}

.contact-form .form-control,
.contact-form .form-select {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(232, 180, 184, 0.1);
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer h4 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer p {
    color: #aaa;
    margin-bottom: 10px;
}

.footer-hr {
    border-color: #333;
    margin: 30px 0;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--dark-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.copyright {
    color: #888;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .feature-card,
    .location-card {
        margin-bottom: 20px;
    }
    
    .quick-inquiry-form {
        padding: 20px;
    }
    
    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-cta .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .luxury-brand {
        font-size: 24px;
    }
    
    .quick-inquiry-form {
        padding: 15px;
    }
    
    .quick-inquiry-form .form-label {
        font-size: 0.85rem;
    }
    
    .quick-inquiry-form .form-control,
    .quick-inquiry-form .form-select {
        font-size: 0.9rem;
        padding: 10px 12px;
    }
    
    .quick-inquiry-form .btn-gold {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .quick-inquiry-form .form-check-label {
        font-size: 0.75rem;
    }
    
    .stat-card {
        padding: 20px 15px;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .stat-card h3 {
        font-size: 1.5rem;
    }
    
    .amenity-card {
        padding: 20px 15px;
    }
    
    .amenity-card i {
        font-size: 1.5rem;
    }
    
    .amenity-card span {
        font-size: 0.8rem;
    }
    
    .location-category {
        padding: 20px;
    }
    
    .location-category h3 {
        font-size: 1.1rem;
    }
    
    .location-category ul li {
        font-size: 0.9rem;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-float i {
        font-size: 24px;
    }
    
    .scroll-top-float {
        width: 45px;
        height: 45px;
    }
    
    .scroll-top-float i {
        font-size: 18px;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Animation Classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Floating Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}

/* Pulse Animation */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.pulse-animation {
    animation: pulse 2s ease-in-out infinite;
}

/* Rotate Animation */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.rotate-animation {
    animation: rotate 20s linear infinite;
}

/* Bounce Animation */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

.bounce-animation {
    animation: bounce 2s ease-in-out infinite;
}

/* Shine Effect */
@keyframes shine {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

.shine-effect {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    background-size: 200% 100%;
    animation: shine 3s infinite;
}

/* Stagger Animation Delays */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.whatsapp-float {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
    animation: pulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    font-size: 30px;
    color: var(--white);
}

.scroll-top-float {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(232, 180, 184, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.scroll-top-float.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-float:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(232, 180, 184, 0.6);
}

.scroll-top-float i {
    font-size: 20px;
    color: var(--white);
}

/* Quick Inquiry Form */
.quick-inquiry-section {
    background: var(--white);
    position: relative;
    margin-top: -50px;
    z-index: 10;
}

.quick-inquiry-form {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.quick-inquiry-form .form-label {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.quick-inquiry-form .form-control {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.quick-inquiry-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(232, 180, 184, 0.2);
}

.quick-inquiry-form .form-select {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.quick-inquiry-form .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(232, 180, 184, 0.2);
}

.quick-inquiry-form .btn-gold {
    padding: 12px 20px;
    font-size: 1rem;
}

.quick-inquiry-form .form-check {
    margin-top: 15px;
}

.quick-inquiry-form .form-check-input {
    width: 18px;
    height: 18px;
    border-color: #ddd;
    cursor: pointer;
}

.quick-inquiry-form .form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.quick-inquiry-form .form-check-label {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
    cursor: pointer;
}

/* Alert Styles */
.alert {
    border-radius: 8px;
    margin-bottom: 20px;
}

.alert-success {
    background: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

.alert-danger {
    background: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}
