:root {
    --navy:      #011e3a;
    --navy2:     #012d56;
    --ocean:     #0057b8;
    --ocean2:    #0070e0;
    --sky:       #0096d6;
    --turquoise: #00b4d8;
    --aqua:      #48cae4;
    --light-blue:#ade8f4;
    --green:     #06d6a0;
    --green2:    #00b589;
    --white:     #ffffff;
    --off:       #f0f8ff;
    --gray:      #4a6580;
    --gray-light:#8fa8bf;
    --dark:      #020f1e;
    --border:    #c8e6f5;
    --shadow:    0 4px 24px rgba(0,50,100,0.13);
    --shadow-lg: 0 12px 48px rgba(0,50,100,0.18);
    --r: 12px;
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:16px; }

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--dark);
    background: var(--white);
    line-height: 1.65;
    overflow-x: hidden;
}

h1,h2,h3,h4,h5 { font-family:'Sora',sans-serif; line-height:1.2; }
a { text-decoration:none; color:inherit; }
img { max-width:100%; display:block; }

.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── HEADER ── */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 200;
    background: rgba(1,30,58,0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(0,150,214,0.22);
    transition: background 0.3s, box-shadow 0.3s;
}
.site-header.scrolled {
    background: rgba(1,30,58,1);
    box-shadow: 0 2px 22px rgba(0,0,0,0.35);
}

.header-inner {
    display: flex;
    align-items: center;
    height: 68px;
    gap: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    text-decoration: none;
}
.logo-img {
    height: 46px;
    width: auto;
    display: block;
    background: #ffffff;
    padding: 5px 12px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.12);
}
.logo-text {
    font-family: 'Sora', sans-serif;
    font-size: 1.2rem;
    color: #ffffff;
    letter-spacing: -0.3px;
    white-space: nowrap;
}
.logo-text strong { color: var(--aqua); font-weight: 800; }

.main-nav {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-left: auto;
    margin-right: 16px;
}

.nav-link {
    padding: 7px 12px;
    font-family: 'Sora', sans-serif;
    font-size: 0.845rem;
    font-weight: 600;
    color: rgba(255,255,255,0.72);
    border-radius: 7px;
    transition: all 0.2s;
    white-space: nowrap;
    display: block;
}
.nav-link:hover { color: #ffffff; background: rgba(0,150,214,0.18); }
.nav-link.active { color: var(--aqua); background: rgba(0,150,214,0.14); }

.btn-header-cta {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 9px 18px;
    background: var(--green);
    color: #ffffff;
    font-family: 'Sora', sans-serif;
    font-size: 0.84rem;
    font-weight: 700;
    border-radius: 8px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.2s, transform 0.15s;
    text-decoration: none;
}
.btn-header-cta:hover { background: var(--green2); transform: translateY(-1px); }

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    margin-left: 12px;
    flex-shrink: 0;
}
.hamburger span {
    display: block;
    width: 23px; height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s;
    transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 150;
}
.nav-overlay.open { display: block; }

/* ── HERO ── */
.hero {
    min-height: 100vh;
    background: linear-gradient(155deg, var(--navy) 0%, var(--navy2) 35%, #013a6e 65%, #014f8a 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 68px;
}
.hero-waves { position: absolute; bottom: 0; left: 0; right: 0; pointer-events: none; }
.hero-dots {
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(0,180,216,0.13) 1px, transparent 1px);
    background-size: 34px 34px;
    pointer-events: none;
}
.hero-glow {
    position: absolute;
    width: 700px; height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,150,214,0.18) 0%, transparent 68%);
    top: -120px; right: -150px;
    pointer-events: none;
}
.hero-glow2 {
    position: absolute;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(6,214,160,0.1) 0%, transparent 70%);
    bottom: 60px; left: -80px;
    pointer-events: none;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 80px 0;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,150,214,0.16);
    border: 1px solid rgba(0,180,216,0.38);
    color: var(--aqua);
    font-family: 'Sora', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 20px;
    margin-bottom: 26px;
    animation: fadeUp 0.6s ease both;
}
.hero-badge-dot {
    width: 7px; height: 7px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
.hero h1 {
    font-size: clamp(2.5rem, 5.5vw, 4.2rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    animation: fadeUp 0.6s 0.1s ease both;
    letter-spacing: -1.2px;
    line-height: 1.1;
}
.hero h1 span { color: var(--aqua); }
.hero-sub {
    font-size: 1.08rem;
    color: rgba(255,255,255,0.68);
    max-width: 540px;
    margin-bottom: 38px;
    animation: fadeUp 0.6s 0.2s ease both;
}
.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeUp 0.6s 0.3s ease both;
}
.hero-stats {
    display: flex;
    gap: 44px;
    margin-top: 58px;
    animation: fadeUp 0.6s 0.4s ease both;
    flex-wrap: wrap;
}
.hero-stat-num {
    font-family: 'Sora', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--aqua);
    line-height: 1;
}
.hero-stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.52); margin-top: 4px; }

/* ── BUTTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 9px;
    font-family: 'Sora', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    text-align: center;
    text-decoration: none;
}
.btn-primary { background: var(--turquoise); color: #ffffff; }
.btn-primary:hover { background: var(--sky); transform: translateY(-2px); box-shadow: 0 8px 26px rgba(0,180,216,0.38); }
.btn-green { background: var(--green); color: #ffffff; }
.btn-green:hover { background: var(--green2); transform: translateY(-2px); box-shadow: 0 8px 26px rgba(6,214,160,0.36); }
.btn-outline-white { background: transparent; color: #ffffff; border: 2px solid rgba(255,255,255,0.36); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--ocean2); border: 2px solid var(--ocean2); }
.btn-outline:hover { background: var(--ocean2); color: #ffffff; }
.btn-navy { background: var(--navy2); color: #ffffff; }
.btn-navy:hover { background: var(--navy); transform: translateY(-2px); }

/* ── SECTIONS ── */
.section { padding: 88px 0; }
.section-alt { background: var(--off); }

.section-label {
    display: inline-block;
    font-family: 'Sora', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: var(--turquoise);
    margin-bottom: 10px;
}
.section-title {
    font-size: clamp(1.7rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}
.section-title span { color: var(--ocean2); }
.section-sub { font-size: 1rem; color: var(--gray); max-width: 560px; }
.section-head { margin-bottom: 52px; }
.section-head.centered { text-align: center; }
.section-head.centered .section-sub { margin: 0 auto; }

/* ── SERVICE CARDS ── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.service-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--r);
    padding: 34px 26px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--turquoise), var(--green));
    opacity: 0;
    transition: opacity 0.3s;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--turquoise); }
.service-card:hover::before { opacity: 1; }
.service-icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, #cceeff, #c0f5eb);
    border-radius: 13px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
    color: var(--ocean2);
}
.service-card h3 { font-size: 1.04rem; font-weight: 700; margin-bottom: 10px; color: var(--dark); }
.service-card p { font-size: 0.87rem; color: var(--gray); line-height: 1.72; }

/* ── WHY GRID ── */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}
.why-image-wrap { position: relative; }
.why-image-bg {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--navy2) 0%, var(--ocean) 60%, var(--turquoise) 100%);
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.why-image-badge {
    position: absolute;
    bottom: -20px; right: -20px;
    background: var(--white);
    border-radius: 14px;
    padding: 16px 20px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    min-width: 120px;
}
.why-image-badge strong {
    display: block;
    font-family: 'Sora', sans-serif;
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--ocean2);
    line-height: 1;
}
.why-image-badge span { font-size: 0.76rem; color: var(--gray); font-weight: 500; }
.why-list { margin-top: 26px; display: flex; flex-direction: column; gap: 14px; }
.why-item { display: flex; gap: 13px; align-items: flex-start; }
.why-item-icon {
    width: 38px; height: 38px;
    background: linear-gradient(135deg, var(--turquoise), var(--green));
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: #ffffff;
    flex-shrink: 0;
    margin-top: 2px;
}
.why-item-text strong { display: block; font-size: 0.93rem; font-weight: 700; margin-bottom: 2px; }
.why-item-text span { font-size: 0.84rem; color: var(--gray); }

/* ── LISTINGS ── */
.listings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.listing-card {
    background: var(--white);
    border-radius: var(--r);
    overflow: hidden;
    border: 1.5px solid var(--border);
    transition: all 0.3s;
}
.listing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.listing-img {
    width: 100%;
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, var(--navy2) 0%, var(--ocean) 100%);
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
}
.listing-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.listing-tag {
    position: absolute; top: 12px; left: 12px;
    padding: 4px 11px;
    border-radius: 20px;
    font-family: 'Sora', sans-serif;
    font-size: 0.7rem; font-weight: 700; letter-spacing: 0.4px;
}
.tag-sale { background: var(--green); color: #ffffff; }
.tag-rent { background: var(--turquoise); color: #ffffff; }
.listing-body { padding: 18px; }
.listing-body h3 { font-size: 0.96rem; font-weight: 700; margin-bottom: 8px; color: var(--dark); }
.listing-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.listing-meta-item { display: flex; align-items: center; gap: 4px; font-size: 0.77rem; color: var(--gray); }
.listing-price { font-family: 'Sora', sans-serif; font-size: 1.15rem; font-weight: 800; color: var(--ocean2); }
.listing-price small { font-size: 0.72rem; font-weight: 500; color: var(--gray); }

/* ── CONTACT ── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 52px;
    align-items: start;
}
.contact-info-items { margin-top: 30px; display: flex; flex-direction: column; gap: 18px; }
.contact-info-item { display: flex; align-items: center; gap: 15px; }
.contact-info-icon {
    width: 46px; height: 46px;
    background: linear-gradient(135deg, #cceeff, #c0f5eb);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--ocean2);
    flex-shrink: 0;
}
.contact-info-item strong { display: block; font-size: 0.75rem; font-weight: 700; color: var(--gray); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 2px; }
.contact-info-item a, .contact-info-item span { font-size: 0.93rem; font-weight: 600; color: var(--dark); }
.contact-info-item a:hover { color: var(--ocean2); }
.contact-form-wrap {
    background: var(--white);
    border-radius: 16px;
    padding: 34px;
    box-shadow: var(--shadow);
    border: 1.5px solid var(--border);
}
.contact-form-wrap h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: 22px; color: var(--dark); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 13px; }
.form-group label { font-size: 0.75rem; font-weight: 700; color: var(--gray); text-transform: uppercase; letter-spacing: 0.5px; }
.form-group input,
.form-group select,
.form-group textarea {
    padding: 10px 13px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--dark);
    background: var(--white);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--turquoise);
    box-shadow: 0 0 0 3px rgba(0,180,216,0.12);
}
.form-group textarea { resize: vertical; min-height: 105px; }
.form-success {
    display: none;
    background: #d0fdf4;
    border: 1px solid #6ee7d8;
    color: #065f46;
    padding: 13px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.88rem;
    margin-bottom: 14px;
}

/* ── PAGE HERO ── */
.page-hero {
    background: linear-gradient(140deg, var(--navy) 0%, var(--navy2) 45%, #013a6e 100%);
    padding: 128px 0 68px;
    position: relative;
    overflow: hidden;
}
.page-hero::after {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(0,180,216,0.09) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(1.9rem, 4vw, 2.9rem); font-weight: 800; color: #ffffff; margin-bottom: 10px; }
.page-hero p { font-size: 0.97rem; color: rgba(255,255,255,0.65); max-width: 520px; }
.breadcrumb { display: flex; align-items: center; gap: 7px; font-size: 0.78rem; color: rgba(255,255,255,0.42); margin-bottom: 14px; }
.breadcrumb a { color: var(--aqua); }
.breadcrumb-sep { opacity: 0.35; }

/* ── FILTER BAR ── */
.filter-bar {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--r);
    padding: 18px 22px;
    margin-bottom: 30px;
    display: flex; gap: 13px; flex-wrap: wrap; align-items: flex-end;
}
.filter-bar .form-group { margin-bottom: 0; flex: 1; min-width: 150px; }

/* ── BLOG ── */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.blog-card {
    background: var(--white);
    border-radius: var(--r);
    overflow: hidden;
    border: 1.5px solid var(--border);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-img {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--navy2) 0%, var(--ocean) 70%, var(--turquoise) 100%);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; position: relative;
    flex-shrink: 0;
}
.blog-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.blog-cat {
    position: absolute; top: 12px; left: 12px;
    background: var(--turquoise);
    color: #ffffff;
    font-family: 'Sora', sans-serif;
    font-size: 0.68rem; font-weight: 700;
    padding: 3px 10px; border-radius: 20px;
    letter-spacing: 0.3px;
}
.blog-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.blog-meta { display: flex; align-items: center; gap: 10px; font-size: 0.76rem; color: var(--gray-light); margin-bottom: 10px; }
.blog-meta span { display: flex; align-items: center; gap: 4px; }
.blog-body h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; line-height: 1.4; }
.blog-body p { font-size: 0.86rem; color: var(--gray); line-height: 1.68; flex: 1; }
.blog-read-more {
    display: inline-flex; align-items: center; gap: 5px;
    margin-top: 16px;
    font-family: 'Sora', sans-serif;
    font-size: 0.82rem; font-weight: 700;
    color: var(--ocean2);
    transition: gap 0.2s;
}
.blog-read-more:hover { gap: 8px; color: var(--turquoise); }

.blog-detail-wrap { max-width: 780px; margin: 0 auto; }
.blog-detail-img {
    width: 100%; aspect-ratio: 16/7;
    background: linear-gradient(135deg, var(--navy2), var(--ocean), var(--turquoise));
    border-radius: 14px; overflow: hidden; margin-bottom: 36px;
    display: flex; align-items: center; justify-content: center;
}
.blog-content { font-size: 1rem; color: var(--gray); line-height: 1.85; }
.blog-content h2 { font-size: 1.4rem; font-weight: 700; color: var(--dark); margin: 32px 0 12px; }
.blog-content h3 { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin: 24px 0 8px; }
.blog-content p { margin-bottom: 16px; }
.blog-content ul, .blog-content ol { padding-left: 22px; margin-bottom: 16px; }
.blog-content li { margin-bottom: 6px; }
.blog-content strong { color: var(--dark); font-weight: 700; }

/* ── FOOTER ── */
.site-footer {
    background: var(--navy);
    color: rgba(255,255,255,0.68);
    padding-top: 60px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
    gap: 36px;
    padding-bottom: 44px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand .footer-logo {
    display: flex; align-items: center; gap: 10px;
    font-family: 'Sora', sans-serif;
    font-size: 1.1rem; color: #ffffff; font-weight: 700;
    margin-bottom: 12px;
}
.footer-brand .footer-logo strong { color: var(--aqua); }
.footer-logo-img {
    height: 52px; width: auto; display: block;
    background: #ffffff; padding: 6px 12px; border-radius: 10px;
}
.footer-domain { margin-top: 10px; font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.footer-brand p { font-size: 0.85rem; line-height: 1.74; max-width: 280px; }
.footer-col h4 {
    font-family: 'Sora', sans-serif;
    font-size: 0.8rem; font-weight: 700;
    color: #ffffff; letter-spacing: 0.5px;
    margin-bottom: 14px; text-transform: uppercase;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a { font-size: 0.85rem; color: rgba(255,255,255,0.58); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--aqua); }
.footer-contact { list-style: none; }
.footer-contact li { display: flex; align-items: center; gap: 9px; font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: 11px; }
.footer-contact li svg { color: var(--turquoise); flex-shrink: 0; }
.footer-contact li a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-contact li a:hover { color: var(--aqua); }
.footer-bottom {
    padding: 18px 0;
    display: flex; align-items: center; justify-content: space-between;
    font-size: 0.79rem; color: rgba(255,255,255,0.36);
}
.whatsapp-btn {
    display: flex; align-items: center; gap: 7px;
    background: #25d366; color: #ffffff;
    font-family: 'Sora', sans-serif;
    font-size: 0.79rem; font-weight: 700;
    padding: 7px 15px; border-radius: 20px;
    transition: background 0.2s; text-decoration: none;
}
.whatsapp-btn:hover { background: #1da851; }
.float-whatsapp {
    position: fixed;
    bottom: 26px; right: 26px;
    width: 54px; height: 54px;
    background: #25d366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #ffffff;
    box-shadow: 0 4px 18px rgba(37,211,102,0.44);
    z-index: 100;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
}
.float-whatsapp:hover { transform: scale(1.1); box-shadow: 0 8px 26px rgba(37,211,102,0.5); }

/* ── COOKIE BANNER ── */
.cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--navy);
    border-top: 2px solid var(--turquoise);
    z-index: 9999;
    padding: 18px 0;
    transform: translateY(0);
    transition: transform 0.4s ease;
}
.cookie-banner.hidden { transform: translateY(110%); }
.cookie-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.cookie-text { font-size: 0.86rem; color: rgba(255,255,255,0.78); line-height: 1.6; flex: 1; min-width: 260px; }
.cookie-text strong { color: #ffffff; }
.cookie-text a { color: var(--aqua); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn {
    padding: 9px 20px;
    border-radius: 8px;
    font-family: 'Sora', sans-serif;
    font-size: 0.84rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
}
.cookie-btn-accept { background: var(--green); color: #ffffff; }
.cookie-btn-accept:hover { background: var(--green2); }
.cookie-btn-decline { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.2); }
.cookie-btn-decline:hover { background: rgba(255,255,255,0.18); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
    0%,100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.5; transform: scale(1.4); }
}
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .why-grid { gap: 32px; }
    .main-nav { gap: 0; }
    .nav-link { padding: 7px 9px; font-size: 0.82rem; }
}
@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: 68px; left: 0; right: 0;
        background: rgba(1,30,58,0.99);
        flex-direction: column;
        align-items: stretch;
        padding: 12px 16px 20px;
        gap: 2px;
        transform: translateY(-110%);
        opacity: 0;
        transition: transform 0.32s ease, opacity 0.32s ease;
        z-index: 190;
        border-bottom: 1px solid rgba(0,150,214,0.2);
        margin-right: 0;
    }
    .main-nav.open { transform: translateY(0); opacity: 1; }
    .nav-link { padding: 13px 16px; font-size: 1rem; border-radius: 8px; }
    .btn-header-cta { display: none; }
    .hamburger { display: flex; }
    .hero-content { padding: 52px 0; }
    .hero-stats { gap: 22px; }
    .services-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .listings-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .why-image-wrap { display: none; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 26px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .form-row { grid-template-columns: 1fr; }
    .section { padding: 58px 0; }
    .contact-form-wrap { padding: 22px; }
    .cookie-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
    .hero h1 { font-size: 2rem; }
    .hero-actions { flex-direction: column; }
    .btn { justify-content: center; width: 100%; }
    .hero-stats { gap: 18px; }
    .filter-bar { flex-direction: column; }
    .filter-bar .form-group { min-width: 100%; }
    .page-hero { padding: 108px 0 52px; }
    .cookie-actions { width: 100%; flex-direction: column; }
    .cookie-btn { width: 100%; text-align: center; }
}

.container-narrow { max-width: 820px; }

.filter-submit { justify-content: flex-end; display: flex; align-items: flex-end; }

.empty-state { text-align: center; padding: 60px 0; color: var(--gray); }
.empty-title { font-size: 1.1rem; font-weight: 600; }
.empty-link { color: var(--ocean); margin-top: 12px; display: inline-block; }

.cta-box { margin-top: 48px; padding: 28px; background: var(--off); border-radius: var(--r); border: 1.5px solid var(--border); text-align: center; }
.cta-box-title { font-weight: 700; color: var(--dark); margin-bottom: 8px; font-family: 'Sora', sans-serif; font-size: 1.15rem; }
.cta-box-sub { font-size: 0.9rem; color: var(--gray); margin-bottom: 18px; }

.service-desc { margin-bottom: 14px; }
.service-list { font-size: 0.88rem; color: var(--gray); line-height: 2; padding-left: 16px; }

.listing-card { display: block; color: inherit; }
.listing-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 12px; gap: 10px; }
.listing-detail-btn { padding: 7px 16px; font-size: 0.8rem; }
.listing-img { background-color: var(--ocean); }

.detail-grid { display: grid; grid-template-columns: 1fr 360px; gap: 36px; align-items: start; }
.detail-cover { width: 100%; height: 420px; border-radius: var(--r); background-size: cover; background-position: center; background-color: var(--ocean); }
.detail-cover-empty { display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--ocean), var(--navy)); }
.detail-thumbs { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.detail-thumb { width: 88px; height: 64px; border-radius: 9px; border: 2px solid transparent; background-size: cover; background-position: center; cursor: pointer; transition: 0.15s; padding: 0; }
.detail-thumb.active, .detail-thumb:hover { border-color: var(--sky); }
.detail-section { margin-top: 32px; }
.detail-section h2 { font-size: 1.25rem; margin-bottom: 12px; color: var(--dark); }
.detail-section p { color: var(--gray); line-height: 1.8; }
.feature-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.feature-tag { display: inline-flex; align-items: center; gap: 7px; padding: 8px 14px; background: var(--off); border: 1.5px solid var(--border); border-radius: 24px; font-size: 0.85rem; font-weight: 600; color: var(--dark); }
.feature-tag svg { color: var(--green); }

.detail-side { position: sticky; top: 90px; }
.detail-price-box { background: #fff; border: 1.5px solid var(--border); border-radius: var(--r); padding: 24px; box-shadow: var(--shadow); }
.detail-tag { display: inline-block; padding: 4px 13px; border-radius: 20px; font-size: 0.78rem; font-weight: 700; margin-bottom: 14px; }
.detail-tag.tag-sale { background: #e6f7ee; color: #0a8a4f; }
.detail-tag.tag-rent { background: #e8f1fd; color: var(--ocean); }
.detail-price { font-family: 'Sora', sans-serif; font-size: 1.9rem; font-weight: 800; color: var(--ocean); margin-bottom: 18px; }
.detail-price small { font-size: 0.95rem; color: var(--gray); font-weight: 600; }
.detail-specs { list-style: none; margin-bottom: 20px; }
.detail-specs li { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid var(--border); font-size: 0.9rem; }
.detail-specs li:last-child { border-bottom: none; }
.detail-specs li span { color: var(--gray); }
.detail-specs li strong { color: var(--dark); }
.detail-cta { width: 100%; justify-content: center; margin-bottom: 10px; }
.btn-whatsapp { background: #25d366; color: #fff; }
.btn-whatsapp:hover { background: #20bd5a; }

.blog-card { display: block; color: inherit; }
.blog-card-img { height: 200px; border-radius: var(--r) var(--r) 0 0; background: linear-gradient(135deg, var(--ocean), var(--navy)); display: flex; align-items: center; justify-content: center; position: relative; }
.blog-card-body { padding: 22px; }
.blog-card-body h3 { font-size: 1.15rem; margin-bottom: 10px; color: var(--dark); }
.blog-card-body p { font-size: 0.9rem; color: var(--gray); line-height: 1.7; margin-bottom: 14px; }
.blog-meta { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: var(--gray-light); margin-bottom: 10px; }
.blog-meta-dot { opacity: 0.6; }
.blog-readmore { display: inline-flex; align-items: center; gap: 6px; font-size: 0.85rem; font-weight: 700; color: var(--ocean); }
.blog-cat { position: absolute; top: 14px; left: 14px; background: rgba(255,255,255,0.92); color: var(--ocean); padding: 5px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: 700; }

.article-cover { width: 100%; height: 360px; border-radius: var(--r); background-size: cover; background-position: center; margin-bottom: 28px; }
.article-body { font-size: 1.02rem; line-height: 1.85; color: var(--gray); }
.article-body h2 { font-family: 'Sora', sans-serif; font-size: 1.4rem; color: var(--dark); margin: 28px 0 12px; }
.article-body p { margin-bottom: 16px; }
.article-body ul { margin: 0 0 16px 22px; }
.article-body li { margin-bottom: 8px; }
.article-body strong { color: var(--dark); }
.article-cta { margin-top: 40px; padding: 28px; background: var(--off); border-radius: var(--r); text-align: center; border: 1.5px solid var(--border); }

.map-section { line-height: 0; }
.map-section iframe { filter: grayscale(0.1); }

@media (max-width: 900px) {
    .detail-grid { grid-template-columns: 1fr; gap: 24px; }
    .detail-side { position: static; }
    .detail-cover { height: 280px; }
    .article-cover { height: 220px; }
}
