/* =============================================
   Vanika Enterprises - Main Stylesheet
   Premium Real Estate Portal
   Colors: Dark Blue, Gold, White, Light Grey, Orange
   ============================================= */

:root {
    --primary: #1a237e;
    --primary-dark: #0d1442;
    --primary-light: #283593;
    --secondary: #d4a017;
    --secondary-light: #f0c040;
    --secondary-dark: #b8860b;
    --accent: #ff6f00;
    --accent-light: #ff8f00;
    --dark: #1a1a2e;
    --darker: #16213e;
    --white: #ffffff;
    --light: #f8f9fa;
    --gray: #6c757d;
    --gray-light: #e9ecef;
    --gray-dark: #343a40;
    --success: #28a745;
    --danger: #dc3545;
    --warning: #ffc107;
    --info: #17a2b8;
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Playfair Display', serif;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-md: 0 5px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.2);
    --gradient-primary: linear-gradient(135deg, #1a237e 0%, #283593 50%, #3949ab 100%);
    --gradient-gold: linear-gradient(135deg, #d4a017 0%, #f0c040 50%, #ffd54f 100%);
    --gradient-accent: linear-gradient(135deg, #ff6f00 0%, #ff8f00 50%, #ffb300 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(26,35,126,0.95) 0%, rgba(13,20,66,0.9) 100%);
    --gradient-card: linear-gradient(135deg, rgba(26,35,126,0.05) 0%, rgba(212,160,23,0.05) 100%);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

/* ==========================================
   RESET & BASE STYLES
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary);
}

img {
    max-width: 100%;
    height: auto;
}

/* ==========================================
   TOP BAR
   ========================================== */
.top-bar {
    background: var(--primary-dark);
    padding: 8px 0;
    border-bottom: 2px solid var(--secondary);
    display: none;
}

.top-bar-left span,
.top-bar-right span {
    color: var(--white);
    font-size: 13px;
    margin-right: 20px;
}

.top-bar-left span i,
.top-bar-right span i {
    color: var(--secondary);
    margin-right: 6px;
}

.top-bar-left a,
.top-bar-right a {
    color: var(--white);
}

.top-bar-left a:hover {
    color: var(--secondary-light);
}

.top-bar-right {
    text-align: right;
}

.social-icons {
    display: inline-flex;
    gap: 8px;
    margin-left: 15px;
}

.social-icons a {
    width: 28px;
    height: 28px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 12px;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--secondary);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

/* ==========================================
   HEADER / NAVIGATION
   ========================================== */
.main-header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1030;
    transition: var(--transition);
}

.main-header.scrolled {
    box-shadow: 0 2px 30px rgba(0,0,0,0.15);
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
}

.navbar {
    padding: 10px 0;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo > i {
    font-size: 36px;
    color: var(--primary);
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-text h2 {
    font-size: 22px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    line-height: 1.2;
}

.brand-text span {
    font-size: 11px;
    color: var(--secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.navbar-nav .nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--dark);
    padding: 8px 16px !important;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link i {
    margin-right: 5px;
    font-size: 14px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary);
    background: rgba(26,35,126,0.05);
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-md);
    padding: 10px;
    margin-top: 10px;
}

.dropdown-item {
    border-radius: var(--radius-sm);
    padding: 8px 15px;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.dropdown-item:hover {
    background: var(--gradient-card);
    color: var(--primary);
    padding-left: 20px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 20px;
}

.btn-icon {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--light);
    color: var(--dark);
    font-size: 16px;
    position: relative;
    transition: var(--transition);
}

.btn-icon:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.wishlist-count {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    background: var(--danger);
    color: var(--white);
    border-radius: 50%;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.btn-gold {
    background: var(--gradient-gold);
    color: var(--primary-dark) !important;
    padding: 10px 24px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 14px;
    border: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212,160,23,0.4);
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* ==========================================
   HERO SLIDER
   ========================================== */
.hero-section {
    position: relative;
    height: 85vh;
    min-height: 500px;
    overflow: hidden;
}

.hero-slider,
.hero-slider .swiper-wrapper,
.hero-slider .swiper-slide {
    height: 100%;
}

.hero-slide {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slide .slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13,20,66,0.85) 0%, rgba(26,35,126,0.7) 50%, rgba(13,20,66,0.85) 100%);
}

.hero-slide .slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 20px;
}

.hero-slide .slide-content h1 {
    font-size: 58px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease;
}

.hero-slide .slide-content p {
    font-size: 20px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-slide .slide-content .slide-buttons {
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-slide .slide-content .btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: var(--radius-xl);
    font-size: 16px;
    font-weight: 600;
    transition: var(--transition);
    margin: 5px;
}

.btn-hero-primary {
    background: var(--gradient-gold);
    color: var(--primary-dark);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212,160,23,0.5);
    color: var(--primary-dark);
}

.btn-hero-secondary {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-hero-secondary:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
}

.hero-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--white);
    opacity: 0.5;
}

.hero-slider .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--secondary);
    width: 35px;
    border-radius: 6px;
}

.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
    color: var(--white);
    background: rgba(255,255,255,0.15);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    backdrop-filter: blur(5px);
    transition: var(--transition);
}

.hero-slider .swiper-button-next:hover,
.hero-slider .swiper-button-prev:hover {
    background: var(--secondary);
    color: var(--primary-dark);
}

.hero-slider .swiper-button-next::after,
.hero-slider .swiper-button-prev::after {
    font-size: 20px;
}

/* ==========================================
   SEARCH SECTION
   ========================================== */
.property-search-section {
    position: relative;
    margin-top: -60px;
    z-index: 10;
}

.property-search-section .search-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 35px;
}

.property-search-section .search-wrapper h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.property-search-section .search-wrapper h3 i {
    color: var(--secondary);
    margin-right: 10px;
}

.property-search-section .form-control,
.property-search-section .form-select {
    border: 2px solid var(--gray-light);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: 14px;
    transition: var(--transition);
}

.property-search-section .form-control:focus,
.property-search-section .form-select:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(212,160,23,0.15);
}

.property-search-section .btn-search {
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--radius-sm);
    padding: 12px 30px;
    font-weight: 600;
    font-size: 15px;
    width: 100%;
    border: none;
    transition: var(--transition);
}

.property-search-section .btn-search:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(26,35,126,0.4);
}

/* ==========================================
   SECTION TITLES
   ========================================== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header .section-subtitle {
    color: var(--secondary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--gradient-gold);
    margin: 10px auto 0;
    border-radius: 2px;
}

.section-header p {
    color: var(--gray);
    font-size: 17px;
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================
   PROPERTY CARDS
   ========================================== */
.property-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-slow);
    height: 100%;
    position: relative;
}

.property-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.property-card .card-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.property-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.property-card:hover .card-image img {
    transform: scale(1.1);
}

.property-card .card-image .card-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2;
}

.property-card .card-image .card-badges .badge {
    padding: 5px 15px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
}

.property-card .card-image .card-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2;
}

.property-card .card-image .card-actions a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 14px;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.property-card .card-image .card-actions a:hover {
    background: var(--secondary);
    color: var(--white);
}

.property-card .card-body {
    padding: 20px;
}

.property-card .card-body .price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.property-card .card-body .price span {
    font-size: 14px;
    color: var(--gray);
    font-weight: 400;
}

.property-card .card-body .property-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.property-card .card-body .property-title:hover {
    color: var(--primary);
}

.property-card .card-body .property-location {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 12px;
}

.property-card .card-body .property-location i {
    color: var(--secondary);
    margin-right: 5px;
}

.property-card .card-body .property-specs {
    display: flex;
    gap: 15px;
    padding-top: 12px;
    border-top: 1px solid var(--gray-light);
    margin-bottom: 12px;
}

.property-card .card-body .property-specs .spec {
    text-align: center;
    flex: 1;
}

.property-card .card-body .property-specs .spec i {
    color: var(--secondary);
    font-size: 16px;
    margin-bottom: 3px;
}

.property-card .card-body .property-specs .spec span {
    display: block;
    font-size: 12px;
    color: var(--gray);
}

.property-card .card-body .property-specs .spec strong {
    font-size: 14px;
    color: var(--dark);
    display: block;
}

/* Featured Property Card (Horizontal) */
.featured-property-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.featured-property-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.featured-property-card .row {
    min-height: 300px;
}

.featured-property-card .featured-image {
    height: 100%;
    min-height: 300px;
    position: relative;
    overflow: hidden;
}

.featured-property-card .featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.featured-property-card:hover .featured-image img {
    transform: scale(1.05);
}

.featured-property-card .featured-content {
    padding: 35px;
}

.featured-property-card .featured-content .featured-badge {
    display: inline-block;
    background: var(--gradient-gold);
    color: var(--primary-dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.featured-property-card .featured-content .price {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
}

.featured-property-card .featured-content h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
}

.featured-property-card .featured-content .location {
    color: var(--gray);
    margin-bottom: 15px;
}

.featured-property-card .featured-content .location i {
    color: var(--secondary);
}

.featured-property-card .featured-content p {
    color: var(--gray);
    margin-bottom: 20px;
}

.featured-property-card .featured-content .specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.featured-property-card .featured-content .specs-grid .spec-item {
    text-align: center;
    padding: 10px;
    background: var(--light);
    border-radius: var(--radius-sm);
}

.featured-property-card .featured-content .specs-grid .spec-item i {
    color: var(--secondary);
    font-size: 20px;
    margin-bottom: 5px;
}

.featured-property-card .featured-content .specs-grid .spec-item span {
    display: block;
    font-size: 12px;
    color: var(--gray);
}

.featured-property-card .featured-content .specs-grid .spec-item strong {
    font-size: 16px;
    color: var(--dark);
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about-section {
    padding: 100px 0;
    background: var(--light);
}

.about-section .about-content h6 {
    color: var(--secondary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.about-section .about-content h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px;
}

.about-section .about-content p {
    color: var(--gray);
    margin-bottom: 20px;
}

.about-section .about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.about-section .about-stats .stat-item {
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.about-section .about-stats .stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.about-section .about-stats .stat-item i {
    font-size: 30px;
    color: var(--secondary);
    margin-bottom: 10px;
}

.about-section .about-stats .stat-item h3 {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    margin: 0;
}

.about-section .about-stats .stat-item p {
    font-size: 14px;
    color: var(--gray);
    margin: 0;
}

.about-section .about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-section .about-image img {
    width: 100%;
    border-radius: var(--radius-lg);
}

.about-section .about-image .experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gradient-gold);
    color: var(--primary-dark);
    padding: 20px 30px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about-section .about-image .experience-badge h3 {
    font-size: 36px;
    font-weight: 800;
    margin: 0;
    line-height: 1;
}

.about-section .about-image .experience-badge p {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
.services-section {
    padding: 100px 0;
    background: var(--white);
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 35px 25px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    height: 100%;
    border: 1px solid var(--gray-light);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-card .service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--gradient-card);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--secondary);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--gradient-gold);
    color: var(--white);
    transform: rotateY(180deg);
}

.service-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.service-card p {
    color: var(--gray);
    font-size: 15px;
    margin-bottom: 0;
}

/* ==========================================
   WHY CHOOSE US
   ========================================== */
.why-choose-section {
    padding: 100px 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.03)" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,208C1248,224,1344,192,1392,176L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

.why-choose-section .section-header h2,
.why-choose-section .section-header p {
    color: var(--white);
}

.why-choose-section .section-header h2::after {
    background: var(--gradient-gold);
}

.why-choose-card {
    text-align: center;
    padding: 30px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.15);
    transition: var(--transition);
    height: 100%;
}

.why-choose-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-8px);
}

.why-choose-card .icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary-dark);
}

.why-choose-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.why-choose-card p {
    color: rgba(255,255,255,0.8);
    font-size: 15px;
    margin-bottom: 0;
}

/* ==========================================
   TESTIMONIALS
   ========================================== */
.testimonials-section {
    padding: 100px 0;
    background: var(--light);
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 35px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    margin: 15px;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 80px;
    color: var(--secondary);
    opacity: 0.15;
    font-family: var(--font-heading);
    line-height: 1;
}

.testimonial-card .rating {
    margin-bottom: 15px;
}

.testimonial-card .rating i {
    color: var(--secondary);
    font-size: 16px;
    margin-right: 2px;
}

.testimonial-card .rating i.fa-star-half-alt {
    color: var(--secondary);
}

.testimonial-card p {
    color: var(--gray);
    font-size: 15px;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-card .client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-card .client-info img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--secondary);
}

.testimonial-card .client-info h5 {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
}

.testimonial-card .client-info span {
    font-size: 13px;
    color: var(--gray);
}

/* ==========================================
   LOCATIONS SECTION
   ========================================== */
.locations-section {
    padding: 100px 0;
    background: var(--white);
}

.location-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 250px;
    cursor: pointer;
}

.location-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.location-card:hover img {
    transform: scale(1.1);
}

.location-card .location-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(13,20,66,0.9) 0%, rgba(13,20,66,0.2) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    transition: var(--transition);
}

.location-card:hover .location-overlay {
    background: linear-gradient(to top, rgba(13,20,66,0.95) 0%, rgba(13,20,66,0.4) 100%);
}

.location-card .location-overlay h4 {
    color: var(--white);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
}

.location-card .location-overlay span {
    color: var(--secondary);
    font-size: 14px;
    font-weight: 600;
}

/* ==========================================
   CTA SECTION
   ========================================== */
.cta-section {
    padding: 80px 0;
    background: var(--gradient-primary);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
}

.cta-section p {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn-cta {
    background: var(--gradient-gold);
    color: var(--primary-dark);
    padding: 15px 40px;
    border-radius: var(--radius-xl);
    font-size: 16px;
    font-weight: 700;
    border: none;
    transition: var(--transition);
}

.cta-section .btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212,160,23,0.5);
}

/* ==========================================
   CONTACT SECTION (Homepage)
   ========================================== */
.contact-section-home {
    padding: 100px 0;
    background: var(--light);
}

.contact-section-home .contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-section-home .contact-info-item i {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary-dark);
    flex-shrink: 0;
}

.contact-section-home .contact-info-item h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.contact-section-home .contact-info-item p {
    color: var(--gray);
    margin: 0;
}

/* ==========================================
   BLOG SECTION
   ========================================== */
.blog-section {
    padding: 100px 0;
    background: var(--white);
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.blog-card .blog-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.blog-card .blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-card .blog-image .blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gradient-gold);
    color: var(--primary-dark);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.blog-card .blog-content {
    padding: 20px;
}

.blog-card .blog-content .blog-meta {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 10px;
}

.blog-card .blog-content .blog-meta i {
    color: var(--secondary);
    margin-right: 5px;
}

.blog-card .blog-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card .blog-content h4:hover {
    color: var(--primary);
}

.blog-card .blog-content p {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card .blog-content .btn-read-more {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.blog-card .blog-content .btn-read-more:hover {
    color: var(--secondary);
    gap: 10px;
}

/* ==========================================
   FOOTER
   ========================================== */
.main-footer {
    background: var(--primary-dark);
    color: var(--white);
}

.footer-top {
    padding: 80px 0 50px;
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo i {
    font-size: 36px;
    color: var(--secondary);
}

.footer-logo h3 {
    font-size: 22px;
    font-weight: 800;
    margin: 0;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-about {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    margin-bottom: 25px;
    line-height: 1.8;
}

.footer-contact-info .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.footer-contact-info .contact-item i {
    color: var(--secondary);
    font-size: 16px;
    margin-top: 4px;
    flex-shrink: 0;
}

.footer-contact-info .contact-item span {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.footer-contact-info .contact-item a {
    color: rgba(255,255,255,0.7);
}

.footer-contact-info .contact-item a:hover {
    color: var(--secondary);
}

.footer-widget h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-widget h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links li a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.footer-links li a i {
    font-size: 10px;
    color: var(--secondary);
    transition: var(--transition);
}

.footer-links li a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.footer-links li a:hover i {
    color: var(--white);
}

.newsletter-form {
    margin-bottom: 25px;
}

.newsletter-form .input-group {
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.15);
}

.newsletter-form .form-control {
    background: rgba(255,255,255,0.1);
    border: none;
    color: var(--white);
    padding: 12px 16px;
    font-size: 14px;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255,255,255,0.5);
}

.newsletter-form .form-control:focus {
    box-shadow: none;
    background: rgba(255,255,255,0.15);
}

.newsletter-form .btn-gold {
    border-radius: 0;
    padding: 12px 20px;
}

.footer-social h5 {
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 15px;
}

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

.footer-social .social-links a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 15px;
    transition: var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
}

.footer-bottom .copyright {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    margin: 0;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: right;
}

.footer-bottom-links li {
    display: inline;
    margin-left: 20px;
}

.footer-bottom-links li a {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
}

.footer-bottom-links li a:hover {
    color: var(--secondary);
}

/* ==========================================
   WHATSAPP FLOAT
   ========================================== */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 25px;
    background: #25d366;
    color: var(--white);
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(37,211,102,0.4);
    transition: var(--transition);
    font-weight: 600;
    font-size: 14px;
}

.whatsapp-float i {
    font-size: 22px;
}

.whatsapp-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(37,211,102,0.5);
    color: var(--white);
}

/* ==========================================
   BACK TO TOP
   ========================================== */
.back-to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.back-to-top.show {
    display: flex;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: var(--gradient-gold);
    color: var(--primary-dark);
}

/* ==========================================
   PAGE HERO / BANNER
   ========================================== */
.page-hero {
    background: var(--gradient-primary);
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,208C1248,224,1344,192,1392,176L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

.page-hero h1 {
    font-size: 46px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
    position: relative;
}

.page-hero .breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}

.page-hero .breadcrumb li {
    color: rgba(255,255,255,0.8);
    font-size: 15px;
}

.page-hero .breadcrumb li a {
    color: var(--secondary);
}

.page-hero .breadcrumb li a:hover {
    color: var(--white);
}

.page-hero .breadcrumb li + li::before {
    content: '/';
    margin-right: 10px;
    color: rgba(255,255,255,0.4);
}

/* ==========================================
   PROPERTY DETAILS PAGE
   ========================================== */
.property-gallery {
    position: relative;
    margin-bottom: 30px;
}

.property-gallery .main-image {
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 500px;
    cursor: pointer;
}

.property-gallery .main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.property-gallery .gallery-thumbs {
    margin-top: 10px;
}

.property-gallery .gallery-thumbs .thumb {
    height: 80px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: var(--transition);
}

.property-gallery .gallery-thumbs .thumb.active,
.property-gallery .gallery-thumbs .thumb:hover {
    opacity: 1;
}

.property-gallery .gallery-thumbs .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.property-info-header {
    margin-bottom: 30px;
}

.property-info-header .price {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
}

.property-info-header .property-id {
    color: var(--gray);
    font-size: 14px;
}

.property-info-header .property-id strong {
    color: var(--dark);
}

.property-specs-table {
    margin-bottom: 30px;
}

.property-specs-table table {
    width: 100%;
}

.property-specs-table table td {
    padding: 12px 15px;
    border: 1px solid var(--gray-light);
    font-size: 15px;
}

.property-specs-table table td:first-child {
    font-weight: 600;
    color: var(--dark);
    background: var(--light);
    width: 40%;
}

.property-specs-table table td:last-child {
    color: var(--gray);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
    margin-bottom: 30px;
}

.amenities-grid .amenity-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: var(--light);
    border-radius: var(--radius-sm);
    font-size: 14px;
    color: var(--dark);
}

.amenities-grid .amenity-item i {
    color: var(--success);
    font-size: 16px;
}

.property-sidebar .widget {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 25px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 25px;
    border: 1px solid var(--gray-light);
}

.property-sidebar .widget h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gray-light);
}

.property-sidebar .widget .agent-card {
    text-align: center;
}

.property-sidebar .widget .agent-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--secondary);
    margin-bottom: 15px;
}

.property-sidebar .widget .agent-card h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 5px;
}

.property-sidebar .widget .agent-card .agent-designation {
    color: var(--secondary);
    font-size: 14px;
    margin-bottom: 10px;
}

.property-sidebar .widget .agent-card .agent-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 15px;
}

.property-sidebar .inquiry-form .form-control,
.property-sidebar .inquiry-form .form-select {
    border: 2px solid var(--gray-light);
    border-radius: var(--radius-sm);
    padding: 10px 15px;
    font-size: 14px;
}

.property-sidebar .inquiry-form .form-control:focus,
.property-sidebar .inquiry-form .form-select:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(212,160,23,0.15);
}

.property-sidebar .inquiry-form textarea {
    resize: none;
}

.property-sidebar .share-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.property-sidebar .share-buttons a {
    flex: 1;
    padding: 10px;
    border-radius: var(--radius-sm);
    text-align: center;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.property-sidebar .share-buttons a:hover {
    transform: translateY(-2px);
}

.property-sidebar .share-buttons a.facebook { background: #1877f2; }
.property-sidebar .share-buttons a.twitter { background: #1da1f2; }
.property-sidebar .share-buttons a.whatsapp { background: #25d366; }
.property-sidebar .share-buttons a.email { background: var(--primary); }

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

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

/* ==========================================
   PAGINATION
   ========================================== */
.pagination {
    gap: 5px;
}

.pagination .page-link {
    border: none;
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    color: var(--dark);
    font-weight: 500;
    transition: var(--transition);
}

.pagination .page-item.active .page-link {
    background: var(--gradient-primary);
    color: var(--white);
}

.pagination .page-link:hover {
    background: var(--gradient-gold);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

/* ==========================================
   FILTER SIDEBAR
   ========================================== */
.filter-sidebar {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 25px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-light);
}

.filter-sidebar h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.filter-sidebar .filter-group {
    margin-bottom: 20px;
}

.filter-sidebar .filter-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.filter-sidebar .form-control,
.filter-sidebar .form-select {
    border: 2px solid var(--gray-light);
    border-radius: var(--radius-sm);
    padding: 10px 15px;
    font-size: 14px;
}

.filter-sidebar .form-control:focus,
.filter-sidebar .form-select:focus {
    border-color: var(--secondary);
    box-shadow: none;
}

.filter-sidebar .btn-filter {
    background: var(--gradient-primary);
    color: var(--white);
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: var(--transition);
}

.filter-sidebar .btn-filter:hover {
    background: var(--gradient-gold);
    color: var(--primary-dark);
}

/* ==========================================
   SERVICES PAGE
   ========================================== */
.services-page-section {
    padding: 80px 0;
}

.service-detail-card {
    padding: 40px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-light);
    transition: var(--transition);
    height: 100%;
}

.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-detail-card .service-icon-lg {
    width: 100px;
    height: 100px;
    background: var(--gradient-card);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--secondary);
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-detail-card:hover .service-icon-lg {
    background: var(--gradient-gold);
    color: var(--white);
    transform: rotateY(180deg);
}

.service-detail-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.service-detail-card p {
    color: var(--gray);
    font-size: 15px;
}

/* ==========================================
   ABOUT PAGE
   ========================================== */
.about-page-section {
    padding: 80px 0;
}

.about-page-section .about-text h6 {
    color: var(--secondary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.about-page-section .about-text h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary);
}

.about-page-section .about-text .about-features {
    list-style: none;
    padding: 0;
}

.about-page-section .about-text .about-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--gray);
}

.about-page-section .about-text .about-features li i {
    color: var(--success);
}

/* Team Section */
.team-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.team-card .team-image {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.team-card .team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-card .team-image .team-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: linear-gradient(to top, rgba(13,20,66,0.9), transparent);
    transition: var(--transition);
}

.team-card:hover .team-image .team-social {
    bottom: 0;
}

.team-card .team-image .team-social a {
    width: 35px;
    height: 35px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 14px;
    transition: var(--transition);
}

.team-card .team-image .team-social a:hover {
    background: var(--secondary);
    color: var(--white);
}

.team-card .team-info {
    padding: 20px;
}

.team-card .team-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 5px;
}

.team-card .team-info span {
    color: var(--secondary);
    font-size: 14px;
}

/* ==========================================
   CONTACT PAGE
   ========================================== */
.contact-page-section {
    padding: 80px 0;
}

.contact-page-section .contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.contact-page-section .contact-form-wrapper .form-control {
    border: 2px solid var(--gray-light);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 14px;
}

.contact-page-section .contact-form-wrapper .form-control:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(212,160,23,0.15);
}

.contact-page-section .contact-info-card {
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    padding: 40px;
    color: var(--white);
    height: 100%;
}

.contact-page-section .contact-info-card h4 {
    color: var(--white);
    font-size: 24px;
    margin-bottom: 30px;
}

.contact-page-section .contact-info-card .contact-method {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-page-section .contact-info-card .contact-method i {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--secondary);
    flex-shrink: 0;
}

.contact-page-section .contact-info-card .contact-method h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--white);
}

.contact-page-section .contact-info-card .contact-method p {
    color: rgba(255,255,255,0.8);
    margin: 0;
    font-size: 14px;
}

/* ==========================================
   BLOG PAGE
   ========================================== */
.blog-page-section {
    padding: 80px 0;
}

/* ==========================================
   FAQ PAGE
   ========================================== */
.faq-section {
    padding: 80px 0;
}

.faq-section .accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-section .accordion-button {
    padding: 18px 25px;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    background: var(--white);
    border: none;
}

.faq-section .accordion-button:not(.collapsed) {
    background: var(--gradient-card);
    color: var(--primary);
}

.faq-section .accordion-button:focus {
    box-shadow: none;
}

.faq-section .accordion-button::after {
    background-size: 16px;
}

.faq-section .accordion-body {
    padding: 20px 25px;
    color: var(--gray);
    font-size: 15px;
    border-top: 1px solid var(--gray-light);
}

/* ==========================================
   LOADER
   ========================================== */
.loader {
    display: inline-block;
    width: 30px;
    height: 30px;
    border: 3px solid var(--gray-light);
    border-top-color: var(--secondary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ==========================================
   ALERT MESSAGES
   ========================================== */
.alert-custom {
    border: none;
    border-radius: var(--radius-sm);
    padding: 15px 20px;
    font-size: 14px;
}

.alert-custom i {
    margin-right: 8px;
}

/* ==========================================
   EMPTY STATE
   ========================================== */
.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-state i {
    font-size: 60px;
    color: var(--gray-light);
    margin-bottom: 20px;
}

.empty-state h4 {
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 10px;
}

.empty-state p {
    color: var(--gray);
}

/* ==========================================
   COMPARE PAGE
   ========================================== */
.compare-table {
    width: 100%;
    border-collapse: collapse;
}

.compare-table th,
.compare-table td {
    padding: 15px;
    text-align: center;
    border: 1px solid var(--gray-light);
    font-size: 14px;
}

.compare-table th {
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
}

.compare-table td:first-child {
    font-weight: 600;
    background: var(--light);
    text-align: left;
    width: 200px;
}

.compare-table .remove-item {
    color: var(--danger);
    cursor: pointer;
}

/* ==========================================
   WISHLIST PAGE
   ========================================== */
.wishlist-page .wishlist-empty {
    text-align: center;
    padding: 60px;
}

/* ==========================================
   404 PAGE
   ========================================== */
.error-page {
    text-align: center;
    padding: 100px 20px;
}

.error-page .error-code {
    font-size: 120px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 20px;
}

.error-page h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.error-page p {
    color: var(--gray);
    margin-bottom: 30px;
}

/* ==========================================
   GLASSMORPHISM CARDS
   ========================================== */
.glass-card {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-md);
    padding: 25px;
}

/* ==========================================
   SECTION PADDING
   ========================================== */
.section-padding {
    padding: 100px 0;
}

/* ==========================================
   PROPERTY LISTING TOGGLE
   ========================================== */
.view-toggle {
    display: flex;
    gap: 5px;
}

.view-toggle button {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--gray-light);
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--gray);
    transition: var(--transition);
}

.view-toggle button.active {
    border-color: var(--secondary);
    color: var(--secondary);
}

/* ==========================================
   COVID / STATUS BADGES
   ========================================== */
.badge-gold {
    background: var(--gradient-gold);
    color: var(--primary-dark);
}

.badge-primary-gradient {
    background: var(--gradient-primary);
    color: var(--white);
}

/* ==========================================
   TRENDING / FEATURED TAGS
   ========================================== */
.trending-badge {
    background: var(--gradient-accent);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    animation: pulse 2s infinite;
}

/* ==========================================
   RESPONSIVE VIDEOS
   ========================================== */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ==========================================
   MAP CONTAINER
   ========================================== */
.map-container {
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 350px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ==========================================
   EMI CALCULATOR
   ========================================== */
.emi-calculator {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 25px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-light);
}

.emi-calculator h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.emi-calculator .form-range::-webkit-slider-thumb {
    background: var(--secondary);
}

.emi-calculator .emi-result {
    text-align: center;
    padding: 20px;
    background: var(--gradient-card);
    border-radius: var(--radius-sm);
    margin-top: 20px;
}

.emi-calculator .emi-result .emi-amount {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
}

.emi-calculator .emi-result small {
    color: var(--gray);
}

/* ==========================================
   NEWSLETTER POPUP
   ========================================== */
.newsletter-popup {
    display: none;
    position: fixed;
    bottom: 100px;
    right: 25px;
    width: 300px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    padding: 25px;
    z-index: 999;
    animation: fadeInUp 0.5s ease;
}

.newsletter-popup.show {
    display: block;
}

.newsletter-popup .close-popup {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 18px;
    color: var(--gray);
    cursor: pointer;
}

.newsletter-popup h4 {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 10px;
}

.newsletter-popup p {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 15px;
}

.newsletter-popup .form-control {
    font-size: 13px;
    padding: 8px 12px;
}

/* ==========================================
   DARK MODE TOGGLE (optional)
   ========================================== */
.dark-mode-toggle {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    padding: 10px 12px;
    cursor: pointer;
    z-index: 998;
    font-size: 16px;
}

/* ==========================================
   PROPERTY COMPARISON
   ========================================== */
.comparison-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    padding: 15px 0;
    z-index: 999;
    display: none;
}

.comparison-bar.show {
    display: block;
}

/* ==========================================
   PROPERTY STATS
   ========================================== */
.stats-bar {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.stats-bar .stat {
    padding: 5px 15px;
    background: var(--light);
    border-radius: 20px;
    font-size: 13px;
    color: var(--gray);
}

.stats-bar .stat i {
    color: var(--secondary);
    margin-right: 5px;
}
