/*
Theme Name: Elite VIP Services
Theme URI: elite-vip-services.com
Description: Luxury VIP Services Theme
Version: 1.0
*/
/* Core Variables & Theme Support (Permanently Dark) */
:root {
    --bg-dark: #0a0a0a;
    --bg-darker: #050505;
    --bg-card: #111111;
    --bg-pure: #000000;
    --text-main: #ffffff;
    --text-muted: #aaaaaa;
    
    --gold: #c9a96e;
    --gold-hover: #e0c28b;
    --gold-dark: #a68751;
    
    --border-color: rgba(255, 255, 255, 0.05);
    
    /* Luxury Typography Stack */
    --font-heading: 'Cormorant Garamond', serif;
    --font-nav: 'Josefin Sans', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    --font-accent: 'Raleway', sans-serif;
    
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Base Styles */
body { margin: 0; padding: 0; }
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.8;
    overflow-x: hidden;
}

h1, h2 { 
    font-family: var(--font-heading); 
    font-weight: 300; 
    letter-spacing: 0.05em; 
}
h3, h4, h5, h6 { 
    font-family: var(--font-heading); 
    font-weight: 400; 
    letter-spacing: 0.05em; 
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; border: none; outline: none; background: none; }

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.section-padding { padding: 100px 40px; }
.section-container { max-width: 1400px; margin: 0 auto; width: 100%; }

/* Buttons & Elements */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 14px 32px; font-size: 0.9rem; font-weight: 400; text-transform: uppercase;
    letter-spacing: 0.2em; transition: var(--transition); border-radius: 2px;
    font-family: var(--font-nav);
}
.btn-outline { background-color: transparent; color: var(--text-main); border: 1px solid var(--gold); }
.btn-outline:hover { background-color: var(--gold); color: #000; box-shadow: 0 0 15px rgba(201, 169, 110, 0.4); }
.btn-primary { background-color: var(--gold); color: #000; border: 1px solid var(--gold); }
.btn-primary:hover { background-color: var(--gold-hover); box-shadow: 0 0 20px rgba(201, 169, 110, 0.6); transform: translateY(-2px); }

/* Navbar: Liquid Glass Effect */
.navbar {
    position: fixed; top: 0; left: 0; width: 100%;
    padding: 24px 0; z-index: 999;
    transition: all 0.5s ease;
    background: transparent;
    border-bottom: 1px solid transparent;
}
.navbar.scrolled {
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.85) 0%,
        rgba(0,0,0,0.6) 70%,
        rgba(0,0,0,0.0) 100%
    ) !important;
    padding: 15px 0;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border-bottom: 1px solid rgba(201,169,110,0.15) !important;
}
.nav-container {
    max-width: 1400px; margin: 0 auto; padding: 0 40px;
    display: flex; justify-content: space-between; align-items: center;
}
.brand-logo { height: 60px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 40px; }
.nav-links a:not(.btn) { 
    font-family: var(--font-nav);
    font-weight: 300;
    font-size: 0.9rem; 
    text-transform: uppercase; 
    letter-spacing: 0.15em; 
    color: #FFF; 
}
.nav-links a:not(.btn):hover { color: var(--gold); }
.mobile-menu-btn { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.mobile-menu-btn span { display: block; width: 25px; height: 2px; background-color: var(--gold); }

/* Hero Section */
.hero { position: relative; height: 100vh; min-height: 700px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; overflow: hidden; }
.hero-image { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); }
.hero-overlay { position: absolute; top:0; left:0; width:100%; height:100%; background: linear-gradient(to bottom, rgba(10,10,10,0.4), var(--bg-dark)); }
.hero-content { z-index: 10; margin-top: 50px; }
.hero h1 { font-size: 5rem; margin-bottom: 10px; color: #FFF; text-shadow: 0 5px 20px rgba(0,0,0,0.7); }
.hero .tagline { 
    font-family: var(--font-body);
    font-size: 1.4rem; 
    font-weight: 300; 
    letter-spacing: 5px; 
    color: rgba(255,255,255,0.8); 
    text-transform: uppercase; 
}

/* Bouncing Arrow */
.scroll-down-arrow {
    position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); z-index: 10;
    width: 40px; height: 40px; animation: bounce 2s infinite ease-in-out;
}
@keyframes bounce {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 15px); }
}

/* Services / Black Edition Cards Section */
.section-header h2 { font-size: 2.5rem; text-transform: uppercase; color: #FFF; }
.separator { width: 60px; height: 2px; background-color: var(--gold); margin-top: 20px; }

.destinations-filter { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin: 40px 0 60px; }
.filter-btn {
    font-family: var(--font-nav);
    padding: 12px 30px; background-color: var(--bg-card); border: 1px solid var(--border-color);
    color: var(--text-main); font-size: 0.95rem; font-weight: 400; letter-spacing: 2px; text-transform: uppercase;
    border-radius: 50px; transition: var(--transition);
}
.filter-btn:hover { border-color: rgba(201, 169, 110, 0.4); box-shadow: 0 0 10px rgba(201, 169, 110, 0.1); }
.filter-btn.active { border-color: var(--gold); background-color: rgba(201, 169, 110, 0.05); color: var(--gold); }

.services-wrapper { min-height: 500px; display: flex; flex-direction: column; gap: 40px; }
.black-edition-card {
    display: flex; flex-direction: row; background-color: var(--bg-pure);
    border: 1px solid var(--border-color); border-radius: 8px; overflow: hidden; height: 450px;
    width: 100%;
}
.black-edition-card:hover { border-color: rgba(201, 169, 110, 0.5); box-shadow: 0 0 30px rgba(201, 169, 110, 0.15); }

.black-edition-card,
.hiw-step,
.section-header {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.hiw-step:nth-child(1) { transition-delay: 0.2s; }
.hiw-step:nth-child(2) { transition-delay: 0.4s; }
.hiw-step:nth-child(3) { transition-delay: 0.6s; }

.animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.card-info { width: 40%; padding: 50px 60px; display: flex; flex-direction: column; justify-content: center; position: relative; z-index: 2; }

/* Changed to match requirements */
.location-tag { 
    font-family: var(--font-accent); 
    font-weight: 100;
    color: var(--gold); 
    font-size: 0.85rem; 
    text-transform: uppercase; 
    letter-spacing: 0.3em; 
    margin-bottom: 10px; 
}
.card-info h3 { 
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 3.5rem; 
    color: var(--text-main); 
    margin-bottom: 20px; 
    line-height: 1.1; 
    letter-spacing: 0.1em;
}
.card-info p { 
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--text-muted); 
    font-size: 1.05rem; 
    margin-bottom: 40px; 
    max-width: 90%; 
    line-height: 1.8;
}
.card-info .btn { align-self: flex-start; }

.card-visual { 
    width: 60%; position: relative; overflow: hidden; 
    background-color: #0a0a0a;
    background-image: radial-gradient(ellipse at center, rgba(201,169,110,0.05) 0%, transparent 70%);
}

.card-visual img {
    width: 100%; height: 100%; object-fit: contain; padding: 40px;
    background: transparent !important;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
    animation: floatImage 8s ease-in-out infinite alternate;
}
@keyframes floatImage {
    from { transform: scale(1.05) translateY(-5px); }
    to { transform: scale(1.05) translateY(5px); }
}

@media (max-width: 991px) {
    .black-edition-card { flex-direction: column-reverse; height: auto; }
    .card-info { width: 100%; padding: 40px; }
    .card-info h3 { font-size: 2.5rem; }
    .card-visual { width: 100%; height: 350px; }
    .card-visual::after { background: linear-gradient(0deg, var(--bg-pure) 0%, transparent 30%); }
}

/* How It Works Section - Minimal & Thin Line Version */
.how-it-works { background-color: var(--bg-dark); padding: 80px 40px; }
.hiw-container { position: relative; max-width: 1100px; margin: 60px auto 0; }
.hiw-dotted-line {
    position: absolute; top: 45px; left: 15%; right: 15%; height: 1px;
    border-top: 1px dashed rgba(201, 169, 110, 0.6); z-index: 1;
}

.hiw-grid { display: grid; grid-template-columns: repeat(3, 1fr); position: relative; z-index: 2; }
.hiw-step {
    display: flex; flex-direction: column; align-items: center; text-align: center;
    position: relative; padding: 0 40px;
}
.hiw-divider {
    position: absolute; right: 0; top: 10%; bottom: 10%; width: 1px;
    background-color: rgba(201, 169, 110, 0.2);
}

.hiw-icon-wrapper {
    width: 90px; height: 90px; border-radius: 50%; border: 1px solid var(--gold);
    background-color: var(--bg-darker); display: flex; align-items: center; justify-content: center;
    margin-bottom: 25px; color: var(--gold); transition: all 0.3s ease;
}
.hiw-icon-wrapper svg { width: 35px; height: 35px; stroke-width: 1; }

.hiw-content { display: flex; flex-direction: column; align-items: center; }

/* Changed to match requirements */
.hiw-number { 
    font-family: var(--font-accent); 
    font-size: 0.8rem; 
    font-weight: 100; 
    letter-spacing: 4px; 
    color: var(--gold); 
    margin-bottom: 10px; 
}
.hiw-title { 
    font-family: var(--font-heading); 
    font-weight: 400;
    font-size: 1.6rem; 
    color: #FFF; 
    margin-bottom: 12px; 
    transition: color 0.3s ease; 
}
.hiw-desc { 
    font-family: var(--font-body); 
    font-size: 0.9rem; 
    color: #888; 
    line-height: 1.8; 
    max-width: 250px; 
}

/* Hover effects */
.hiw-step:hover .hiw-icon-wrapper { box-shadow: 0 0 20px rgba(201, 169, 110, 0.4); background-color: rgba(201, 169, 110, 0.05); }
.hiw-step:hover .hiw-title { color: var(--gold); }

@media (max-width: 991px) {
    .hiw-grid { grid-template-columns: 1fr; gap: 50px; }
    .hiw-dotted-line { display: none; }
    .hiw-divider { display: none; }
}

/* WhatsApp Float Button (Advanced Animation) */
.whatsapp-container {
    position: fixed; bottom: 30px; right: 30px; width: 65px; height: 65px; z-index: 1000;
}
.whatsapp-float {
    position: relative; width: 100%; height: 100%; background-color: #25D366; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); z-index: 2; cursor: pointer;
}
.wa-icon { color: #FFF; transition: transform 0.4s ease; z-index: 3; }

/* Rings */
.wa-ring-1, .wa-ring-2 {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0; border-radius: 50%;
    border: 2px solid #25D366; opacity: 0; z-index: 1;
}
.wa-ring-1 { animation: pulseDouble 2s linear infinite; }
.wa-ring-2 { animation: pulseDouble 2s linear infinite 1s; } 

@keyframes pulseDouble {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* Tooltip */
.wa-tooltip {
    position: absolute; right: 85px; top: 50%; transform: translateY(-50%) translateX(20px);
    background-color: var(--bg-card); color: var(--text-main); padding: 8px 16px; border-radius: 4px;
    font-size: 0.9rem; font-family: var(--font-body); white-space: nowrap; opacity: 0; visibility: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.wa-tooltip::after {
    content: ''; position: absolute; top: 50%; right: -5px; transform: translateY(-50%);
    border-width: 5px 0 5px 6px; border-style: solid; border-color: transparent transparent transparent var(--bg-card);
}

/* Hover effects */
.whatsapp-float:hover { transform: scale(1.15); }
.whatsapp-float:hover .wa-icon { transform: rotate(-10deg) scale(1.05); }
.whatsapp-container:hover .wa-tooltip { opacity: 1; visibility: visible; transform: translateY(-50%) translateX(0); }


/* Footer */
.footer { padding: 80px 40px 30px; background-color: var(--bg-pure); border-top: 1px solid var(--border-color); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-brand .footer-logo { display: block; margin-bottom: 20px; }
.footer-desc { color: var(--text-muted); max-width: 400px; font-family: var(--font-body); font-weight: 300; }
.footer h4 { color: var(--gold); margin-bottom: 25px; font-size: 1.2rem; font-family: var(--font-heading); letter-spacing: 0.05em; font-weight: 400; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 15px; font-family: var(--font-body); font-weight: 300; }
.footer a { color: var(--text-muted); }
.footer a:hover { color: var(--gold); }
.footer-bottom { 
    padding-top: 30px; border-top: 1px solid var(--border-color); text-align: center; 
    color: var(--text-muted); font-size: 0.9rem; font-family: var(--font-body); font-weight: 300; 
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: flex; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .wa-tooltip { display: none; }
}

/* =====================
   Villas Page
   ===================== */
.villas-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
.villas-hero-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
}
.villas-hero-image {
    width: 100%; height: 100%;
    object-fit: cover;
}
.villas-hero-content {
    position: relative;
    z-index: 10;
    padding: 0 20px;
}
.villas-hero-content h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    color: #ffffff;
    text-shadow: 0 5px 20px rgba(0,0,0,0.7);
    margin-bottom: 20px;
    text-transform: uppercase;
}
.villas-hero-content p {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(255,255,255,0.75);
    letter-spacing: 0.1em;
    margin-bottom: 25px;
}

.villas-section { background-color: var(--bg-dark); }

.villas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 20px 0 60px;
    max-width: 1400px;
    margin: 0 auto;
}
.villa-card {
    background: #111111;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}
.villa-card.visible {
    opacity: 1;
    transform: translateY(0);
}
.villa-card:hover {
    border-color: rgba(201,169,110,0.5);
    box-shadow: 0 0 30px rgba(201,169,110,0.15);
    transform: translateY(-5px);
}
.villa-card.visible:hover {
    transform: translateY(-5px);
}
.villa-card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}
.villa-card-info {
    padding: 30px;
}
.villa-location {
    font-family: var(--font-accent);
    font-weight: 100;
    font-size: 0.8rem;
    letter-spacing: 0.4em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 10px;
}
.villa-name {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: 0.05em;
}
.villa-desc {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    margin-bottom: 20px;
}
.villa-specs {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.villa-spec {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    gap: 5px;
}
.villa-spec svg { flex-shrink: 0; opacity: 0.6; }

/* Image wrapper — needed for price badge overlay */
.villa-card-image-wrap {
    position: relative;
    overflow: hidden;
}
.villa-card-image-wrap .villa-card-image {
    transition: transform 0.6s ease;
}
.villa-card:hover .villa-card-image-wrap .villa-card-image {
    transform: scale(1.04);
}

/* Price badge */
.villa-price-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(10,10,10,0.85);
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: var(--font-nav);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 2px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

/* Tab count badge */
.villa-tab-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: rgba(201,169,110,0.15);
    border: 1px solid rgba(201,169,110,0.3);
    border-radius: 50%;
    font-size: 0.7rem;
    color: var(--gold);
    margin-left: 6px;
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1;
    vertical-align: middle;
}
.filter-btn.active .villa-tab-count {
    background: rgba(201,169,110,0.25);
    border-color: var(--gold);
}

/* Inquire button full width on card */
.villa-inquire-btn { width: 100%; justify-content: center; }

/* Empty state */
.villas-empty {
    text-align: center;
    padding: 80px 20px;
    color: rgba(255,255,255,0.4);
    font-family: var(--font-body);
    font-size: 1rem;
    letter-spacing: 0.05em;
}

@media (max-width: 991px) {
    .villas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .villas-hero-content h1 { font-size: 3rem; }
}
@media (max-width: 600px) {
    .villas-grid {
        grid-template-columns: 1fr;
        padding: 20px 0 40px;
    }
    .villas-hero-content h1 { font-size: 2.2rem; }
}

/* =====================
   Single Villa Page
   ===================== */

/* Hero */
.sv-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}
.sv-hero-bg {
    position: absolute;
    inset: 0;
}
.sv-hero-img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.sv-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10,10,10,0.25) 0%,
        rgba(10,10,10,0.7) 60%,
        var(--bg-dark) 100%
    );
}
.sv-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 20px 60px;
    width: 100%;
    max-width: 900px;
}
.sv-back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-nav);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-bottom: 20px;
    transition: color 0.3s ease;
}
.sv-back-link:hover { color: var(--gold); }
.sv-hero-location {
    font-family: var(--font-accent);
    font-weight: 100;
    font-size: 0.85rem;
    letter-spacing: 0.4em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 12px;
}
.sv-hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 300;
    color: #ffffff;
    letter-spacing: 0.08em;
    text-shadow: 0 4px 20px rgba(0,0,0,0.6);
    margin: 0;
}

/* Main Layout */
.sv-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: start;
}
.sv-main-photo {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 6px;
    display: block;
}
.sv-description {
    margin-top: 50px;
}
.sv-section-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 300;
    color: #fff;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}
.sv-content {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255,255,255,0.65);
    line-height: 1.9;
}
.sv-content p { margin-bottom: 1.2em; }

/* Right Panel */
.sv-details-panel {
    background: #111111;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 8px;
    padding: 40px;
    position: sticky;
    top: 110px;
}
.sv-panel-location {
    font-family: var(--font-accent);
    font-weight: 100;
    font-size: 0.78rem;
    letter-spacing: 0.4em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 10px;
}
.sv-panel-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 300;
    color: #ffffff;
    letter-spacing: 0.05em;
    margin-bottom: 14px;
    line-height: 1.2;
}
.sv-panel-price {
    display: inline-block;
    font-family: var(--font-nav);
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    color: var(--gold);
    border: 1px solid rgba(201,169,110,0.4);
    padding: 6px 16px;
    border-radius: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.sv-panel-divider {
    height: 1px;
    background: rgba(255,255,255,0.06);
    margin: 24px 0;
}
.sv-panel-excerpt {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 300;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    margin-bottom: 0;
}

/* Specs Grid */
.sv-specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.sv-spec-item {
    text-align: center;
    padding: 16px 10px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 4px;
}
.sv-spec-icon {
    color: var(--gold);
    margin-bottom: 8px;
    display: flex;
    justify-content: center;
}
.sv-spec-value {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 300;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 4px;
}
.sv-spec-label {
    font-family: var(--font-body);
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
}

/* CTA button & note */
.sv-cta-btn {
    width: 100%;
    justify-content: center;
}
.sv-cta-note {
    text-align: center;
    font-family: var(--font-body);
    font-size: 0.78rem;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.05em;
    margin: 12px 0 0;
}

/* Bottom CTA */
.sv-bottom-cta {
    background: var(--bg-darker);
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 100px 40px;
    text-align: center;
}
.sv-bottom-cta-sub {
    font-family: var(--font-accent);
    font-weight: 100;
    font-size: 0.8rem;
    letter-spacing: 0.5em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 20px;
}
.sv-bottom-cta-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 300;
    color: #ffffff;
    letter-spacing: 0.05em;
    margin-bottom: 30px;
}

/* Responsive */
@media (max-width: 1100px) {
    .sv-layout { grid-template-columns: 1fr 360px; gap: 40px; }
}
@media (max-width: 900px) {
    .sv-layout { grid-template-columns: 1fr; }
    .sv-details-panel { position: static; }
    .sv-hero-title { font-size: 2.5rem; }
    .sv-main-photo { height: 350px; }
}
@media (max-width: 600px) {
    .sv-hero { height: 55vh; min-height: 380px; }
    .sv-hero-title { font-size: 1.8rem; }
    .sv-specs-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .sv-bottom-cta-title { font-size: 2rem; }
}

/* =====================
   ISSUE FIXES — Villas Page
   ===================== */

/* Issue 1 — Hero full height */
.villas-hero {
    height: 70vh !important;
    min-height: 500px !important;
    width: 100% !important;
    position: relative !important;
    overflow: hidden !important;
}
.villas-hero-bg {
    position: absolute !important;
    top: 0 !important; left: 0 !important;
    width: 100% !important; height: 100% !important;
    z-index: 0 !important;
}
.villas-hero-bg img,
.villas-hero-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
}
.villas-hero-content {
    position: relative !important;
    z-index: 10 !important;
}

/* Issue 2 — Card image size */
.villa-card-image {
    width: 100% !important;
    height: 280px !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
}

/* Issue 3 — Typography */
.villas-hero h1,
.villas-hero-content h1 {
    font-family: 'Cormorant Garamond', serif !important;
    font-weight: 300 !important;
    font-size: 5rem !important;
    letter-spacing: 0.1em !important;
    color: #ffffff !important;
    text-transform: uppercase !important;
}
.villas-hero p,
.villas-hero-content p {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 300 !important;
    font-size: 1rem !important;
    letter-spacing: 0.3em !important;
    color: rgba(255,255,255,0.8) !important;
    text-transform: uppercase !important;
}
.villa-name {
    font-family: 'Cormorant Garamond', serif !important;
    font-weight: 300 !important;
    font-size: 2rem !important;
    letter-spacing: 0.05em !important;
    color: #ffffff !important;
}
.villa-location {
    font-family: 'Raleway', sans-serif !important;
    font-weight: 100 !important;
    font-size: 0.75rem !important;
    letter-spacing: 0.4em !important;
    color: #c9a96e !important;
    text-transform: uppercase !important;
}
.villa-desc {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 300 !important;
    font-size: 0.9rem !important;
    line-height: 1.8 !important;
    color: rgba(255,255,255,0.6) !important;
}
.villa-spec {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 300 !important;
    font-size: 0.85rem !important;
    color: rgba(255,255,255,0.5) !important;
}

/* Issue 4 — Clickable card */
.villa-card-link {
    text-decoration: none !important;
    color: inherit !important;
    display: block !important;
}
.villa-card {
    cursor: pointer !important;
    transition: all 0.4s ease !important;
}
.villa-card:hover {
    transform: translateY(-8px) !important;
    border-color: rgba(201,169,110,0.5) !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 30px rgba(201,169,110,0.1) !important;
}
/* Keep hover working after fade-in */
.villa-card.visible:hover {
    transform: translateY(-8px) !important;
}

/* VIEW VILLA label at card bottom */
.villa-card-cta {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #c9a96e;
    border-top: 1px solid rgba(201,169,110,0.2);
    padding-top: 18px;
    margin-top: 5px;
    transition: color 0.3s ease;
}
.villa-card-link:hover .villa-card-cta {
    color: #e0c28b;
}

/* =====================
   Single Villa Page (new design)
   ===================== */
.single-villa-page { background-color: #0a0a0a; }

.single-villa-hero {
    position: relative;
    height: 80vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
.single-villa-hero-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}
.single-villa-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.single-villa-hero-fallback {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}
.single-villa-hero-bg .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10,10,10,0.3) 0%,
        rgba(10,10,10,0.65) 60%,
        #0a0a0a 100%
    );
}
.single-villa-hero-content {
    position: relative;
    z-index: 10;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}
.sv-back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin-bottom: 6px;
    transition: color 0.3s ease;
}
.sv-back-link:hover { color: #c9a96e; }
.single-villa-hero-content .villa-location {
    margin-bottom: 0;
}
.single-villa-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: 5rem;
    color: #ffffff;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0;
    text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

/* Specs bar */
.single-villa-details { background-color: #0a0a0a; }
.single-villa-specs {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 60px 40px;
    border-bottom: 1px solid rgba(201,169,110,0.2);
    margin-bottom: 60px;
    flex-wrap: wrap;
}
.single-spec {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.spec-icon { font-size: 1.5rem; line-height: 1; }
.spec-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 300;
    color: #c9a96e;
    line-height: 1;
}
.spec-label {
    font-family: 'Raleway', sans-serif;
    font-weight: 100;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
}

/* Description */
.single-villa-description {
    max-width: 800px;
    margin: 0 auto 80px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.9;
    color: rgba(255,255,255,0.7);
    text-align: center;
}
.single-villa-description p { margin-bottom: 1.4em; }

/* Inquiry section */
.single-villa-inquiry {
    text-align: center;
    padding: 80px 40px;
    background: #111111;
    border: 1px solid rgba(201,169,110,0.2);
    border-radius: 8px;
    margin-bottom: 80px;
}
.single-villa-inquiry h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: 3rem;
    color: #ffffff;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}
.single-villa-inquiry p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    color: rgba(255,255,255,0.6);
    margin-bottom: 40px;
    font-size: 1rem;
    line-height: 1.8;
}
.inquiry-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Single villa responsive */
@media (max-width: 768px) {
    .single-villa-hero h1 { font-size: 3rem; }
    .single-villa-specs { gap: 30px; padding: 40px 20px; }
    .single-villa-inquiry { padding: 50px 24px; }
    .single-villa-inquiry h2 { font-size: 2.2rem; }
    .inquiry-buttons { flex-direction: column; align-items: center; }
    .inquiry-buttons .btn { width: 100%; justify-content: center; max-width: 320px; }
}
@media (max-width: 480px) {
    .single-villa-hero h1 { font-size: 2.2rem; }
    .villas-hero h1,
    .villas-hero-content h1 { font-size: 3rem !important; }
}

/* =====================
   Issue 1 — Service Explore Links
   ===================== */
.service-explore-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
    font-size: 0.85rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #c9a96e;
    text-decoration: none;
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(201,169,110,0.4);
    transition: all 0.3s ease;
    margin-top: 30px;
}
.service-explore-link:hover {
    color: #e0c28b;
    border-bottom-color: #e0c28b;
    gap: 15px;
}
.service-explore-link .arrow {
    transition: transform 0.3s ease;
    display: inline-block;
}
.service-explore-link:hover .arrow {
    transform: translateX(5px);
}

/* =====================
   Issue 2 — Villas Grid (always 3 cols) + Pagination
   ===================== */
.villas-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px;
    padding: 60px 40px;
    max-width: 1400px;
    margin: 0 auto;
}
.villas-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 40px 40px 60px;
    flex-wrap: wrap;
}
.villas-pagination a,
.villas-pagination span {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    padding: 10px 18px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 2px;
    transition: all 0.3s ease;
}
.villas-pagination a:hover,
.villas-pagination .current {
    color: #c9a96e;
    border-color: rgba(201,169,110,0.4);
    background: rgba(201,169,110,0.05);
}

/* Villas tabs as links (server-side filtering) */
.villas-filter .filter-btn {
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

@media (max-width: 991px) {
    .villas-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 600px) {
    .villas-grid { grid-template-columns: 1fr !important; padding: 20px 16px 40px; }
    .villas-pagination { padding: 20px 16px 40px; gap: 6px; }
    .villas-pagination a,
    .villas-pagination span { padding: 8px 12px; font-size: 0.78rem; }
}

/* =====================
   Issue 3 — Single Villa: new class names
   ===================== */
.sv-hero-tag {
    font-family: 'Raleway', sans-serif;
    font-weight: 100;
    font-size: 0.8rem;
    letter-spacing: 0.45em;
    color: #c9a96e;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}
.sv-desc-header {
    text-align: center;
    margin-bottom: 50px;
}
.sv-desc-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: #ffffff;
    letter-spacing: 0.08em;
    margin: 12px 0 10px;
}
.sv-location-area {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.sv-key-features {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.9;
    color: rgba(255,255,255,0.65);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}
.sv-inquiry-pre {
    font-family: 'Raleway', sans-serif;
    font-weight: 100;
    font-size: 0.75rem;
    letter-spacing: 0.5em;
    color: #c9a96e;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.sv-btn-whatsapp {
    background-color: #25D366;
    color: #ffffff;
    border: 1px solid #25D366;
    display: inline-flex;
    align-items: center;
}
.sv-btn-whatsapp:hover {
    background-color: #1ebe5d;
    border-color: #1ebe5d;
    box-shadow: 0 0 20px rgba(37,211,102,0.4);
    transform: translateY(-2px);
}
.single-villa-amenities {
    padding: 80px 40px;
    background-color: #050505;
}
.single-villa-features { background-color: #0a0a0a; }
.gallery-strip {
    height: 220px;
    overflow: hidden;
}
.gallery-strip .gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.similar-villas { background-color: #0a0a0a; }
.similar-villas-grid { padding-top: 40px; }

/* =====================
   Issue 1 — Service Explore Links (with !important)
   ===================== */
.service-explore-link {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    font-family: 'Josefin Sans', sans-serif !important;
    font-weight: 300 !important;
    font-size: 0.85rem !important;
    letter-spacing: 0.25em !important;
    text-transform: uppercase !important;
    color: #c9a96e !important;
    text-decoration: none !important;
    padding-bottom: 5px !important;
    border-bottom: 1px solid rgba(201,169,110,0.4) !important;
    transition: all 0.3s ease !important;
    margin-top: 30px !important;
}
.service-explore-link:hover {
    color: #e0c28b !important;
    border-bottom-color: #e0c28b !important;
    gap: 15px !important;
}
.service-explore-link .arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}
.service-explore-link:hover .arrow {
    transform: translateX(5px);
}

/* =====================
   Issue 2 — Service Card Visual Fix
   ===================== */
.card-visual {
    background: #000000 !important;
    position: relative !important;
    overflow: hidden !important;
}
.card-visual::before {
    content: '' !important;
    position: absolute !important;
    inset: 0 !important;
    background: radial-gradient(
        ellipse at 50% 50%,
        rgba(201,169,110,0.06) 0%,
        transparent 70%
    ) !important;
    z-index: 1 !important;
    pointer-events: none !important;
}
.card-visual img {
    mix-blend-mode: normal !important;
    object-fit: contain !important;
    padding: 20px !important;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.8)) !important;
    position: relative !important;
    z-index: 2 !important;
}

/* =====================
   Issue 3 — Single Villa Complete (sv-* classes)
   ===================== */
.sv-hero {
    position: relative;
    height: 80vh;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 80px;
}
.sv-hero-bg {
    position: absolute;
    inset: 0;
}
.sv-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.sv-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.2) 0%,
        rgba(0,0,0,0.75) 100%
    );
}
.sv-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.sv-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: 4.5rem;
    color: #fff;
    letter-spacing: 0.1em;
    margin: 0;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.sv-location {
    font-family: 'Raleway', sans-serif;
    font-weight: 100;
    font-size: 0.8rem;
    letter-spacing: 0.4em;
    color: #c9a96e;
    text-transform: uppercase;
}

/* Specs bar */
.sv-specs-bar {
    display: flex;
    justify-content: center;
    background: #111111;
    border-bottom: 1px solid rgba(201,169,110,0.2);
    flex-wrap: wrap;
}
.sv-spec {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 40px;
    border-right: 1px solid rgba(201,169,110,0.15);
}
.sv-spec:last-child { border-right: none; }
.sv-spec-icon { font-size: 1.4rem; margin-bottom: 8px; line-height: 1; }
.sv-spec-val {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 300;
    color: #c9a96e;
    line-height: 1;
}
.sv-spec-lbl {
    font-family: 'Raleway', sans-serif;
    font-weight: 100;
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    margin-top: 4px;
}

/* Gallery */
.sv-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4px;
    height: 600px;
}
.sv-gallery-main {
    height: 100%;
    overflow: hidden;
}
.sv-gallery-side {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 4px;
}
.sv-gallery-item { overflow: hidden; }
.sv-gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.sv-gallery-img:hover { transform: scale(1.05); }
.sv-gallery-strip {
    height: 220px;
    overflow: hidden;
}

/* Description */
.sv-description {
    padding: 80px 40px;
    text-align: center;
    background: #0a0a0a;
}
.sv-name {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: 3rem;
    color: #fff;
    margin-bottom: 15px;
    letter-spacing: 0.05em;
}
.sv-location-text {
    color: #c9a96e;
    font-family: 'Raleway', sans-serif;
    font-weight: 100;
    letter-spacing: 0.2em;
    font-size: 0.9rem;
    margin-bottom: 30px;
}
.sv-content {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.9;
    color: rgba(255,255,255,0.7);
    max-width: 800px;
    margin: 0 auto;
}
.sv-content p { margin-bottom: 1.2em; }

/* Amenities */
.sv-amenities {
    padding: 80px 40px;
    background: #050505;
}
.sv-amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 40px;
}
.sv-amenity-card {
    background: #111111;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 6px;
    padding: 25px 15px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.sv-amenity-card:hover {
    border-color: rgba(201,169,110,0.4);
    transform: translateY(-3px);
}
.sv-amenity-icon { font-size: 1.8rem; line-height: 1; }
.sv-amenity-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
}

/* Features */
.sv-features {
    padding: 80px 40px;
    background: #0a0a0a;
}
.sv-features-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.9;
    color: rgba(255,255,255,0.7);
    max-width: 800px;
    margin: 40px auto 0;
    text-align: center;
}
.sv-features-text p { margin-bottom: 1.2em; }

/* Inquiry */
.sv-inquiry {
    padding: 0 40px 80px;
    background: #0a0a0a;
}
.sv-inquiry-card {
    background: #111111;
    border: 1px solid rgba(201,169,110,0.2);
    border-radius: 8px;
    padding: 80px 40px;
    text-align: center;
}
.sv-inquiry-card h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: 3rem;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}
.sv-inquiry-card p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    color: rgba(255,255,255,0.6);
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.8;
}
.sv-inquiry-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}
.sv-btn-wa {
    background-color: #25D366;
    color: #fff;
    border-color: #25D366;
}
.sv-btn-wa:hover {
    background-color: #1ebe5d;
    border-color: #1ebe5d;
    box-shadow: 0 0 20px rgba(37,211,102,0.4);
    transform: translateY(-2px);
}

/* sv-* Responsive */
@media (max-width: 900px) {
    .sv-gallery { grid-template-columns: 1fr; height: auto; }
    .sv-gallery-main { height: 350px; }
    .sv-gallery-side { grid-template-columns: 1fr 1fr; grid-template-rows: none; height: 200px; }
    .sv-title { font-size: 3rem; }
}
@media (max-width: 768px) {
    .sv-hero { padding-bottom: 50px; }
    .sv-title { font-size: 2.4rem; }
    .sv-spec { padding: 20px 20px; border-right: none; border-bottom: 1px solid rgba(201,169,110,0.15); }
    .sv-spec:last-child { border-bottom: none; }
    .sv-amenities-grid { grid-template-columns: repeat(2, 1fr); }
    .sv-inquiry-card { padding: 50px 24px; }
    .sv-inquiry-card h2 { font-size: 2.2rem; }
    .sv-inquiry-buttons { flex-direction: column; align-items: center; }
    .sv-inquiry-buttons .btn { width: 100%; justify-content: center; max-width: 320px; }
}
@media (max-width: 480px) {
    .sv-title { font-size: 1.8rem; }
    .sv-name { font-size: 2.2rem; }
    .sv-amenities-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =====================
   Mobile: Homepage service cards, destination tabs, sections
   ===================== */
@media (max-width: 768px) {

    .services-wrapper {
        padding: 0 15px !important;
        gap: 20px !important;
    }

    .black-edition-card {
        flex-direction: column !important;
        height: auto !important;
        min-height: unset !important;
    }

    .card-info {
        width: 100% !important;
        padding: 30px 25px !important;
        order: 2 !important;
    }

    .card-visual {
        width: 100% !important;
        height: 260px !important;
        order: 1 !important;
    }

    .card-visual img {
        width: 100% !important;
        height: 100% !important;
        padding: 20px !important;
    }

    .card-visual::after {
        background: linear-gradient(
            0deg,
            var(--bg-pure) 0%,
            transparent 30%
        ) !important;
    }

    .card-info h3 {
        font-size: 2.5rem !important;
    }

    .card-info p {
        font-size: 0.95rem !important;
    }

    .destinations-filter {
        gap: 8px !important;
        padding: 0 15px !important;
        margin: 20px 0 30px !important;
    }

    .filter-btn {
        padding: 8px 14px !important;
        font-size: 0.75rem !important;
        letter-spacing: 1px !important;
    }

    .section-padding {
        padding: 60px 15px !important;
    }

    .section-header h2 {
        font-size: 1.8rem !important;
    }
}

/* =====================
   Mobile: Villa listing grid & cards
   ===================== */
@media (max-width: 991px) {
    .villas-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 768px) {
    .villas-grid {
        grid-template-columns: 1fr !important;
        padding: 20px 15px !important;
        gap: 20px !important;
    }
    .villa-card {
        width: 100% !important;
    }
    .villa-card-image {
        height: 220px !important;
    }
    .villa-card-info {
        padding: 20px !important;
    }
}

/* Villa spec icons — gold */
.villa-spec {
    color: #c9a96e !important;
}
.villa-spec svg {
    stroke: #c9a96e !important;
}

/* VIEW VILLA CTA — gold underline style */
.villa-card-cta {
    display: inline-block !important;
    border-bottom: 1px solid rgba(201,169,110,0.35) !important;
    padding-bottom: 2px !important;
}

/* =====================
   Flights, Transfers, Contact — shared components
   ===================== */

/* Service info cards (flights, transfers) */
.service-info-card {
    background: #111111;
    border: 1px solid rgba(201,169,110,0.15);
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
}
.service-info-card:hover {
    border-color: rgba(201,169,110,0.45);
    box-shadow: 0 0 28px rgba(201,169,110,0.1);
    transform: translateY(-4px);
}

/* Shared form input style */
.evs-input {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(201,169,110,0.2);
    border-radius: 3px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 300;
    padding: 12px 16px;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.2s;
}
.evs-input:focus { border-color: #c9a96e; }
.evs-input::placeholder { color: rgba(255,255,255,0.3); }

/* Contact info card hover */
.contact-card:hover {
    border-color: rgba(201,169,110,0.35) !important;
}
.social-link:hover { color: #c9a96e !important; }

/* Responsive: flights & transfers grids */
@media (max-width: 991px) {
    .flights-cards-grid  { grid-template-columns: repeat(2, 1fr) !important; }
    .fleet-grid          { grid-template-columns: repeat(2, 1fr) !important; }
    .transfers-highlights{ grid-template-columns: repeat(2, 1fr) !important; }
    .contact-grid        { grid-template-columns: 1fr !important; gap: 48px !important; }
}
@media (max-width: 600px) {
    .flights-cards-grid  { grid-template-columns: 1fr !important; }
    .fleet-grid          { grid-template-columns: 1fr !important; }
    .transfers-highlights{ grid-template-columns: 1fr !important; }
}
