* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --primary-color: #d4af37;
    --primary-dark: #b8941f;
    --secondary-color: #2c3e50;
    --accent-color: #27ae60;
    --text-color: #333;
    --text-light: #666;
    --bg-color: #f8f9fa;
    --white: #ffffff;
    --black: #000000;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-md: 0 5px 15px rgba(0,0,0,0.15);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.2);
    --transition: all 0.3s ease;
    --gradient-primary: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    --gradient-dark: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
}

/* Language-specific fonts */
body[lang="hi"] {
    font-family: 'Noto Sans Devanagari', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body[lang="bn"] {
    font-family: 'Noto Sans Bengali', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Language Selector Styling */
.language-selector {
    position: relative;
}

.language-selector select {
    padding: 0.5rem 1rem;
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    background: var(--black);
    color: var(--white);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.language-selector select:hover {
    background: var(--primary-color);
    color: var(--black);
}

.language-selector select:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.3);
}

header {
    background: var(--black);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo img {
    height: 60px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.search-btn {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}

.search-btn:hover {
    background: var(--primary-color);
    color: var(--black);
}

.mobile-menu {
    display: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ── Inline expanding search ── */
.navbar-search {
    display: flex;
    align-items: center;
    position: relative;
}

/* When search is active, expand the bar and hide other nav items */
.navbar.search-active .nav-links,
.navbar.search-active .language-selector,
.navbar.search-active .search-btn,
.navbar.search-active .mobile-menu {
    display: none !important;
}

.navbar.search-active .navbar-search {
    flex: 1;
    margin-left: 1.5rem;
}

.navbar-search-input-wrap {
    display: none;
    align-items: center;
    width: 100%;
    position: relative;
}

.navbar.search-active .navbar-search-input-wrap {
    display: flex;
}

.navbar-search-input-wrap input {
    width: 100%;
    padding: 0.55rem 2.8rem 0.55rem 1rem;
    font-size: 1rem;
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    background: #fff;
    color: #222;
    outline: none;
    animation: expandSearch 0.3s ease;
}

@keyframes expandSearch {
    from { opacity: 0; transform: scaleX(0.7); }
    to   { opacity: 1; transform: scaleX(1); }
}

.navbar-search-close {
    position: absolute;
    right: 8px;
    background: transparent;
    border: none;
    font-size: 1.3rem;
    color: #888;
    cursor: pointer;
    line-height: 1;
    padding: 0 4px;
}

.navbar-search-close:hover { color: #333; }

/* Suggestions dropdown */
.search-suggestions {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid rgba(212,175,55,0.4);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    z-index: 9999;
    max-height: 320px;
    overflow-y: auto;
}

.search-suggestions.visible { display: block; }

.suggestion-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 1rem;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.15s;
    text-decoration: none;
    color: #222;
}

.suggestion-item:last-child { border-bottom: none; }
.suggestion-item:hover { background: rgba(212,175,55,0.1); }

.suggestion-item i {
    color: var(--primary-color);
    width: 16px;
    flex-shrink: 0;
}

.suggestion-item .sug-title {
    font-weight: 600;
    font-size: 0.9rem;
}

.suggestion-item .sug-desc {
    font-size: 0.78rem;
    color: #777;
    margin-top: 1px;
}

.suggestion-no-result {
    padding: 0.8rem 1rem;
    color: #999;
    font-size: 0.9rem;
}

/* Hide old overlay */
.search-overlay { display: none !important; }

.hero-slideshow {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.slideshow-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    display: none;
    position: relative;
    width: 100%;
    height: 100%;
}

.slide.active {
    display: block;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    bottom: 20%;
    left: 5%;
    color: var(--white);
    background: rgba(0,0,0,0.6);
    padding: 2rem;
    border-radius: 10px;
    max-width: 500px;
}

.slide-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(212, 175, 55, 0.8);
    color: var(--white);
    border: none;
    padding: 1rem 1.5rem;
    cursor: pointer;
    font-size: 1.5rem;
    transition: var(--transition);
}

.prev:hover, .next:hover {
    background: var(--primary-color);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.dots-container {
    text-align: center;
    padding: 1rem;
    background: var(--black);
}

.dot {
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active, .dot:hover {
    background-color: var(--primary-color);
}

.fade {
    animation: fade 1s;
}

@keyframes fade {
    from { opacity: 0.4; }
    to { opacity: 1; }
}

.latest-property {
    padding: 5rem 5%;
    background: linear-gradient(135deg, #f0f4e8 0%, #e8f1e0 100%);
}

.info-section {
    padding: 5rem 5%;
    background: linear-gradient(135deg, #f5f9f0 0%, #eef6eb 100%);
}

.latest-property h2, .info-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: var(--secondary-color);
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}

.latest-property h2::after, .info-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.property-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1600px;
    margin: 0 auto;
}

.property-cards .card {
    flex: 0 0 calc(25% - 1.5rem);
}

.card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.interactive-card {
    cursor: default;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.card:hover::before {
    transform: scaleX(1);
}

.card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: var(--transition);
}

.card:hover img {
    transform: scale(1.05);
}

.card-content {
    padding: 1.8rem;
}

.card-content h3 {
    color: var(--secondary-color);
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.card-content p {
    color: var(--text-light);
    line-height: 1.6;
}

.info-slideshow {
    position: relative;
    min-height: 300px;
}

.info-slide {
    display: none;
}

.info-slide.active-info {
    display: block;
    animation: fade 1s;
}

.info-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.info-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.info-card h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.info-dots {
    text-align: center;
    margin-top: 2rem;
}

.info-dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: var(--transition);
}

.info-dot.active-dot, .info-dot:hover {
    background-color: var(--primary-color);
}

.page-hero {
    background: var(--gradient-dark);
    color: var(--white);
    text-align: center;
    padding: 5rem 5%;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-hero p {
    font-size: 1.3rem;
    position: relative;
    z-index: 1;
    opacity: 0.9;
}

.vision-mission {
    padding: 4rem 5%;
    background: var(--white);
}

.vm-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.vm-card {
    background: var(--bg-color);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.vm-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.25);
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border: 2px solid var(--primary-color);
}

.vm-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.vm-card:hover i {
    transform: scale(1.1) rotate(5deg);
    color: var(--primary-dark);
}

.vm-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    transition: var(--transition);
}

.vm-card:hover h3 {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.vm-card p {
    color: var(--text-light);
    transition: var(--transition);
}

.vm-card:hover p {
    color: var(--text-color);
}

/* About Founders Section */
.about-founders {
    padding: 4rem 5%;
    background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
    position: relative;
}

.founders-container {
    max-width: 1200px;
    margin: 0 auto;
}

.founders-container h2 {
    text-align: center;
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
}

.founders-container h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
}

.founders-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.founders-text {
    text-align: left;
}

.founders-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.founders-images {
    display: flex;
    justify-content: center;
    gap: 4rem;
    align-items: center;
}

.founder-card {
    background: var(--primary-color);
    border-radius: 20px;
    padding: 5rem 1.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    transition: var(--transition);
    position: relative;
    min-width: 180px;
    margin-top: 80px;
    overflow: visible;
}

.founder-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.founder-image-wrapper {
    width: 160px;
    height: 160px;
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    border: 3px solid #fff;
    z-index: 5;
}

.founder-card:hover .founder-image-wrapper {
    transform: translateX(-50%) translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.founder-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 17px;
    transition: var(--transition);
}

.founder-card:hover .founder-image {
    transform: scale(1.05);
}

.view-button {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    z-index: 15;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.founder-card:hover .view-button {
    bottom: 80px;
    background: #2c3e50;
    color: var(--white);
    box-shadow: 0 8px 20px rgba(44, 62, 80, 0.4);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.founder-card:hover .view-button:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.founder-name {
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 700;
    margin: 2rem 0 0.5rem 0;
    text-align: center;
    transition: var(--transition);
}

.founder-card:hover .founder-name {
    transform: translateY(-2px);
}

.founder-title {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
    text-align: center;
    opacity: 0.9;
    transition: var(--transition);
}

.founder-card:hover .founder-title {
    opacity: 1;
    transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .founders-container h2 {
        font-size: 2rem;
    }
    
    .founders-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .founders-text {
        text-align: center;
    }
    
    .founders-images {
        gap: 2rem;
    }
    
    .founder-card {
        padding: 4rem 1.5rem 2rem;
        min-width: 160px;
        margin-top: 60px;
        overflow: visible;
    }
    
    .founder-image-wrapper {
        width: 120px;
        height: 120px;
        top: -60px;
        z-index: 5;
    }
    
    .founder-card:hover .view-button {
        bottom: 60px;
    }
    
    .founder-name {
        font-size: 1.2rem;
        margin: 1.5rem 0 0.5rem 0;
    }
    
    .view-button {
        padding: 0.6rem 1.5rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .founders-images {
        flex-direction: column;
        gap: 2rem;
    }
    
    .founder-card {
        min-width: 140px;
        padding: 3.5rem 1.2rem 2rem;
        margin-top: 55px;
        overflow: visible;
    }
    
    .founder-image-wrapper {
        width: 110px;
        height: 110px;
        top: -55px;
        z-index: 5;
    }
    
    .founder-card:hover .view-button {
        bottom: 55px;
    }
    
    .founder-name {
        font-size: 1.1rem;
        margin: 1rem 0 0.5rem 0;
    }
    
    .view-button {
        padding: 0.5rem 1.2rem;
        font-size: 0.75rem;
    }
}

.who-we-are {
    padding: 4rem 5%;
    background: var(--bg-color);
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-wrapper h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.content-wrapper p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.core-values {
    padding: 6rem 5%;
    background: linear-gradient(135deg, #f0f8f5 0%, #e8f5f0 100%);
}

.core-values h2 {
    text-align: center;
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
}

.core-values h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 3rem auto 0;
}

.value-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
}

.clickable-card {
    cursor: pointer;
}

.value-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
}

.value-card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.card-icon i {
    font-size: 3.5rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.value-card:hover .card-icon i {
    transform: scale(1.15) rotate(10deg);
}

.value-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.value-card ul {
    list-style: none;
    margin-bottom: 1.5rem;
    flex: 1;
}

.value-card ul li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

.value-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
    position: relative;
    z-index: 1;
}

.learn-more {
    background: var(--gradient-primary);
    color: var(--black);
    border: none;
    padding: 0.9rem 1.8rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    width: 100%;
    margin-top: auto;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    font-size: 0.95rem;
}

.learn-more:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 62, 80, 0.4);
}

.learn-more i {
    margin-left: 0.5rem;
    transition: var(--transition);
}

.learn-more:hover i {
    transform: translateX(3px);
}

.services-section {
    padding: 4rem 5%;
    max-width: 1600px;
    margin: 0 auto;
}

.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.services-intro p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-top: 1rem;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
}

.services-grid .service-card {
    flex: 0 0 350px;
    max-width: 350px;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
}

.service-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.service-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.service-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    color: var(--secondary-color);
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-content > p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
    flex: 1;
}

.service-features li {
    padding: 0.6rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-color);
    font-size: 0.95rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.service-footer {
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-price {
    font-size: 0.9rem;
    color: var(--text-light);
}

.quote-btn {
    background: var(--gradient-primary);
    color: var(--black);
    border: none;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    font-size: 0.95rem;
}

.quote-btn:hover {
    background: var(--gradient-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.quote-btn i {
    margin-left: 0.5rem;
}

/* Floating Contact Button */
.floating-contact-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
    z-index: 9999;
    transition: var(--transition);
    border: none;
    color: var(--black);
}

.floating-contact-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6);
    background: var(--gradient-dark);
    color: var(--white);
}

.floating-contact-btn i {
    font-size: 1.5rem;
}

/* Contact Modal Styles */
.contact-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    overflow: auto;
    animation: fadeIn 0.3s ease;
}

.contact-modal.active {
    display: block;
}

.contact-modal-content {
    background-color: var(--white);
    margin: 3% auto;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
}

.contact-modal-content h2 {
    color: var(--secondary-color);
    margin-bottom: 2rem;
    text-align: center;
    font-size: 2rem;
}

.contact-modal-content .form-group {
    margin-bottom: 1.5rem;
}

.contact-modal-content label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
}

.contact-modal-content input,
.contact-modal-content select,
.contact-modal-content textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    font-size: 1rem;
    background: var(--white);
    transition: var(--transition);
}

.contact-modal-content input:focus,
.contact-modal-content select:focus,
.contact-modal-content textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.contact-modal-content .submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: var(--black);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.contact-modal-content .submit-btn:hover {
    background: var(--gradient-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 62, 80, 0.4);
}

/* Captcha Styles for Modal */
.contact-modal-content .animal-captcha {
    background: var(--bg-color);
    border-radius: 12px;
    padding: 1.5rem;
    border: 2px solid rgba(212, 175, 55, 0.2);
}

.contact-modal-content .captcha-image {
    text-align: center;
    margin-bottom: 1.5rem;
}

.contact-modal-content .captcha-image img {
    width: 120px;
    height: 120px;
    border-radius: 10px;
    border: 3px solid var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-modal-content .captcha-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-modal-content .captcha-option {
    text-align: center;
}

.contact-modal-content .captcha-option input[type="radio"] {
    display: none;
}

.contact-modal-content .option-label {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0.75rem 0.5rem;
    border-radius: 8px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    background: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-color);
    transition: all 0.25s ease;
    min-height: 48px;
    user-select: none;
    gap: 0;
}

.contact-modal-content .option-label:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

/* Remove any img styling inside option labels — new design is text-only */
.contact-modal-content .option-label img {
    display: none;
}

.contact-modal-content .captcha-option.correct .option-label {
    background: #e6f9ee;
    border-color: #28a745;
    color: #1a7a35;
}

.contact-modal-content .captcha-option.wrong .option-label {
    background: #fdecea;
    border-color: #dc3545;
    color: #b02030;
}

.contact-modal-content .refresh-captcha {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-modal-content .refresh-captcha:hover {
    background: var(--gradient-dark);
    transform: translateY(-1px);
}

/* Responsive Design for Floating Button */
@media (max-width: 768px) {
    .floating-contact-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    .floating-contact-btn i {
        font-size: 1.2rem;
    }
    
    .contact-modal-content {
        margin: 5% auto;
        padding: 1.5rem;
        width: 95%;
    }
    
    .contact-modal-content h2 {
        font-size: 1.5rem;
    }
    
    .contact-modal-content .captcha-options {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .contact-modal-content .captcha-image img {
        width: 100px;
        height: 100px;
    }
    
    .contact-modal-content .option-label img {
        width: 35px;
        height: 35px;
    }
}

.modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    overflow: auto;
}

.modal.active {
    display: block;
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 2rem;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    position: relative;
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-color);
    cursor: pointer;
}

.close-modal:hover {
    color: var(--primary-color);
}

/* Why Choose Us Modal */
.why-modal {
    display: none;
    position: fixed;
    z-index: 5000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    overflow: auto;
    animation: fadeIn 0.3s ease;
}

.why-modal.active {
    display: block;
}

.why-modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 900px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
}

.why-modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 45px;
    height: 45px;
    background: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-color);
    cursor: pointer;
    z-index: 5001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    line-height: 1;
}

.why-modal-close:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: rotate(90deg);
}

.why-modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.why-modal-slider {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
    border-radius: 20px 0 0 20px;
}

.why-modal-slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.why-modal-slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.why-modal-slider-slide.active {
    opacity: 1;
}

.why-modal-slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-modal-slider-prev,
.why-modal-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    color: var(--secondary-color);
    border: 2px solid var(--primary-color);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 5002;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    padding: 0;
}

.why-modal-slider-prev:hover,
.why-modal-slider-next:hover {
    background: var(--primary-color);
    color: var(--white);
}

.why-modal-slider-prev {
    left: 15px;
}

.why-modal-slider-next {
    right: 15px;
}

.why-modal-slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5002;
}

.why-modal-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
}

.why-modal-slider-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.why-modal-slider-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.why-modal-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    border-radius: 20px 0 0 20px;
}

.why-modal-text {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.why-modal-text h3 {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
}

.why-modal-text h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.why-modal-text p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .why-modal-body {
        grid-template-columns: 1fr;
    }

    .why-modal-image {
        height: 250px;
        border-radius: 20px 20px 0 0;
    }

    .why-modal-text {
        padding: 2rem;
    }

    .why-modal-text h3 {
        font-size: 1.5rem;
    }
}

.modal-content h2 {
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.submit-btn {
    background: var(--primary-color);
    color: var(--black);
    border: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    width: 100%;
}

.submit-btn:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.contact-section {
    padding: 4rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-form-wrapper,
.contact-info-wrapper {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-form-wrapper h2,
.contact-info-wrapper h2 {
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.25rem;
}

.contact-item h4 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.departments {
    background: var(--bg-color);
    padding: 1.5rem;
    border-radius: 5px;
}

.departments h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.departments ul {
    list-style: none;
}

.departments ul li {
    padding: 0.5rem 0;
}

.departments ul li i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.captcha-group span {
    color: var(--primary-color);
    font-weight: bold;
}

.map-section {
    padding: 4rem 5%;
    background: var(--bg-color);
}

.map-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.map-note {
    text-align: center;
    margin-top: 1rem;
    color: #666;
    font-style: italic;
}

footer {
    background: var(--black);
    color: var(--white);
    padding: 4rem 5% 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto 2rem;
}

.footer-section h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer-section p {
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.footer-section a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-section i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.social-media {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: flex-start;
}

@media (max-width: 768px) {
    .social-media {
        justify-content: flex-start;
    }
}

.social-media a {
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition);
}

.social-media a:hover {
    background: var(--primary-color);
    color: var(--black);
    transform: translateY(-3px);
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer-contact i {
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
}

.footer-bottom i {
    color: #e74c3c;
    margin: 0 0.3rem;
}

@media (max-width: 768px) {
    .navbar {
        position: relative;
        padding: 0.75rem 4%;
        flex-wrap: nowrap;
        gap: 0.5rem;
    }
    
    .logo img {
        height: 48px;
    }
    
    .language-selector select {
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
        max-width: 100px;
    }
    
    .search-btn {
        padding: 0.4rem 0.7rem;
        font-size: 0.85rem;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--black);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        transition: left 0.3s ease;
        z-index: 999;
    }
    
    .nav-links.mobile-active {
        left: 0;
    }
    
    .mobile-menu {
        display: block;
        flex-shrink: 0;
    }
    
    .mobile-menu.active i::before {
        content: '\f00d';
    }
    
    .slide-content h2 {
        font-size: 1.5rem;
    }
    
    .slide-content p {
        font-size: 0.9rem;
    }
    
    .services-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .services-grid .service-card {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .hero-slideshow {
        height: 400px;
    }
    
    .property-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .property-cards .card {
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%;
    }
    
    .latest-property h2 {
        font-size: 2rem;
    }
    
    .about-image::before {
        display: none;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image img {
        height: 280px;
    }
    
    .vm-container {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 1rem 3%;
    }
    
    .logo img {
        height: 50px;
    }
    
    .page-hero h1 {
        font-size: 1.8rem;
    }
    
    .page-hero p {
        font-size: 1rem;
    }
    
    .latest-property {
        padding: 3rem 4%;
    }
    
    .latest-property h2 {
        font-size: 1.8rem;
    }
}


/* Home About Section */
.home-about {
    padding: 5rem 5%;
    background: linear-gradient(135deg, #fef9f3 0%, #fdf5ed 100%);
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 3px solid var(--primary-color);
    border-radius: 20px;
    z-index: -1;
}

.about-content h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.about-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
}

.about-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
    padding: 2rem 0;
    border-top: 2px solid #eee;
    border-bottom: 2px solid #eee;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat-item p {
    color: var(--text-color);
    font-weight: 600;
    margin: 0;
}

/* Home Contact Section */
.home-contact {
    padding: 5rem 5%;
    background: var(--bg-color);
}

.contact-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.contact-info-side {
    padding: 3rem;
    background: var(--gradient-dark);
    color: var(--white);
}

.contact-info-side h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.contact-info-side > p {
    color: rgba(255,255,255,0.9);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.detail-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.detail-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.3rem;
    flex-shrink: 0;
}

.detail-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.detail-item p {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    margin: 0;
}

.contact-form-side {
    padding: 3rem;
}

.contact-form-side h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Responsive Updates */
@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-image::before {
        display: none;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-info-side {
        padding: 2rem;
    }
    
    .contact-form-side {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .social-media {
        justify-content: center;
    }
}


/* ===== PREMIUM ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* ===== WHY CHOOSE SECTION - BOXES LAYOUT ===== */
.info-section {
    padding: 6rem 5%;
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.95) 0%, rgba(255, 255, 255, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(39, 174, 96, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.info-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.info-section h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 3rem auto 0;
    position: relative;
    z-index: 1;
}

.why-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
}

.why-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.why-icon i {
    font-size: 2rem;
    color: var(--black);
}

.why-card:hover .why-icon {
    transform: scale(1.1) rotate(10deg);
}

.why-card h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.why-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: 6rem 5%;
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8f6 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.testimonials-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(39, 174, 96, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.testimonials-container h2 {
    text-align: center;
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.testimonials-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-card:hover::before {
    opacity: 0.05;
}

.quote-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    opacity: 0.3;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 2px solid #eee;
    position: relative;
    z-index: 1;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-color);
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    color: var(--secondary-color);
    margin-bottom: 0.2rem;
    font-weight: 700;
}

.author-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.rating {
    display: flex;
    gap: 0.3rem;
}

.rating i {
    color: #FFD700;
    font-size: 0.9rem;
}

/* ===== BACKGROUND EFFECTS FOR SECTIONS ===== */
.latest-property {
    position: relative;
    background: linear-gradient(180deg, var(--white) 0%, rgba(248, 249, 250, 0.5) 100%);
}

.latest-property::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.03) 0%, rgba(39, 174, 96, 0.03) 100%);
    pointer-events: none;
}

.home-about {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.95) 100%);
    overflow: hidden;
}

.home-about::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.home-about::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(39, 174, 96, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.home-contact {
    position: relative;
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.95) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.home-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(39, 174, 96, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* ===== ENHANCED ANIMATIONS FOR ELEMENTS ===== */
.property-cards .card {
    animation: fadeInUp 0.6s ease-out backwards;
}

.property-cards .card:nth-child(1) { animation-delay: 0.1s; }
.property-cards .card:nth-child(2) { animation-delay: 0.2s; }
.property-cards .card:nth-child(3) { animation-delay: 0.3s; }
.property-cards .card:nth-child(4) { animation-delay: 0.4s; }

.why-card {
    animation: fadeInUp 0.6s ease-out backwards;
}

.testimonial-card {
    animation: scaleIn 0.6s ease-out backwards;
}

.testimonial-card:nth-child(1) { animation-delay: 0.2s; }
.testimonial-card:nth-child(2) { animation-delay: 0.3s; }
.testimonial-card:nth-child(3) { animation-delay: 0.4s; }

/* ===== ENHANCED ABOUT SECTION ===== */
.about-image {
    animation: slideInLeft 0.8s ease-out;
}

.about-content {
    animation: slideInRight 0.8s ease-out;
}

.about-image img {
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.05);
}

.stat-item {
    animation: scaleIn 0.6s ease-out backwards;
}

.stat-item:nth-child(1) { animation-delay: 0.2s; }
.stat-item:nth-child(2) { animation-delay: 0.3s; }
.stat-item:nth-child(3) { animation-delay: 0.4s; }

.stat-item h3 {
    animation: pulse 2s ease-in-out infinite;
}

/* ===== HERO SLIDESHOW ENHANCEMENTS ===== */
.hero-slideshow {
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.slide-content {
    animation: slideInLeft 0.8s ease-out;
}

.slide-content h2 {
    font-size: 3rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.slide-content p {
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

/* ===== CONTACT FORM ENHANCEMENTS ===== */
.contact-wrapper {
    animation: scaleIn 0.8s ease-out;
}

.form-group input:focus,
.form-group textarea:focus {
    animation: pulse 0.6s ease-out;
}

.submit-btn {
    animation: fadeInUp 0.6s ease-out 0.5s backwards;
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

.scale-in {
    animation: scaleIn 0.8s ease-out;
}

/* ===== RESPONSIVE ANIMATIONS ===== */
@media (max-width: 768px) {
    .testimonials-container h2 {
        font-size: 2rem;
    }
    
    .info-section h2 {
        font-size: 2rem;
    }
    
    .slide-content h2 {
        font-size: 1.8rem;
    }
    
    .why-choose-grid {
        gap: 1.5rem;
    }
    
    .testimonials-grid {
        gap: 1.5rem;
    }
    
    .testimonials-section::before,
    .testimonials-section::after {
        display: none;
    }
    
    .home-about::before,
    .home-about::after {
        display: none;
    }
}

/* ===== PREMIUM BUTTON EFFECTS ===== */
.learn-more,
.submit-btn,
.quote-btn {
    position: relative;
    overflow: hidden;
}

.learn-more::before,
.submit-btn::before,
.quote-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s ease;
    z-index: -1;
}

.learn-more:hover::before,
.submit-btn:hover::before,
.quote-btn:hover::before {
    left: 100%;
}

/* ===== CARD HOVER EFFECTS ===== */
.card {
    position: relative;
}

.card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(212, 175, 55, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 15px;
    pointer-events: none;
}

.card:hover::after {
    opacity: 1;
}

/* ===== SMOOTH SCROLL BEHAVIOR ===== */
/* ===== LOADING ANIMATION ===== */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.loading {
    animation: shimmer 2s infinite;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 1000px 100%;
}


/* Why Choose Grid (Static Boxes) */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.why-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.why-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.why-card:hover .why-icon {
    transform: rotateY(360deg);
}

.why-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.why-card h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.why-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 5%;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.testimonials-container h2 {
    text-align: center;
    font-size: 2.8rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.testimonials-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 4rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr));
    gap: 3rem;
}

.testimonial-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.quote-icon {
    position: absolute;
    top: -20px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.quote-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-color);
    margin: 2rem 0;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 2px solid #f0f0f0;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-color);
    flex-shrink: 0;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.author-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.rating {
    display: flex;
    gap: 0.3rem;
}

.rating i {
    color: #ffc107;
    font-size: 0.9rem;
}

/* Premium Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scroll Reveal Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Background Effects */
.latest-property {
    position: relative;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.info-section {
    position: relative;
    background: var(--white);
}

.info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(212,175,55,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

/* Responsive Testimonials */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-section {
        padding: 3rem 4%;
    }
    
    .testimonial-card {
        padding: 2.5rem 1.5rem 1.5rem;
        margin-top: 1rem;
    }
    
    .quote-icon {
        top: -18px;
        left: 20px;
        width: 50px;
        height: 50px;
    }
    
    .quote-icon i {
        font-size: 1.2rem;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
        margin: 1.5rem 0;
    }
    
    .testimonials-container h2 {
        font-size: 2rem;
    }
    
    .testimonials-subtitle {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }
}

/* Inner Page Hero Banners */
.page-hero {
    background: var(--gradient-dark);
    color: var(--white);
    text-align: center;
    padding: 8rem 5% 5rem;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.page-hero > * {
    position: relative;
    z-index: 2;
}

/* Specific page backgrounds */
.about-hero {
    background-image: url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?w=1920&h=800&fit=crop');
}

.services-hero {
    background-image: url('https://images.unsplash.com/photo-1625246333195-78d9c38ad449?w=1920&h=800&fit=crop');
}

.contact-hero {
    background-image: url('https://images.unsplash.com/photo-1574943320219-553eb213f72d?w=1920&h=800&fit=crop');
}

.clean-living-hero {
    background-image: url('https://images.unsplash.com/photo-1466692476868-aef1dfb1e735?w=1920&h=800&fit=crop');
}

.future-kids-hero {
    background-image: url('https://images.unsplash.com/photo-1464226184884-fa280b87c399?w=1920&h=800&fit=crop');
}

.ayurveda-hero {
    background-image: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1920&h=800&fit=crop');
}

.founders-hero {
    background-image: url('https://images.unsplash.com/photo-1516467508483-a7212febe31a?w=1920&h=800&fit=crop');
}

.page-hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
    animation: fadeInDown 1s ease-out;
}

.page-hero p {
    font-size: 1.4rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease-out 0.3s both;
}

/* Breadcrumb Navigation */
.breadcrumb {
    position: absolute;
    top: 2rem;
    left: 5%;
    z-index: 3;
}

.breadcrumb a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

.breadcrumb span {
    color: rgba(255,255,255,0.6);
    margin: 0 0.5rem;
}

/* Parallax effect for desktop */
@media (min-width: 769px) {
    .page-hero {
        background-attachment: fixed;
    }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .page-hero {
        padding: 6rem 5% 4rem;
        background-attachment: scroll;
    }
    
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .page-hero p {
        font-size: 1.1rem;
    }
}

/* Hero Animation Keyframes */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ===== VIDEO CAROUSEL SECTION ===== */
.video-carousel-section {
    padding: 6rem 5%;
    background: linear-gradient(135deg, #f9f6f0 0%, #f5f1eb 100%);
}

.video-carousel-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    font-weight: 700;
    position: relative;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}

.video-carousel-section h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.video-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}

.video-carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.video-carousel-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-slide {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-slide.active-video {
    display: block;
    animation: fadeInVideo 0.5s ease-in-out;
}

@keyframes fadeInVideo {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.video-slide iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-prev, .video-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(212, 175, 55, 0.8);
    color: var(--white);
    border: none;
    padding: 1rem 1.5rem;
    cursor: pointer;
    font-size: 1.5rem;
    transition: var(--transition);
    z-index: 10;
}

.video-prev:hover, .video-next:hover {
    background: var(--primary-color);
}

.video-prev {
    left: 20px;
}

.video-next {
    right: 20px;
}

.video-dots-container {
    text-align: center;
    padding: 1.5rem;
    background: transparent;
    border-radius: 0 0 20px 20px;
}

.video-dot {
    height: 15px;
    width: 15px;
    margin: 0 8px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: var(--transition);
}

.video-dot.active-video-dot, .video-dot:hover {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

/* Responsive Video Carousel */
@media (max-width: 768px) {
    .video-carousel-section {
        padding: 4rem 5%;
    }
    
    .video-carousel-section h2 {
        font-size: 2rem;
    }
    
    .video-prev, .video-next {
        padding: 0.8rem 1rem;
        font-size: 1.2rem;
    }
    
    .video-prev {
        left: 10px;
    }
    
    .video-next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .video-carousel-section h2 {
        font-size: 1.5rem;
    }
    
    .video-subtitle {
        font-size: 0.95rem;
    }
    
    .video-prev, .video-next {
        padding: 0.6rem 0.8rem;
        font-size: 1rem;
    }
}

/* ===== UPDATED STAT BOXES ===== */
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
    padding: 2rem 0;
    border-top: 2px solid #eee;
    border-bottom: 2px solid #eee;
}

.stat-item {
    text-align: center;
}

.stat-box {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(39, 174, 96, 0.1) 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.stat-box:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.stat-box:hover::before {
    opacity: 0.05;
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: var(--transition);
}

.stat-icon i {
    font-size: 2.5rem;
    color: var(--black);
}

.stat-box:hover .stat-icon {
    transform: scale(1.1) rotate(-10deg);
}

.stat-box h3 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat-box p {
    color: var(--text-color);
    font-weight: 600;
    margin: 0;
    font-size: 1.1rem;
}

/* Responsive Stat Boxes */
@media (max-width: 768px) {
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-box {
        padding: 1.5rem;
    }
    
    .stat-icon {
        width: 70px;
        height: 70px;
    }
    
    .stat-icon i {
        font-size: 2rem;
    }
    
    .stat-box h3 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .stat-box h3 {
        font-size: 2rem;
    }
    
    .stat-box p {
        font-size: 0.95rem;
    }
}

/* ===== REVIEW US SECTION ===== */
.review-us-section {
    padding: 5rem 5%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.review-us-section::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.review-us-section::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.review-us-container {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.review-us-badge {
    display: inline-flex;
    gap: 0.4rem;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    margin-bottom: 1.8rem;
}

.review-us-badge i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.review-us-section h2 {
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.review-us-section > .review-us-container > p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.review-us-buttons {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.review-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.95rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
}

/* Google button */
.review-btn-google {
    background: var(--white);
    color: #333;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.review-btn-google:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
    background: #f8f8f8;
}

.review-btn-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Facebook button */
.review-btn-facebook {
    background: #1877f2;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(24, 119, 242, 0.35);
}

.review-btn-facebook:hover {
    transform: translateY(-3px);
    background: #1565d8;
    box-shadow: 0 8px 30px rgba(24, 119, 242, 0.5);
}

.review-btn-facebook .review-btn-icon {
    font-size: 1.1rem;
    width: auto;
    height: auto;
}

.review-us-note {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.review-us-note i {
    font-size: 0.8rem;
}

/* Mobile */
@media (max-width: 768px) {
    .review-us-section {
        padding: 3.5rem 5%;
    }

    .review-us-section h2 {
        font-size: 1.9rem;
    }

    .review-us-section > .review-us-container > p {
        font-size: 1rem;
    }

    .review-us-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .review-btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
}

/* ===== REVIEW US SECTION — single button ===== */
.review-us-section {
    padding: 5rem 5%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.review-us-section::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(212,175,55,.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.review-us-section::after {
    content: '';
    position: absolute;
    bottom: -60px; left: -60px;
    width: 250px; height: 250px;
    background: radial-gradient(circle, rgba(212,175,55,.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.review-us-container {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.review-us-badge {
    display: inline-flex;
    gap: .4rem;
    background: rgba(212,175,55,.15);
    border: 1px solid rgba(212,175,55,.3);
    padding: .55rem 1.4rem;
    border-radius: 50px;
    margin-bottom: 1.6rem;
}

.review-us-badge i { color: var(--primary-color); font-size: 1.1rem; }

.review-us-section h2 {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: .9rem;
}

.review-us-section > .review-us-container > p {
    font-size: 1.05rem;
    color: rgba(255,255,255,.72);
    line-height: 1.7;
    margin-bottom: 2.2rem;
}

.review-us-buttons { margin-bottom: 1.4rem; }

.review-btn-main {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    padding: 1rem 2.6rem;
    background: var(--gradient-primary);
    color: var(--black);
    border: none;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 6px 24px rgba(212,175,55,.4);
    text-decoration: none;
}

.review-btn-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(212,175,55,.55);
    background: linear-gradient(135deg, #f4d03f 0%, #d4af37 100%);
}

.review-us-note {
    font-size: .85rem;
    color: rgba(255,255,255,.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
}

@media (max-width: 768px) {
    .review-us-section { padding: 3.5rem 5%; }
    .review-us-section h2 { font-size: 1.8rem; }
    .review-btn-main { padding: .9rem 2rem; font-size: 1rem; }
}

/* ===== REVIEW SUBMISSION MODAL ===== */
.review-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.72);
    z-index: 10500;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    overflow-y: auto;
}

.review-modal-overlay.active { display: flex; }

.review-modal-box {
    background: var(--white);
    border-radius: 20px;
    width: 100%;
    max-width: 520px;
    max-height: 92vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 24px 64px rgba(0,0,0,.35);
    animation: reviewModalIn .3s ease;
    margin: auto;
}

@keyframes reviewModalIn {
    from { opacity: 0; transform: translateY(30px) scale(.97); }
    to   { opacity: 1; transform: translateY(0)   scale(1);    }
}

.review-modal-close {
    position: absolute;
    top: 1rem; right: 1rem;
    background: #f0f0f0;
    border: none;
    width: 34px; height: 34px;
    border-radius: 50%;
    font-size: 1.3rem;
    line-height: 1;
    cursor: pointer;
    color: #555;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
    z-index: 2;
}

.review-modal-close:hover { background: #e0e0e0; color: #222; }

.review-modal-header {
    text-align: center;
    padding: 2.2rem 2rem 1.2rem;
    border-bottom: 1px solid #f0f0f0;
}

.review-modal-icon {
    width: 60px; height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1rem;
}

.review-modal-icon i { font-size: 1.6rem; color: var(--black); }

.review-modal-header h2 {
    font-size: 1.6rem;
    color: var(--secondary-color);
    margin-bottom: .4rem;
}

.review-modal-header p {
    font-size: .95rem;
    color: var(--text-light);
}

/* Form */
.review-form {
    padding: 1.6rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.review-form-group {
    display: flex;
    flex-direction: column;
    gap: .4rem;
}

.review-form-group label {
    font-size: .9rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.req { color: #e74c3c; margin-left: 2px; }
.review-optional { font-weight: 400; color: var(--text-light); font-size: .82rem; }

.review-form-group input,
.review-form-group textarea {
    padding: .75rem 1rem;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    font-size: .95rem;
    font-family: inherit;
    color: var(--text-color);
    transition: border-color .2s;
    background: #fafafa;
    resize: vertical;
}

.review-form-group input:focus,
.review-form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(212,175,55,.12);
}

.review-char-count {
    font-size: .78rem;
    color: var(--text-light);
    text-align: right;
    margin-top: -2px;
}

.review-field-error {
    font-size: .8rem;
    color: #e74c3c;
    min-height: 1rem;
}

/* Star rating input */
.star-rating-input {
    display: flex;
    gap: .3rem;
}

.star-input {
    font-size: 2rem;
    color: #ddd;
    cursor: pointer;
    transition: color .15s, transform .15s;
    user-select: none;
    line-height: 1;
}

.star-input:hover,
.star-input.active { color: #ffc107; }

.star-input:hover { transform: scale(1.15); }

/* Photo upload */
.review-photo-placeholder {
    border: 2px dashed #ddd;
    border-radius: 10px;
    padding: 1.4rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    background: #fafafa;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .3rem;
}

.review-photo-placeholder:hover {
    border-color: var(--primary-color);
    background: rgba(212,175,55,.04);
}

.review-photo-placeholder i { font-size: 1.8rem; color: var(--primary-color); }
.review-photo-placeholder span { font-size: .9rem; color: var(--text-color); font-weight: 500; }
.review-photo-placeholder small { font-size: .78rem; color: var(--text-light); }

.review-photo-preview {
    position: relative;
    display: inline-block;
}

.review-photo-preview img {
    width: 90px; height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
    display: block;
}

.review-photo-remove {
    position: absolute;
    top: -4px; right: -4px;
    width: 24px; height: 24px;
    background: #e74c3c;
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
}

/* Submit button */
.review-submit-btn {
    padding: .95rem;
    background: var(--gradient-primary);
    color: var(--black);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(212,175,55,.35);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    margin-top: .4rem;
}

.review-submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212,175,55,.5);
}

.review-submit-btn:disabled { opacity: .65; cursor: not-allowed; }

/* Success state */
.review-success {
    padding: 3rem 2rem;
    text-align: center;
}

.review-success-icon {
    width: 72px; height: 72px;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.2rem;
}

.review-success-icon i { font-size: 2rem; color: #fff; }

.review-success h3 {
    font-size: 1.6rem;
    color: var(--secondary-color);
    margin-bottom: .6rem;
}

.review-success p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.8rem;
}

.hidden { display: none !important; }

/* Mobile */
@media (max-width: 480px) {
    .review-modal-box { border-radius: 16px; }
    .review-form { padding: 1.2rem 1.2rem 1.6rem; }
    .review-modal-header { padding: 1.8rem 1.2rem 1rem; }
    .star-input { font-size: 1.7rem; }
}

/* ── Push Notification Popup ─────────────────────────────────────────────────── */
#pn-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pn-fade-in 0.35s ease;
}
@keyframes pn-fade-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}
#pn-popup-box {
    position: relative;
    max-width: 520px;
    width: 92%;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    animation: pn-slide-up 0.35s ease;
}
@keyframes pn-slide-up {
    from { transform: translateY(40px); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}
#pn-popup-box img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    background: #000;
}
#pn-popup-close {
    position: absolute;
    top: 10px;
    right: 12px;
    background: rgba(0, 0, 0, 0.65);
    border: none;
    color: #fff;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 1;
    line-height: 1;
}
#pn-popup-close:hover { background: rgba(231, 76, 60, 0.85); }
