/* ============================================================
   KKProperty — Premium Real Estate Website
   style.css  |  Author: KKProperty Team
   ============================================================ */

/* ---- CSS VARIABLES ---- */
:root {
    --navy: #0b0f1e;
    --navy-mid: #131929;
    --navy-light: #1c2338;
    --gold: #c9a84c;
    --gold-light: #e0c06a;
    --gold-dim: rgba(201,168,76,.15);
    --cream: #f5f0e8;
    --cream-dim: rgba(245,240,232,.08);
    --white: #ffffff;
    --muted: rgba(245,240,232,.55);
    --border: rgba(201,168,76,.18);
    --shadow-lg: 0 24px 64px rgba(0,0,0,.45);
    --shadow-md: 0 8px 32px rgba(0,0,0,.3);
    --shadow-sm: 0 4px 16px rgba(0,0,0,.2);
    --radius-lg: 20px;
    --radius-md: 12px;
    --radius-sm: 8px;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', sans-serif;
    --transition: .35s cubic-bezier(.4,0,.2,1);
}

/* ---- RESET & BASE ---- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--navy);
    color: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
    cursor: none; /* hide default — custom cursor active */
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
    object-fit: cover;
}

button {
    cursor: none;
    border: none;
    background: none;
    font-family: var(--font-body);
}

input, select, textarea {
    font-family: var(--font-body);
    outline: none;
    border: none;
}

select {
    -webkit-appearance: none;
    appearance: none;
}

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
.custom-cursor {
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%,-50%);
    transition: transform .1s, width .25s, height .25s, opacity .25s;
    mix-blend-mode: difference;
}

.custom-cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%,-50%);
    transition: transform .05s;
}

body:hover .custom-cursor {
    opacity: 1;
}

/* ============================================================
   PAGE LOADER
   ============================================================ */
#loader {
    position: fixed;
    inset: 0;
    background: var(--navy);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .6s ease, visibility .6s ease;
}

    #loader.hidden {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

.loader-inner {
    text-align: center;
}

.loader-logo {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

    .loader-logo span {
        color: var(--gold);
    }

.loader-bar {
    width: 240px;
    height: 2px;
    background: var(--cream-dim);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.loader-progress {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 2px;
    animation: loadProgress 1.8s ease forwards;
}

@keyframes loadProgress {
    to {
        width: 100%;
    }
}

/* ============================================================
   CONTAINER & SECTION BASE
   ============================================================ */
.container {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: clamp(80px, 10vw, 130px) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-tag {
    display: inline-block;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    background: var(--gold-dim);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: .35rem 1.1rem;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--cream);
}

    .section-title em {
        color: var(--gold);
        font-style: italic;
    }

.section-subtitle {
    font-size: 1rem;
    color: var(--muted);
    margin-top: .75rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy);
    font-weight: 600;
    font-size: .95rem;
    padding: .85rem 2rem;
    border-radius: 100px;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(201,168,76,.35);
}

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 30px rgba(201,168,76,.5);
        background: linear-gradient(135deg, var(--gold-light), var(--gold));
    }

    .btn-primary i {
        transition: transform .3s;
    }

    .btn-primary:hover i {
        transform: translateX(4px);
    }

/* ============================================================
   NAVIGATION
   ============================================================ */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background .4s, box-shadow .4s, padding .4s;
    padding: 0;
}

    #navbar.scrolled {
        background: rgba(11,15,30,.92);
        backdrop-filter: blur(16px);
        box-shadow: 0 2px 40px rgba(0,0,0,.4);
    }

.nav-container {
    max-width: 1260px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.4rem 2rem;
    transition: padding .4s;
}

#navbar.scrolled .nav-container {
    padding: .9rem 2rem;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--cream);
    white-space: nowrap;
    letter-spacing: 1px;
}

    .nav-logo span {
        color: var(--gold);
    }

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-left: auto;
}

.nav-link {
    font-size: .88rem;
    font-weight: 500;
    letter-spacing: .5px;
    color: var(--muted);
    position: relative;
    transition: color .3s;
}

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--gold);
        border-radius: 2px;
        transition: width .3s;
    }

    .nav-link:hover, .nav-link.active {
        color: var(--cream);
    }

        .nav-link:hover::after, .nav-link.active::after {
            width: 100%;
        }

.nav-social {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-left: 1rem;
}

.social-icon {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: .85rem;
    transition: var(--transition);
    border: 1px solid var(--border);
    color: var(--muted);
}

    .social-icon:hover {
        transform: translateY(-3px);
        border-color: transparent;
        color: var(--white);
    }

    .social-icon.whatsapp:hover {
        background: #25d366;
    }

    .social-icon.instagram:hover {
        background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);
    }

    .social-icon.facebook:hover {
        background: #1877f2;
    }

    .social-icon.youtube:hover {
        background: #ff0000;
    }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    margin-left: auto;
}

    .hamburger span {
        display: block;
        height: 2px;
        background: var(--cream);
        border-radius: 2px;
        transition: var(--transition);
    }

    .hamburger.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.open span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

/* Mobile Menu */
.mobile-menu {
    display: none;
    background: rgba(11,15,30,.97);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border);
    padding: 1.5rem 2rem 2rem;
}

    .mobile-menu.open {
        display: block;
    }

    .mobile-menu ul {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

.mobile-link {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--muted);
    transition: color .3s;
}

    .mobile-link:hover {
        color: var(--gold);
    }

.mobile-social {
    display: flex;
    gap: .75rem;
}

    .mobile-social a {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid var(--border);
        border-radius: 50%;
        color: var(--muted);
        transition: var(--transition);
    }

        .mobile-social a:hover {
            color: var(--gold);
            border-color: var(--gold);
        }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 140px 2rem 80px;
    background: radial-gradient(ellipse 80% 70% at 60% 40%, rgba(201,168,76,.09) 0%, transparent 60%), radial-gradient(ellipse 60% 60% at 20% 80%, rgba(28,35,56,.8) 0%, transparent 70%), var(--navy);
}

/* Animated grid */
.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(201,168,76,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(201,168,76,.07) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 80%);
    animation: gridShift 20s linear infinite;
}

@keyframes gridShift {
    to {
        background-position: 60px 60px;
    }
}

/* Gold orbs */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .25;
    pointer-events: none;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--gold);
    top: -200px;
    right: -150px;
    animation: orbFloat 12s ease-in-out infinite alternate;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: #3a5fd4;
    bottom: -100px;
    left: -100px;
    animation: orbFloat 16s ease-in-out infinite alternate-reverse;
}

@keyframes orbFloat {
    from {
        transform: translate(0,0) scale(1);
    }

    to {
        transform: translate(30px,30px) scale(1.1);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    background: var(--gold-dim);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: .4rem 1.2rem;
    margin-bottom: 1.6rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6.5vw, 5.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--cream);
    margin-bottom: 1.4rem;
}

    .hero-title em {
        color: var(--gold);
        font-style: italic;
        background: linear-gradient(135deg, var(--gold), var(--gold-light));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--muted);
    max-width: 540px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

/* Hero Search */
.hero-search {
    margin-bottom: 3rem;
}

.search-tabs {
    display: inline-flex;
    background: rgba(255,255,255,.06);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 4px;
    margin-bottom: 1.2rem;
    gap: 4px;
}

.stab {
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--muted);
    padding: .45rem 1.4rem;
    border-radius: 100px;
    transition: var(--transition);
}

    .stab.active, .stab:hover {
        background: var(--gold);
        color: var(--navy);
    }

.search-bar {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    background: rgba(255,255,255,.06);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: .6rem;
    backdrop-filter: blur(10px);
}

.search-field {
    display: flex;
    align-items: center;
    gap: .6rem;
    flex: 1;
    min-width: 160px;
    background: rgba(255,255,255,.05);
    border: 1px solid transparent;
    border-radius: var(--radius-md);
    padding: .7rem 1rem;
    transition: border-color .3s;
}

    .search-field:focus-within {
        border-color: var(--gold);
    }

    .search-field i {
        color: var(--gold);
        font-size: .85rem;
        flex-shrink: 0;
    }

    .search-field input,
    .search-field select {
        background: none;
        color: var(--cream);
        font-size: .88rem;
        width: 100%;
    }

        .search-field input::placeholder {
            color: var(--muted);
        }

        .search-field select option {
            background: var(--navy-mid);
            color: var(--cream);
        }

.btn-search {
    display: flex;
    align-items: center;
    gap: .5rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy);
    font-weight: 700;
    font-size: .88rem;
    padding: .8rem 1.8rem;
    border-radius: var(--radius-md);
    transition: var(--transition);
    white-space: nowrap;
}

    .btn-search:hover {
        transform: scale(1.03);
        box-shadow: 0 6px 24px rgba(201,168,76,.45);
    }

/* Hero Stats */
.hero-stats {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.5rem 2rem;
    padding: 1.8rem 2rem;
    background: rgba(255,255,255,.04);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    max-width: 640px;
    margin: 0 auto;
}

.stat {
    text-align: center;
}

.stat-num {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.stat-suffix {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
}

.stat p {
    font-size: .78rem;
    color: var(--muted);
    margin-top: .3rem;
    font-weight: 500;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* Scroll cue */
.scroll-cue {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    font-size: .72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    z-index: 2;
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--muted), transparent);
}

@keyframes scrollBounce {
    0%,100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(6px);
    }
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about {
    background: var(--navy-mid);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-images {
    position: relative;
}

.img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 480px;
    box-shadow: var(--shadow-lg);
}

    .img-main img {
        width: 100%;
        height: 100%;
    }

.img-secondary {
    position: absolute;
    right: -60px;
    bottom: -50px;
    width: 220px;
    height: 170px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 4px solid var(--navy-mid);
    box-shadow: var(--shadow-md);
}

    .img-secondary img {
        width: 100%;
        height: 100%;
    }

.about-badge-float {
    position: absolute;
    top: 30px;
    right: -30px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy);
    padding: 1rem 1.4rem;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 8px 30px rgba(201,168,76,.4);
    font-family: var(--font-display);
}

    .about-badge-float i {
        font-size: 1.2rem;
        margin-bottom: .2rem;
    }

    .about-badge-float strong {
        font-size: 1.3rem;
        line-height: 1;
    }

    .about-badge-float span {
        font-size: .7rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        opacity: .7;
    }

.about-text .section-tag {
    margin-bottom: 1rem;
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 1.2rem;
}

.about-desc {
    color: var(--muted);
    margin-bottom: 1rem;
    font-size: .95rem;
}

.about-pillars {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin: 2rem 0;
}

.pillar {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.1rem 1.4rem;
    background: var(--cream-dim);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

    .pillar:hover {
        background: var(--gold-dim);
        border-color: var(--gold);
        transform: translateX(6px);
    }

    .pillar > i {
        color: var(--gold);
        font-size: 1.3rem;
        flex-shrink: 0;
        margin-top: .15rem;
    }

    .pillar strong {
        display: block;
        font-size: .95rem;
        color: var(--cream);
        margin-bottom: .2rem;
    }

    .pillar p {
        font-size: .83rem;
        color: var(--muted);
    }

/* ============================================================
   PROPERTIES SECTION
   ============================================================ */
.properties {
    background: var(--navy);
}

.prop-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .6rem;
    margin-bottom: 3rem;
}

.filter-btn {
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted);
    padding: .55rem 1.4rem;
    border-radius: 100px;
    border: 1px solid var(--border);
    background: var(--cream-dim);
    transition: var(--transition);
}

    .filter-btn.active, .filter-btn:hover {
        background: var(--gold);
        color: var(--navy);
        border-color: var(--gold);
    }

.prop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 2rem;
}

.prop-card {
    background: var(--navy-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

    .prop-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
        border-color: var(--gold);
    }

.prop-img {
    position: relative;
    overflow: hidden;
    height: 240px;
}

    .prop-img img {
        width: 100%;
        height: 100%;
        transition: transform .6s;
    }

.prop-card:hover .prop-img img {
    transform: scale(1.07);
}

.prop-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: .3rem .9rem;
    border-radius: 100px;
    background: var(--gold);
    color: var(--navy);
}

    .prop-badge.rent {
        background: #3a9fdd;
        color: var(--white);
    }

    .prop-badge.new {
        background: #3fcf8e;
        color: var(--navy);
    }

.prop-type {
    position: absolute;
    top: 14px;
    right: 14px;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: .3rem .85rem;
    border-radius: 100px;
    background: rgba(11,15,30,.7);
    color: var(--cream);
    backdrop-filter: blur(6px);
    border: 1px solid var(--border);
}

.prop-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(11,15,30,.9));
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 1.4rem;
    opacity: 0;
    transition: opacity .4s;
}

.prop-card:hover .prop-overlay {
    opacity: 1;
}

.btn-overlay {
    font-size: .82rem;
    font-weight: 700;
    background: var(--gold);
    color: var(--navy);
    padding: .6rem 1.8rem;
    border-radius: 100px;
    transform: translateY(10px);
    transition: transform .35s;
}

.prop-card:hover .btn-overlay {
    transform: translateY(0);
}

.prop-info {
    padding: 1.4rem;
}

    .prop-info h3 {
        font-family: var(--font-display);
        font-size: 1.15rem;
        font-weight: 700;
        color: var(--cream);
        margin-bottom: .5rem;
    }

.prop-loc {
    font-size: .82rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: .4rem;
    margin-bottom: 1rem;
}

    .prop-loc i {
        color: var(--gold);
    }

.prop-specs {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    font-size: .8rem;
    color: var(--muted);
    padding: .8rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 1rem;
}

    .prop-specs span {
        display: flex;
        align-items: center;
        gap: .35rem;
    }

    .prop-specs i {
        color: var(--gold);
        font-size: .75rem;
    }

.prop-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.prop-price {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
}

.btn-wish {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border);
    color: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    transition: var(--transition);
    cursor: none;
}

    .btn-wish:hover, .btn-wish.active {
        color: #e74c3c;
        border-color: #e74c3c;
        background: rgba(231,76,60,.1);
    }

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services {
    background: var(--navy-mid);
    overflow: hidden;
}

.services-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    font-family: var(--font-display);
    font-size: clamp(6rem, 15vw, 14rem);
    font-weight: 900;
    letter-spacing: .1em;
    color: rgba(245,240,232,.02);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.8rem;
}

.service-card {
    background: var(--cream-dim);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.4rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--gold), var(--gold-light), transparent);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform .4s;
    }

    .service-card:hover::before {
        transform: scaleX(1);
    }

    .service-card:hover {
        background: rgba(201,168,76,.06);
        border-color: var(--gold);
        transform: translateY(-6px);
        box-shadow: var(--shadow-md);
    }

.svc-icon {
    width: 60px;
    height: 60px;
    background: var(--gold-dim);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 1.4rem;
    transition: var(--transition);
}

.service-card:hover .svc-icon {
    background: var(--gold);
    color: var(--navy);
    transform: rotate(8deg) scale(1.08);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: .6rem;
}

.service-card p {
    font-size: .9rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 1.4rem;
}

.svc-link {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .82rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: .5px;
    transition: gap .3s;
}

    .svc-link:hover {
        gap: .7rem;
    }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
    background: var(--navy);
    padding-bottom: clamp(80px, 10vw, 120px);
}

.testi-slider {
    position: relative;
    overflow: hidden;
}

.testi-track {
    display: flex;
    gap: 1.5rem;
    transition: transform .55s cubic-bezier(.4,0,.2,1);
}

.testi-card {
    flex: 0 0 calc(33.333% - 1rem);
    background: var(--navy-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.2rem;
    transition: var(--transition);
}

    .testi-card:hover {
        border-color: var(--gold);
        transform: translateY(-4px);
    }

.testi-stars {
    color: var(--gold);
    font-size: .9rem;
    display: flex;
    gap: .2rem;
    margin-bottom: 1rem;
}

.testi-text {
    font-size: .9rem;
    color: var(--muted);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: .9rem;
}

.testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .85rem;
    flex-shrink: 0;
}

.testi-author strong {
    display: block;
    font-size: .92rem;
    color: var(--cream);
}

.testi-author span {
    font-size: .78rem;
    color: var(--muted);
}

.testi-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
}

.testi-prev, .testi-next {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border);
    color: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    transition: var(--transition);
    cursor: none;
}

    .testi-prev:hover, .testi-next:hover {
        background: var(--gold);
        color: var(--navy);
        border-color: var(--gold);
    }

.testi-dots {
    display: flex;
    gap: .5rem;
}

.testi-dot {
    width: 8px;
    height: 8px;
    border-radius: 100px;
    background: var(--border);
    cursor: none;
    transition: var(--transition);
}

    .testi-dot.active {
        background: var(--gold);
        width: 24px;
    }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact {
    background: var(--navy-mid);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    align-items: start;
}

/* Info Panel */
.contact-info h3 {
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: .75rem;
}

.contact-info > p {
    color: var(--muted);
    font-size: .92rem;
    margin-bottom: 2rem;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: var(--gold-dim);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: .95rem;
}

.info-item strong {
    display: block;
    font-size: .87rem;
    color: var(--cream);
    margin-bottom: .2rem;
}

.info-item span, .info-item a {
    font-size: .85rem;
    color: var(--muted);
}

    .info-item a:hover {
        color: var(--gold);
    }

.contact-socials {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem;
}

.csocial-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .82rem;
    font-weight: 600;
    padding: .55rem 1.2rem;
    border-radius: 100px;
    border: 1px solid var(--border);
    color: var(--cream);
    transition: var(--transition);
}

    .csocial-btn:hover {
        transform: translateY(-3px);
        border-color: transparent;
        color: var(--white);
    }

    .csocial-btn.whatsapp:hover {
        background: #25d366;
    }

    .csocial-btn.instagram:hover {
        background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366);
    }

    .csocial-btn.facebook:hover {
        background: #1877f2;
    }

    .csocial-btn.youtube:hover {
        background: #ff0000;
    }

/* Contact Form */
.contact-form-wrap {
    background: var(--navy-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

    .form-group label {
        display: block;
        font-size: .8rem;
        font-weight: 600;
        letter-spacing: .5px;
        text-transform: uppercase;
        color: var(--muted);
        margin-bottom: .5rem;
    }

        .form-group label span {
            color: var(--gold);
        }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        background: rgba(255,255,255,.05);
        border: 1px solid var(--border);
        border-radius: var(--radius-sm);
        color: var(--cream);
        font-size: .9rem;
        padding: .75rem 1rem;
        transition: border-color .3s, background .3s;
    }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: var(--gold);
            background: rgba(201,168,76,.05);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(245,240,232,.3);
        }

        .form-group select option {
            background: var(--navy-mid);
        }

    .form-group textarea {
        resize: vertical;
        min-height: 110px;
    }

.err {
    display: block;
    font-size: .75rem;
    color: #e74c3c;
    margin-top: .35rem;
    min-height: 1.1em;
}

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
    border-color: #e74c3c;
}

.form-group.has-success input,
.form-group.has-success select,
.form-group.has-success textarea {
    border-color: #3fcf8e;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy);
    font-weight: 700;
    font-size: 1rem;
    border-radius: var(--radius-md);
    transition: var(--transition);
    position: relative;
    cursor: none;
}

    .btn-submit:hover:not(:disabled) {
        transform: translateY(-3px);
        box-shadow: 0 8px 30px rgba(201,168,76,.4);
    }

    .btn-submit:disabled {
        opacity: .7;
    }

.btn-loader {
    display: none;
}

.btn-submit.loading .btn-text {
    display: none;
}

.btn-submit.loading .btn-loader {
    display: inline-block;
}

.form-response {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: var(--radius-sm);
    font-size: .88rem;
    text-align: center;
    display: none;
}

    .form-response.success {
        background: rgba(63,207,142,.12);
        border: 1px solid rgba(63,207,142,.3);
        color: #3fcf8e;
        display: block;
    }

    .form-response.error {
        background: rgba(231,76,60,.12);
        border: 1px solid rgba(231,76,60,.3);
        color: #e74c3c;
        display: block;
    }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--navy);
    border-top: 1px solid var(--border);
}

.footer-top {
    padding: clamp(50px, 6vw, 80px) 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 1rem;
}

    .footer-logo span {
        color: var(--gold);
    }

.footer-brand p {
    font-size: .88rem;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: .7rem;
}

    .footer-social a {
        width: 38px;
        height: 38px;
        border: 1px solid var(--border);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--muted);
        font-size: .85rem;
        transition: var(--transition);
    }

        .footer-social a:hover {
            color: var(--gold);
            border-color: var(--gold);
            transform: translateY(-4px);
        }

.footer-col h4 {
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--cream);
    margin-bottom: 1.4rem;
    position: relative;
    padding-bottom: .8rem;
}

    .footer-col h4::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 28px;
        height: 2px;
        background: var(--gold);
        border-radius: 2px;
    }

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: .7rem;
}

    .footer-col ul li a {
        font-size: .88rem;
        color: var(--muted);
        transition: color .3s;
    }

        .footer-col ul li a:hover {
            color: var(--gold);
            padding-left: 4px;
            transition: color .3s, padding-left .3s;
        }

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: .7rem;
    font-size: .85rem;
    color: var(--muted);
}

    .footer-contact-list li i {
        color: var(--gold);
        margin-top: .15rem;
        flex-shrink: 0;
    }

    .footer-contact-list li a {
        color: var(--muted);
        transition: color .3s;
    }

        .footer-contact-list li a:hover {
            color: var(--gold);
        }

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 1.4rem 0;
}

    .footer-bottom .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: .5rem;
    }

    .footer-bottom p {
        font-size: .82rem;
        color: var(--muted);
    }

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

    .footer-legal a {
        font-size: .78rem;
        color: var(--muted);
        transition: color .3s;
    }

        .footer-legal a:hover {
            color: var(--gold);
        }

/* ============================================================
   FLOATING WhatsApp BUTTON
   ============================================================ */
.fab-whatsapp {
    position: fixed;
    bottom: 2.2rem;
    right: 2.2rem;
    z-index: 999;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 6px 28px rgba(37,211,102,.4);
    transition: var(--transition);
    animation: fabPulse 2.5s ease-in-out infinite;
}

    .fab-whatsapp:hover {
        transform: scale(1.12) translateY(-4px);
        box-shadow: 0 10px 36px rgba(37,211,102,.6);
    }

@keyframes fabPulse {
    0%,100% {
        box-shadow: 0 6px 28px rgba(37,211,102,.4);
    }

    50% {
        box-shadow: 0 6px 40px rgba(37,211,102,.7);
    }
}

.fab-tooltip {
    position: absolute;
    right: 68px;
    bottom: 50%;
    transform: translateY(50%);
    background: var(--navy-mid);
    color: var(--cream);
    font-size: .8rem;
    font-weight: 600;
    padding: .4rem .85rem;
    border-radius: 100px;
    border: 1px solid var(--border);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s, right .3s;
}

.fab-whatsapp:hover .fab-tooltip {
    opacity: 1;
    right: 74px;
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
#backToTop {
    position: fixed;
    bottom: 2.2rem;
    left: 2.2rem;
    z-index: 999;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--navy-light);
    border: 1px solid var(--border);
    color: var(--gold);
    font-size: .9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: var(--transition);
}

    #backToTop.visible {
        opacity: 1;
        pointer-events: all;
        transform: translateY(0);
    }

    #backToTop:hover {
        background: var(--gold);
        color: var(--navy);
        border-color: var(--gold);
    }

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal-up, .reveal-left, .reveal-right {
    opacity: 0;
    transition: opacity .7s ease, transform .7s ease;
}

.reveal-up {
    transform: translateY(40px);
}

.reveal-left {
    transform: translateX(-50px);
}

.reveal-right {
    transform: translateX(50px);
}

    .reveal-up.visible, .reveal-left.visible, .reveal-right.visible {
        opacity: 1;
        transform: translate(0,0);
    }

/* Stagger children inside grids */
.prop-grid .prop-card:nth-child(2) {
    transition-delay: .1s;
}

.prop-grid .prop-card:nth-child(3) {
    transition-delay: .2s;
}

.prop-grid .prop-card:nth-child(4) {
    transition-delay: .3s;
}

.prop-grid .prop-card:nth-child(5) {
    transition-delay: .4s;
}

.prop-grid .prop-card:nth-child(6) {
    transition-delay: .5s;
}

.services-grid .service-card:nth-child(2) {
    transition-delay: .1s;
}

.services-grid .service-card:nth-child(3) {
    transition-delay: .2s;
}

.services-grid .service-card:nth-child(4) {
    transition-delay: .3s;
}

.services-grid .service-card:nth-child(5) {
    transition-delay: .4s;
}

.services-grid .service-card:nth-child(6) {
    transition-delay: .5s;
}

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .img-secondary {
        right: 0;
        bottom: -30px;
    }

    .about-badge-float {
        right: 0;
    }

    .about-text .section-title {
        text-align: left;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: span 2;
    }

    .testi-card {
        flex: 0 0 calc(50% - .75rem);
    }

    .nav-social {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-social {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: clamp(2.4rem, 8vw, 3.5rem);
    }

    .search-bar {
        flex-direction: column;
    }

    .search-field {
        min-width: 100%;
    }

    .btn-search {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        gap: 1rem;
    }

    .stat-divider {
        display: none;
    }

    .prop-grid {
        grid-template-columns: 1fr;
    }

    .about-images {
        display: none;
    }
    /* Hide heavy imagery on small screens */

    .services-grid {
        grid-template-columns: 1fr;
    }

    .testi-card {
        flex: 0 0 100%;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: span 1;
    }

    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.2rem;
    }

    .nav-container {
        padding: 1rem 1.2rem;
    }

    .hero {
        padding: 120px 1.2rem 60px;
    }

    .hero-stats {
        padding: 1.2rem;
    }

    .stat-num {
        font-size: 1.8rem;
    }

    .fab-whatsapp {
        bottom: 1.5rem;
        right: 1.5rem;
    }

    #backToTop {
        bottom: 1.5rem;
        left: 1.5rem;
    }

    .contact-form-wrap {
        padding: 1.5rem;
    }
}
