:root {
    --primary: #1B4D3E;
    --primary-light: #2A7A62;
    --primary-dark: #0F3328;
    --secondary: #0D7377;
    --accent: #14A3B8;
    --dark: #1A1A1A;
    --dark-light: #2D2D2D;
    --gray: #6B7280;
    --gray-light: #9CA3AF;
    --bg-white: #FFFFFF;
    --bg-light: #F8FAFB;
    --bg-cream: #F5F7F5;
    --text: #1A1A1A;
    --text-muted: #6B7280;
    --gradient: linear-gradient(135deg, #1B4D3E, #14A3B8);
    --shadow: 0 10px 40px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
    --radius: 20px;
    --radius-sm: 12px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-white);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

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

/* Preloader */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: all 0.4s ease;
}
.preloader.hidden { opacity: 0; pointer-events: none; }
.preloader-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary);
    letter-spacing: 3px;
}
.preloader-bar {
    width: 120px;
    height: 3px;
    background: #eee;
    margin: 20px auto 0;
    border-radius: 3px;
    overflow: hidden;
}
.preloader-progress {
    width: 0%;
    height: 100%;
    background: var(--gradient);
    transition: width 0.2s;
}

/* Navigation */
.navbar {
    position: fixed;
    width: 100%;
    padding: 15px 0;
    z-index: 1000;
    transition: all 0.3s ease;
}
.navbar.scrolled {
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
/* Particles Animation */
.particles-container {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.15;
    animation: floatParticle 15s infinite ease-in-out;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 18s; }
.particle:nth-child(2) { left: 20%; animation-delay: 2s; animation-duration: 20s; width: 6px; height: 6px; }
.particle:nth-child(3) { left: 35%; animation-delay: 4s; animation-duration: 16s; }
.particle:nth-child(4) { left: 50%; animation-delay: 1s; animation-duration: 22s; width: 10px; height: 10px; }
.particle:nth-child(5) { left: 65%; animation-delay: 3s; animation-duration: 19s; }
.particle:nth-child(6) { left: 80%; animation-delay: 5s; animation-duration: 17s; width: 5px; height: 5px; }
.particle:nth-child(7) { left: 90%; animation-delay: 2.5s; animation-duration: 21s; }
.particle:nth-child(8) { left: 45%; animation-delay: 1.5s; animation-duration: 14s; width: 12px; height: 12px; }

@keyframes floatParticle {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.15; }
    90% { opacity: 0.15; }
    100% { transform: translateY(-100vh) rotate(360deg); opacity: 0; }
}

/* Hero Floating Elements */
.hero-floating-element {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    opacity: 0.3;
    animation: pulseFloat 4s infinite ease-in-out;
}

.hero-floating-element:nth-child(1) { top: 20%; left: 5%; animation-delay: 0s; }
.hero-floating-element:nth-child(2) { top: 60%; right: 8%; animation-delay: 1s; width: 40px; height: 40px; }
.hero-floating-element:nth-child(3) { bottom: 25%; left: 12%; animation-delay: 2s; width: 30px; height: 30px; }

@keyframes pulseFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; }
    50% { transform: translateY(-20px) scale(1.1); opacity: 0.5; }
}

/* Animated Gradient Background */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(27,77,62,0.03), transparent);
    animation: shimmer 8s infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(50%); }
}

/* Preloader Logo Animation */
.preloader-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary);
    letter-spacing: 3px;
    animation: logoPulse 1.5s infinite ease-in-out;
}

.preloader-logo span {
    color: var(--accent);
}

@keyframes logoPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

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

/* Navbar Brand Animation */
.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--text) !important;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
}
.navbar-brand::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: var(--gradient);
    transition: left 0.5s ease;
}
.navbar-brand:hover::after { left: 0; }
.navbar-brand span { color: var(--primary); }
.nav-link {
    color: var(--dark-light) !important;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 8px 14px !important;
    transition: color 0.3s;
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s;
}
.nav-link:hover { color: var(--primary) !important; }
.nav-link:hover::after { transform: scaleX(1); }
.mobile-toggle {
    display: none;
    background: var(--primary);
    border: none;
    color: white;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 1.1rem;
}
.mobile-toggle:focus { box-shadow: none; outline: 2px solid var(--accent); }

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 40px 0;
}

.hero-left { flex: 1; }

/* Hero Badge Animation */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: white;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    animation: badgePulse 2s infinite;
}

.hero-badge i {
    animation: starSpin 3s infinite linear;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(27,77,62,0.4); }
    50% { box-shadow: 0 0 20px 5px rgba(27,77,62,0.2); }
}

@keyframes starSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Hero Title Animation */
.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 600;
    color: var(--text);
    line-height: 1.15;
    margin-bottom: 20px;
    animation: heroTitleFadeIn 1s ease-out 0.3s both;
}

.hero-title span {
    color: var(--primary);
    display: inline;
}

/* Hero Card Hover Animation */
.hero-card {
    position: absolute;
    background: white;
    border-radius: var(--radius-sm);
    padding: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: cardFloat 3s infinite ease-in-out;
}

.hero-card:nth-child(2) { animation-delay: 0.5s; }
.hero-card:nth-child(3) { animation-delay: 1s; }

@keyframes cardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-card:hover {
    transform: scale(1.03) translateY(-10px) !important;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 460px;
    margin-bottom: 30px;
}

.hero-btns { display: flex; gap: 15px; flex-wrap: wrap; }

.btn-primary {
    background: var(--gradient);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(27,77,62,0.3);
    color: white;
}

.btn-outline {
    background: transparent;
    color: var(--text);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    border: 2px solid var(--text);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}
.btn-outline:hover {
    background: var(--text);
    color: white;
    transform: translateY(-3px);
}

.hero-right {
    flex: 1;
    position: relative;
}

.hero-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.hero-card {
    position: absolute;
    background: white;
    border-radius: var(--radius-sm);
    padding: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}
.hero-card:hover { transform: scale(1.03); }

.hero-card-1 {
    bottom: -25px;
    left: -20px;
    max-width: 220px;
}
.hero-card-2 {
    top: 20px;
    right: -15px;
    max-width: 160px;
}

.hero-card-img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
}

.hero-card-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.hero-card-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 600;
}

.hero-card-badge {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.hero-stats {
    display: flex;
    gap: 35px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.hero-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text);
}

.hero-stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Shapes */
.hero-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border: 2px solid rgba(27,77,62,0.1);
    border-radius: 50%;
}
.shape-1 { width: 250px; height: 250px; top: 5%; right: -50px; }
.shape-2 { width: 120px; height: 120px; bottom: 15%; left: -30px; }

/* Scroll */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.7rem;
    letter-spacing: 2px;
}
.scroll-indicator i { animation: bounce 2s infinite; }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(8px); } }

/* Partners */
.partners {
    padding: 35px 0;
    background: var(--bg-white);
    border-top: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    overflow: hidden;
}
.partners .row {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.partners .row::-webkit-scrollbar { display: none; }
.partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 15px;
    flex: 0 0 auto;
}
.partner-item span {
    font-family: 'Playfair Display', serif;
    font-size: 0.9rem;
    color: var(--gray-light);
    letter-spacing: 2px;
    opacity: 0.6;
    transition: opacity 0.3s;
    white-space: nowrap;
}
.partner-item:hover span { opacity: 1; }

@media (max-width: 767px) {
    .partners { padding: 25px 0; }
    .partner-item span { font-size: 0.75rem; }
}

/* Section */
section { padding: 80px 0; }
.section-subtitle {
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.section-title {
    font-size: clamp(1.7rem, 3.5vw, 2.5rem);
    font-weight: 600;
    color: var(--text);
    margin-bottom: 15px;
}
.section-desc {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 520px;
    line-height: 1.8;
}

/* About */
.about-section { background: var(--bg-white); }
.about-img {
    position: relative;
    border-radius: var(--radius);
    overflow: visible;
}
.about-img img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: var(--radius);
}
.about-accent {
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 130px;
    height: 130px;
    border: 3px solid var(--primary);
    border-radius: var(--radius);
    z-index: -1;
}

@media (max-width: 991px) {
    .about-accent { display: none; }
}
.about-feature {
    display: flex;
    gap: 15px;
    margin-bottom: 18px;
}
.about-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(27,77,62,0.1), rgba(20,163,184,0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    flex-shrink: 0;
}
.about-icon i { color: var(--primary); font-size: 1.1rem; }
.about-feature h5 { font-weight: 600; font-size: 0.95rem; margin-bottom: 3px; }
.about-feature p { color: var(--text-muted); font-size: 0.9rem; margin: 0; }

/* Properties */
.properties-section { background: var(--bg-light); }
.property-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    height: 100%;
}
.property-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.property-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.property-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.property-card:hover .property-img img { transform: scale(1.08); }
/* Property Card Animated Border */
.property-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid transparent;
    border-radius: var(--radius);
    transition: border-color 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.property-card:hover::before {
    border-color: var(--accent);
    animation: borderGlow 1.5s infinite;
}

@keyframes borderGlow {
    0%, 100% { box-shadow: inset 0 0 0 0 rgba(20,163,184,0); }
    50% { box-shadow: inset 0 0 20px 2px rgba(20,163,184,0.3); }
}

/* Property Badge Animated */
.property-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary);
    color: white;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    animation: badgeBounce 2s infinite;
}

@keyframes badgeBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}
.property-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}
.property-card:hover .property-overlay { transform: translateY(0); }
.property-overlay .btn-primary { padding: 10px 20px; font-size: 0.8rem; }
.property-content { padding: 20px; }
.property-location {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--primary);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}
.property-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 10px;
}
.property-features {
    display: flex;
    gap: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(0,0,0,0.06);
    flex-wrap: wrap;
}
.property-feature {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    color: var(--text-muted);
}
.property-feature i { color: var(--primary); }
.property-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--primary);
    font-weight: 600;
    margin-top: 10px;
}

/* Why */
.why-section { background: var(--primary-dark); color: white; }
.why-section .section-title { color: white; }
.why-section .section-subtitle { color: var(--accent); }
.why-section .section-desc { color: rgba(255,255,255,0.7); }
.why-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 30px 20px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}
.why-card:hover {
    background: rgba(255,255,255,0.12);
    border-color: var(--accent);
    transform: translateY(-5px);
}
/* Why Card Animated Icon */
.why-icon {
    width: 65px;
    height: 65px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    animation: iconPulse 2s infinite ease-in-out;
    transition: transform 0.3s;
}

.why-card:hover .why-icon {
    animation: iconSpin 0.6s ease-in-out;
}

@keyframes iconPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(20,163,184,0.4); }
    50% { box-shadow: 0 0 25px 8px rgba(20,163,184,0.2); }
}

@keyframes iconSpin {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.2); }
    100% { transform: rotate(360deg) scale(1); }
}

/* Why Card Background Animated Gradient */
.why-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 30px 20px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s;
}

.why-card:hover::before { left: 100%; }
.why-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
}
.why-desc { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.7; }

/* Services Section */
.services-section { background: var(--bg-white); }
.service-card {
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 28px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(27,77,62,0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s, transform 0.6s;
    transform: scale(0);
    pointer-events: none;
}

.service-card:hover::after {
    opacity: 1;
    transform: scale(1);
}

.service-icon i { font-size: 1.4rem; color: white; }
.service-title { font-size: 1.1rem; font-weight: 600; margin-bottom: 8px; }
.service-desc { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(27,77,62,0.1); }
.service-icon {
    width: 55px;
    height: 55px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.service-icon i { font-size: 1.4rem; color: white; }
.service-title { font-size: 1.1rem; font-weight: 600; margin-bottom: 8px; }
.service-desc { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }

/* Stats Counter Animated */
.stat-item {
    text-align: center;
    padding: 20px;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gradient);
    transition: width 0.5s, left 0.5s;
}

.stat-item:hover::after {
    width: 50%;
    left: 25%;
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.stat-num::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
    transform: scale(0);
    z-index: -1;
}

.stat-item:hover .stat-num::before {
    opacity: 0.1;
    transform: scale(1.2);
}
.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 8px;
}

/* Video */
.video-section { padding: 0; }
.video-wrapper {
    position: relative;
    height: 400px;
    overflow: hidden;
}
.video-wrapper video { width: 100%; height: 100%; object-fit: cover; }
.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(27,77,62,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}
.play-btn {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}
.play-btn:hover { transform: scale(1.1); }
.play-btn i { font-size: 1.6rem; color: var(--primary); margin-left: 4px; }

/* Testimonials */
.testimonials-section { background: var(--bg-white); }
.testimonial-card {
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 30px;
    height: 100%;
    position: relative;
}
.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: var(--primary);
    opacity: 0.2;
}
.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}
.testimonial-name { font-weight: 600; font-size: 0.95rem; }
.testimonial-role { color: var(--primary); font-size: 0.8rem; }

/* Gallery Item Animated Overlay */
.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 240px;
    cursor: pointer;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 3px solid var(--accent);
    border-radius: var(--radius);
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.4s, transform 0.4s;
    z-index: 2;
}

.gallery-item:hover::before {
    opacity: 1;
    transform: scale(0.95);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(27,77,62,0.8), rgba(20,163,184,0.5));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i {
    font-size: 2rem;
    color: white;
    transform: scale(0) rotate(-180deg);
    transition: transform 0.4s;
}
.gallery-item:hover .gallery-overlay i {
    transform: scale(1) rotate(0deg);
}

/* Gallery Image Shine Effect */
.gallery-item::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.3) 50%, transparent 60%);
    transform: rotate(45deg) translateX(-100%);
    transition: transform 0.8s;
    z-index: 1;
}

.gallery-item:hover::after {
    transform: rotate(45deg) translateX(100%);
}

/* FAQ */
.faq-section { background: var(--bg-white); }
.accordion {
    max-width: 800px;
    margin: 0 auto;
}
.accordion-item {
    background: var(--bg-light);
    border: none;
    border-radius: var(--radius-sm) !important;
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
}
.accordion-button {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--text);
    padding: 18px 22px;
    font-size: 0.95rem;
}
.accordion-button::after {
    background-image: none !important;
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.7rem;
    transition: transform 0.3s;
}
.accordion-button:not(.collapsed)::after { transform: rotate(180deg); }
.accordion-button:focus { box-shadow: none; }
.accordion-button:not(.collapsed) { background: var(--bg-light); color: var(--primary); }
.accordion-body {
    padding: 16px 20px;
    color: var(--text-muted);
    line-height: 1.7;
    background: var(--bg-light);
}

/* Contact */
.contact-section { background: var(--bg-light); }
.contact-form {
    background: white;
    border-radius: var(--radius);
    padding: 35px;
    box-shadow: var(--shadow);
}
.contact-form h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 25px;
    text-align: left;
}

@media (max-width: 767px) {
    .contact-form h3 { text-align: center; }
}
.form-control {
    background: var(--bg-light);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    font-size: 0.9rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.form-control:focus { background: var(--bg-light); border-color: var(--primary); box-shadow: 0 0 0 3px rgba(27,77,62,0.1); outline: none; }
.contact-info-card {
    background: var(--primary-dark);
    border-radius: var(--radius);
    padding: 35px;
    color: white;
    height: 100%;
}

@media (max-width: 767px) {
    .contact-info-card { padding: 25px; }
}
.contact-info-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 12px;
}
.contact-info-card p { color: rgba(255,255,255,0.7); margin-bottom: 25px; }
.contact-item { display: flex; gap: 15px; margin-bottom: 20px; }
.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(20,163,184,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    flex-shrink: 0;
}
.contact-icon i { color: var(--accent); }
.contact-item:hover .contact-icon { background: var(--accent); }
.contact-item:hover .contact-icon i { color: white; }
.contact-item h5 { font-weight: 600; font-size: 0.9rem; margin-bottom: 2px; }
.contact-item p { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin: 0; }

/* Footer */
footer { background: var(--dark); color: white; padding: 60px 0 25px; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.6rem; margin-bottom: 12px; }
.footer-logo span { color: var(--accent); }
.footer-desc { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-bottom: 18px; max-width: 260px; }
.social-links { display: flex; gap: 10px; }
.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}
.social-link:hover { background: var(--accent); }
.footer-title { font-family: 'Playfair Display', serif; font-size: 1.05rem; margin-bottom: 18px; font-weight: 600; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.9rem; transition: color 0.3s; }
.footer-links a:hover { color: var(--accent); }
.footer-bottom { margin-top: 45px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); text-align: center; color: rgba(255,255,255,0.5); font-size: 0.85rem; }
.footer-newsletter input:focus { border-color: var(--accent); outline: none; }
.footer-newsletter button { transition: transform 0.3s, box-shadow 0.3s; }
.footer-newsletter button:hover { transform: scale(1.05); box-shadow: 0 5px 15px rgba(20,163,184,0.3); }
.footer-newsletter input::placeholder { color: rgba(255,255,255,0.5); }

/* Floating */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 52px;
    height: 52px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 5px 20px rgba(37,211,102,0.35);
    transition: transform 0.3s;
}
.whatsapp-float:hover { transform: scale(1.1); }
.back-to-top {
    position: fixed;
    bottom: 85px;
    right: 25px;
    width: 45px;
    height: 45px;
    background: var(--gradient);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}
.back-to-top.show { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-3px); }

/* Swiper */
.swiper-pagination-bullet { background: var(--primary) !important; opacity: 0.4 !important; }
.swiper-pagination-bullet-active { opacity: 1 !important; }
.swiper-pagination{ position: unset; margin-top: 10px ;}

/* Responsive */
@media (max-width: 991px) {
    .mobile-toggle { display: flex; }
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 18px;
        margin-top: 10px;
        border-radius: 15px;
        box-shadow: var(--shadow-lg);
    }
    .hero-container { flex-direction: column; gap: 30px; text-align: center; padding-top: 20px; }
    .hero-left { width: 100%; }
    .hero-desc { margin: 0 auto 30px; }
    .hero-btns { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-right { width: 100%; }
    .hero-img { height: 350px; }
    .hero-card-1 { left: 10px; bottom: -20px; }
    .hero-card-2 { right: 10px; top: 10px; }
    .hero-shapes { display: none; }
    .contact-info-card { margin-top: 0; }
}

@media (max-width: 767px) {
    section { padding: 60px 0; }
    .hero-title { font-size: 2rem; }
    .section-title { font-size: 1.6rem; }
    .hero-img { height: 280px; }
    .hero-card { display: none; }
    .hero-stats { gap: 20px; }
    .hero-stat-num { font-size: 1.5rem; }
    .stat-num { font-size: 2rem; }
    .property-img { height: 180px; }
    .video-wrapper { height: 300px; }
    .gallery-item { height: 180px; }
    .why-card { padding: 20px 15px; }
    .about-img img { height: 300px; }
}

@media (max-width: 575px) {
    .hero { padding-top: 70px; }
    .btn-primary, .btn-outline { width: 100%; justify-content: center; }
    .hero-btns { flex-direction: column; }
    .hero-stats { flex-wrap: wrap; }
    .footer [class*="col-"] { margin-bottom: 1.5rem; }
}

/* Footer Newsletter Input Placeholder */
.accent-text { color: var(--accent); }

form.d-flex.gap-2.footer-newsletter .form-control::placeholder {
    color: rgba(255,255,255,0.7);
}
.footer-newsletter input {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
}
.footer-newsletter-desc {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin-bottom: 12px;
}
.footer-newsletter button.btn-primary {
    padding: 3px 0px !important;
    width: 60px !important;
    display: flex;
    justify-content: center;
    align-items: center;
}