/* ============================================
   Aaradhya Properties - Premium CSS
   Theme: Navy Blue, White & Orange
   ============================================ */

/* CSS Custom Properties */
:root {
    /* Primary Colors */
    --navy: #0A1628;
    --navy-light: #0F2035;
    --navy-medium: #132B45;
    --navy-soft: #1A3654;

    /* Accent Colors */
    --orange: #FF6B00;
    --orange-light: #FF8A33;
    --orange-dark: #E55D00;
    --orange-glow: rgba(255, 107, 0, 0.3);

    /* Neutrals */
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --gray-100: #E9ECEF;
    --gray-200: #DEE2E6;
    --gray-300: #CED4DA;
    --gray-400: #ADB5BD;
    --gray-500: #6C757D;
    --gray-600: #495057;
    --gray-700: #343A40;

    /* Functional */
    --bg-primary: var(--navy);
    --bg-secondary: var(--navy-light);
    --bg-tertiary: var(--navy-medium);
    --text-primary: var(--white);
    --text-secondary: var(--gray-300);
    --text-muted: var(--gray-400);
    --accent: var(--orange);
    --accent-hover: var(--orange-light);

    /* Glass Effect */
    --glass-bg: rgba(10, 22, 40, 0.9);
    --glass-border: rgba(255, 255, 255, 0.08);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.4);
    --shadow-orange: 0 8px 32px rgba(255, 107, 0, 0.35);
    --shadow-orange-hover: 0 12px 40px rgba(255, 107, 0, 0.5);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s cubic-bezier(0.16, 1, 0.3, 1);

    /* Layout */
    --container-max: 1280px;
    --header-height: 80px;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--orange);
    z-index: 10000;
    transition: width 0.1s ease-out;
}

/* Base Styles */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    overflow-x: hidden;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-base);
}

ul,
ol {
    list-style: none;
}

button,
input,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
}

/* Skip Link (Accessibility) */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    z-index: 10000;
    font-weight: 600;
}

.skip-link:focus {
    top: 1rem;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.text-orange {
    color: var(--orange);
}

.text-white {
    color: var(--white);
}

.text-muted {
    color: var(--text-muted);
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Section Spacing */
.section-padding {
    padding: 6rem 0;
}

/* Section Header */
.section-header {
    margin-bottom: 4rem;
}

.section-header.center {
    text-align: center;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--orange);
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1rem;
    height: 2px;
    background: var(--orange);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    /* Subtle shadow for all titles */
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 650px;
}

.section-header.center .section-desc {
    margin: 0 auto;
}

.section-header.center p {
    margin-left: auto;
    margin-right: auto;
}

.header-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition-base);
    border: 2px solid transparent;
    text-align: center;
    white-space: nowrap;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-sm {
    padding: 0.6rem 1.25rem;
    font-size: 0.85rem;
}

.btn-block {
    width: 100%;
}

.btn-orange {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
}

.btn-orange:hover {
    background: var(--orange-light);
    border-color: var(--orange-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-orange);
}

.btn-outline {
    background: rgba(0, 31, 63, 0.4);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-color: var(--white);
}

.btn .icon {
    width: 18px;
    height: 18px;
}

/* Icon Utility */
.icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* ============================================
   Preloader
   ============================================ */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    text-align: center;
}

.preloader-logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 2rem;
}

.preloader-bar {
    width: 200px;
    height: 3px;
    background: var(--navy-soft);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.preloader-progress {
    width: 0%;
    height: 100%;
    background: var(--orange);
    border-radius: var(--radius-full);
    animation: loading 1.5s ease-in-out forwards;
}

@keyframes loading {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

/* ============================================
   Header & Navigation
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all var(--transition-base);
}

.header.scrolled {
    padding: 0.75rem 0;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .logo {
        font-size: 1.1rem;
    }
}

@media (max-width: 400px) {
    .hide-mini {
        display: none;
    }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width var(--transition-base);
}

.nav-links a:hover,
.nav-links a.active-nav {
    color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active-nav::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition-base);
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    padding-top: 100px; /* Space for sticky header */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--navy-medium); /* Navy blue background as requested */
    overflow: hidden;
}

.hero-banner-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem 0rem 1.5rem;
    z-index: 2;
    display: flex;
    justify-content: center;
}

.hero-banner-img {
    width: 100%;
    height: auto;
    max-width: 900px; /* Keep it nicely sized on ultrawides */
    max-height: 70vh;
    object-fit: contain;
    /* HD Quality enhancements for transparent PNG */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    transform-origin: center;
    /* Removed border and box-shadow for PNG */
}

/* Custom Entrance Animation for the Logo */
.page-loaded .hero-banner-img.reveal {
    animation: dropInScale 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards !important;
}

@keyframes dropInScale {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(-60px);
        filter: drop-shadow(0 0px 0px rgba(0,0,0,0));
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
        /* Subtle beautiful drop-shadow that follows PNG transparent edges */
        filter: drop-shadow(0 25px 45px rgba(0,0,0,0.6)) drop-shadow(0 5px 15px rgba(255, 107, 0, 0.15));
    }
}

.hero-content.brand-hero {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1.5rem 4rem 1.5rem;
}

.hero-content.brand-hero .hero-buttons {
    justify-content: center;
}

.hero-content.brand-hero .hero-badge {
    margin-left: auto;
    margin-right: auto;
}

/* Staggered entrance for hero elements on page load */
.page-loaded .hero .reveal,
.page-loaded .hero .reveal-left,
.page-loaded .hero .reveal-right {
    opacity: 1;
    transform: translate(0, 0) scale(1);
    visibility: visible;
    pointer-events: auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 107, 0, 0.9);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.25rem 0.8rem;
    border-radius: var(--radius-full);
    font-size: 0.65rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.show-mobile { display: none; }

@media (max-width: 768px) {
    .hero-badge {
        font-size: 0.62rem;
        padding: 0.2rem 0.7rem;
        margin-bottom: 1rem;
    }
    .hide-mobile { display: none; }
    .show-mobile { display: inline; }
}

.badge-dot {
    width: 5px;
    height: 5px;
    background: #ffffff;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(1.3);
    }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: #ffffff;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.9), 0 0 40px rgba(0, 0, 0, 0.5);
    /* Stronger shadows */
}

.hero-title span.text-orange {
    color: var(--orange);
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.9);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 1.5vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 650px;
    line-height: 1.8;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 1);
    /* High contrast shadow */
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.5rem, 2.5vw, 2.5rem);
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-muted);
    font-size: 0.8rem;
    animation: floatIndicator 3s ease-in-out infinite;
    pointer-events: none;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--text-muted);
    border-radius: 13px;
    position: relative;
}

.mouse-wheel {
    width: 4px;
    height: 8px;
    background: var(--orange);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheelIcon 2s infinite;
}

@keyframes scrollWheelIcon {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(12px);
    }
}

@keyframes floatIndicator {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

.trust-bar {
    background: var(--bg-secondary);
    padding: 4rem 0;
    border-bottom: 1px solid var(--glass-border);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.trust-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 107, 0, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    flex-shrink: 0;
}

.trust-icon svg {
    width: 24px;
    height: 24px;
}

.trust-text {
    display: flex;
    flex-direction: column;
}

.trust-text strong {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
}

.trust-text span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ============================================
   About Section
   ============================================ */
.about {
    background: var(--bg-primary);
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-main img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.about-img-main:hover img {
    transform: scale(1.05);
}

.about-img-secondary {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    width: 250px;
    height: 300px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 5px solid var(--bg-primary);
    box-shadow: var(--shadow-lg);
}

.about-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-experience-badge {
    position: absolute;
    top: 2rem;
    right: -1rem;
    background: var(--orange);
    color: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 15px 30px rgba(255, 107, 0, 0.4);
    z-index: 5;
}

.about-experience-badge .stat-number {
    color: var(--white); /* Ensure number is white on orange background */
    font-size: 2.5rem;
    display: block;
}

.exp-text {
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content .lead {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.about-content>p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
}

.feature-icon {
    width: 24px;
    height: 24px;
    color: var(--orange);
    flex-shrink: 0;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.team-section h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.team-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.team-card {
    background: var(--bg-secondary);
    padding: 1.25rem;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid var(--glass-border);
    transition: all var(--transition-base);
}

.team-card:hover {
    border-color: var(--orange);
    transform: translateY(-4px);
}

.team-avatar {
    width: 48px;
    height: 48px;
    background: var(--orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    margin: 0 auto 0.75rem;
}

.team-card strong {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.team-card a {
    font-size: 0.8rem;
    color: var(--orange);
}

.team-card a:hover {
    color: var(--orange-light);
}

/* ============================================
   Services Section (Cinematic Upgrade)
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 500px;
    background: var(--bg-secondary);
}

.service-img {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.2, 1, 0.3, 1);
}

.service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 31, 63, 0.95) 0%,
            rgba(0, 31, 63, 0.6) 50%,
            rgba(0, 31, 63, 0.2) 100%);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: var(--text-white);
    transition: all 0.4s ease;
    z-index: 2;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--orange);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    margin-bottom: 2rem;
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.3);
    animation: floatIcon 4s ease-in-out infinite;
    position: relative;
    z-index: 3;
}

@keyframes floatIcon {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

.service-card h3 {
    font-size: 1.85rem;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.9);
    transition: all 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}

.service-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #f0f0f0;
    margin-bottom: 2rem;
    max-width: 90%;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.9);
    transition: all 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}

.service-link {
    margin-top: auto; /* Pushes the link to the very bottom of the card */
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--orange);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.75rem; /* Made smaller as requested */
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.8);
    transition: all 0.4s ease;
    padding-bottom: 0.5rem;
}

.service-link svg {
    width: 18px; /* Fixed the huge arrow issue */
    height: 18px;
    transition: transform 0.3s ease;
}

.service-link:hover svg {
    transform: translateX(5px);
}

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-card:hover .service-overlay {
    background: linear-gradient(to top,
            rgba(0, 31, 63, 1) 0%,
            rgba(0, 31, 63, 0.4) 100%);
}

.service-link:hover {
    color: #fff;
}

@media (max-width: 992px) {
    .service-card {
        height: 480px;
    }
}

/* ============================================
   Properties Section
   ============================================ */
.properties {
    background: var(--bg-primary);
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.property-card {
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: all var(--transition-base);
}

.property-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.property-img {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.property-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.property-card:hover .property-img img {
    transform: scale(1.08);
}

.property-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.badge-sale {
    background: var(--orange);
    color: var(--white);
}

.badge-rent {
    background: var(--navy-soft);
    color: var(--white);
    border: 1px solid var(--glass-border);
}

.badge-lease {
    background: var(--white);
    color: var(--navy);
}

.property-info {
    padding: 1.5rem;
}

.property-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.property-location svg {
    width: 16px;
    height: 16px;
    color: var(--orange);
}

.property-info h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.property-features {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.property-features span {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.property-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.25rem;
    border-top: 1px solid var(--glass-border);
}

.property-price {
    font-weight: 700;
    color: var(--orange);
}

/* ============================================
   Locations Section
   ============================================ */
.locations {
    background: var(--bg-secondary);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.location-card {
    position: relative;
    height: 450px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-md);
}

.location-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.location-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 31, 63, 0.95), rgba(0, 31, 63, 0.2) 60%, transparent);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: var(--text-white);
    transition: background 0.4s ease;
}

.location-card:hover img {
    transform: scale(1.1);
}

.location-card:hover .location-overlay {
    background: linear-gradient(to top, rgba(10, 25, 47, 1), rgba(10, 25, 47, 0.4) 60%, rgba(10, 25, 47, 0.2));
}

.location-card h3 {
    font-size: 1.75rem;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 0.5rem;
    color: var(--orange);
    transform: translateY(10px);
    transition: transform 0.4s ease;
}

.location-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    opacity: 0.8;
    transform: translateY(20px);
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.location-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.location-card:hover h3,
.location-card:hover p {
    transform: translateY(0);
    opacity: 1;
}

@media (max-width: 768px) {
    .location-card {
        height: 400px;
    }
}

/* ============================================
   Premium Entrance Animations (Scroll Reveals)
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);
    visibility: hidden;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);
    visibility: hidden;
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);
    visibility: hidden;
}

.reveal.active,
.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: translate(0) scale(1);
    visibility: visible;
}

/* Staggered Delays for Premium Flow */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* Global Text Animation Enhancement */
h1, h2, h3, h4, 
.section-tag, 
.section-desc, 
p, 
.btn, 
.stat-item, 
.team-card,
.location-card,
.service-card,
.property-card {
    will-change: transform, opacity;
}

/* Special Number Animation (Subtle Pulse on Reveal) */
.stat-number.active {
    animation: numberAppear 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

@keyframes numberAppear {
    0% { transform: scale(0.8); opacity: 0; }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials {
    background: var(--bg-secondary);
}

.rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 107, 0, 0.1);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    color: var(--orange);
    margin-top: 1rem;
}

.rating-badge svg {
    width: 20px;
    height: 20px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--bg-tertiary);
    padding: 2rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--glass-border);
    transition: all var(--transition-base);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 107, 0, 0.2);
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-stars svg {
    width: 18px;
    height: 18px;
    color: var(--orange);
}

.testimonial-card blockquote {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.testimonial-card cite {
    font-style: normal;
    font-weight: 600;
    color: var(--orange);
}

/* ============================================
   Location Section
   ============================================ */
.location {
    background: var(--bg-primary);
    padding: 6rem 0 0;
}

.map-container {
    width: 100%;
    height: 500px;
    filter: grayscale(30%) contrast(1.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
    background: var(--bg-secondary);
}

.contact-grid {
    align-items: start;
}

.contact-info .lead {
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-item {
    display: flex;
    gap: 1.25rem;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 107, 0, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    flex-shrink: 0;
}

.contact-icon svg {
    width: 22px;
    height: 22px;
}

.contact-item h4 {
    font-size: 1rem;
    margin-bottom: 0.35rem;
}

.contact-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.contact-item a {
    color: var(--orange);
    font-size: 0.95rem;
}

.contact-item a:hover {
    color: var(--orange-light);
}

.phone-list {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.contact-cta {
    margin-top: 1rem;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--bg-tertiary);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 0.95rem;
    transition: all var(--transition-base);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-500);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.15);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ADB5BD' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 18px;
    padding-right: 3rem;
}

.form-group select option {
    background: var(--navy);
    color: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-loading {
    display: none;
}

.btn.loading .btn-text {
    display: none;
}

.btn.loading .btn-loading {
    display: inline;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--bg-primary);
    padding: 5rem 0 0;
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 4rem;
}

.footer-brand .logo {
    margin-bottom: 1.25rem;
    display: inline-block;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    max-width: 320px;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--bg-secondary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all var(--transition-base);
}

.footer-social a:hover {
    background: var(--orange);
    color: var(--white);
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

.footer-links h4,
.footer-areas h4,
.footer-contact h4 {
    font-size: 1rem;
    margin-bottom: 1.25rem;
    color: var(--white);
}

.footer-links ul li,
.footer-areas ul li,
.footer-contact ul li {
    margin-bottom: 0.75rem;
}

.footer-links a,
.footer-areas li,
.footer-contact a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: color var(--transition-base);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--orange);
}

.footer-copyright {
    text-align: center;
    margin-top: 4rem;
    padding-bottom: 1.5rem;
}

.footer-copyright p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid var(--glass-border);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.developer-credit {
    margin-top: 0.5rem;
    font-size: 0.75rem !important;
    opacity: 0.8;
}

.developer-credit a {
    color: var(--text-muted);
    font-weight: 600;
    transition: color 0.3s ease;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.developer-credit a:hover {
    color: var(--orange);
}

/* ============================================
   Floating WhatsApp Button
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all var(--transition-base);
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

/* ============================================
   Back to Top Button
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 48px;
    height: 48px;
    background: var(--orange);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
    z-index: 999;
    box-shadow: var(--shadow-orange);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--orange-light);
    transform: translateY(-4px);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
}

/* ============================================
   Reveal Animations
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

.reveal-delay-5 {
    transition-delay: 0.5s;
}

/* ============================================
   Utilities
   ============================================ */
.center {
    text-align: center;
}

.mt-4 {
    margin-top: 3rem;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    .grid-2 {
        gap: 3rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .about-img-secondary {
        width: 200px;
        height: 250px;
        right: -1rem;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 4rem 0;
    }

    /* Navigation */
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--bg-secondary);
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        gap: 1.5rem;
        transition: right var(--transition-base);
        box-shadow: var(--shadow-lg);
        z-index: 1000;
    }

    .nav-links.mobile-active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.1rem;
    }

    /* Hero */
    .hero-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }

    .stat-divider {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    /* Trust Bar */
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    /* About */
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-img-secondary {
        display: none;
    }

    .about-img-main img {
        height: 350px;
    }

    .about-experience-badge {
        right: 1rem;
    }

    .team-cards {
        grid-template-columns: 1fr;
    }

    /* Properties */
    .properties-grid {
        grid-template-columns: 1fr;
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Map */
    .map-container {
        height: 350px;
    }

    /* Scroll indicator */
    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .trust-item {
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .whatsapp-float {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 52px;
        height: 52px;
    }

    .back-to-top {
        bottom: 1.5rem;
        left: 1.5rem;
        width: 42px;
        height: 42px;
    }
}

/* Reduced Motion (Accessibility) */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* Print Styles */
@media print {

    .header,
    .whatsapp-float,
    .back-to-top,
    .scroll-indicator,
    .preloader {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    .hero {
        min-height: auto;
        padding: 2rem 0;
    }

    .section-padding {
        padding: 2rem 0;
    }
}

/* ============================================
 Social Components (Floating & Section)
 ============================================ */

/* Social Sidebar (Fixed Left) */
.social-sidebar {
 position: fixed;
 left: 1.5rem;
 top: 50%;
 transform: translateY(-50%);
 display: flex;
 flex-direction: column;
 gap: 0.75rem;
 z-index: 1000;
}

.social-side-link {
 width: 48px;
 height: 48px;
 background: var(--glass-bg);
 backdrop-filter: blur(15px);
 -webkit-backdrop-filter: blur(15px);
 border: 1px solid var(--glass-border);
 border-radius: var(--radius-md);
 display: flex;
 align-items: center;
 justify-content: center;
 color: var(--white);
 transition: all var(--transition-slow);
 position: relative;
 box-shadow: var(--shadow-md);
}

.social-side-link:hover {
 transform: translateX(8px);
 background: var(--orange);
 border-color: var(--orange);
 box-shadow: var(--shadow-orange);
}

.social-side-link svg {
 width: 22px;
 height: 22px;
}

.social-tooltip {
 position: absolute;
 left: 100%;
 margin-left: 1.25rem;
 background: var(--navy);
 color: var(--white);
 padding: 0.5rem 1rem;
 border-radius: var(--radius-sm);
 font-size: 0.75rem;
 font-weight: 700;
 letter-spacing: 0.5px;
 opacity: 0;
 visibility: hidden;
 pointer-events: none;
 transition: all var(--transition-base);
 white-space: nowrap;
 border: 1px solid var(--glass-border);
 box-shadow: var(--shadow-lg);
}

.social-tooltip::before {
 content: '';
 position: absolute;
 right: 100%;
 top: 50%;
 transform: translateY(-50%);
 border: 6px solid transparent;
 border-right-color: var(--glass-border);
}

.social-side-link:hover .social-tooltip {
 opacity: 1;
 visibility: visible;
 transform: translateX(0);
}

/* Social Connect Links (Contact Section) */
.social-connect-links {
 display: flex;
 align-items: center;
 gap: 0.75rem;
 flex-wrap: wrap;
 margin-top: 0.25rem;
}

.social-connect-links a {
 color: var(--orange);
 font-weight: 600;
 font-size: 0.95rem;
 transition: all var(--transition-base);
}

.social-connect-links a:hover {
 color: var(--white);
 text-decoration: underline;
}

.social-connect-links .divider {
 color: var(--text-muted);
 opacity: 0.5;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
 .social-sidebar {
 left: 1rem;
 }
}

@media (max-width: 768px) {
 .social-sidebar {
 display: none;
 }
 
 .social-connect-links {
 gap: 0.5rem;
 }
}

/* Footer Social Icon Brand Colors on Hover */
.footer-social a:nth-child(1):hover { background: #E4405F !important; } /* Instagram */
.footer-social a:nth-child(2):hover { background: #FF0000 !important; } /* YouTube */
.footer-social a:nth-child(3):hover { background: #1877F2 !important; } /* Facebook */
.footer-social a:nth-child(4):hover { background: #4285F4 !important; } /* G-Maps */
.footer-social a:nth-child(5):hover { background: #25D366 !important; } /* WhatsApp */
