/* ===========================================
   RESET & BASE STYLES
=========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
 
:root {
    /* Primary Colors from Logo */
    --primary-color: #FF6B35; /* Vibrant Orange from "ACCESS A" */
    --primary-dark: #E55A2B; /* Darker orange for hover */
    --secondary-color: #1A3A5F; /* Navy Blue from "PROPERTIES LIMITED" */
    --accent-color: #2ECA6A; /* Keep green as accent for CTAs */
    --accent-blue: #2D5F8B; /* Lighter blue for accents */
    --text-dark: #333333;
    --text-light: #666666;
    --text-white: #ffffff;
    --bg-light: #F8F9FA;
    --bg-dark: #1A3A5F; /* Navy blue for dark sections */
    --bg-gray: #2C3E50;
    --bg-gray-light: #34495E;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    /* Updated gradients */
    --gradient: linear-gradient(135deg, #FF6B35 0%, #E55A2B 100%); /* Orange gradient */
    --gradient-blue: linear-gradient(135deg, #1A3A5F 0%, #2D5F8B 100%); /* Blue gradient */
    --gradient-mixed: linear-gradient(135deg, #FF6B35 0%, #1A3A5F 100%); /* Orange to Blue */
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--bg-light);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
    animation: linePulse 2s ease-in-out infinite;
}

@keyframes linePulse {
    0%, 100% {
        width: 80px;
    }
    50% {
        width: 100px;
    }
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 400;
}

.text-center {
    text-align: center;
}

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(60px) scale(0.95);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Enhanced Floating Animation */
.animate-float {
    animation: enhancedFloat 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes enhancedFloat {
    0%, 100% { 
        transform: translateY(0) rotate(0deg) scale(1);
    }
    25% { 
        transform: translateY(-15px) rotate(5deg) scale(1.05);
    }
    75% { 
        transform: translateY(10px) rotate(-5deg) scale(0.95);
    }
}

/* ===========================================
   ENHANCED NAVBAR STYLES
=========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    height: 80px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    height: 70px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 40px;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 1001;
    transition: var(--transition);
    margin-left: 20px;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 50px;
    margin-right: 15px;
    border-radius: 8px;
    transition: var(--transition);
}

.logo-img:hover {
    transform: rotate(-5deg);
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    margin-right: 30px;
}

.nav-item {
    margin: 0 15px;
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 300;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 10px 0;
    position: relative;
    transition: var(--transition);
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gradient);
    border-radius: 3px;
    transform: translateX(-50%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-profile {
    background: var(--gradient);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 300;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(46, 202, 106, 0.3);
}

.btn-profile::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-profile:hover::before {
    left: 100%;
}

.btn-profile:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(46, 202, 106, 0.4);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
    padding: 10px;
}

.mobile-toggle span {
    width: 30px;
    height: 3px;
    background: var(--secondary-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 3px;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background: var(--primary-color);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
    background: var(--primary-color);
}

/* ===========================================
   FIXED HERO SLIDER - NO ZOOMING ISSUE
=========================================== */
.hero-slider {
    height: 700px;
    position: relative;
    margin-top: 80px;
    overflow: hidden;
}

.hero-slides {
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    transform: scale(1);
    filter: brightness(0.8);
    transition: filter 0.8s ease, opacity 0.8s ease;
}

@keyframes heroFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-slide.active .hero-slide-image {
    animation: heroFadeIn 1.5s ease-out;
    filter: brightness(0.9);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(26, 26, 46, 0.4), rgba(26, 26, 46, 0.5));
    z-index: 2;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(
        90deg,
        transparent,
        rgba(46, 202, 106, 0.2),
        rgba(255, 107, 53, 0.2),
        rgba(46, 202, 106, 0.2),
        transparent
    ); */
    animation: mirrorWipe 8s infinite linear;
    z-index: 3;
}

.hero-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 107, 53, 0.2),
        rgba(46, 202, 106, 0.2),
        rgba(255, 107, 53, 0.2),
        transparent
    ); */
    animation: mirrorWipeReverse 8s infinite linear;
    animation-delay: 4s;
    z-index: 3;
}

@keyframes mirrorWipe {
    0% {
        left: -100%;
        opacity: 0.5;
    }
    50% {
        left: 0;
        opacity: 1;
    }
    100% {
        left: 100%;
        opacity: 0.5;
    }
}

@keyframes mirrorWipeReverse {
    0% {
        right: -100%;
        opacity: 0.5;
    }
    50% {
        right: 0;
        opacity: 1;
    }
    100% {
        right: 100%;
        opacity: 0.5;
    }
}

.hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
}

.hero-text-container {
    animation: slideInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
        filter: blur(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

.hero-title {
    margin-bottom: 30px;
    line-height: 1.1;
    perspective: 1000px;
}

.hero-title-line {
    display: block;
    font-size: 4rem;
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 15px 0;
    text-shadow: 0 5px 25px rgba(0, 0, 0, 0.7);
    animation: titleFloat 6s ease-in-out infinite;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

@keyframes titleFloat {
    0%, 100% {
        transform: translateY(0) rotateY(0deg);
    }
    25% {
        transform: translateY(-5px) rotateY(5deg);
    }
    75% {
        transform: translateY(5px) rotateY(-5deg);
    }
}

.hero-slider-controls {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 40px;
    z-index: 10;
}

.hero-slider-prev,
.hero-slider-next {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-slider-prev:hover,
.hero-slider-next:hover {
    background: var(--gradient);
    border-color: transparent;
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 15px 40px rgba(46, 202, 106, 0.5);
}

.hero-slider-dots {
    display: flex;
    gap: 20px;
}

.hero-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.hero-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: var(--gradient);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-dot.active {
    background: transparent;
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(46, 202, 106, 0.8);
}

.hero-dot.active::before {
    width: 100%;
    height: 100%;
}

.hero-dot:hover {
    transform: scale(1.4);
    background: rgba(255, 255, 255, 0.5);
}

/* ===========================================
   FIXED COUNTER SECTION - PROPER PLUS/PERCENTAGE ALIGNMENT
=========================================== */
.counter-section {
    padding: 80px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.counter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(46, 202, 106, 0.05) 50%, transparent 100%);
    animation: counterBgShift 10s linear infinite;
}

@keyframes counterBgShift {
    0% {
        transform: translateX(-100%) translateY(-100%);
    }
    100% {
        transform: translateX(100%) translateY(100%);
    }
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}

.counter-item {
    text-align: center;
    padding: 30px 15px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(46, 202, 106, 0.1);
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.counter-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient);
    transform: translateX(-100%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.counter-item:hover::before {
    transform: translateX(0);
}

.counter-item:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.counter-icon {
    position: relative;
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(46, 202, 106, 0.1);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 1.8rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.counter-item:hover .counter-icon {
    background: var(--gradient);
    color: white;
    transform: scale(1.08) rotateY(180deg);
}

.icon-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    animation: pulse 2s infinite;
    opacity: 0;
}

.counter-item:hover .icon-pulse {
    opacity: 1;
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* FIXED COUNTER NUMBER WITH PLUS/PERCENTAGE ALIGNMENT */
.counter-number-container {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin: 10px 0;
    flex-wrap: nowrap;
}

.counter-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    display: inline-block;
    position: relative;
    text-shadow: 0 3px 10px rgba(46, 202, 106, 0.15);
    line-height: 1;
}

.counter-plus, .counter-percent {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1;
    display: inline-block;
    position: relative;
    top: -0.2em;
}

.counter-text {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 8px;
    transition: var(--transition);
    line-height: 1.2;
}

.counter-item:hover .counter-text {
    color: var(--primary-color);
    transform: translateY(3px);
}

/* ===========================================
   ENHANCED ABOUT SECTION - STABLE IMAGE WITH FLOATING ICONS
=========================================== */
.about-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-content {
    padding-right: 30px;
}

.about-title {
    font-size: 2.8rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
    font-weight: 800;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100px;
    height: 6px;
    background: var(--gradient);
    border-radius: 3px;
    animation: aboutLinePulse 2s ease-in-out infinite;
}

@keyframes aboutLinePulse {
    0%, 100% {
        width: 100px;
    }
    50% {
        width: 150px;
    }
}

.about-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 40px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.about-features {
    margin-bottom: 50px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(46, 202, 106, 0.1), transparent);
    transition: left 0.6s ease;
}

.feature-item:hover::before {
    left: 100%;
}

.feature-item:hover {
    transform: translateX(15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-item i {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 1.5rem;
    transition: var(--transition);
}

.feature-item:hover i {
    transform: scale(1.2) rotate(360deg);
}

.feature-item span {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
}

.feature-item:hover span {
    color: var(--primary-color);
}

.btn-about {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 16px 40px;
    background: var(--gradient);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(46, 202, 106, 0.3);
}

.btn-about:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(46, 202, 106, 0.4);
}

.btn-about i {
    font-size: 1.2rem;
    transition: var(--transition);
}

.btn-about:hover i {
    transform: translateX(5px);
}

.about-image {
    position: relative;
    perspective: 1000px;
}

.image-container {
    position: relative;
    width: 550px;
    height: 550px;
    margin: 0 auto;
    transform-style: preserve-3d;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible !important;
}

.round-image-wrapper {
    position: relative;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    z-index: 2;
    transform: translateY(0);
}

.round-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.round-image-wrapper:hover .round-image {
    transform: scale(1.02);
    filter: brightness(1.1) contrast(1.2);
}

.image-color-wipe {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(46, 202, 106, 0.4) 20%,
        rgba(255, 107, 53, 0.4) 40%,
        rgba(46, 202, 106, 0.4) 60%,
        rgba(255, 255, 255, 0.4) 80%,
        transparent 100%
    );
    animation: colorWipe 6s infinite linear;
    border-radius: 50%;
    pointer-events: none;
    z-index: 3;
}

@keyframes colorWipe {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.about-floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 4;
}

.floating-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    animation: floatIcon 15s infinite linear;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.floating-icon:nth-child(1) {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
    background: rgba(46, 202, 106, 0.2);
}

.floating-icon:nth-child(2) {
    top: 65%;
    right: 15%;
    animation-delay: 3s;
    background: rgba(255, 107, 53, 0.2);
}

.floating-icon:nth-child(3) {
    bottom: 25%;
    left: 20%;
    animation-delay: 6s;
    background: rgba(46, 202, 106, 0.2);
}

.floating-icon:nth-child(4) {
    top: 40%;
    right: 25%;
    animation-delay: 9s;
    background: rgba(255, 107, 53, 0.2);
}

.floating-icon:nth-child(5) {
    bottom: 40%;
    left: 30%;
    animation-delay: 12s;
    background: rgba(46, 202, 106, 0.2);
}

@keyframes floatIcon {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(30px, -40px) rotate(90deg) scale(1.1);
    }
    50% {
        transform: translate(-20px, 30px) rotate(180deg) scale(0.9);
    }
    75% {
        transform: translate(25px, 20px) rotate(270deg) scale(1.05);
    }
    100% {
        transform: translate(0, 0) rotate(360deg) scale(1);
    }
}

.ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    animation: ringPulse 3s infinite cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.ring-1 {
    width: 500px;
    height: 500px;
    border-color: rgba(46, 202, 106, 0.4);
    animation-delay: 0.5s;
}

.ring-2 {
    width: 570px;
    height: 570px;
    border-color: rgba(46, 202, 106, 0.2);
    animation-delay: 1s;
}

@keyframes ringPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

.experience-badge-round {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 130px;
    height: 130px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 20px 40px rgba(46, 202, 106, 0.4);
    z-index: 100 !important;
    animation: badgeMove 8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    transform-style: preserve-3d;
    perspective: 500px;
    padding: 20px;
    pointer-events: none;
}

@keyframes badgeMove {
    0%, 100% { 
        transform: translate(-50%, -50%) translate(0, 0) rotate(0deg);
    }
    20% { 
        transform: translate(-50%, -50%) translate(40px, -30px) rotate(10deg);
    }
    40% { 
        transform: translate(-50%, -50%) translate(-30px, 40px) rotate(-15deg);
    }
    60% { 
        transform: translate(-50%, -50%) translate(50px, 20px) rotate(5deg);
    }
    80% { 
        transform: translate(-50%, -50%) translate(-20px, -40px) rotate(-10deg);
    }
}

.exp-years {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.exp-text {
    font-size: 0.9rem;
    opacity: 0.95;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1.2;
}

/* ===========================================
   ENHANCED SERVICES SECTION
=========================================== */
.services-section {
    padding: 100px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.service-card:hover {
    transform: translateY(-20px) scale(1.05) rotateX(5deg);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.2);
}

.service-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.9);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
    filter: brightness(1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.8));
    transition: opacity 0.4s ease;
}

.service-card:hover .image-overlay {
    opacity: 0.8;
}

.gradient-wipe {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
                transparent 0%, 
                rgba(46, 202, 106, 0.4) 50%, 
                transparent 100%);
    animation: wipeEffect 4s infinite;
    z-index: 2;
}

@keyframes wipeEffect {
    0% { left: -100%; }
    100% { left: 100%; }
}

.service-content {
    padding: 35px;
    position: relative;
    z-index: 2;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(46, 202, 106, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 25px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card:hover .service-icon {
    color: white;
    transform: scale(1.1) rotateY(180deg);
}

.service-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-icon::before {
    transform: scale(1);
}

.service-title {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 700;
    transition: var(--transition);
}

.service-card:hover .service-title {
    color: var(--primary-color);
    transform: translateY(-5px);
}

.service-excerpt {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 1rem;
    transition: var(--transition);
}

.service-card:hover .service-excerpt {
    color: var(--text-dark);
}

.btn-service {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-service::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.btn-service:hover::before {
    left: 0;
}

.btn-service:hover {
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(46, 202, 106, 0.3);
}

.btn-service i {
    transition: var(--transition);
}

.btn-service:hover i {
    transform: translateX(5px);
}

.btn-view-services {
    background: var(--gradient);
    color: white;
    border: none;
    padding: 16px 45px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(46, 202, 106, 0.3);
}

.btn-view-services:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 45px rgba(46, 202, 106, 0.4);
}

.btn-view-services i {
    transition: var(--transition);
}

.btn-view-services:hover i {
    transform: translateX(10px);
}

/* ===========================================
   ENHANCED SOLAR SECTION WITH BACKGROUND IMAGE
=========================================== */
.solar-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(44, 62, 80, 0.7), rgba(52, 73, 94, 0.6)),
                url('../img/solar-bg.jpg') center/cover no-repeat fixed;
}

.solar-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.solar-image {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    transform-style: preserve-3d;
    animation: solarImageFloat 6s ease-in-out infinite;
}

@keyframes solarImageFloat {
    0%, 100% {
        transform: translateY(0) rotateY(0deg);
    }
    25% {
        transform: translateY(-20px) rotateY(5deg);
    }
    75% {
        transform: translateY(20px) rotateY(-5deg);
    }
}

.solar-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.9) contrast(1.1);
}

.solar-image:hover img {
    transform: scale(1.05);
    filter: brightness(1) contrast(1.2);
}

.solar-badge {
    position: absolute;
    top: 30px;
    left: 30px;
    background: var(--accent-color);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
    z-index: 2;
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 35px rgba(255, 107, 53, 0.6);
    }
}

.solar-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.8rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: solarFloatElement 8s infinite cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.floating-element.fe1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    background: rgba(46, 202, 106, 0.9);
    color: white;
}

.floating-element.fe2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
    background: rgba(255, 255, 255, 0.9);
}

.floating-element.fe3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
    background: rgba(255, 107, 53, 0.9);
    color: white;
}

@keyframes solarFloatElement {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(20px, -30px) rotate(90deg) scale(1.1);
    }
    50% {
        transform: translate(-10px, 20px) rotate(180deg) scale(0.9);
    }
    75% {
        transform: translate(15px, 10px) rotate(270deg) scale(1.05);
    }
}

.solar-content {
    padding-left: 30px;
}

.solar-header {
    margin-bottom: 25px;
}

.solar-title {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 10px;
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.solar-tag {
    display: inline-block;
    background: rgba(46, 202, 106, 0.2);
    color: var(--primary-color);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(46, 202, 106, 0.3);
}

.solar-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.solar-features {
    margin-bottom: 30px;
}

.feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(46, 202, 106, 0.3);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    margin-right: 15px;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature:hover .feature-icon {
    transform: scale(1.1);
}

.feature-content h4 {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 5px;
    font-weight: 600;
    transition: var(--transition);
}

.feature:hover .feature-content h4 {
    color: var(--primary-color);
    transform: translateY(-3px);
}

.feature-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
}

.solar-actions {
    display: flex;
    gap: 15px;
}

.btn-solar {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: var(--gradient);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
}

.btn-solar:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(46, 202, 106, 0.4);
}

/* ===========================================
   ENHANCED PROPERTIES SECTION
=========================================== */
.properties-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.property-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.property-card:hover {
    transform: translateY(-20px) scale(1.05) rotateY(5deg);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2);
}

.property-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.9);
}

.property-card:hover .property-image img {
    transform: scale(1.15);
    filter: brightness(1);
}

.property-badge {
    position: absolute;
    top: 25px;
    left: 25px;
    background: var(--gradient);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
    z-index: 2;
    box-shadow: 0 10px 25px rgba(46, 202, 106, 0.4);
}

.property-actions {
    position: absolute;
    bottom: 25px;
    left: 0;
    width: 100%;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.property-card:hover .property-actions {
    opacity: 1;
    transform: translateY(0);
}

.btn-view-details {
    background: rgba(255, 255, 255, 0.95);
    color: var(--secondary-color);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.btn-view-details:hover {
    background: var(--gradient);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(46, 202, 106, 0.4);
}

.property-info {
    padding: 30px;
}

.property-title {
    font-size: 1.6rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 800;
    line-height: 1.3;
    transition: var(--transition);
}

.property-card:hover .property-title {
    color: var(--primary-color);
    transform: translateY(-5px);
}

.property-location {
    color: var(--text-light);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 500;
}

.property-specs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.property-specs span {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 8px 12px;
    background: rgba(46, 202, 106, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
    min-width: 70px;
    flex: 1;
}

.property-card:hover .property-specs span {
    background: rgba(46, 202, 106, 0.2);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.property-specs i {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: var(--transition);
}

.property-card:hover .property-specs i {
    transform: scale(1.2);
}

.property-price {
    font-size: 1.8rem;
    color: var(--secondary-color);
    font-weight: 900;
    padding-top: 20px;
    border-top: 2px solid rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.property-card:hover .property-price {
    color: var(--primary-color);
    transform: scale(1.1);
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 16px 45px;
    background: var(--gradient);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(46, 202, 106, 0.3);
}

.btn-view-all:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 25px 55px rgba(46, 202, 106, 0.4);
}

.btn-view-all i {
    transition: var(--transition);
}

.btn-view-all:hover i {
    transform: translateX(10px);
}

/* ===========================================
   WHY CHOOSE US SECTION - UPDATED
=========================================== */
.why-us-section {
    padding: 100px 0;
    background: linear-gradient(rgba(248, 249, 250, 0.7), rgba(233, 236, 239, 0.8)),
                url('../img/build.jpg') center/cover no-repeat fixed;
    position: relative;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(46, 202, 106, 0.1);
    backdrop-filter: blur(10px);
}

.why-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 20px 40px rgba(46, 202, 106, 0.2);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 5px;
}

.why-item:hover .why-icon {
    transform: scale(1.1) rotateY(180deg);
}

.why-content {
    flex: 1;
}

.why-title {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 800;
    transition: var(--transition);
}

.why-item:hover .why-title {
    color: var(--primary-color);
    transform: translateY(-3px);
}

.why-text {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

/* ===========================================
   ENHANCED BLOG SECTION
=========================================== */
.blog-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.blog-card:hover {
    transform: translateY(-20px) scale(1.05) rotateX(5deg);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2);
}

.blog-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.9);
}

.blog-card:hover .blog-image img {
    transform: scale(1.15);
    filter: brightness(1);
}

.blog-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient);
    color: white;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    line-height: 1;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(46, 202, 106, 0.4);
}

.day {
    display: block;
    font-size: 1.8rem;
    font-weight: 900;
}

.month {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
    flex-wrap: wrap;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.blog-title {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 800;
    line-height: 1.3;
    transition: var(--transition);
}

.blog-card:hover .blog-title {
    color: var(--primary-color);
    transform: translateY(-5px);
}

.blog-excerpt {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 1rem;
    transition: var(--transition);
}

.blog-card:hover .blog-excerpt {
    color: var(--text-dark);
}

.btn-blog {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-blog:hover {
    background: var(--gradient);
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(46, 202, 106, 0.3);
}

/* ===========================================
   FAQ SECTION
=========================================== */
.faq-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.faq-image {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    animation: bounceImage 4s ease-in-out infinite;
}

@keyframes bounceImage {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.faq-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.faq-floating {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.float-circle {
    position: absolute;
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 10px 25px rgba(46, 202, 106, 0.4);
    animation: floatCircle 8s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

.float-circle.fc1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.float-circle.fc2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.float-circle.fc3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes floatCircle {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(15px, -20px) rotate(90deg);
    }
    50% {
        transform: translate(-10px, 15px) rotate(180deg);
    }
    75% {
        transform: translate(10px, 10px) rotate(270deg);
    }
}

.faq-content {
    padding-left: 30px;
}

.faq-accordion {
    margin-bottom: 30px;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.faq-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.faq-question:hover {
    background: rgba(46, 202, 106, 0.05);
}

.faq-number {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 15px;
    min-width: 40px;
}

.faq-text {
    flex: 1;
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.faq-question i {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer.open {
    padding: 20px 25px;
    max-height: 200px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

.btn-view-faqs {
    background: var(--gradient);
    color: white;
    border: none;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-view-faqs:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(46, 202, 106, 0.4);
}

/* ===========================================
   ENHANCED TESTIMONIALS SECTION WITH BACKGROUND
=========================================== */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(rgba(248, 249, 250, 0.9), rgba(233, 236, 239, 0.9)),
                url('/img/reviews-bg.jpg') center/cover no-repeat fixed;
    position: relative;
}

.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    perspective: 1000px;
}

.testimonial-slide {
    display: none;
    animation: slideInBlurred 0.8s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes slideInBlurred {
    from {
        opacity: 0;
        transform: translateX(100px) scale(0.9) rotateY(10deg);
        filter: blur(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1) rotateY(0);
        filter: blur(0);
    }
}

.testimonial-slide.active {
    display: block;
}

.testimonial-content {
    background: white;
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(46, 202, 106, 0.1);
    backdrop-filter: blur(10px);
}

.quote-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    opacity: 0.15;
    position: relative;
    z-index: 2;
}

.testimonial-text {
    font-size: 1.4rem;
    line-height: 1.8;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
    font-weight: 400;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    position: relative;
    z-index: 2;
}

.author-info h4 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 8px;
    font-weight: 800;
    text-align: left;
}

.author-info p {
    color: var(--text-light);
    font-size: 1rem;
    text-align: left;
    margin-bottom: 10px;
    font-weight: 500;
}

.author-rating {
    text-align: left;
    color: #ffd700;
    font-size: 1.2rem;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
}

.slider-prev,
.slider-next {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-prev:hover,
.slider-next:hover {
    background: var(--gradient);
    color: white;
    transform: scale(1.1) translateY(-5px);
}

.slider-dots {
    display: flex;
    gap: 15px;
}

.slider-dots .dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-dots .dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* ===========================================
   REDESIGNED REVIEWS SECTION
=========================================== */
.reviews-section {
    padding: 100px 0;
    background: white;
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: linear-gradient(rgba(248, 249, 250, 0.7), rgba(233, 236, 239, 0.8)),
                url('/img/reviews-bg.jpg') center/cover no-repeat fixed;
}

.reviews-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.reviews-image-container {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    height: 450px;
}

.reviews-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    border-radius: 20px;
}

.reviews-image-wipe {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(46, 202, 106, 0.4) 25%,
        rgba(255, 107, 53, 0.4) 50%,
        rgba(46, 202, 106, 0.4) 75%,
        transparent 100%
    );
    animation: reviewsWipe 8s infinite linear;
    border-radius: 20px;
    pointer-events: none;
    z-index: 2;
}

@keyframes reviewsWipe {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.reviews-floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

.reviews-icon {
    position: absolute;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    animation: reviewsIconFloat 12s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

.reviews-icon:nth-child(1) {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
    background: rgba(46, 202, 106, 0.9);
    color: white;
}

.reviews-icon:nth-child(2) {
    top: 60%;
    right: 20%;
    animation-delay: 4s;
    background: rgba(255, 107, 53, 0.9);
    color: white;
}

.reviews-icon:nth-child(3) {
    bottom: 30%;
    left: 25%;
    animation-delay: 8s;
    background: rgba(255, 255, 255, 0.9);
}

@keyframes reviewsIconFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(25px, -35px) rotate(90deg) scale(1.1);
    }
    50% {
        transform: translate(-15px, 25px) rotate(180deg) scale(0.9);
    }
    75% {
        transform: translate(20px, 15px) rotate(270deg) scale(1.05);
    }
}

.reviews-slider-container {
    position: relative;
    padding: 30px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(46, 202, 106, 0.1);
}

.review-slide {
    display: none;
    animation: slideInUp 0.6s ease-out;
}

.review-slide.active {
    display: block;
}

.review-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid var(--primary-color);
}

.review-author {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.author-name {
    font-size: 1.2rem;
    color: var(--secondary-color);
    font-weight: 800;
}

.author-role {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
}

.reviews-slider-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(46, 202, 106, 0.1);
}

.review-dots {
    display: flex;
    gap: 10px;
}

.review-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.review-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.review-nav {
    display: flex;
    gap: 15px;
}

.review-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.review-nav-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.reviews-action {
    margin-top: 30px;
}

.btn-google-review {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 35px;
    background: var(--gradient);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    width: 100%;
    justify-content: center;
}

.btn-google-review:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(46, 202, 106, 0.4);
}

/* ===========================================
   UPDATED FOOTER WITH GRAY COLOR SCHEME
=========================================== */
.footer {
    background: var(--bg-gray);
    color: white;
    position: relative;
}

.footer-top {
    padding: 80px 0 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    font-weight: 800;
    position: relative;
    padding-bottom: 15px;
    color: white;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.footer-logo img {
    height: 60px;
    border-radius: 10px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-logo img:hover {
    transform: scale(1.1) rotate(-5deg);
}

.footer-logo h3 {
    font-size: 1.4rem;
    font-weight: 900;
    color: white;
}

.footer-about {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1rem;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-social a:hover {
    background: var(--gradient);
    transform: translateY(-5px) scale(1.1);
    border-color: transparent;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
}

.footer-contact i {
    color: var(--primary-color);
    margin-top: 3px;
    font-size: 1.1rem;
    min-width: 20px;
}

.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    background: var(--bg-gray-light);
}

.footer-bottom a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 700;
}

.footer-bottom a:hover {
    color: white;
}

/* ===========================================
   FIXED MODAL STYLES
=========================================== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    overflow-y: auto;
    padding: 20px;
    backdrop-filter: blur(10px);
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: white;
    border-radius: 25px;
    max-width: 800px;
    margin: 50px auto;
    position: relative;
    animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    border: 1px solid rgba(46, 202, 106, 0.2);
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: auto;
    transform-origin: center;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.95);
        filter: blur(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

.modal-close {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    border: none;
}

.modal-close:hover {
    color: var(--secondary-color);
    background: rgba(0, 0, 0, 0.2);
    transform: rotate(90deg) scale(1.1);
}

.modal-body {
    padding: 40px;
    overflow-y: auto;
    flex: 1;
    min-height: 0;
}

.modal-title {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
    font-weight: 900;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

.modal-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

/* Service Modal Styles */
.service-modal-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.service-modal-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    width: 100%;
}

.service-modal-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.service-modal-details h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 900;
}

.service-modal-details p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 25px;
}

.service-modal-features {
    margin-bottom: 30px;
}

.service-modal-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 500;
}

.service-modal-features li i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.service-modal-actions {
    text-align: center;
}

/* Property Modal Styles */
.property-modal .modal-body {
    padding: 30px;
    max-width: 800px;
    width: 100%;
}

.property-modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.property-modal-title {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-weight: 900;
}

.property-modal-meta {
    display: flex;
    justify-content: center;
    gap: 15px;
    color: var(--text-light);
    margin-bottom: 10px;
    font-size: 0.95rem;
    flex-wrap: wrap;
}

.property-modal-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: rgba(46, 202, 106, 0.1);
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.property-modal-meta span:hover {
    background: rgba(46, 202, 106, 0.2);
    transform: translateY(-3px);
}

.property-modal-image {
    margin-bottom: 25px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.property-modal-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.property-price-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.property-description-section {
    margin-bottom: 25px;
}

.property-description-section h3 {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 800;
}

.property-description-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
}

.property-specs-section {
    margin-bottom: 25px;
}

.property-specs-section h3 {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 800;
}

.specs-grid-simple {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.spec-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 12px;
    background: rgba(46, 202, 106, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(46, 202, 106, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.spec-item:hover {
    background: rgba(46, 202, 106, 0.1);
    transform: translateY(-5px);
}

.spec-item i {
    color: var(--primary-color);
    font-size: 1.4rem;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(46, 202, 106, 0.2);
}

.spec-info {
    display: flex;
    flex-direction: column;
}

.spec-label {
    color: var(--text-light);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 3px;
}

.spec-value {
    color: var(--secondary-color);
    font-size: 1.1rem;
    font-weight: 800;
}

.property-cta-section {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, rgba(46, 202, 106, 0.1) 0%, rgba(255, 107, 53, 0.1) 100%);
    border-radius: 20px;
    margin-top: 30px;
}

.price-display {
    margin-bottom: 20px;
}

.price-label {
    display: block;
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.price-value {
    display: block;
    color: var(--secondary-color);
    font-size: 2rem;
    font-weight: 900;
}

.property-modal-actions {
    display: flex;
    justify-content: center;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 25px;
    background: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    min-width: 200px;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

/* Blog Modal Styles */
.blog-modal .modal-body {
    padding: 30px;
    max-width: 800px;
    width: 100%;
}

.blog-modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.blog-modal-title {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-weight: 900;
}

.blog-modal-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    color: var(--text-light);
    margin-bottom: 10px;
    font-size: 0.95rem;
    flex-wrap: nowrap;
}

.blog-modal-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    white-space: nowrap;
}

.blog-modal-content {
    line-height: 1.8;
}

.blog-modal-image-main {
    margin: 0 auto 30px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    width: 100%;
}

.blog-modal-image-main img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.blog-modal-content h4 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin: 25px 0 15px;
    font-weight: 800;
}

.blog-modal-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.blog-modal-image-middle {
    margin: 30px auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    max-width: 500px;
    width: 100%;
}

.blog-modal-image-middle img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog-modal-actions {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid rgba(46, 202, 106, 0.1);
}

.rate-article-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: var(--gradient);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
}

.rate-article-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(46, 202, 106, 0.4);
}

/* FAQ Modal Styles */
.faq-modal .modal-body {
    padding: 30px;
    max-width: 800px;
    width: 100%;
}

.all-faqs {
    margin-top: 30px;
}

.all-faqs .faq-item {
    margin-bottom: 15px;
}

.all-faqs .faq-question {
    padding: 15px 20px;
}

.all-faqs .faq-answer {
    padding: 0 20px;
}

.all-faqs .faq-answer.open {
    padding: 15px 20px;
}

/* Profile Modal Styles */
.profile-modal .modal-body {
    padding: 30px;
    max-width: 900px;
    width: 100%;
}

.pdf-viewer {
    width: 100%;
    height: 500px;
    margin: 20px 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.pdf-viewer iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.modal-actions {
    text-align: center;
    margin-top: 30px;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 35px;
    background: var(--gradient);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
}

.btn-download:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(46, 202, 106, 0.4);
}

/* ===========================================
   WHATSAPP FLOAT BUTTON
=========================================== */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 70px;
    height: 70px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    text-decoration: none;
    box-shadow: 0 20px 45px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: pulseWhatsapp 2s infinite;
    backdrop-filter: blur(10px);
    border: none;
}

@keyframes pulseWhatsapp {
    0%, 100% {
        box-shadow: 0 20px 45px rgba(37, 211, 102, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 20px 55px rgba(37, 211, 102, 0.6);
        transform: scale(1.1);
    }
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.15) rotateY(180deg);
    box-shadow: 0 25px 65px rgba(37, 211, 102, 0.5);
}

/* ===========================================
   RESPONSIVE DESIGN
=========================================== */
@media (max-width: 1200px) {
    .hero-slider {
        height: 600px;
    }
    
    .hero-title-line {
        font-size: 3rem;
    }
    
    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .counter-item {
        min-height: 200px;
    }
    
    .counter-number {
        font-size: 2.2rem;
    }
    
    .counter-plus, .counter-percent {
        font-size: 1.8rem;
    }
    
    .about-grid,
    .solar-grid {
        gap: 60px;
    }
    
    .image-container {
        width: 400px;
        height: 400px;
    }
    
    .experience-badge-round {
        width: 100px;
        height: 100px;
        bottom: 50px;
        right: 15px;
    }
    
    .exp-years {
        font-size: 1.8rem;
    }
    
    .services-grid,
    .properties-grid,
    .blog-grid,
    .why-us-grid,
    .reviews-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }
    
    .service-modal-content,
    .specs-grid-simple {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .hero-slider {
        height: 500px;
    }
    
    .hero-title-line {
        font-size: 2.2rem;
    }
    
    .about-grid,
    .solar-grid,
    .faq-grid,
    .reviews-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-content {
        padding-right: 0;
    }
    
    .solar-content,
    .faq-content {
        padding-left: 0;
    }
    
    .image-container {
        width: 350px;
        height: 350px;
    }
    
    .experience-badge-round {
        width: 90px;
        height: 90px;
        bottom: 40px;
        right: 10px;
    }
    
    .exp-years {
        font-size: 1.8rem;
    }
    
    .exp-text {
        font-size: 0.7rem;
    }
    
    .nav-container {
        padding: 0 20px;
    }
    
    .specs-grid-simple {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar {
        height: 70px;
    }
    
    .navbar.scrolled {
        height: 60px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .nav-logo {
        margin-left: 0;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        padding: 40px 20px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        align-items: flex-start;
        justify-content: flex-start;
        backdrop-filter: blur(20px);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        margin-right: 0;
        margin-bottom: 30px;
        width: 100%;
        text-align: left;
    }
    
    .nav-item {
        margin: 0 0 15px 0;
        width: 100%;
    }
    
    .nav-link {
        display: block;
        padding: 15px 20px;
        text-align: left;
        border-radius: 10px;
        font-weight: 300;
        background: rgba(46, 202, 106, 0.05);
    }
    
    .nav-link:hover {
        background: rgba(46, 202, 106, 0.1);
        transform: translateX(10px);
    }
    
    .btn-profile {
        margin-top: 20px;
        align-self: flex-start;
    }
    
    .hero-slider {
        height: 400px;
        margin-top: 70px;
    }
    
    .hero-title-line {
        font-size: 1.8rem;
        letter-spacing: 2px;
        white-space: normal;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .counter-item {
        padding: 25px 15px;
        min-height: 170px;
    }
    
    .counter-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }
    
    .counter-number {
        font-size: 2rem;
    }
    
    .counter-plus, .counter-percent {
        font-size: 1.6rem;
    }
    
    .counter-text {
        font-size: 0.85rem;
    }
    
    .services-grid,
    .properties-grid,
    .blog-grid,
    .why-us-grid {
        grid-template-columns: 1fr;
    }
    
    .property-actions {
        opacity: 1;
        transform: translateY(0);
    }
    
    .property-specs {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .property-specs span {
        min-width: 60px;
        padding: 6px 10px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .specs-grid-simple {
        grid-template-columns: 1fr;
    }
    
    .hero-slider-controls {
        bottom: 30px;
        gap: 25px;
    }
    
    .hero-slider-prev,
    .hero-slider-next {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .hero-slider-dots {
        gap: 10px;
    }
    
    .hero-dot {
        width: 15px;
        height: 15px;
    }
    
    .modal-body {
        padding: 30px 20px;
    }
    
    .service-modal-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .property-modal-meta {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .property-modal-meta span {
        width: 100%;
        justify-content: center;
    }
    
    .specs-grid-simple {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .btn-whatsapp {
        font-size: 0.8rem;
        padding: 10px 20px;
        min-width: 180px;
    }
    
    .blog-modal-meta {
        flex-wrap: nowrap;
        justify-content: space-between;
        gap: 15px;
    }
    
    .blog-modal-meta span {
        font-size: 0.85rem;
        white-space: nowrap;
    }
    
    .why-item {
        flex-direction: column;
        text-align: center;
    }
    
    .why-icon {
        margin: 0 auto 20px;
    }
    
    .why-text {
        text-align: left;
        margin-left: 0;
    }
}

@media (max-width: 576px) {
    .hero-slider {
        height: 350px;
    }
    
    .hero-title-line {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }
    
    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .counter-item {
        padding: 20px 12px;
        min-height: 150px;
    }
    
    .counter-icon {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
        margin-bottom: 10px;
    }
    
    .counter-number {
        font-size: 1.8rem;
    }
    
    .counter-plus, .counter-percent {
        font-size: 1.4rem;
    }
    
    .counter-text {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }
    
    .about-title,
    .solar-title {
        font-size: 1.8rem;
    }
    
    .image-container {
        width: 280px;
        height: 280px;
    }
    
    .experience-badge-round {
        width: 80px;
        height: 80px;
        bottom: 30px;
        right: 0;
        padding: 12px;
    }
    
    .exp-years {
        font-size: 1.5rem;
    }
    
    .exp-text {
        font-size: 0.65rem;
    }
    
    .testimonial-content {
        padding: 30px;
    }
    
    .testimonial-text {
        font-size: 1.1rem;
    }
    
    .quote-icon {
        font-size: 2.5rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .author-info h4,
    .author-info p,
    .author-rating {
        text-align: center;
    }
    
    .whatsapp-float {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
        bottom: 20px;
        right: 20px;
    }
    
    .hero-slider-controls {
        gap: 10px;
        bottom: 15px;
    }
    
    .hero-slider-prev,
    .hero-slider-next {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .hero-slider-dots {
        gap: 8px;
    }
    
    .hero-dot {
        width: 12px;
        height: 12px;
    }
    
    .modal-body {
        padding: 25px 15px;
    }
    
    .modal-title {
        font-size: 1.6rem;
    }
    
    .property-modal-title {
        font-size: 1.5rem;
    }
    
    .property-modal-image img {
        height: 250px;
    }
    
    .price-value {
        font-size: 1.8rem;
    }
    
    .btn-whatsapp {
        width: 100%;
        justify-content: center;
        font-size: 0.75rem;
        padding: 10px 15px;
        min-width: auto;
    }
    
    .specs-grid-simple {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .spec-item {
        padding: 10px;
    }
    
    .spec-item i {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
    
    .spec-label {
        font-size: 0.7rem;
    }
    
    .spec-value {
        font-size: 1rem;
    }
    
    .property-specs span {
        font-size: 0.75rem;
        padding: 5px 8px;
    }
    
    .blog-modal-title {
        font-size: 1.4rem;
    }
    
    .blog-modal-meta {
        flex-direction: row;
        justify-content: space-around;
        gap: 10px;
        flex-wrap: wrap;
    }
    
    .blog-modal-meta span {
        font-size: 0.8rem;
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 300px;
    }
    
    .hero-title-line {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .counter-item {
        min-height: 140px;
        padding: 15px 10px;
    }
    
    .counter-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .counter-number {
        font-size: 1.6rem;
    }
    
    .counter-text {
        font-size: 0.7rem;
        letter-spacing: 0.5px;
    }
    
    .nav-link {
        font-size: 0.8rem;
        padding: 12px;
    }
    
    .btn-profile {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
    
    .modal-body {
        padding: 20px 10px;
    }
    
    .modal-title {
        font-size: 1.4rem;
    }
    
    .property-modal-image img {
        height: 200px;
    }
    
    .price-value {
        font-size: 1.6rem;
    }
    
    .spec-item,
    .feature-item {
        padding: 10px;
    }
    
    .spec-item span,
    .feature-item span {
        font-size: 0.9rem;
    }
    
    .slider-controls {
        gap: 15px;
    }
    
    .slider-prev,
    .slider-next {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .property-specs {
        gap: 8px;
    }
    
    .property-specs span {
        min-width: 50px;
        padding: 4px 6px;
        font-size: 0.7rem;
    }
    
    .property-specs i {
        font-size: 1rem;
    }
    
    .blog-modal-meta {
        gap: 8px;
    }
    
    .blog-modal-meta span {
        font-size: 0.75rem;
    }
    
    .review-btn {
        padding: 20px;
        gap: 15px;
    }
    
    .review-btn i:first-child {
        font-size: 1.8rem;
        width: 50px;
        height: 50px;
    }
    
    .btn-title {
        font-size: 1.1rem;
    }
    
    .btn-subtitle {
        font-size: 0.85rem;
    }
}

/* ===========================================
   MEDIA QUERY FIXES FOR ABOUT SECTION IMAGE & RINGS
=========================================== */

/* For screens between 1200px and 992px */
@media (max-width: 1200px) and (min-width: 993px) {
    .about-grid {
        gap: 60px;
    }
    
    .image-container {
        width: 460px;
        height: 460px;
    }
    
    .round-image-wrapper {
        width: 360px;
        height: 360px;
    }
    
    .ring-1 {
        width: 420px;
        height: 420px;
    }
    
    .ring-2 {
        width: 480px;
        height: 480px;
    }
    
    .experience-badge-round {
        width: 110px;
        height: 110px;
        padding: 15px;
    }
    
    .exp-years {
        font-size: 1.8rem;
    }
    
    .exp-text {
        font-size: 0.75rem;
    }
    
    .floating-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

/* For screens between 992px and 768px */
@media (max-width: 992px) and (min-width: 769px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .image-container {
        width: 410px;
        height: 410px;
    }
    
    .round-image-wrapper {
        width: 330px;
        height: 330px;
    }
    
    .ring-1 {
        width: 380px;
        height: 380px;
    }
    
    .ring-2 {
        width: 440px;
        height: 440px;
    }
    
    .floating-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* For screens between 768px and 576px */
@media (max-width: 768px) and (min-width: 577px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .image-container {
        width: 360px;
        height: 360px;
    }
    
    .round-image-wrapper {
        width: 290px;
        height: 290px;
    }
    
    .ring-1 {
        width: 340px;
        height: 340px;
    }
    
    .ring-2 {
        width: 390px;
        height: 390px;
    }
    
    .experience-badge-round {
        width: 100px;
        height: 100px;
        padding: 12px;
    }
    
    .exp-years {
        font-size: 1.6rem;
    }
    
    .exp-text {
        font-size: 0.7rem;
    }
    
    .floating-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

/* For screens between 576px and 480px */
@media (max-width: 576px) and (min-width: 481px) {
    .image-container {
        width: 310px;
        height: 310px;
    }
    
    .round-image-wrapper {
        width: 250px;
        height: 250px;
    }
    
    .ring-1 {
        width: 290px;
        height: 290px;
    }
    
    .ring-2 {
        width: 330px;
        height: 320px;
    }
    
    .experience-badge-round {
        width: 90px;
        height: 90px;
        padding: 10px;
    }
    
    .exp-years {
        font-size: 1.4rem;
    }
    
    .exp-text {
        font-size: 0.65rem;
    }
    
    .floating-icon {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
}

/* For screens smaller than 480px */
@media (max-width: 480px) {
    .image-container {
        width: 290px;
        height: 290px;
    }
    
    .round-image-wrapper {
        width: 230px;
        height: 230px;
    }
    
    .ring-1 {
        width: 270px;
        height: 270px;
    }
    
    .ring-2 {
        width: 310px;
        height: 310px;
    }
    
    .experience-badge-round {
        width: 80px;
        height: 80px;
        padding: 8px;
    }
    
    .exp-years {
        font-size: 1.3rem;
    }
    
    .exp-text {
        font-size: 0.6rem;
    }
    
    .floating-icon {
        width: 25px;
        height: 25px;
        font-size: 0.7rem;
    }
}

/* For very small screens */
@media (max-width: 375px) {
    .image-container {
        width: 260px;
        height: 260px;
    }
    
    .round-image-wrapper {
        width: 210px;
        height: 210px;
    }
    
    .ring-1 {
        width: 240px;
        height: 240px;
    }
    
    .ring-2 {
        width: 270px;
        height: 270px;
    }
    
    .floating-icon {
        width: 20px;
        height: 20px;
        font-size: 0.6rem;
    }
}

/* Ensure the floating icons stay visible */
@media (max-width: 992px) {
    .floating-icon:nth-child(1) {
        top: 10%;
        left: 5%;
    }
    
    .floating-icon:nth-child(2) {
        top: 70%;
        right: 10%;
    }
    
    .floating-icon:nth-child(3) {
        bottom: 20%;
        left: 15%;
    }
    
    .floating-icon:nth-child(4) {
        top: 35%;
        right: 20%;
    }
    
    .floating-icon:nth-child(5) {
        bottom: 35%;
        left: 25%;
    }
}

/* Fix animation speeds for smaller screens */
@media (max-width: 768px) {
    @keyframes floatIcon {
        0% {
            transform: translate(0, 0) rotate(0deg) scale(1);
        }
        25% {
            transform: translate(15px, -25px) rotate(90deg) scale(1.05);
        }
        50% {
            transform: translate(-10px, 20px) rotate(180deg) scale(0.95);
        }
        75% {
            transform: translate(15px, 10px) rotate(270deg) scale(1.02);
        }
        100% {
            transform: translate(0, 0) rotate(360deg) scale(1);
        }
    }
    
    @keyframes ringPulse {
        0%, 100% {
            transform: scale(1);
            opacity: 1;
        }
        50% {
            transform: scale(1.03);
            opacity: 0.8;
        }
    }
    
    @keyframes badgeMove {
        0%, 100% { 
            transform: translate(-50%, -50%) translate(0, 0) rotate(0deg);
        }
        20% { 
            transform: translate(-50%, -50%) translate(25px, -20px) rotate(8deg);
        }
        40% { 
            transform: translate(-50%, -50%) translate(-20px, 30px) rotate(-12deg);
        }
        60% { 
            transform: translate(-50%, -50%) translate(35px, 15px) rotate(4deg);
        }
        80% { 
            transform: translate(-50%, -50%) translate(-15px, -30px) rotate(-8deg);
        }
    }
}

/* Prevent image container from affecting layout */
@media (max-width: 992px) {
    .about-image {
        margin: 0 auto;
        max-width: 100%;
    }
    
    .image-container {
        margin: 0 auto;
    }
}

/* Ensure the about section doesn't overflow */
@media (max-width: 768px) {
    .about-section {
        overflow: hidden;
    }
    
    .image-container {
        overflow: visible;
    }
}



