/* CSS Variables for Colors */
:root {
    --royal-blue: #1e3a8a;
    --gold: #d4af37;
    --light-cream: #f5f5f0;
    --dark-blue: #0f1e4e;
    --light-gold: #f4e4a9;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: var(--light-cream);
    overflow-x: hidden;
}

/* Common Section Styles */
section {
    padding: 3rem 1rem;
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    font-size: 2rem;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--gold);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

/* Navigation */
.navbar {
    background-color: var(--royal-blue);
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.brand-subtitle {
    font-size: 0.7rem;
    color: var(--gold);
    letter-spacing: 0.5px;
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-nav .nav-link {
    color: white !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    text-align: center;
}

.navbar-nav .nav-link:hover {
    color: var(--gold) !important;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(rgba(30, 58, 138, 0.8), rgba(30, 58, 138, 0.9)), 
                url('../images/hero-bg.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 2rem 1rem;
}

.hero-content {
    max-width: 800px;
    width: 100%;
}

.hero-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--light-gold);
    line-height: 1.4;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

/* Common Button Styles */
.btn {
    padding: 0.75rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    cursor: pointer;
    width: 100%;
    max-width: 250px;
}

.btn-primary {
    background-color: var(--gold);
    color: var(--dark-blue);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    background-color: #c19b2a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--gold);
    color: white;
}

.btn-outline:hover {
    background-color: var(--gold);
    color: var(--dark-blue);
    transform: translateY(-2px);
}

/* Features Section */
.features-section {
    background-color: white;
}

.feature-box {
    background-color: white;
    padding: 2rem 1rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    border-top: 4px solid var(--royal-blue);
    margin-bottom: 1.5rem;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark-blue);
}

/* About Section */
.about-section {
    background-color: var(--light-cream);
}

.about-content {
    font-size: 1rem;
    line-height: 1.7;
    text-align: center;
}

/* Payment Section */
.payment-section {
    background-color: white;
}

.payment-table-container {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow-x: auto;
}

.premium-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.premium-table th {
    background: var(--royal-blue);
    color: white;
    padding: 1rem;
    text-align: center;
    font-weight: 600;
}

.premium-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid #eee;
}

/* Map Section */
.map-section {
    background-color: var(--light-cream);
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-image {
    width: 100%;
    height: auto;
    display: block;
}

.legend {
    background-color: white;
    padding: 1rem;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    margin-top: 1rem;
}

.legend-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 3px;
    margin-right: 10px;
}

/* Contact Section */
.contact-section {
    background-color: white;
}

.contact-form {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.form-control {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    width: 100%;
}

.form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
    outline: none;
}

.whatsapp-btn {
    background-color: #25D366;
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 1rem;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
}

/* Footer */
.footer-section {
    background: var(--dark-blue);
    color: white;
    padding: 3rem 1rem 1rem;
}

.footer-section h5 {
    color: var(--gold);
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

.social-icons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--gold);
    color: var(--dark-blue);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    padding-top: 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: var(--dark-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    border: none;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #c19b2a;
    transform: translateY(-3px);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Color Classes */
.color-yellow { background-color: #FFD700; }
.color-orange { background-color: #FFA500; }
.color-red { background-color: #FF6347; }

/* Tablet Styles */
@media (min-width: 768px) {
    section {
        padding: 4rem 2rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .btn {
        width: auto;
        margin: 0 0.5rem;
    }
    
    .feature-box {
        margin-bottom: 0;
        padding: 2.5rem 2rem;
    }
    
    .legend {
        position: absolute;
        top: 20px;
        right: 20px;
        margin-top: 0;
    }
    
    .navbar-nav .nav-link {
        margin: 0 0.75rem;
    }
    
    .contact-form {
        margin-bottom: 0;
    }
    
    .footer-section {
        padding: 4rem 2rem 1.5rem;
    }
}

/* Desktop Styles */
@media (min-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    section {
        padding: 5rem 2rem;
    }
    
    .navbar-nav .nav-link {
        margin: 0 1rem;
    }
    
    .container {
        max-width: 960px;
    }
}

/* Mobile Specific Fixes */
@media (max-width: 767px) {
    .payment-table-container {
        overflow-x: auto;
    }
    
    .map-container {
        overflow-x: auto;
    }
    
    .navbar-collapse {
        background: var(--royal-blue);
        margin-top: 1rem;
        border-radius: 5px;
    }
}

/* Small Mobile */
@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .feature-box {
        padding: 1.5rem 1rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .footer-section {
        padding: 2rem 1rem 1rem;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.mb-3 { margin-bottom: 1rem; }
.mt-3 { margin-top: 1rem; }
.d-block { display: block; }
.w-100 { width: 100%; }
/* Contact Hero Section */
.contact-hero-section {
    background: linear-gradient(rgba(30, 58, 138, 0.9), rgba(30, 58, 138, 0.95)), 
                url('../images/contact-hero-bg.jpg') no-repeat center center/cover;
    padding: 100px 0 80px;
    color: white;
    text-align: center;
}

.contact-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.contact-hero-subtitle {
    font-size: 1.3rem;
    color: #d4af37;
    margin-bottom: 25px;
    font-weight: 300;
}

.gold-divider-center {
    width: 80px;
    height: 3px;
    background-color: #d4af37;
    margin: 0 auto 25px;
}

.contact-hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Contact Main Section */
.contact-main-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-form-wrapper {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
}

.form-header {
    background: linear-gradient(135deg, #1e3a8a 0%, #2d4ba0 100%);
    color: white;
    padding: 40px 30px 30px;
}

.form-main-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.form-subtitle {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    font-size: 1rem;
}

.form-features {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.feature-item i {
    color: #d4af37;
}

.detailed-contact-form {
    padding: 40px 30px 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    display: block;
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    z-index: 2;
}

.input-with-icon .form-control {
    padding-left: 45px;
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #1e3a8a;
    box-shadow: 0 0 0 0.2rem rgba(30, 58, 138, 0.1);
}

.form-control::placeholder {
    color: #6c757d;
}

.char-count {
    text-align: right;
    font-size: 0.8rem;
    color: #6c757d;
    margin-top: 5px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #555;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 3px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #1e3a8a;
    border-color: #1e3a8a;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    color: white;
    font-size: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.form-actions {
    display: flex;
    gap: 15px;
    margin: 30px 0 20px;
    flex-wrap: wrap;
}

.btn-primary-main, .btn-whatsapp-main, .btn-call-main {
    flex: 1;
    padding: 15px 25px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    min-width: 140px;
}

.btn-primary-main {
    background: #1e3a8a;
    color: white;
}

.btn-primary-main:hover {
    background: #163072;
    transform: translateY(-2px);
}

.btn-whatsapp-main {
    background: #25D366;
    color: white;
}

.btn-whatsapp-main:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.btn-call-main {
    background: #dc3545;
    color: white;
}

.btn-call-main:hover {
    background: #c82333;
    transform: translateY(-2px);
}

.form-footer {
    margin-top: 20px;
}

.privacy-note {
    font-size: 0.85rem;
    color: #6c757d;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.privacy-note i {
    color: #28a745;
}

/* Contact Sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.emergency-card {
    border-left: 5px solid #dc3545;
}

.sales-card {
    border-left: 5px solid #1e3a8a;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d4af37 0%, #f4e4a9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #1e3a8a;
    flex-shrink: 0;
}

.emergency-card .card-icon {
    background: linear-gradient(135deg, #dc3545 0%, #e4606d 100%);
    color: white;
}

.card-content {
    flex: 1;
}

.card-title {
    color: #1e3a8a;
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.card-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.card-desc, .card-address {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.card-address {
    font-size: 0.95rem;
}

.btn-emergency, .btn-directions {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-emergency {
    background: #dc3545;
    color: white;
}

.btn-emergency:hover {
    background: #c82333;
    transform: translateY(-2px);
}

.btn-directions {
    background: #1e3a8a;
    color: white;
}

.btn-directions:hover {
    background: #163072;
    transform: translateY(-2px);
}

.office-hours {
    margin: 20px 0;
}

.office-hours h4 {
    color: #333;
    font-size: 1rem;
    margin-bottom: 15px;
}

.timing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.timing:last-child {
    border-bottom: none;
}

.timing span:first-child {
    color: #666;
}

.timing span:last-child {
    color: #333;
    font-weight: 600;
}

/* Quick Contact Methods */
.quick-contact-methods {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.methods-title {
    color: #1e3a8a;
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.method-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 15px;
    background: #f8f9fa;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.method-item:hover {
    background: #e9ecef;
    transform: translateY(-3px);
}

.method-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: white;
}

.method-icon.email { background: #dc3545; }
.method-icon.whatsapp { background: #25D366; }
.method-icon.call { background: #1e3a8a; }
.method-icon.visit { background: #d4af37; }

.method-item span {
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}

/* Sidebar Map */
.sidebar-map {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.map-title {
    color: #1e3a8a;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.map-container-sidebar {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* Team Contact Section */
.team-contact-section {
    padding: 80px 0;
    background: white;
}

.section-title {
    color: #1e3a8a;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

.section-subtitle {
    color: #666;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.team-member-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    text-align: center;
}

.team-member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.member-image {
    height: 200px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info {
    padding: 25px 20px;
}

.member-name {
    color: #1e3a8a;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.member-role {
    color: #d4af37;
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 1rem;
}

.member-expertise {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.member-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #1e3a8a;
    text-decoration: none;
    font-weight: 600;
    padding: 8px 15px;
    border: 2px solid #1e3a8a;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: #1e3a8a;
    color: white;
}

.btn-whatsapp-member {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #25D366;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-whatsapp-member:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

/* FAQ Section */
.contact-faq-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    overflow: hidden;
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h4 {
    color: #1e3a8a;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    flex: 1;
}

.faq-question i {
    color: #d4af37;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 30px 25px;
    display: none;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Final CTA Section */
.contact-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #2d4ba0 100%);
    color: white;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.btn-cta-primary, .btn-cta-whatsapp, .btn-cta-visit {
    padding: 18px 30px;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    min-width: 200px;
}

.btn-cta-primary {
    background: #d4af37;
    color: #1e3a8a;
}

.btn-cta-primary:hover {
    background: #c19b2a;
    transform: translateY(-3px);
}

.btn-cta-whatsapp {
    background: #25D366;
    color: white;
}

.btn-cta-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px);
}

.btn-cta-visit {
    background: white;
    color: #1e3a8a;
}

.btn-cta-visit:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
}

.urgency-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #ffd700;
    font-weight: 600;
    font-size: 1.1rem;
}

.urgency-notice i {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Success Message */
.success-message {
    padding: 50px 30px;
}

.success-icon {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 20px;
}

.success-title {
    color: #1e3a8a;
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.success-text {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.success-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-success-primary, .btn-success-secondary {
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-success-primary {
    background: #25D366;
    color: white;
}

.btn-success-primary:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.btn-success-secondary {
    background: #1e3a8a;
    color: white;
}

.btn-success-secondary:hover {
    background: #163072;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-hero-title {
        font-size: 2.2rem;
    }
    
    .contact-hero-section {
        padding: 80px 0 60px;
    }
    
    .form-header {
        padding: 30px 20px 25px;
    }
    
    .form-main-title {
        font-size: 1.6rem;
    }
    
    .form-features {
        flex-direction: column;
        gap: 10px;
    }
    
    .detailed-contact-form {
        padding: 30px 20px 25px;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .btn-primary-main, .btn-whatsapp-main, .btn-call-main {
        flex: none;
        width: 100%;
    }
    
    .contact-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .methods-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta-primary, .btn-cta-whatsapp, .btn-cta-visit {
        width: 100%;
        max-width: 300px;
    }
    
    .success-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-success-primary, .btn-success-secondary {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 576px) {
    .contact-hero-title {
        font-size: 1.8rem;
    }
    
    .contact-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .form-main-title {
        font-size: 1.4rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .faq-question {
        padding: 20px 25px;
    }
    
    .faq-question h4 {
        font-size: 1rem;
    }
}
/* Contact Hero Section */
.contact-hero-section {
    background: linear-gradient(rgba(30, 58, 138, 0.9), rgba(30, 58, 138, 0.95)), 
                url('../images/contact-hero-bg.jpg') no-repeat center center/cover;
    padding: 140px 0 100px;
    color: white;
    text-align: center;
}

.contact-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.contact-hero-subtitle {
    font-size: 1.5rem;
    color: var(--light-gold);
    margin-bottom: 25px;
    font-weight: 300;
}

.contact-hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 20px auto 0;
    font-weight: 300;
}

/* Contact Stats Banner */
.contact-stats-banner {
    background: linear-gradient(135deg, var(--gold) 0%, #f4e4a9 100%);
    color: var(--dark-blue);
}

.contact-stat-item h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.contact-stat-item p {
    font-weight: 600;
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Premium Contact Form */
.contact-form-premium {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    overflow: hidden;
}

.form-header {
    background: linear-gradient(135deg, var(--royal-blue) 0%, var(--dark-blue) 100%);
    color: white;
    padding: 40px 30px 30px;
    text-align: center;
}

.form-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.form-subtitle {
    color: var(--light-gold);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.form-badge {
    background: var(--gold);
    color: var(--dark-blue);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.premium-form {
    padding: 40px 30px 30px;
}

.form-group-floating {
    position: relative;
    margin-bottom: 25px;
}

.form-control-floating {
    width: 100%;
    padding: 20px 50px 10px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-control-floating:focus {
    border-color: var(--gold);
    background: white;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
    outline: none;
}

.form-control-floating:focus + label,
.form-control-floating:not(:placeholder-shown) + label {
    top: 5px;
    left: 20px;
    font-size: 0.8rem;
    color: var(--gold);
}

.form-group-floating label {
    position: absolute;
    top: 18px;
    left: 20px;
    color: #666;
    transition: all 0.3s ease;
    pointer-events: none;
    background: white;
    padding: 0 5px;
}

.form-group-floating i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    transition: color 0.3s ease;
}

.form-control-floating:focus ~ i {
    color: var(--gold);
}

.form-actions {
    display: flex;
    gap: 15px;
    margin: 30px 0 20px;
}

.btn-premium-primary, .btn-premium-whatsapp {
    flex: 1;
    padding: 15px 25px;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-premium-primary {
    background: linear-gradient(135deg, var(--royal-blue) 0%, var(--dark-blue) 100%);
    color: white;
}

.btn-premium-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
}

.btn-premium-primary:hover, .btn-premium-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.btn-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: rotate(45deg);
    animation: glow 2s infinite;
}

@keyframes glow {
    0% { transform: rotate(45deg) translateX(-100%); }
    100% { transform: rotate(45deg) translateX(100%); }
}

.form-assurance {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
}

.assurance-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 0.9rem;
}

.assurance-item i {
    color: var(--gold);
}

/* Contact Sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    border-left: 5px solid var(--gold);
}

.contact-card:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.contact-card.emergency { border-left-color: #ff6b6b; }
.contact-card.sales { border-left-color: var(--royal-blue); }
.contact-card.support { border-left-color: #51cf66; }

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold) 0%, #f4e4a9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--dark-blue);
    flex-shrink: 0;
}

.contact-card.emergency .card-icon { background: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 100%); }
.contact-card.sales .card-icon { background: linear-gradient(135deg, var(--royal-blue) 0%, #4a6fdc 100%); }
.contact-card.support .card-icon { background: linear-gradient(135deg, #51cf66 0%, #69db7c 100%); }

.card-content h4 {
    color: var(--dark-blue);
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.number {
    color: #333;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.availability {
    color: #666;
    font-size: 0.9rem;
}

/* Office Hours */
.office-hours {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.hours-title {
    color: var(--dark-blue);
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 600;
}

.timings {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.timing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.timing-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.timing-item.highlight {
    background: #fff8e1;
    padding: 15px;
    border-radius: 8px;
    margin: 10px -15px 0;
    border: 2px solid var(--gold);
}

.day {
    color: var(--dark-blue);
    font-weight: 600;
}

.time {
    color: #666;
    font-weight: 500;
}

/* Live Chat Promo */
.live-chat-promo {
    background: linear-gradient(135deg, var(--royal-blue) 0%, var(--dark-blue) 100%);
    border-radius: 15px;
    padding: 30px 25px;
    color: white;
    display: flex;
    align-items: center;
    gap: 20px;
}

.chat-icon {
    font-size: 2.5rem;
    color: var(--light-gold);
}

.chat-content h5 {
    color: white;
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.chat-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
}

.btn-live-chat {
    background: var(--gold);
    color: var(--dark-blue);
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-live-chat:hover {
    background: #c19b2a;
    transform: translateY(-2px);
}

/* Interactive Map Section */
.interactive-map-section {
    background: linear-gradient(135deg, var(--light-cream) 0%, #f8f9fa 100%);
}

.map-container-premium {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.overlay-content h5 {
    color: var(--dark-blue);
    margin-bottom: 8px;
}

.overlay-content p {
    color: #666;
    margin-bottom: 15px;
}

.btn-get-directions {
    background: var(--gold);
    color: var(--dark-blue);
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-get-directions:hover {
    background: #c19b2a;
    transform: translateY(-2px);
}

/* Visit Options */
.visit-options {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    height: 100%;
}

.options-title {
    color: var(--dark-blue);
    margin-bottom: 25px;
    font-size: 1.4rem;
    font-weight: 600;
    text-align: center;
}

.visit-option {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #f0f0f0;
}

.visit-option:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.option-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold) 0%, #f4e4a9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--dark-blue);
    flex-shrink: 0;
}

.option-content h5 {
    color: var(--dark-blue);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.option-content p {
    color: #666;
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.option-content small {
    color: #888;
    font-size: 0.85rem;
}

.booking-cta {
    background: var(--light-cream);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    margin-top: 20px;
}

.booking-cta h5 {
    color: var(--dark-blue);
    margin-bottom: 8px;
}

.booking-cta p {
    color: #666;
    margin-bottom: 15px;
}

.btn-book-visit {
    background: var(--royal-blue);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-book-visit:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
}

/* Team Section */
.contact-team-section {
    background-color: white;
}

.team-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.team-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 58, 138, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--gold);
    color: var(--dark-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: white;
    transform: scale(1.1);
}

.team-content {
    padding: 25px 20px;
}

.team-content h4 {
    color: var(--dark-blue);
    margin-bottom: 5px;
    font-size: 1.3rem;
}

.position {
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1rem;
}

.expertise {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.contact-direct {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--royal-blue);
    font-weight: 600;
}

.contact-direct i {
    color: var(--gold);
}

/* FAQ Section */
.contact-faq-section {
    background: linear-gradient(135deg, var(--light-cream) 0%, #f8f9fa 100%);
}

.faq-accordion {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.faq-item {
    border-bottom: 1px solid #f0f0f0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h5 {
    color: var(--dark-blue);
    margin-bottom: 0;
    font-size: 1.1rem;
    flex: 1;
}

.faq-question i {
    color: var(--gold);
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 30px 25px;
    display: none;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Final CTA Section */
.final-cta-section {
    background: linear-gradient(135deg, var(--royal-blue) 0%, var(--dark-blue) 100%);
    color: white;
}

.final-cta-content h2 {
    color: white;
    margin-bottom: 15px;
    font-size: 2.5rem;
}

.cta-description {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-stats .stat {
    text-align: center;
}

.cta-stats h3 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 5px;
}

.cta-stats p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    font-weight: 500;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.btn-cta-call, .btn-cta-whatsapp {
    padding: 18px 30px;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-cta-call {
    background: var(--gold);
    color: var(--dark-blue);
}

.btn-cta-whatsapp {
    background: #25D366;
    color: white;
}

.btn-cta-call:hover, .btn-cta-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.urgency-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--light-gold);
    font-weight: 600;
    font-size: 1.1rem;
}

.urgency-note i {
    animation: pulse 2s infinite;
}

/* Success Message */
.success-message {
    padding: 50px 30px;
}

.success-icon {
    font-size: 4rem;
    color: #51cf66;
    margin-bottom: 20px;
}

.success-message h3 {
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.success-message p {
    color: #666;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.success-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-success-primary, .btn-success-secondary {
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-success-primary {
    background: #25D366;
    color: white;
}

.btn-success-secondary {
    background: var(--royal-blue);
    color: white;
}

.btn-success-primary:hover, .btn-success-secondary:hover {
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-hero-title {
        font-size: 2.5rem;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-assurance {
        flex-direction: column;
        gap: 10px;
    }
    
    .contact-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .live-chat-promo {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta-call, .btn-cta-whatsapp {
        width: 100%;
        max-width: 300px;
    }
    
    .success-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-success-primary, .btn-success-secondary {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 576px) {
    .contact-hero-section {
        padding: 100px 0 60px;
    }
    
    .contact-hero-title {
        font-size: 2rem;
    }
    
    .final-cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-stats {
        gap: 20px;
    }
    
    .cta-stats h3 {
        font-size: 2.5rem;
    }
}
/* Plot Map Hero Section */
.plotmap-hero-section {
    background: linear-gradient(rgba(30, 58, 138, 0.9), rgba(30, 58, 138, 0.95)), 
                url('../images/plotmap-hero-bg.jpg') no-repeat center center/cover;
    padding: 140px 0 100px;
    color: white;
    text-align: center;
}

.plotmap-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.plotmap-hero-subtitle {
    font-size: 1.5rem;
    color: var(--light-gold);
    margin-bottom: 25px;
    font-weight: 300;
}

.plotmap-hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 20px auto 0;
    font-weight: 300;
}

/* Plot Stats Banner */
.plot-stats-banner {
    background: linear-gradient(135deg, var(--gold) 0%, #f4e4a9 100%);
    color: var(--dark-blue);
}

.plot-stat-item h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.plot-stat-item p {
    font-weight: 600;
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Main Map Section */
.main-map-section {
    background-color: white;
}

.map-container-simple {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 30px;
}

.map-image-wrapper {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.map-image-simple {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Map Legend */
.map-legend {
    background: var(--light-cream);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.legend-title {
    color: var(--dark-blue);
    font-size: 1.3rem;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

.legend-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    flex-shrink: 0;
}

.color-3marla { background: #FFD700; }
.color-5marla { background: #FFA500; }
.color-10marla { background: #FF6347; }
.color-farmhouse { background: #32CD32; }
.color-commercial { background: #9370DB; }
.color-park { background: #90EE90; }

.legend-text {
    color: var(--dark-blue);
    font-weight: 500;
}

/* Map Actions */
.map-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-download-map,
.btn-print-map {
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-download-map {
    background: var(--gold);
    color: var(--dark-blue);
}

.btn-print-map {
    background: var(--royal-blue);
    color: white;
}

.btn-download-map:hover {
    background: #c19b2a;
    transform: translateY(-2px);
}

.btn-print-map:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
}

/* Block Information Section */
.block-info-section {
    background: linear-gradient(135deg, var(--light-cream) 0%, #f8f9fa 100%);
}

.block-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.block-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.block-header {
    background: linear-gradient(135deg, var(--royal-blue) 0%, var(--dark-blue) 100%);
    color: white;
    padding: 25px 20px;
    text-align: center;
    position: relative;
}

.block-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.block-badge {
    background: var(--gold);
    color: var(--dark-blue);
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 700;
    display: inline-block;
}

.block-content {
    padding: 25px 20px;
}

.block-stats {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.stat {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stat i {
    color: var(--gold);
    width: 20px;
    text-align: center;
}

.stat span {
    color: #555;
    font-weight: 500;
}

.block-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Available Plots Section */
.available-plots-section {
    background-color: white;
}

.plots-table-container {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
}

.plots-table {
    width: 100%;
    border-collapse: collapse;
}

.plots-table th {
    background: linear-gradient(135deg, var(--royal-blue) 0%, var(--dark-blue) 100%);
    color: white;
    padding: 15px 12px;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
}

.plots-table td {
    padding: 15px 12px;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: middle;
}

.plots-table tr:hover {
    background: #f8f9fa;
}

.plot-number strong {
    color: var(--dark-blue);
    font-size: 1.1rem;
}

.plot-block {
    color: #555;
    font-weight: 500;
}

.size-badge {
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
}

.size-badge-3-marla {
     background: #FFF8E1;
      color: #FF8F00;
     }
.size-badge-5-marla { background: #FFECB3; color: #FF6F00; }
.size-badge-10-marla { background: #FFCDD2; color: #D32F2F; }
.size-badge-2-kanal { background: #C8E6C9; color: #388E3C; }

.plot-price strong {
    color: var(--gold);
    font-size: 1.1rem;
}

.plot-features {
    color: #666;
    font-size: 0.9rem;
    max-width: 200px;
}

.btn-inquire {
    background: var(--royal-blue);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-inquire:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
}

.contact-prompt {
    background: var(--light-cream);
    padding: 40px;
    border-radius: 15px;
}

.contact-prompt h4 {
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.contact-prompt p {
    color: #666;
    margin-bottom: 25px;
}

/* Location Details Section */
.location-details-section {
    background: linear-gradient(135deg, var(--light-cream) 0%, #f8f9fa 100%);
}

.location-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

.location-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px;
    margin-bottom: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature i {
    color: var(--gold);
    font-size: 1.1rem;
}

.feature span {
    color: #555;
    font-weight: 500;
}

.location-visual {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.location-map-mini {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    padding: 40px 30px;
    color: white;
    text-align: center;
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--light-gold);
}

.map-placeholder h4 {
    color: white;
    margin-bottom: 10px;
}

.map-placeholder p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.map-placeholder small {
    color: rgba(255, 255, 255, 0.7);
}

.location-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.highlight-item {
    background: white;
    padding: 20px 15px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
}

.highlight-item i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.highlight-item h5 {
    color: var(--dark-blue);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.highlight-item span {
    color: #666;
    font-size: 0.9rem;
}

/* Plot Map CTA Section */
.plotmap-cta-section {
    background: linear-gradient(135deg, var(--royal-blue) 0%, var(--dark-blue) 100%);
    color: white;
}

.plotmap-cta-content h2 {
    color: white;
    margin-bottom: 15px;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons .btn {
    margin: 0 10px;
    padding: 12px 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .plotmap-hero-title {
        font-size: 2.5rem;
    }
    
    .legend-items {
        grid-template-columns: 1fr;
    }
    
    .location-highlights {
        grid-template-columns: 1fr;
    }
    
    .plots-table {
        display: block;
        overflow-x: auto;
    }
    
    .map-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-download-map,
    .btn-print-map {
        width: 100%;
        max-width: 250px;
    }
    
    .cta-buttons .btn {
        display: block;
        margin: 10px auto;
        width: 80%;
    }
}

@media (max-width: 576px) {
    .plotmap-hero-section {
        padding: 100px 0 60px;
    }
    
    .plotmap-hero-title {
        font-size: 2rem;
    }
    
    .block-stats {
        gap: 10px;
    }
    
    .location-features {
        grid-template-columns: 1fr;
    }
}
/* Plot Map Hero Section */
.plotmap-hero-section {
    background: linear-gradient(rgba(30, 58, 138, 0.9), rgba(30, 58, 138, 0.95)), 
                url('../images/plotmap-hero-bg.jpg') no-repeat center center/cover;
    padding: 140px 0 100px;
    color: white;
    text-align: center;
}

.plotmap-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.plotmap-hero-subtitle {
    font-size: 1.5rem;
    color: var(--light-gold);
    margin-bottom: 25px;
    font-weight: 300;
}

.plotmap-hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 20px auto 0;
    font-weight: 300;
}

/* Plot Stats Banner */
.plot-stats-banner {
    background: linear-gradient(135deg, var(--gold) 0%, #f4e4a9 100%);
    color: var(--dark-blue);
}

.plot-stat-item h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.plot-stat-item p {
    font-weight: 600;
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Interactive Map Section */
.interactive-map-section {
    background-color: white;
}

.map-container-enhanced {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
}

.map-image-container {
    position: relative;
    background: #f8f9fa;
    padding: 20px;
    text-align: center;
}

.map-image-enhanced {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Map Hotspots */
.map-hotspot {
    position: absolute;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hotspot-dot {
    width: 20px;
    height: 20px;
    background: var(--gold);
    border: 3px solid white;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.map-hotspot:hover .hotspot-dot {
    transform: scale(1.3);
    background: #ffd700;
}

.map-hotspot.active .hotspot-dot {
    transform: scale(1.5);
    background: #ff6b6b;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1.5); }
    50% { transform: scale(1.8); }
    100% { transform: scale(1.5); }
}

.hotspot-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark-blue);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

.hotspot-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: var(--dark-blue);
}

.map-hotspot:hover .hotspot-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Map Controls */
.map-controls {
    padding: 20px;
    background: var(--light-cream);
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-map-control {
    background: white;
    border: 2px solid var(--royal-blue);
    color: var(--royal-blue);
    padding: 10px 15px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-map-control:hover,
.btn-map-control.active {
    background: var(--royal-blue);
    color: white;
    transform: translateY(-2px);
}

/* Map Sidebar */
.map-sidebar {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 30px;
    height: 100%;
}

.sidebar-section {
    margin-bottom: 30px;
}

.sidebar-section:last-child {
    margin-bottom: 0;
}

.sidebar-title {
    color: var(--dark-blue);
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
}

/* Availability Stats */
.availability-stats {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.availability-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.availability-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.availability-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    flex-shrink: 0;
}

.color-3marla { background: #FFD700; }
.color-5marla { background: #FFA500; }
.color-10marla { background: #FF6347; }
.color-farmhouse { background: #32CD32; }

.availability-info {
    flex: 1;
}

.plot-size {
    display: block;
    color: var(--dark-blue);
    font-weight: 600;
    margin-bottom: 2px;
}

.plot-count {
    display: block;
    color: #666;
    font-size: 0.9rem;
}

/* Plot Details */
.plot-details {
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.no-selection {
    text-align: center;
    color: #666;
}

.no-selection i {
    font-size: 3rem;
    color: #ddd;
    margin-bottom: 15px;
}

.plot-selection {
    width: 100%;
}

.plot-info {
    margin: 15px 0;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #555;
}

.info-item i {
    color: var(--gold);
    width: 16px;
}

.plot-actions {
    margin-top: 20px;
}

.btn-view-plots {
    background: var(--gold);
    color: var(--dark-blue);
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-view-plots:hover {
    background: #c19b2a;
    transform: translateY(-2px);
}

/* Quick Actions */
.quick-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-action-primary,
.btn-action-secondary,
.btn-action-success {
    padding: 12px 15px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    display: block;
}

.btn-action-primary {
    background: var(--royal-blue);
    color: white;
}

.btn-action-secondary {
    background: transparent;
    border: 2px solid var(--royal-blue);
    color: var(--royal-blue);
}

.btn-action-success {
    background: var(--gold);
    color: var(--dark-blue);
}

.btn-action-primary:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
}

.btn-action-secondary:hover {
    background: var(--royal-blue);
    color: white;
    transform: translateY(-2px);
}

.btn-action-success:hover {
    background: #c19b2a;
    transform: translateY(-2px);
}

/* Plot Listings Section */
.plot-listings-section {
    background: linear-gradient(135deg, var(--light-cream) 0%, #f8f9fa 100%);
}

.plot-filters {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-group label {
    color: var(--dark-blue);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Plot Cards */
.plot-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
}

.plot-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.plot-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gold);
    color: var(--dark-blue);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 2;
}

.plot-card-header {
    background: linear-gradient(135deg, var(--royal-blue) 0%, var(--dark-blue) 100%);
    color: white;
    padding: 25px 20px;
    text-align: center;
}

.plot-number {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: white;
}

.plot-block {
    color: var(--light-gold);
    margin-bottom: 0;
    font-weight: 500;
}

.plot-card-body {
    padding: 25px 20px;
}

.plot-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature i {
    color: var(--gold);
    width: 16px;
    text-align: center;
}

.feature span {
    color: #555;
    font-weight: 500;
}

.plot-special-features {
    background: #fff8e1;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid var(--gold);
}

.plot-special-features h5 {
    color: var(--dark-blue);
    margin-bottom: 8px;
    font-size: 1rem;
}

.plot-special-features p {
    color: #666;
    margin-bottom: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.plot-card-footer {
    padding: 0 20px 25px;
    display: flex;
    gap: 10px;
}

.btn-plot-primary,
.btn-plot-secondary {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-plot-primary {
    background: var(--royal-blue);
    color: white;
}

.btn-plot-secondary {
    background: transparent;
    border: 2px solid var(--royal-blue);
    color: var(--royal-blue);
}

.btn-plot-primary:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
}

.btn-plot-secondary:hover {
    background: var(--royal-blue);
    color: white;
    transform: translateY(-2px);
}

/* Location Advantages Section */
.location-advantages-section {
    background-color: white;
}

.location-map-embed {
    height: 100%;
}

.map-embed-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 100%;
}

.location-advantages {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.advantage-item:hover {
    transform: translateX(10px);
}

.advantage-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold) 0%, #f4e4a9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--dark-blue);
    flex-shrink: 0;
}

.advantage-content h4 {
    color: var(--dark-blue);
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.advantage-content p {
    color: #666;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Plots Summary */
.plots-summary {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.plots-summary h4 {
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.plots-summary p {
    color: #666;
    margin-bottom: 25px;
}

/* Plot Map CTA Section */
.plotmap-cta-section {
    background: linear-gradient(135deg, var(--royal-blue) 0%, var(--dark-blue) 100%);
    color: white;
}

.plotmap-cta-content h2 {
    color: white;
    margin-bottom: 15px;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.cta-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.cta-feature-item i {
    color: var(--gold);
}

.cta-buttons .btn {
    margin: 0 10px;
    padding: 12px 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .plotmap-hero-title {
        font-size: 2.5rem;
    }
    
    .plot-filters {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-group {
        width: 100%;
        max-width: 300px;
    }
    
    .plot-card-footer {
        flex-direction: column;
    }
    
    .advantage-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-buttons .btn {
        display: block;
        margin: 10px auto;
        width: 80%;
    }
}

@media (max-width: 576px) {
    .plotmap-hero-section {
        padding: 100px 0 60px;
    }
    
    .plotmap-hero-title {
        font-size: 2rem;
    }
    
    .map-controls {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-map-control {
        width: 100%;
        max-width: 200px;
    }
}
/* Plot Map Hero Section */
.plotmap-hero-section {
    background: linear-gradient(rgba(30, 58, 138, 0.9), rgba(30, 58, 138, 0.95)), 
                url('../images/plotmap-hero-bg.jpg') no-repeat center center/cover;
    padding: 140px 0 100px;
    color: white;
    text-align: center;
}

.plotmap-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.plotmap-hero-subtitle {
    font-size: 1.5rem;
    color: var(--light-gold);
    margin-bottom: 25px;
    font-weight: 300;
}

.plotmap-hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 20px auto 0;
    font-weight: 300;
}

/* Plot Stats Banner */
.plot-stats-banner {
    background: linear-gradient(135deg, var(--gold) 0%, #f4e4a9 100%);
    color: var(--dark-blue);
}

.plot-stat-item h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.plot-stat-item p {
    font-weight: 600;
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Interactive Map Section */
.interactive-map-section {
    background-color: white;
}

.map-container-enhanced {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
}

.map-image-container {
    position: relative;
    background: #f8f9fa;
    padding: 20px;
    text-align: center;
}

.map-image-enhanced {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Map Hotspots */
.map-hotspot {
    position: absolute;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hotspot-dot {
    width: 20px;
    height: 20px;
    background: var(--gold);
    border: 3px solid white;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.map-hotspot:hover .hotspot-dot {
    transform: scale(1.3);
    background: #ffd700;
}

.map-hotspot.active .hotspot-dot {
    transform: scale(1.5);
    background: #ff6b6b;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1.5); }
    50% { transform: scale(1.8); }
    100% { transform: scale(1.5); }
}

.hotspot-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark-blue);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

.hotspot-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: var(--dark-blue);
}

.map-hotspot:hover .hotspot-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Map Controls */
.map-controls {
    padding: 20px;
    background: var(--light-cream);
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-map-control {
    background: white;
    border: 2px solid var(--royal-blue);
    color: var(--royal-blue);
    padding: 10px 15px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-map-control:hover,
.btn-map-control.active {
    background: var(--royal-blue);
    color: white;
    transform: translateY(-2px);
}

/* Map Sidebar */
.map-sidebar {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 30px;
    height: 100%;
}

.sidebar-section {
    margin-bottom: 30px;
}

.sidebar-section:last-child {
    margin-bottom: 0;
}

.sidebar-title {
    color: var(--dark-blue);
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
}

/* Availability Stats */
.availability-stats {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.availability-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.availability-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.availability-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    flex-shrink: 0;
}

.color-3marla { background: #FFD700; }
.color-5marla { background: #FFA500; }
.color-10marla { background: #FF6347; }
.color-farmhouse { background: #32CD32; }

.availability-info {
    flex: 1;
}

.plot-size {
    display: block;
    color: var(--dark-blue);
    font-weight: 600;
    margin-bottom: 2px;
}

.plot-count {
    display: block;
    color: #666;
    font-size: 0.9rem;
}

/* Plot Details */
.plot-details {
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.no-selection {
    text-align: center;
    color: #666;
}

.no-selection i {
    font-size: 3rem;
    color: #ddd;
    margin-bottom: 15px;
}

.plot-selection {
    width: 100%;
}

.plot-info {
    margin: 15px 0;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #555;
}

.info-item i {
    color: var(--gold);
    width: 16px;
}

.plot-actions {
    margin-top: 20px;
}

.btn-view-plots {
    background: var(--gold);
    color: var(--dark-blue);
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-view-plots:hover {
    background: #c19b2a;
    transform: translateY(-2px);
}

/* Quick Actions */
.quick-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-action-primary,
.btn-action-secondary,
.btn-action-success {
    padding: 12px 15px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    display: block;
}

.btn-action-primary {
    background: var(--royal-blue);
    color: white;
}

.btn-action-secondary {
    background: transparent;
    border: 2px solid var(--royal-blue);
    color: var(--royal-blue);
}

.btn-action-success {
    background: var(--gold);
    color: var(--dark-blue);
}

.btn-action-primary:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
}

.btn-action-secondary:hover {
    background: var(--royal-blue);
    color: white;
    transform: translateY(-2px);
}

.btn-action-success:hover {
    background: #c19b2a;
    transform: translateY(-2px);
}

/* Plot Listings Section */
.plot-listings-section {
    background: linear-gradient(135deg, var(--light-cream) 0%, #f8f9fa 100%);
}

.plot-filters {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-group label {
    color: var(--dark-blue);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Plot Cards */
.plot-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
}

.plot-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.plot-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gold);
    color: var(--dark-blue);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 2;
}

.plot-card-header {
    background: linear-gradient(135deg, var(--royal-blue) 0%, var(--dark-blue) 100%);
    color: white;
    padding: 25px 20px;
    text-align: center;
}

.plot-number {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: white;
}

.plot-block {
    color: var(--light-gold);
    margin-bottom: 0;
    font-weight: 500;
}

.plot-card-body {
    padding: 25px 20px;
}

.plot-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature i {
    color: var(--gold);
    width: 16px;
    text-align: center;
}

.feature span {
    color: #555;
    font-weight: 500;
}

.plot-special-features {
    background: #fff8e1;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid var(--gold);
}

.plot-special-features h5 {
    color: var(--dark-blue);
    margin-bottom: 8px;
    font-size: 1rem;
}

.plot-special-features p {
    color: #666;
    margin-bottom: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.plot-card-footer {
    padding: 0 20px 25px;
    display: flex;
    gap: 10px;
}

.btn-plot-primary,
.btn-plot-secondary {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-plot-primary {
    background: var(--royal-blue);
    color: white;
}

.btn-plot-secondary {
    background: transparent;
    border: 2px solid var(--royal-blue);
    color: var(--royal-blue);
}

.btn-plot-primary:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
}

.btn-plot-secondary:hover {
    background: var(--royal-blue);
    color: white;
    transform: translateY(-2px);
}

/* Location Advantages Section */
.location-advantages-section {
    background-color: white;
}

.location-map-embed {
    height: 100%;
}

.map-embed-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 100%;
}

.location-advantages {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.advantage-item:hover {
    transform: translateX(10px);
}

.advantage-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold) 0%, #f4e4a9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--dark-blue);
    flex-shrink: 0;
}

.advantage-content h4 {
    color: var(--dark-blue);
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.advantage-content p {
    color: #666;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Plots Summary */
.plots-summary {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.plots-summary h4 {
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.plots-summary p {
    color: #666;
    margin-bottom: 25px;
}

/* Plot Map CTA Section */
.plotmap-cta-section {
    background: linear-gradient(135deg, var(--royal-blue) 0%, var(--dark-blue) 100%);
    color: white;
}

.plotmap-cta-content h2 {
    color: white;
    margin-bottom: 15px;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.cta-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.cta-feature-item i {
    color: var(--gold);
}

.cta-buttons .btn {
    margin: 0 10px;
    padding: 12px 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .plotmap-hero-title {
        font-size: 2.5rem;
    }
    
    .plot-filters {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-group {
        width: 100%;
        max-width: 300px;
    }
    
    .plot-card-footer {
        flex-direction: column;
    }
    
    .advantage-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-buttons .btn {
        display: block;
        margin: 10px auto;
        width: 80%;
    }
}

@media (max-width: 576px) {
    .plotmap-hero-section {
        padding: 100px 0 60px;
    }
    
    .plotmap-hero-title {
        font-size: 2rem;
    }
    
    .map-controls {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-map-control {
        width: 100%;
        max-width: 200px;
    }
}
/* Payment Hero Section */
.payment-hero-section {
    background: linear-gradient(rgba(30, 58, 138, 0.9), rgba(30, 58, 138, 0.95)), 
                url('../images/payment-hero-bg.jpg') no-repeat center center/cover;
    padding: 140px 0 100px;
    color: white;
    text-align: center;
}

.payment-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.payment-hero-subtitle {
    font-size: 1.5rem;
    color: var(--light-gold);
    margin-bottom: 25px;
    font-weight: 300;
}

.payment-hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 20px auto 0;
    font-weight: 300;
}

/* Payment Stats Banner */
.payment-stats-banner {
    background: linear-gradient(135deg, var(--gold) 0%, #f4e4a9 100%);
    color: var(--dark-blue);
}

.payment-stat-item h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.payment-stat-item p {
    font-weight: 600;
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Enhanced Payment Table */
.payment-table-container {
    background: white;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    overflow: hidden;
}

.premium-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.premium-table th {
    background: linear-gradient(135deg, var(--royal-blue) 0%, var(--dark-blue) 100%);
    color: white;
    padding: 20px 15px;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    border: none;
}

.premium-table th.plot-size-header { width: 18%; }
.premium-table th.down-payment-header { width: 16%; }
.premium-table th.monthly-header { width: 16%; }
.premium-table th.total-header { width: 16%; }
.premium-table th.period-header { width: 14%; }
.premium-table th.action-header { width: 20%; }

.payment-plan-row {
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}

.payment-plan-row:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.premium-table td {
    padding: 20px 15px;
    text-align: center;
    vertical-align: middle;
    border: none;
}

.plot-size-cell {
    text-align: left !important;
}

.plot-size-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.plot-size-info i {
    color: var(--gold);
    font-size: 1.3rem;
}

.plot-size-info strong {
    color: var(--dark-blue);
    font-size: 1.1rem;
}

.price-amount {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price-amount .amount {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-blue);
}

.price-amount .currency {
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
}

.total-amount .amount {
    color: var(--gold);
    font-size: 1.4rem;
}

.payment-note {
    color: #888;
    font-size: 0.8rem;
    margin-top: 5px;
}

.period-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--dark-blue);
    font-weight: 600;
}

.period-info i {
    color: var(--gold);
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.btn-book-now, .btn-calculate {
    padding: 8px 15px;
    border: none;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-book-now {
    background: var(--gold);
    color: var(--dark-blue);
}

.btn-book-now:hover {
    background: #c19b2a;
    transform: translateY(-2px);
}

.btn-calculate {
    background: transparent;
    border: 2px solid var(--royal-blue);
    color: var(--royal-blue);
}

.btn-calculate:hover {
    background: var(--royal-blue);
    color: white;
    transform: translateY(-2px);
}

/* Featured Plans Section */
.featured-plans-section {
    background: linear-gradient(135deg, var(--light-cream) 0%, #f8f9fa 100%);
}

.plan-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.plan-header {
    background: linear-gradient(135deg, var(--royal-blue) 0%, var(--dark-blue) 100%);
    color: white;
    padding: 30px 20px;
    text-align: center;
}

.plan-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.plan-price .price {
    font-size: 2rem;
    font-weight: 700;
}

.plan-price .currency {
    font-size: 1.2rem;
    opacity: 0.9;
}

.plan-features {
    padding: 30px 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.feature-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.feature-item i {
    color: var(--gold);
    font-size: 1.3rem;
    width: 24px;
    text-align: center;
}

.feature-content {
    flex: 1;
}

.feature-label {
    display: block;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 3px;
}

.feature-value {
    display: block;
    color: var(--dark-blue);
    font-weight: 600;
    font-size: 1rem;
}

.plan-footer {
    padding: 0 20px 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-plan-primary, .btn-plan-secondary {
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    display: block;
}

.btn-plan-primary {
    background: var(--gold);
    color: var(--dark-blue);
}

.btn-plan-primary:hover {
    background: #c19b2a;
    transform: translateY(-2px);
}

.btn-plan-secondary {
    background: transparent;
    border: 2px solid var(--royal-blue);
    color: var(--royal-blue);
}

.btn-plan-secondary:hover {
    background: var(--royal-blue);
    color: white;
    transform: translateY(-2px);
}

/* Calculator Section */
.calculator-section {
    background-color: white;
}

.calculator-container {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 100%;
}

.calculator-description {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    color: var(--dark-blue);
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.calculator-results {
    background: var(--light-cream);
    padding: 25px;
    border-radius: 10px;
    margin: 25px 0;
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.result-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.result-label {
    color: #666;
    font-weight: 500;
}

.result-value {
    color: var(--dark-blue);
    font-weight: 700;
    font-size: 1.1rem;
}

.calculator-note {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 0.9rem;
    background: #fff8e1;
    padding: 12px 15px;
    border-radius: 5px;
    border-left: 4px solid var(--gold);
}

.calculator-note i {
    color: var(--gold);
}

/* Benefits Section */
.benefits-container {
    padding: 40px;
}

.benefits-list {
    margin-top: 30px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(10px);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold) 0%, #f4e4a9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--dark-blue);
    flex-shrink: 0;
}

.benefit-content h4 {
    color: var(--dark-blue);
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.benefit-content p {
    color: #666;
    margin-bottom: 0;
    line-height: 1.6;
}

/* FAQ Section */
.payment-faq-section {
    background: linear-gradient(135deg, var(--light-cream) 0%, #f8f9fa 100%);
}

.faq-container {
    margin-top: 40px;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h5 {
    color: var(--dark-blue);
    margin-bottom: 0;
    font-size: 1.1rem;
}

.faq-question i {
    color: var(--gold);
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 25px 20px;
    display: none;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Payment CTA Section */
.payment-cta-section {
    background: linear-gradient(135deg, var(--royal-blue) 0%, var(--dark-blue) 100%);
    color: white;
}

.payment-cta-content h2 {
    color: white;
    margin-bottom: 15px;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.cta-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.cta-feature-item i {
    color: var(--gold);
}

.cta-buttons .btn {
    margin: 0 10px;
    padding: 12px 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .payment-hero-title {
        font-size: 2.5rem;
    }
    
    .premium-table {
        display: block;
        overflow-x: auto;
    }
    
    .action-buttons {
        flex-direction: row;
        gap: 5px;
    }
    
    .btn-book-now, .btn-calculate {
        font-size: 0.8rem;
        padding: 6px 10px;
    }
    
    .plan-footer {
        flex-direction: row;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-buttons .btn {
        display: block;
        margin: 10px auto;
        width: 80%;
    }
}

@media (max-width: 576px) {
    .payment-hero-section {
        padding: 100px 0 60px;
    }
    
    .payment-hero-title {
        font-size: 2rem;
    }
    
    .calculator-container, .benefits-container {
        padding: 25px 20px;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}
/* Enhanced About Hero Section */
.about-hero-section {
    background: linear-gradient(rgba(30, 58, 138, 0.9), rgba(30, 58, 138, 0.95)), 
                url('../images/about-hero-bg.jpg') no-repeat center center/cover;
    padding: 140px 0 100px;
    color: white;
    text-align: center;
}

.about-hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.about-hero-subtitle {
    font-size: 1.5rem;
    color: var(--light-gold);
    margin-bottom: 25px;
    font-weight: 300;
}

.about-hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 20px auto 0;
    font-weight: 300;
}

/* Stats Banner */
.stats-banner {
    background: linear-gradient(135deg, var(--gold) 0%, #f4e4a9 100%);
    color: var(--dark-blue);
}

.stat-banner-item h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-banner-item p {
    font-weight: 600;
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Enhanced About Content */
.key-highlights {
    background: var(--light-cream);
    padding: 25px;
    border-radius: 10px;
    margin-top: 30px;
}

.key-highlights h4 {
    color: var(--dark-blue);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.highlight-item i {
    color: var(--gold);
    margin-right: 10px;
    font-size: 1.1rem;
}

.highlight-item span {
    color: #555;
    font-weight: 500;
}

/* Timeline Section */
.timeline-section {
    background: linear-gradient(135deg, var(--light-cream) 0%, #f8f9fa 100%);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 40px auto 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gold);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-year {
    background: var(--gold);
    color: var(--dark-blue);
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    min-width: 100px;
    text-align: center;
    z-index: 2;
}

.timeline-content {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin: 0 30px;
    flex: 1;
    max-width: 300px;
}

.timeline-content h4 {
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.timeline-content p {
    color: #666;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Enhanced CEO Section */
.ceo-experience {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
    color: var(--dark-blue);
    font-weight: 600;
    font-size: 0.9rem;
}

.ceo-intro {
    margin-bottom: 25px;
}

.ceo-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}

.ceo-achievements h4 {
    color: var(--dark-blue);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.ceo-achievements .achievement-point i {
    color: var(--gold);
}

/* Enhanced Mission Vision */
.mission-points, .vision-points {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.mission-points li, .vision-points li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.mission-points i, .vision-points i {
    color: var(--gold);
    margin-right: 10px;
    margin-top: 3px;
}

/* Values Intro */
.values-intro {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Commitment Section */
.commitment-section {
    background-color: white;
}

.commitment-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
}

.commitment-features {
    margin-top: 30px;
}

.commitment-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.commitment-item i {
    color: var(--gold);
    font-size: 1.3rem;
    margin-right: 15px;
    margin-top: 3px;
}

.commitment-item h5 {
    color: var(--dark-blue);
    margin-bottom: 5px;
}

.commitment-item p {
    color: #666;
    margin-bottom: 0;
}

.commitment-badge {
    background: linear-gradient(135deg, var(--royal-blue) 0%, var(--dark-blue) 100%);
    color: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.commitment-badge i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.commitment-badge h3 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: white;
}

.commitment-badge p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero-title {
        font-size: 2.8rem;
    }
    
    .about-hero-section {
        padding: 100px 0 60px;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        margin-left: 60px;
    }
    
    .timeline-year {
        position: absolute;
        left: -80px;
        min-width: 60px;
        font-size: 1rem;
        padding: 8px 12px;
    }
    
    .timeline-content {
        margin: 0;
        max-width: 100%;
    }
    
    .commitment-visual {
        margin-top: 40px;
    }
}

@media (max-width: 576px) {
    .about-hero-title {
        font-size: 2.2rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.2rem;
    }
    
    .stat-banner-item h3 {
        font-size: 1.8rem;
    }
    
    .timeline-year {
        left: -70px;
        min-width: 50px;
        font-size: 0.9rem;
        padding: 6px 10px;
    }
}
/* About Hero Section */
.about-hero-section {
    background: linear-gradient(rgba(30, 58, 138, 0.8), rgba(30, 58, 138, 0.9)), 
                url('../images/about-hero-bg.jpg') no-repeat center center/cover;
    padding: 120px 0 80px;
    color: white;
    text-align: center;
}


.about-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.about-hero-subtitle {
    font-size: 1.3rem;
    color: var(--light-gold);
    margin-bottom: 20px;
}

.gold-divider-center {
    width: 80px;
    height: 3px;
    background-color: var(--gold);
    margin: 0 auto;
}

/* About Content Section */
.about-content-section {
    background-color: white;
}

.about-text-content {
    padding-right: 30px;
}

.about-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.about-description strong {
    color: var(--dark-blue);
}

.achievement-stats {
    margin-top: 30px;
    padding: 20px;
    background: var(--light-cream);
    border-radius: 10px;
}

.achievement-item h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 5px;
}

.achievement-item p {
    color: var(--dark-blue);
    font-weight: 600;
    margin-bottom: 0;
    font-size: 0.9rem;
}

.about-visual {
    position: relative;
}

.about-main-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.floating-badges {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.floating-badge {
    background: var(--gold);
    color: var(--dark-blue);
    padding: 10px 15px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* CEO Section */
.ceo-section {
    background: linear-gradient(135deg, var(--light-cream) 0%, #f8f9fa 100%);
}

.ceo-image-wrapper {
    position: relative;
    text-align: center;
}

.ceo-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.ceo-badge {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-top: -30px;
    position: relative;
    z-index: 2;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.ceo-badge h4 {
    color: var(--dark-blue);
    margin-bottom: 5px;
    font-weight: 700;
}

.ceo-badge p {
    color: var(--gold);
    margin-bottom: 0;
    font-weight: 600;
}

.ceo-content {
    padding-left: 30px;
}

.ceo-message blockquote {
    background: white;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid var(--gold);
    position: relative;
    margin: 25px 0;
}

.ceo-message i.fa-quote-left {
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 15px;
    display: block;
}

.ceo-message p {
    font-size: 1.1rem;
    line-height: 1.7;
    font-style: italic;
    color: #555;
    margin-bottom: 15px;
}

.ceo-message footer {
    color: var(--dark-blue);
    font-weight: 600;
    font-style: normal;
}

.achievement-list {
    margin-top: 25px;
}

.achievement-point {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.achievement-point i {
    color: var(--gold);
    margin-right: 12px;
    font-size: 1.1rem;
}

.achievement-point span {
    color: #555;
    font-weight: 500;
}

/* Mission Vision Section */
.mission-vision-section {
    background-color: white;
}

.mission-card, .vision-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    height: 100%;
    transition: transform 0.3s ease;
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold) 0%, #f4e4a9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--dark-blue);
}

.mission-card h3, .vision-card h3 {
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.mission-card p, .vision-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Values Section */
.values-section {
    background: linear-gradient(135deg, var(--royal-blue) 0%, var(--dark-blue) 100%);
    color: white;
}

.values-section .section-title {
    color: white;
}

.value-item {
    padding: 30px 20px;
}

.value-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.5rem;
    color: var(--gold);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.value-item h4 {
    color: white;
    margin-bottom: 15px;
}

.value-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .about-text-content {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .ceo-content {
        padding-left: 0;
        margin-top: 30px;
    }
    
    .floating-badges {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin-top: 20px;
    }
    
    .ceo-badge {
        max-width: 100%;
    }
    
    .achievement-stats .col-4 {
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .about-hero-section {
        padding: 80px 0 50px;
    }
    
    .about-hero-title {
        font-size: 2rem;
    }
    
    .ceo-message blockquote {
        padding: 20px;
    }
    
    .mission-card, .vision-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
}
/* Plot Sizes Section in Footer */
.plot-sizes {
    margin-bottom: 20px;
}

.plot-size-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.plot-size-item:last-child {
    border-bottom: none;
}

.plot-badge {
    background: var(--gold);
    color: var(--dark-blue);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    min-width: 70px;
    text-align: center;
}

.plot-size-item span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.btn-view-plans {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 8px 20px;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
    text-decoration: none;
    display: block;
}

.btn-view-plans:hover {
    background: var(--gold);
    color: var(--dark-blue);
    transform: translateY(-2px);
}

/* Footer Features */
.footer-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.feature-item i {
    color: var(--gold);
    margin-right: 10px;
    width: 16px;
    text-align: center;
}

/* Enhanced Footer Bottom Links */
.footer-bottom-links a {
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--gold);
}

.footer-bottom-links a i {
    font-size: 0.8rem;
}

/* Enhanced Contact Info */
.contact-info .contact-item:last-child {
    margin-bottom: 0;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .plot-size-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .plot-badge {
        align-self: flex-start;
    }
    
    .footer-features {
        gap: 8px;
    }
    
    .feature-item {
        font-size: 0.85rem;
    }
    
    .footer-bottom-links {
        text-align: left;
        margin-top: 10px;
    }
    
    .footer-bottom-links a {
        margin-bottom: 5px;
        display: inline-flex;
    }
}

@media (max-width: 576px) {
    .plot-sizes {
        margin-bottom: 15px;
    }
    
    .btn-view-plans {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .footer-features {
        gap: 10px;
    }
}
/* Footer Section */
.footer-section {
    background: linear-gradient(135deg, var(--dark-blue) 0%, #0a1440 100%);
    color: white;
    position: relative;
    padding: 60px 0 20px;
}

.footer-brand {
    margin-bottom: 20px;
}

.brand-name {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 5px;
}

.brand-tagline {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 25px;
}

.contact-info {
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.contact-item i {
    color: var(--gold);
    margin-right: 12px;
    width: 20px;
    text-align: center;
}

.footer-title {
    color: var(--gold);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--gold);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-links i {
    color: var(--gold);
    margin-right: 8px;
    font-size: 0.8rem;
}

.newsletter-text {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.newsletter-form .input-group {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter-form .form-control {
    background: transparent;
    border: none;
    color: white;
    padding: 12px 15px;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form .form-control:focus {
    background: transparent;
    color: white;
    box-shadow: none;
    border: none;
}

.btn-newsletter {
    background: var(--gold);
    border: none;
    color: var(--dark-blue);
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.btn-newsletter:hover {
    background: #c19b2a;
    color: var(--dark-blue);
}

.social-icons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icon:hover {
    background: var(--gold);
    color: var(--dark-blue);
    transform: translateY(-3px);
    border-color: var(--gold);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 40px;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
    font-size: 0.9rem;
}

.copyright strong {
    color: var(--gold);
}

.footer-bottom-links {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--gold);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: var(--dark-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #c19b2a;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-section {
        padding: 40px 0 20px;
    }
    
    .footer-bottom-links {
        justify-content: flex-start;
        margin-top: 15px;
    }
    
    .footer-bottom .row {
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 576px) {
    .footer-links a {
        font-size: 0.9rem;
    }
    
    .contact-item {
        font-size: 0.9rem;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}
/* Investment Section */
.investment-section {
    background-color: white;
}

.investment-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #555;
}

.investment-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.investment-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold) 0%, #f4e4a9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    font-size: 1.3rem;
    color: var(--dark-blue);
}

.investment-content h4 {
    color: var(--dark-blue);
    margin-bottom: 5px;
}

.investment-content p {
    color: #666;
    margin-bottom: 0;
}

.investment-visual {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.visual-item {
    background: linear-gradient(135deg, var(--royal-blue) 0%, var(--dark-blue) 100%);
    padding: 25px;
    border-radius: 10px;
    color: white;
    text-align: center;
    transition: transform 0.3s ease;
}

.visual-item:hover {
    transform: translateY(-5px);
}

.visual-item i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--gold);
}

.visual-item h3 {
    color: white;
    margin-bottom: 10px;
}

.visual-item p {
    margin-bottom: 0;
    opacity: 0.9;
}

/* Progress Section */
.progress-section {
    background-color: var(--light-cream);
}

.progress-item {
    padding: 20px;
}

.progress-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: conic-gradient(var(--gold) 0%, #eee 0%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
}

.progress-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-blue);
}

.progress-item h5 {
    color: var(--dark-blue);
    margin-bottom: 5px;
}

.progress-item p {
    color: #666;
    margin-bottom: 0;
}

/* Gallery Section */
.gallery-section {
    background-color: white;
}

.gallery-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-image {
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.gallery-content {
    padding: 20px;
}

.gallery-content h5 {
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.gallery-content p {
    color: #666;
    margin-bottom: 0;
}

/* Quick Action Section */
.quick-action-section {
    background: linear-gradient(135deg, var(--royal-blue) 0%, var(--dark-blue) 100%);
    color: white;
}

.quick-action-content h2 {
    color: white;
    margin-bottom: 15px;
}

.action-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.action-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.action-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.action-item i {
    color: var(--gold);
}

.action-buttons .btn {
    margin: 0 10px;
    padding: 12px 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .investment-item {
        flex-direction: column;
        text-align: center;
    }
    
    .investment-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .action-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .action-buttons .btn {
        display: block;
        margin: 10px auto;
        width: 80%;
    }
    
    .progress-circle {
        width: 100px;
        height: 100px;
    }
}
/* Add these styles to your existing style.css */

/* Statistics Section */
.stats-section {
    background: linear-gradient(135deg, var(--royal-blue) 0%, var(--dark-blue) 100%);
    color: white;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Section Subtitle */
.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.feature-list li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.feature-list i {
    color: var(--gold);
    margin-right: 10px;
}

/* Amenities Section */
.amenities-section {
    background-color: var(--light-cream);
}

.amenity-item {
    padding: 20px;
}

.amenity-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold) 0%, #f4e4a9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    color: var(--dark-blue);
}

.amenity-item h5 {
    margin-bottom: 0;
    color: var(--dark-blue);
}

/* Location Section */
.location-section {
    background-color: white;
}

.location-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.location-features {
    margin-bottom: 25px;
}

.location-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.location-item i {
    color: var(--gold);
    margin-right: 10px;
}

.location-map {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 15px;
}

.map-placeholder p {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--light-cream);
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    height: 100%;
    position: relative;
}

.testimonial-content {
    position: relative;
    margin-bottom: 20px;
}

.testimonial-content i {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 15px;
    display: block;
}

.testimonial-content p {
    font-style: italic;
    line-height: 1.6;
    color: #555;
}

.testimonial-author h5 {
    margin-bottom: 5px;
    color: var(--dark-blue);
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--royal-blue) 0%, var(--dark-blue) 100%);
    color: white;
}

.cta-content h2 {
    color: white;
    margin-bottom: 15px;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons .btn {
    margin: 0 10px;
    padding: 12px 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .stat-number {
        font-size: 2rem;
    }
    
    .cta-buttons .btn {
        display: block;
        margin: 10px auto;
        width: 80%;
    }
    
    .location-map {
        margin-top: 30px;
        height: 250px;
    }
}
/* Header Styles */
.navbar {
    background: linear-gradient(135deg, var(--royal-blue) 0%, var(--dark-blue) 100%);
    padding: 1rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    backdrop-filter: blur(10px);
    border-bottom: 2px solid transparent;
    animation: headerSlideDown 0.8s ease-out;
}

@keyframes headerSlideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(30, 58, 138, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid var(--gold);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.navbar-brand {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    transition: all 0.3s ease;
}

.brand-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    text-decoration: none;
    position: relative;
    letter-spacing: -0.5px;
}

.brand-text::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.brand-text:hover::before {
    width: 100%;
}

.brand-subtitle {
    font-size: 0.65rem;
    color: var(--light-gold);
    letter-spacing: 1.5px;
    font-weight: 500;
    text-transform: uppercase;
    margin-top: 2px;
    opacity: 0.9;
}

/* Navigation Links */
.navbar-nav {
    gap: 0.5rem;
}

.nav-item {
    position: relative;
    transition: all 0.3s ease;
}

.nav-link {
    color: white !important;
    font-weight: 600;
    padding: 0.75rem 1.25rem !important;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
    transition: left 0.5s ease;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover {
    color: var(--gold) !important;
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.1);
}

.nav-link.active {
    color: var(--gold) !important;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: var(--gold);
    animation: pulse 2s infinite;
}

/* Dropdown Menu */
.dropdown-menu {
    background: rgba(30, 58, 138, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    padding: 0.5rem;
    animation: dropdownFade 0.3s ease;
    margin-top: 0.5rem !important;
}

@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    color: white !important;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
    transition: left 0.4s ease;
}

.dropdown-item:hover::before {
    left: 100%;
}

.dropdown-item:hover {
    color: var(--gold) !important;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.dropdown-item.active {
    background: rgba(212, 175, 55, 0.2);
    color: var(--gold) !important;
}

/* Mobile Toggler */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
    background: transparent;
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler-icon {
    width: 24px;
    height: 2px;
    background: white;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: white;
    left: 0;
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before {
    top: -8px;
}

.navbar-toggler-icon::after {
    top: 8px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    transform: rotate(45deg);
    top: 0;
    background: var(--gold);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transform: rotate(-45deg);
    top: 0;
    background: var(--gold);
}

.navbar-toggler:hover .navbar-toggler-icon,
.navbar-toggler:hover .navbar-toggler-icon::before,
.navbar-toggler:hover .navbar-toggler-icon::after {
    background: var(--gold);
}

/* Mobile Menu */
.navbar-collapse {
    transition: all 0.4s ease;
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background: linear-gradient(135deg, var(--royal-blue) 0%, var(--dark-blue) 100%);
        border-radius: 12px;
        margin-top: 1rem;
        padding: 1rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        border: 1px solid rgba(212, 175, 55, 0.2);
        backdrop-filter: blur(20px);
    }
    
    .navbar-nav {
        gap: 0.5rem;
    }
    
    .nav-link {
        padding: 1rem 1.5rem !important;
        border-radius: 8px;
        text-align: center;
        font-size: 1rem;
        border: 1px solid transparent;
        transition: all 0.3s ease;
    }
    
    .nav-link:hover {
        border-color: rgba(212, 175, 55, 0.3);
        transform: translateY(-2px);
    }
    
    .dropdown-menu {
        background: rgba(15, 30, 78, 0.95);
        margin: 0.5rem 0;
        border-radius: 8px;
        border: 1px solid rgba(212, 175, 55, 0.2);
    }
    
    .dropdown-item {
        padding: 0.875rem 1.25rem;
        text-align: center;
        font-size: 0.95rem;
    }
}

/* Call to Action Button */
.navbar-cta {
    margin-left: 1rem;
}

.btn-header-cta {
    background: linear-gradient(135deg, var(--gold) 0%, #e6c158 100%);
    color: var(--dark-blue);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    letter-spacing: 0.5px;
}

.btn-header-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.btn-header-cta:hover::before {
    left: 100%;
}

.btn-header-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, #e6c158 0%, var(--gold) 100%);
}

/* Header Animations */
@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-item:nth-child(1) { animation-delay: 0.1s; }
.nav-item:nth-child(2) { animation-delay: 0.2s; }
.nav-item:nth-child(3) { animation-delay: 0.3s; }
.nav-item:nth-child(4) { animation-delay: 0.4s; }
.nav-item:nth-child(5) { animation-delay: 0.5s; }

/* Mobile Specific Styles */
@media (max-width: 991.98px) {
    .navbar {
        padding: 0.75rem 0;
    }
    
    .navbar-brand {
        flex-direction: row;
        align-items: center;
        gap: 0.5rem;
    }
    
    .brand-text {
        font-size: 1.5rem;
    }
    
    .brand-subtitle {
        font-size: 0.6rem;
        margin-top: 0;
    }
    
    .navbar-cta {
        margin-left: 0;
        margin-top: 1rem;
        text-align: center;
    }
    
    .btn-header-cta {
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }
    
    .navbar-nav {
        text-align: center;
    }
}

/* Small Mobile Devices */
@media (max-width: 575.98px) {
    .navbar {
        padding: 0.5rem 0;
    }
    
    .brand-text {
        font-size: 1.3rem;
    }
    
    .brand-subtitle {
        font-size: 0.55rem;
        letter-spacing: 1px;
    }
    
    .nav-link {
        padding: 0.875rem 1rem !important;
        font-size: 0.9rem;
    }
    
    .btn-header-cta {
        padding: 0.675rem 1.25rem;
        font-size: 0.85rem;
    }
}

/* Large Desktop Screens */
@media (min-width: 1400px) {
    .navbar {
        padding: 1.25rem 0;
    }
    
    .nav-link {
        padding: 0.875rem 1.5rem !important;
        font-size: 1rem;
    }
    
    .brand-text {
        font-size: 2rem;
    }
    
    .brand-subtitle {
        font-size: 0.7rem;
    }
}

/* Header Loading State */
.navbar.loading {
    opacity: 0.8;
    pointer-events: none;
}

.navbar.loading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--royal-blue), var(--gold), var(--royal-blue));
    background-size: 200% 100%;
    animation: loadingBar 1.5s infinite;
}

@keyframes loadingBar {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .navbar {
        background: linear-gradient(135deg, #1e2a5c 0%, #0a1440 100%);
    }
    
    .navbar.scrolled {
        background: rgba(30, 42, 92, 0.95);
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .navbar {
        border-bottom: 3px solid var(--gold);
    }
    
    .nav-link {
        font-weight: 700;
    }
    
    .btn-header-cta {
        border: 2px solid var(--dark-blue);
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .navbar,
    .nav-link,
    .dropdown-menu,
    .btn-header-cta {
        transition: none;
        animation: none;
    }
    
    .nav-link::before,
    .btn-header-cta::before,
    .dropdown-item::before {
        display: none;
    }
}
.hero-section {
    background: linear-gradient(rgba(30, 58, 138, 0.8), rgba(30, 58, 138, 0.9)), 
                url('assets/images/bgimg.jpg') no-repeat center center/cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 2rem 1rem;
}
.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Mobile devices par */
@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}
/* Header/Navigation Styles */
.navbar {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.98) 0%, rgba(15, 30, 78, 0.98) 100%), 
                url('../images/baner.jpg') no-repeat center center/cover !important;
    background-attachment: fixed;
    padding: 1rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.navbar.scrolled {
    padding: 0.7rem 0;
    background: rgba(30, 58, 138, 0.95) !important;
    backdrop-filter: blur(20px);
}

/* Brand Styling */
.navbar-brand {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.brand-subtitle {
    font-size: 0.65rem;
    color: var(--light-gold);
    letter-spacing: 1.5px;
    font-weight: 500;
    text-transform: uppercase;
    margin-top: 2px;
}

/* Navigation Links */
.navbar-nav {
    gap: 0.5rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: white !important;
    font-weight: 600;
    padding: 0.75rem 1.25rem !important;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold) !important;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Dropdown Menu */
.dropdown-menu {
    background: rgba(30, 58, 138, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    padding: 0.8rem;
    animation: dropdownFade 0.3s ease;
    margin-top: 0.8rem !important;
}

@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    color: white !important;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-bottom: 0.2rem;
}

.dropdown-item:hover {
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold) !important;
    transform: translateX(5px);
}

.dropdown-item-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dropdown-item-content i {
    color: var(--gold);
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.dropdown-title {
    font-weight: 600;
    font-size: 0.95rem;
    color: white;
}

.dropdown-desc {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 2px;
}

.dropdown-divider {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 0.5rem 0;
}

/* Mobile Responsive */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: linear-gradient(135deg, var(--royal-blue) 0%, var(--dark-blue) 100%);
        border-radius: 12px;
        margin-top: 1rem;
        padding: 1rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        border: 1px solid rgba(212, 175, 55, 0.2);
        backdrop-filter: blur(20px);
        max-height: 80vh;
        overflow-y: auto;
    }
    
    .navbar-nav {
        gap: 0.5rem;
    }
    
    .nav-link {
        padding: 1rem 1.5rem !important;
        border-radius: 8px;
        text-align: center;
        font-size: 1rem;
        border: 1px solid transparent;
    }
    
    .nav-link:hover {
        border-color: rgba(212, 175, 55, 0.3);
    }
    
    .dropdown-menu {
        background: rgba(15, 30, 78, 0.95);
        margin: 0.5rem 0;
        border-radius: 8px;
        border: 1px solid rgba(212, 175, 55, 0.2);
    }
    
    .dropdown-item {
        padding: 0.875rem 1.25rem;
        text-align: center;
    }
    
    .dropdown-item-content {
        justify-content: center;
        text-align: center;
    }
}

/* Small Mobile Devices */
@media (max-width: 575.98px) {
    .navbar {
        padding: 0.8rem 0;
    }
    
    .brand-text {
        font-size: 1.5rem;
    }
    
    .brand-subtitle {
        font-size: 0.6rem;
    }
    
    .nav-link {
        padding: 0.875rem 1rem !important;
        font-size: 0.9rem;
    }
}

/* Toggler Animation */
.navbar-toggler {
    border: none;
    padding: 0.4rem 0.6rem;
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    transition: transform 0.3s ease;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    transform: rotate(90deg);
}

/* Scroll Behavior */
.navbar {
    transition: all 0.3s ease-in-out;
}

/* Active State Indicator */
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}
/* Compact Navigation for Desktop */
@media (min-width: 992px) {
    .navbar-nav {
        gap: 0.1rem;
        flex-wrap: nowrap;
    }
    
    .nav-link {
        padding: 0.5rem 0.8rem !important;
        font-size: 0.85rem;
        white-space: nowrap;
    }
    
    .brand-text {
        font-size: 1.6rem;
    }
    
    .brand-subtitle {
        font-size: 0.6rem;
    }
}

/* Extra small padding for specific items */
.nav-item:nth-child(3) .nav-link, /* Payment Plan */
.nav-item:nth-child(4) .nav-link { /* Plot Map */
    padding: 0.5rem 0.7rem !important;
}
.royal-garden-hero {
    background: linear-gradient(rgba(30, 58, 138, 0.9), rgba(30, 58, 138, 0.95)), 
                url('assets/images/royal-garden-bg.jpg') no-repeat center center/cover;
    padding: 140px 0 100px;
    color: white;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.royal-garden-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.royal-garden-subtitle {
    font-size: 1.5rem;
    color: #d4af37;
    margin-bottom: 25px;
}

.royal-garden-stats-banner {
    background: linear-gradient(135deg, #d4af37 0%, #f4e4a9 100%);
    color: #1e3a8a;
}

.stat-item h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.project-image-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.project-main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(30, 58, 138, 0.9));
    padding: 2rem;
    color: white;
}

.location-map-container {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    padding: 60px 30px;
    color: white;
    text-align: center;
}

.royal-garden-cta {
    background: linear-gradient(135deg, #1e3a8a 0%, #0f1e4e 100%);
    color: white;
}

.plots-table {
    width: 100%;
    border-collapse: collapse;
}

.plots-table th {
    background: #1e3a8a;
    color: white;
    padding: 1rem;
    text-align: left;
}

.plots-table td {
    padding: 1rem;
    border-bottom: 1px solid #eee;
}

.size-badge {
    background: #fff8e1;
    color: #ff8f00;
    padding: 4px 12px;
    border-radius: 15px;
    font-weight: 600;
}

.btn-inquire {
    background: #1e3a8a;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: 600;
}

.btn-inquire:hover {
    background: #0f1e4e;
}

/* New Styles for Added Sections */
.features-highlight-section {
    background-color: #f8f9fa;
}

.feature-card {
    background: white;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1e3a8a, #0f1e4e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.8rem;
}

.plot-sizes-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.plot-size-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

.plot-size-card:hover {
    transform: translateY(-5px);
}

.size-header {
    background: linear-gradient(135deg, #1e3a8a, #0f1e4e);
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.size-header h3 {
    margin: 0;
    font-size: 1.8rem;
}

.size-icon {
    font-size: 1.5rem;
}

.size-details {
    padding: 20px;
}

.availability {
    margin-top: 15px;
}

.available-count {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.location-features {
    margin-top: 40px;
}

.location-feature-item {
    text-align: center;
    padding: 20px;
}

.location-feature-item i {
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 15px;
}

.investment-section {
    background-color: #f8f9fa;
}

.investment-point {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.investment-point i {
    color: #28a745;
    margin-right: 10px;
    font-size: 1.2rem;
}

.investment-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.growth-chart {
    display: flex;
    align-items: flex-end;
    height: 200px;
    margin-bottom: 20px;
    gap: 15px;
}

.chart-bar {
    width: 50px;
    background: linear-gradient(to top, #1e3a8a, #4f7cff);
    border-radius: 5px 5px 0 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 10px;
    color: white;
    font-weight: 600;
    position: relative;
}

.chart-bar span {
    position: absolute;
    bottom: -30px;
    font-size: 0.8rem;
    color: #333;
}

.payment-plan-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.plan-header {
    background: linear-gradient(135deg, #1e3a8a, #0f1e4e);
    color: white;
    padding: 30px;
    text-align: center;
}

.plan-details {
    padding: 30px;
}

.plan-feature {
    text-align: center;
    padding: 15px;
}

.plan-feature i {
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 15px;
}

.plan-cta {
    text-align: center;
    padding: 0 30px 30px;
}

.testimonials-section {
    background-color: #f8f9fa;
}

.testimonial-card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
}

.testimonial-content {
    margin-bottom: 20px;
    font-style: italic;
    color: #555;
}

.testimonial-author h5 {
    margin-bottom: 5px;
    color: #1e3a8a;
}

.testimonial-author span {
    color: #777;
    font-size: 0.9rem;
}

.hero-buttons {
    margin-top: 30px;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .royal-garden-title {
        font-size: 2.5rem;
    }
    
    .royal-garden-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
    
    .hero-buttons .btn.me-3 {
        margin-right: 0 !important;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 15px;
    }
}