/* ============================================
   Lions Cab Group - Modern Welcome Page
   Clean, Professional, Premium Design
   ============================================ */

/* ============================================
   CSS Variables & Reset
   ============================================ */
:root {
    /* Brand Colors */
    --gold: #D2AE34;
    --dark: #414142;
    --white: #FFFFFF;
    
    /* Extended Palette */
    --gold-light: #E5C96A;
    --gold-dark: #B89420;
    --dark-light: #5A5A5C;
    --gray: #F8F9FA;
    --gray-dark: #E8E9EA;
    
    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #D2AE34 0%, #E5C96A 100%);
    --gradient-dark: linear-gradient(135deg, #414142 0%, #5A5A5C 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 12px 40px rgba(0, 0, 0, 0.2);
    
    /* Typography */
    --font: 'Montserrat', sans-serif;
    
    /* Transitions */
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ============================================
   Header
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    transition: all var(--transition);
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    height: 50px;
    width: auto;
    transition: transform var(--transition);
    background: var(--white);
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
}

.logo:hover {
    transform: scale(1.05);
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--gradient-gold);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* ============================================
   Navigation Menu
   ============================================ */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition);
    position: relative;
}

.site-header.scrolled .nav-link {
    color: var(--dark);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    margin-left: 1rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: all var(--transition);
}

.site-header.scrolled .mobile-menu-toggle span {
    background: var(--dark);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ============================================
   Hero Section
   ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(65, 65, 66, 0.85) 0%, rgba(65, 65, 66, 0.7) 50%, rgba(210, 174, 52, 0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 6rem 0;
}

.hero-text-wrapper {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.hero-title {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.title-small {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.2s;
}

.title-main {
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.4s;
}

.title-accent {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--white);
    opacity: 0.9;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.6s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.8s;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 1s;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all var(--transition);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--dark);
    transform: translateY(-3px);
}

/* ============================================
   Services Section
   ============================================ */
.services-section {
    padding: 6rem 0;
    background: var(--white);
}

.section-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--dark-light);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    position: relative;
    border: 1px solid var(--gray-dark);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: 20px 20px 0 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-gold);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--white);
    transition: all var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.service-desc {
    color: var(--dark-light);
    line-height: 1.7;
}

.service-featured {
    grid-column: span 2;
    background: var(--gradient-dark);
    color: var(--white);
    border: none;
    position: relative;
    overflow: hidden;
}

.service-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.service-bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.service-bg-slide.active {
    opacity: 1;
}

.service-bg-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.service-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(65, 65, 66, 0.92) 0%, rgba(65, 65, 66, 0.85) 100%);
    z-index: 1;
}

.service-featured-content {
    position: relative;
    z-index: 2;
}

.service-featured .service-title,
.service-featured .service-desc {
    color: var(--white);
}

.service-featured .service-icon {
    background: var(--white);
    color: var(--gold);
}

.featured-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--gradient-gold);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 3;
}

/* ============================================
   Why Choose Us Section
   ============================================ */
.why-section {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.why-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.why-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(65, 65, 66, 0.95) 0%, rgba(65, 65, 66, 0.85) 100%);
}

.why-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.why-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 3rem;
}

.why-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: var(--gold);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--white);
}

.feature-text h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.feature-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

/* ============================================
   Contact CTA Section
   ============================================ */
.contact-cta-section {
    padding: 6rem 0;
    background: var(--gray);
}

.cta-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: var(--dark-light);
    margin-bottom: 3rem;
}

.cta-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all var(--transition);
    border: 1px solid var(--gray-dark);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}

.info-card svg {
    color: var(--gold);
    flex-shrink: 0;
}

.info-card h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark-light);
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-card a,
.info-card p {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    text-decoration: none;
    transition: color var(--transition);
    word-break: break-word;
}

.info-card a:hover {
    color: var(--gold);
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
    background: var(--gradient-dark);
    color: var(--white);
    padding: 5rem 0 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2.5rem;
}

.footer-logo {
    height: 70px;
    width: auto;
    margin-bottom: 1.5rem;
    background: var(--white);
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.6;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.footer-heading {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links-section {
    display: flex;
    flex-direction: column;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all var(--transition);
    display: inline-block;
    font-size: 0.95rem;
}

.footer-links li a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.contact-item svg {
    color: var(--gold);
    flex-shrink: 0;
}

.contact-item a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

.contact-item a:hover {
    color: var(--gold);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all var(--transition);
}

.social-link:hover {
    background: var(--gradient-gold);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    padding-top: 1rem;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    .title-main {
        font-size: 3.5rem;
    }
    
    .section-title,
    .why-title,
    .cta-title {
        font-size: 2.5rem;
    }
    
    .service-featured {
        grid-column: span 1;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .header-container {
        padding: 1rem 1.5rem;
    }
    
    .logo {
        height: 40px;
    }
    
    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: var(--shadow-lg);
        padding: 2rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition);
        z-index: 999;
    }
    
    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .nav-link {
        font-size: 1.1rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .btn-contact span {
        display: none;
    }
    
    .title-small {
        font-size: 1rem;
    }
    
    .title-main {
        font-size: 2.5rem;
    }
    
    .title-accent {
        font-size: 1.25rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .section-title,
    .why-title,
    .cta-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .why-features {
        grid-template-columns: 1fr;
    }
    
    .cta-info {
        grid-template-columns: 1fr;
    }
    
    .info-card {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .title-main {
        font-size: 2rem;
    }
    
    .section-title,
    .why-title,
    .cta-title {
        font-size: 1.75rem;
    }
}

/* ============================================
   Animations & Utilities
   ============================================ */
.fade-in {
    animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials-section {
    padding: 6rem 0;
    background: var(--gray);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    border: 1px solid var(--gray-dark);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
    color: var(--gold);
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--dark);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.author-info p {
    font-size: 0.9rem;
    color: var(--dark-light);
}

/* ============================================
   Properties Section
   ============================================ */
.properties-section {
    padding: 6rem 0;
    background: var(--white);
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.property-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    border: 1px solid var(--gray-dark);
}

.property-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.property-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.property-card:hover .property-image img {
    transform: scale(1.1);
}

.property-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-gold);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.badge-featured {
    background: var(--gradient-dark);
}

.property-content {
    padding: 2rem;
}

.property-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.property-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.property-location svg {
    color: var(--gold);
    flex-shrink: 0;
}

.property-features {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.property-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--dark-light);
}

.property-features svg {
    color: var(--gold);
    flex-shrink: 0;
}

.property-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-dark);
}

.property-price {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--gold);
}

.property-link {
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition);
}

.property-link:hover {
    color: var(--gold);
    transform: translateX(5px);
}

/* ============================================
   Blog Section
   ============================================ */
.blog-section {
    padding: 6rem 0;
    background: var(--gray);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.blog-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    border: 1px solid var(--gray-dark);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.blog-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--gradient-gold);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.blog-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--dark-light);
}

.blog-date,
.blog-read-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-date svg {
    color: var(--gold);
}

.blog-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-excerpt {
    color: var(--dark-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.blog-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition);
    display: inline-block;
}

.blog-link:hover {
    transform: translateX(5px);
}

/* ============================================
   Responsive Design for New Sections
   ============================================ */
@media (max-width: 1024px) {
    .properties-grid,
    .blog-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .testimonials-grid,
    .properties-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .property-features {
        gap: 1rem;
    }
}

/* ============================================
   Mobile Navigation Styles
   ============================================ */
/* Hide mobile elements on desktop */
.mobile-nav-header,
.mobile-nav-footer {
    display: none;
}

@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: flex;
        z-index: 1001; /* Above the menu */
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: space-between; /* Space out header, menu, footer */
        align-items: center;
        transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1000;
        box-shadow: -5px 0 30px rgba(0,0,0,0.1);
        padding: 2rem;
    }

    .main-nav.active {
        right: 0;
    }

    /* Mobile Nav Header */
    .mobile-nav-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding-bottom: 2rem;
        border-bottom: 1px solid var(--gray-dark);
    }

    .mobile-logo {
        height: 40px;
        width: auto;
    }

    .mobile-menu-close {
        background: none;
        border: none;
        cursor: pointer;
        color: var(--dark);
        padding: 0.5rem;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
    }

    .mobile-menu-close:hover {
        background: var(--gray);
        color: var(--gold);
        transform: rotate(90deg);
    }

    /* Mobile Nav Menu */
    .nav-menu {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        width: 100%;
        padding: 2rem 0;
        overflow-y: auto;
    }

    .nav-link {
        color: var(--dark);
        font-size: 1.25rem;
        font-weight: 600;
        display: block;
        padding: 0.5rem;
    }

    .nav-link::after {
        display: none;
    }
    
    .nav-link:hover,
    .nav-link.active {
        color: var(--gold);
        background: rgba(210, 174, 52, 0.05);
        border-radius: 8px;
    }

    /* Mobile Nav Footer */
    .mobile-nav-footer {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        width: 100%;
        padding-top: 2rem;
        border-top: 1px solid var(--gray-dark);
    }

    .mobile-contact-info {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }

    .mobile-contact-item {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        color: var(--dark-light);
        text-decoration: none;
        font-size: 0.95rem;
        font-weight: 500;
        transition: color 0.3s ease;
    }

    .mobile-contact-item:hover {
        color: var(--gold);
    }

    .mobile-socials {
        display: flex;
        gap: 1rem;
    }

    .mobile-social-link {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: var(--gray);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--dark);
        transition: all 0.3s ease;
    }

    .mobile-social-link:hover {
        background: var(--gradient-gold);
        color: var(--white);
        transform: translateY(-3px);
    }

    /* Hide the original toggle when menu is open (optional, since we have close button) */
    /* But we keep it hidden or transform it if we want */
    .mobile-menu-toggle.active {
        opacity: 0;
        pointer-events: none;
    }
    
    /* Header Actions adjustments */
    .header-actions {
        gap: 1rem;
    }
    
    .btn-contact span {
        display: none;
    }
    
    .btn-contact {
        padding: 0;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        justify-content: center;
    }
}

/* ============================================
   Scroll Animations
   ============================================ */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays for grids */
.fade-up:nth-child(1) { transition-delay: 0.1s; }
.fade-up:nth-child(2) { transition-delay: 0.2s; }
.fade-up:nth-child(3) { transition-delay: 0.3s; }
.fade-up:nth-child(4) { transition-delay: 0.4s; }

/* ============================================
   Desktop Properties Sidebar
   ============================================ */
.btn-properties-sidebar {
    display: none; /* Hidden by default, shown on desktop */
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    width: 44px;
    height: 44px;
    background: var(--gradient-gold);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}

.btn-properties-sidebar:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: var(--shadow-md);
}

/* Sidebar Overlay */
.properties-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.properties-sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Sidebar Panel */
.properties-sidebar {
    position: fixed;
    top: 0;
    right: -650px;
    width: 650px;
    height: 100vh;
    background: var(--white);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 1001;
    display: flex;
    flex-direction: column;
}

.properties-sidebar.active {
    right: 0;
}

/* Sidebar Header */
.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 1px solid var(--gray-dark);
}

.sidebar-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
}

.sidebar-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--dark);
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.sidebar-close:hover {
    background: var(--gray);
    color: var(--gold);
    transform: rotate(90deg);
}

/* Sidebar Content */
.sidebar-content {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.sidebar-property-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-dark);
    transition: all var(--transition);
    cursor: pointer;
}

.sidebar-property-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.sidebar-property-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.sidebar-property-info {
    padding: 1.5rem;
    position: relative;
}

.sidebar-badge {
    position: absolute;
    top: -30px;
    right: 1rem;
    background: var(--gradient-gold);
    color: var(--white);
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sidebar-badge.badge-rent {
    background: var(--gradient-dark);
}

.sidebar-property-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 0.75rem 0;
}

.sidebar-location {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--dark-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.sidebar-location svg {
    color: var(--gold);
}

.sidebar-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--gold);
}

/* Sidebar Footer */
.sidebar-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--gray-dark);
}

.btn-block {
    width: 100%;
    text-align: center;
    justify-content: center;
}

/* Show button on desktop only */
@media (min-width: 993px) {
    .btn-properties-sidebar {
        display: inline-flex;
    }
}

/* Hide sidebar on mobile */
@media (max-width: 992px) {
    .properties-sidebar,
    .properties-sidebar-overlay {
        display: none !important;
    }
    
    .btn-contact {
        padding: 0;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        justify-content: center;
    }
}

/* ============================================
   Testimonials Slider
   ============================================ */
.testimonials-slider-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 60px;
}

.testimonials-slider {
    overflow: hidden;
    position: relative;
}

.testimonial-card {
    display: none;
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-dark);
    animation: fadeIn 0.5s ease;
}

.testimonial-card.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.testimonial-rating {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    color: var(--gold);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark);
    font-style: italic;
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 0.25rem 0;
}

.author-info p {
    font-size: 0.9rem;
    color: var(--dark-light);
    margin: 0;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border: 2px solid var(--gold);
    color: var(--gold);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
    z-index: 10;
}

.slider-btn:hover {
    background: var(--gradient-gold);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn-prev {
    left: 0;
}

.slider-btn-next {
    right: 0;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-dark);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
}

.slider-dot.active {
    background: var(--gradient-gold);
.sidebar-badge.badge-rent {
    background: var(--gradient-dark);
}

.sidebar-property-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 0.75rem 0;
}

.sidebar-location {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--dark-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.sidebar-location svg {
    color: var(--gold);
}

.sidebar-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--gold);
}

/* Sidebar Footer */
.sidebar-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--gray-dark);
}

.btn-block {
    width: 100%;
    text-align: center;
    justify-content: center;
}

/* Show button on desktop only */
@media (min-width: 993px) {
    .btn-properties-sidebar {
        display: inline-flex;
    }
}

/* Hide sidebar on mobile */
@media (max-width: 992px) {
    .properties-sidebar,
    .properties-sidebar-overlay {
        display: none !important;
    }
    
    .btn-contact {
        padding: 0;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        justify-content: center;
    }
}

/* ============================================
   Testimonials Slider
   ============================================ */
.testimonials-slider-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 60px;
}

.testimonials-slider {
    overflow: hidden;
    position: relative;
}

.testimonial-card {
    display: none;
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-dark);
    animation: fadeIn 0.5s ease;
}

.testimonial-card.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.testimonial-rating {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    color: var(--gold);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark);
    font-style: italic;
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 0.25rem 0;
}

.author-info p {
    font-size: 0.9rem;
    color: var(--dark-light);
    margin: 0;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border: 2px solid var(--gold);
    color: var(--gold);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
    z-index: 10;
}

.slider-btn:hover {
    background: var(--gradient-gold);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn-prev {
    left: 0;
}

.slider-btn-next {
    right: 0;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-dark);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
}

.slider-dot.active {
    background: var(--gradient-gold);
    width: 32px;
    border-radius: 6px;
}

@media (max-width: 768px) {
    .testimonials-slider-wrapper {
        padding: 0 50px;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
    }
}

/* ============================================
   Contact Form Loading & Messages
   ============================================ */
.spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.form-message {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    margin-top: 1.5rem;
    font-weight: 500;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.form-message.show {
    opacity: 1;
    transform: translateY(0);
}

.form-message-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-message svg {
    flex-shrink: 0;
}

/* ============================================
   Google Reviews Styling
   ============================================ */
.google-logo {
    height: 26px;
    width: auto;
}

.google-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.rating-stars {
    display: flex;
    gap: 0.25rem;
}

.rating-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
}

.review-count {
    font-size: 0.95rem;
    color: var(--dark-light);
}

.testimonial-card {
    position: relative;
    padding-top: 3.5rem !important;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    opacity: 0.8;
}

.developer-credit a {
    color: #D2AE34 !important;
    text-decoration: none;
    transition: all var(--transition);
    font-weight: 600;
}

.developer-credit a:hover {
    color: #E5C96A !important;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .google-logo {
        height: 22px;
    }
    
    .rating-text {
        font-size: 1.25rem;
    }
    
    .review-count {
        font-size: 0.85rem;
    }
}

/* ============================================
   Hero Image Slider
   ============================================ */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   Contact Form Loading & Messages
   ============================================ */
.spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.form-message {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    margin-top: 1.5rem;
    font-weight: 500;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.form-message.show {
    opacity: 1;
    transform: translateY(0);
}

.form-message-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-message svg {
    flex-shrink: 0;
}
