/*/* ==========================================================================
   1. THEME VARIABLES & RESET
   ========================================================================== */
:root {
    --primary-gold: #D4AF37;        
    --whatsapp-color: #25D366;      
    --dark-bg: #111111;
    --light-bg: #ffffff;
    --text-dark: #17294d;
    --text-light: #ffffff;
    --text-gray: #666666;
    --text-offwhite: #eeeeee;
    --font-main: 'Inter', sans-serif;
    --overlay-gradient: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.05) 50%, rgba(0,0,0,0.8) 100%);
    
    /* SHARPER RADIUS SYSTEM */
    --radius-sm: 2px;   /* For badges, tabs, small icons */
    --radius-md: 4px;   /* For buttons, cards, inputs */
    --radius-lg: 8px;  /* For large glass panels */
}

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    font-family: var(--font-main); 
}
        
html, body { 
    background-color: var(--light-bg); 
    overflow-x: hidden !important; 
    width: 100%; 
    max-width: 100vw; /* This strictly forbids horizontal scrolling */
    margin: 0;
    padding: 0;
}

/* ==========================================================================
   2. FULL SCREEN HERO CAROUSEL
   ========================================================================== */
.ss-hero-container { 
    position: relative; 
    height: 100vh; 
    width: 100%; 
    overflow: hidden; 
    display: flex; 
    flex-direction: column; 
    background: #000; 
}

.ss-slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; transition: opacity 1.5s ease; z-index: 0; }
.ss-slide.active { opacity: 1; z-index: 1; transition: opacity 0s; } 

.ss-slide::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: var(--overlay-gradient); z-index: 1; opacity: 0; transition: opacity 1.5s ease; }
.ss-slide.active::before { opacity: 1; }

.ss-strip-wrapper { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; }
.ss-strip { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; opacity: 0; transform: scale(1.1); transition: opacity 0.8s ease, transform 1.5s cubic-bezier(0.2, 0.8, 0.2, 1); }
.ss-slide.active .ss-strip { opacity: 1; transform: scale(1); }

.ss-slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%);
    opacity: 0;
    z-index: 2; 
    text-align: center;
    color: #ffffff;
    width: 100%;
    max-width: 800px;
    padding: 0 20px;
    transition: all 0.8s ease-out 0.4s; 
}

.ss-slide.active .ss-slide-content {
    opacity: 1;
    transform: translate(-50%, -50%); 
}

.ss-slide-content h1 {
    font-size: 64px; 
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.ss-slide-content p {
    font-size: 22px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

/* ==========================================================================
   3. NAVIGATION BAR
   ========================================================================== */
.ss-navbar { 
    position: absolute; 
    top: 20px; 
    left: 20px; 
    right: 20px; 
    display: flex; 
    align-items: center; 
    padding: 12px 20px 12px 30px; 
    z-index: 30; 
    border-radius: var(--radius-md); 
    
    /* Glassmorphism */
    background: rgba(255, 255, 255, 0.3); 
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px); 
    border: 1px solid rgba(255, 255, 255, 0.4);   
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08); 
}

.ss-logo { 
    display: block; 
    width: 100px; 
    position: relative; 
}

.ss-brand-logo { 
    position: absolute; 
    top: -30px; 
    left: 0; 
    height: 60px; 
    width: auto; 
    z-index: 40; 
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.15)); 
}

.ss-nav-links { 
    display: flex; 
    gap: 30px; 
    margin-left: auto; 
    margin-right: 20px; 
}

.ss-nav-links a { 
    position: relative; 
    color: var(--text-offwhite); 
    text-decoration: none; 
    font-size: 14px; 
    font-weight: 600; 
    padding-bottom: 4px; 
}

.ss-nav-links a::after { 
    content: ''; 
    position: absolute; 
    width: 0; 
    height: 2px; 
    bottom: 0; 
    left: 50%; 
    background-color: var(--primary-gold); 
    transition: all 0.3s ease; 
    transform: translateX(-50%); 
}

.ss-nav-links a:hover { color: var(--primary-gold); }
.ss-nav-links a:hover::after { width: 100%; }

.ss-nav-divider { 
    width: 1px; 
    height: 20px; 
    background-color: #eaeaea; 
    margin-right: 20px; 
}

.ss-nav-cta { 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    background: transparent; 
    color: var(--text-offwhite); 
    text-decoration: none; 
    padding: 0; 
    font-weight: 600; 
    font-size: 15px; 
    transition: transform 0.2s; 
}

.ss-nav-cta:hover { transform: translateX(5px); }

.ss-icon-circle-white { 
    width: 34px; 
    height: 34px; 
    background: var(--primary-gold); 
    color: var(--text-light); 
    border-radius: var(--radius-sm); 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 16px; 
    margin-left: 5px; 
    transition: background 0.3s ease, transform 0.3s ease; 
}

.ss-icon-circle-white i { 
    transition: transform 0.3s ease, color 0.3s ease; 
    font-size: 20px; 
}

.ss-nav-cta:hover .ss-icon-circle-white {
    transform: scale(.9);
    background: var(--text-light);
}

.ss-nav-cta:hover .ss-icon-circle-white i {  
    transform: rotate(45deg); 
    color: var(--primary-gold); 
}
/* --- Navbar Logo Container --- */
.ss-nav-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none; /* Removes link underline */
    width: max-content;
    transition: opacity 0.2s ease;
}

.ss-nav-logo-wrapper:hover {
    opacity: 0.85; /* Soft fade when users hover to click home */
}

/* --- Image Scaled for Header --- */
.ss-nav-img { 
    height: 38px; /* Slightly smaller than the footer image */
    width: auto; 
    object-fit: contain; 
}

/* --- Text Alignment & Gap Fix --- */
.ss-nav-text { 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    width: max-content;
   
}

/* --- Main Name --- */
.ss-nav-name { 
    font-family: 'Unicorn', serif; 
    font-size: 24px; /* Scaled down for header */
    color: #E22128; 
    line-height: 1; 
    letter-spacing: 1px; 
    padding-bottom: 4px; 
    border-bottom: 3px solid var(--primary-gold); /* Soft divider */
    margin-bottom: 4px; 
    white-space: nowrap; 
    text-align: center;
}

/* --- Tagline --- */
.ss-nav-tagline { 
    font-family: 'Montserrat', 'Inter', sans-serif; 
    font-size: 12px; /* Scaled down for header */
    font-weight: 700; 
    color: #020277; 
    text-transform: uppercase; 
    letter-spacing: 0px; 
    margin-right: -2.8px; 
    white-space: nowrap; 
    width: 100%; /* Forces it to fill the exact width of Sai Shruti */
    text-align: justify; 
    text-align-last: justify;
}

.ss-gold-dot { width: 8px; height: 8px; background-color: var(--primary-gold); border-radius: var(--radius-sm); box-shadow: 0 0 6px rgba(212, 175, 55, 0.4); }

.ss-menu-btn { display: none; }
.ss-hamburger { display: flex; flex-direction: column; justify-content: space-between; height: 12px; width: 28px; cursor: pointer; position: relative; }
.ss-hamburger span { display: block; height: 2px; width: 100%; background-color: var(--text-dark); border-radius: var(--radius-sm); transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
.ss-menu-btn.open .ss-hamburger span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.ss-menu-btn.open .ss-hamburger span:nth-child(2) { transform: translateY(-5px) rotate(-45deg); }


/* ==========================================================================
   4. HERO TEXT & BUTTONS
   ========================================================================== */
.ss-hero-content { position: absolute; top: 30%; left: 40px; z-index: 10; max-width: 500px; color: var(--text-light); }
.ss-massive-text { position: absolute; bottom: -2vw; left: 20px; z-index: 5; color: var(--text-offwhite); font-size: 15vw; font-weight: 700; line-height: 1; letter-spacing: -0.04em; white-space: nowrap; }

.ss-hero-content, .ss-massive-text { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; transition-delay: 0s; }
.ss-slide.active .ss-hero-content, .ss-slide.active .ss-massive-text { opacity: 1; transform: translateY(0); transition-delay: 0.5s; }
.ss-hero-content p { font-size: 22px; line-height: 1.5; margin-bottom: 30px; font-weight: 500; text-shadow: 0 4px 15px rgba(0,0,0,0.8); }

.ss-hero-btn { 
    display: inline-flex; 
    align-items: center; 
    gap: 15px; 
    background: rgba(255, 255, 255, 0.3); 
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px); 
    border: 1px solid rgba(255, 255, 255, 0.4); 
    color: var(--text-light); 
    padding: 8px 8px 8px 24px; 
    border-radius: var(--radius-md); 
    text-decoration: none; 
    font-weight: 600; 
    font-size: 15px; 
    transition: transform 0.2s, box-shadow 0.2s; 
}

.ss-hero-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(0,0,0,0.2); }
.ss-icon-circle-black { box-shadow: 2px 2px 8px rgba(0,0,0,0.3); width: 38px; height: 38px; background: var(--primary-gold); color: var(--text-light); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 20px; transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease; }
.ss-icon-circle-black i { transition: transform 0.3s ease; }
.ss-hero-btn:hover .ss-icon-circle-black { transform: scale(.9); box-shadow: none; }
.ss-hero-btn:hover .ss-icon-circle-black i { transform: rotate(45deg); font-size: 25px; }


/* ==========================================================================
   5. UNIFIED GLASSMORPHISM PANEL
   ========================================================================== */
@keyframes floatUpAndDown { 0% { transform: translateY(0); } 50% { transform: translateY(-10px); } 100% { transform: translateY(0); } }

.ss-glass-panel { 
    position: absolute; 
    bottom: 40px; 
    right: 40px; 
    z-index: 20; 
    /*background: rgba(255, 255, 255, 0.1); */
    backdrop-filter: blur(16px); 
    -webkit-backdrop-filter: blur(16px);
    /*border: 1px solid rgba(255, 255, 255, 0.2); */
    border-radius: var(--radius-lg); 
    padding: 8px; 
    display: flex; 
    flex-direction: column; 
    gap: 8px; 
    width: 320px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    animation: floatUpAndDown 5s ease-in-out infinite;
}

.ss-glass-counters { display: flex; justify-content: space-between; align-items: center; padding: 0 5px; }
.ss-glass-counter-block { display: flex; flex-direction: column; align-items: center; width: 45%; text-align: center; }
.ss-glass-counter-block h4 { font-size: 20px; font-weight: 700; color: var(--primary-gold); margin-bottom: 2px; }
.ss-glass-counter-block span { font-size: 10px; font-weight: 600; color: rgba(255, 255, 255, 0.8); text-transform: uppercase; letter-spacing: 0.5px; }
.ss-glass-counter-divider { width: 1px; height: 35px; background: rgba(255, 255, 255, 0.15); }
.ss-glass-horizontal-divider { height: 1px; width: 100%; background: rgba(255, 255, 255, 0.15); }

.ss-glass-top { display: flex; align-items: center; gap: 15px; justify-content: center; }
.ss-avatar-group { display: flex; }
.ss-avatar-group img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255, 255, 255, 0.3); }
.ss-avatar-group img + img { margin-left: -18px; }
.ss-review-info { display: flex; flex-direction: column; }
.ss-agents-title { font-size: 14px; font-weight: 600; color: var(--text-light); }
.ss-stars { display: flex; align-items: center; gap: 3px; color: var(--primary-gold); font-size: 13px; margin-top: 2px; }
.ss-rating-score { color: rgba(255, 255, 255, 0.8); font-weight: 600; margin-left: 5px; }

.ss-glass-whatsapp { display: flex; align-items: center; justify-content: space-between; text-decoration: none;  padding: 12px 16px; border-radius: var(--radius-md); transition: background 0.3s; }
.ss-glass-whatsapp:hover { background: rgba(0, 0, 0, 0.3); }
.ss-wa-text { display: flex; flex-direction: column; }
.ss-wa-text span { color: rgba(255, 255, 255, 0.6); font-size: 11px; text-transform: uppercase; font-weight: 600; letter-spacing: 0.5px; }
.ss-wa-text h4 { color: var(--text-light); font-size: 16px; font-weight: 600; margin-top: 2px; transition: color 0.2s; }
.ss-glass-whatsapp:hover h4 { color: var(--whatsapp-color); }
/*.ss-wa-icon { background: var(--whatsapp-color); color: var(--text-light); width: 38px; height: 38px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 20px; }*/
.ss-wa-icon { 
    background-color: #25D366; /* Official WhatsApp Green */
    color: #fafafafa; /* Pure white icon */
    width: 45px; /* Perfectly square width */
    height: 45px; /* Perfectly square height */
    border-radius: 20px; /* Smooth rounded corners */
    display: flex; 
    align-items: center; 
    justify-content: center; 
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3); /* Subtle green glow */
    flex-shrink: 0; /* Prevents the box from squishing */
}

/* Size the icon perfectly inside the new square */
.ss-wa-icon i {
    font-size: 30px; 
    line-height: 1; 
    /*color: transparent;*/
    /*border: 1px solid #fff;*/

}

.ss-carousel-controls { position: absolute; bottom: 40px; left: 80%; transform: translateX(-50%); z-index: 10; display: flex; gap: 8px; }
.ss-dot { width: 30px; height: 4px; background: rgba(255,255,255,0.4); border-radius: var(--radius-sm); cursor: pointer; transition: background 0.3s ease, width 0.3s ease; }
.ss-dot.active { background: var(--primary-gold); width: 45px; }


/* ==========================================================================ss-feature-text
   6. ABOUT US SECTION (Premium Split Layout)
   ========================================================================== */
.ss-about-section { 
    background-color: var(--light-bg); /* Keep the base background light */
    padding: 80px 60px; 
    color: var(--text-dark); 
    position: relative; 
    overflow: hidden; /* Crucial: stops the gold block from stretching the page width */
    z-index: 1;
}
.ss-about-container { max-width: 1200px; margin: 0 auto; }
.ss-about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; }
.ss-about-content { max-width: 550px; }

.ss-section-label { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-gray); margin-bottom: 25px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; width:100%;}
.ss-section-label::after { content: ''; display: block; height: 1px; flex-grow: 1; width: 60px; background: var(--primary-gold); }

.ss-about-content h2 { font-size: 46px; font-weight: 600; letter-spacing: -0.03em; line-height: 1.15; margin-bottom: 24px; color: var(--text-dark); }
.ss-lead-text { font-size: 20px; color: var(--text-dark); font-weight: 500; line-height: 1.5; margin-bottom: 16px; }
.ss-sub-text { font-size: 16px; color: var(--text-gray); line-height: 1.7; margin-bottom: 40px; }

.ss-about-stats { display: flex; align-items: center; gap: 30px; padding-top: 30px; border-top: 1px solid #eaeaea; }
.ss-stat { display: flex; flex-direction: column; }
.ss-stat-number { font-size: 32px; font-weight: 700; color: var(--primary-gold); margin-bottom: 4px; }
.ss-stat-label { font-size: 13px; color: var(--text-gray); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.ss-stat-divider { width: 1px; height: 40px; background-color: #eaeaea; }


.ss-about-features { 
    display: flex; 
    flex-direction: column; 
    gap: 20px; 
    position: relative; 
    z-index: 2; /* Creates a clean layer for the cards to sit on */
}

/* The Magical Asymmetrical Gold Block */
.ss-about-features::before {
    content: '';
    position: absolute;
    top: -150px;      
    bottom: -150px;   
    left: 45%;        
    right: -100%;     /* Shoots off to the right infinitely instead of using 100vw */
    background-color: var(--primary-gold);
    z-index: -1;
}

/* Mobile Tweak: Keeps it looking good when the grid stacks on phones */
@media (max-width: 900px) {
    .ss-about-features::before {
        left: 20px; 
        top: 50px;
        bottom: -50px;
        right: -50px; /* Safely bleeds off the right edge */
        width: auto;  /* Cancels out any width issues */
        border-radius: var(--radius-md) 0 0 var(--radius-md);
    }
}
/* Container that provides 3D depth */
/* 1. The Main Card Container */
/* 1. The Main Card Container */
.ss-feature-card { 
    cursor: pointer;
    border-radius: var(--radius-md);
    /* Softer, wider shadow for a high-end feel */
    box-shadow: 0 10px 30px rgba(0,0,0,0.04); 
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.5s ease;
}

.ss-feature-card:hover {
    transform: translateX(-15px) !important ; /* Lifts the whole card slightly higher */
    transition:transform .3s .3s;
    /* Deep shadow for the entire card + rich gold ambient glow */
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.12), 
        0 15px 35px rgba(212, 175, 55, 0.2); 
}

/* 2. The Inner Grid */
.ss-feature-inner {
    display: grid; 
    width: 100%;
    position: relative;
    overflow: hidden; 
    border-radius: var(--radius-md);
}

/* 3. Stacking */
.ss-feature-front, .ss-feature-back {
    grid-area: 1 / 1; 
    padding: 20px 30px; 
    box-sizing: border-box; 
    border-radius: var(--radius-md);
}

/* 4. FRONT FACE - PREMIUM GOLD UPGRADE */
.ss-feature-front {
    /* Subtle pearl/warm white gradient */
    background: linear-gradient(145deg, #ffffff 0%, #fdfbf5 100%); 
    /* The requested Golden Border */
    border-left: 1px solid #D4AF37; 
    display: flex;
    align-items: center;
    gap: 24px;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), filter 0.6s ease, opacity 0.6s ease;
}

/* Elegant Circular Icon */
.ss-feature-icon {
    font-size: 32px; 
    color: #D4AF37; 
    flex-shrink: 0; 
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.02)); 
    width: 70px; 
    height: 70px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    border-radius: 50%; /* Circle looks more premium than a square */
    border: 1px solid rgba(212, 175, 55, 0.2);
}

/* Premium Typography */
.ss-feature-text h3 { 
    font-size: 20px; 
    font-weight: 600; 
    margin-bottom: 6px; 
    color: #111; 
    letter-spacing: 0.2px;
}

.ss-flip-hint {
    font-size: 12px;
    color: #D4AF37;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    text-transform: uppercase;
    letter-spacing: 1.5px; /* Wide tracking looks expensive */
}

/* 5. THE GLASS BACK FACE - LUXURY EDITION */
.ss-feature-back {
    background: var(--text-light); /* Richer dark glass */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    
    /* Golden leading edge when sliding up */
    /*border: 1px solid rgba(212, 175, 55, 0.8);*/
    border-top: 3px solid #D4AF37; 
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2; 
    
    opacity: 0;
    transform: translateY(40px);
    pointer-events: none; 
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);

}

/* 6. THE HOVER ANIMATION */
.ss-feature-card:hover .ss-feature-back {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;

}

.ss-feature-card:hover .ss-feature-front {
    transform: scale(0.94);
    filter: blur(5px) brightness(0.9);
    opacity: 0.4;
}

/* 7. Styling the content inside the Glass Back */
.ss-feature-back h3 {
    color: #D4AF37; /* Gold heading on the dark glass */
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2); /* Subtle gold divider */
}

.ss-feature-back ul { 
    list-style: none; 
    padding: 0; 
    margin: 0; 
}

.ss-feature-back ul li { 
    font-size: 14.5px; 
    color: rgba(255, 255, 255, 0.95); 
    color:var(--text-gray);
    line-height: 1.7; 
    margin-bottom: 8px; 
    position: relative; 
    padding-left: 20px; 
    font-weight: 300; 
}

/* Classy diamond bullets instead of standard dots */
.ss-feature-back ul li::before {
    content: '◆'; 
    color: #D4AF37;
    position: absolute;
    left: 0;
    top: 1px;
    font-size: 12px;
}


/* ==========================================================================
   7. RECENT PROPERTIES (Tabbed & Split Row Design)
   ========================================================================== */
.ss-recent-section { background-color: var(--light-bg); padding: 60px 50px; border-top: 1px solid #f0f0f0; }
.ss-recent-container { max-width: 1200px; margin: 0 auto; }

.ss-recent-header { display: flex; flex-direction: column; align-items: flex-start; text-align: center; margin-bottom: 50px; }
.ss-recent-header h2 { font-size: 46px; font-weight: 600; letter-spacing: -0.03em; color: var(--text-dark); margin-bottom: 30px; }

.ss-property-tabs { display: flex; background: #f5f5f5; padding: 4px; border-radius: var(--radius-md); }
.ss-tab-btn { border: none; background: transparent; padding: 10px 24px; font-size: 15px; font-weight: 600; color: var(--text-gray); border-radius: var(--radius-sm); cursor: pointer; transition: all 0.3s ease; }
.ss-tab-btn.active { background: var(--text-dark); color: var(--text-light); box-shadow: 0 2px 8px rgba(0,0,0,0.1); }

.ss-recent-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; margin-bottom: 50px; }

.ss-recent-card { display: block; background: var(--light-bg); border: 1px solid #eaeaea; border-radius: var(--radius-md); overflow: hidden; text-decoration: none; transition: box-shadow 0.3s ease, transform 0.3s ease, opacity 0.4s ease; opacity: 1; }
.ss-recent-card.hidden-card { display: none; opacity: 0; } 
.ss-recent-card:hover { transform: translateY(-4px); box-shadow: 0 15px 35px rgba(0,0,0,0.08); border-color: transparent; }

.ss-recent-img-wrapper { position: relative; width: 100%; aspect-ratio: 16 / 13; overflow: hidden; background: #eee; }
.ss-recent-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1); }
.ss-recent-card:hover .ss-recent-img-wrapper img { transform: scale(1.05); }

.ss-recent-badges { position: absolute; top: 20px; left: 20px; display: flex; gap: 10px; z-index: 2; }
.ss-badge-white { background: rgba(255, 255, 255, 0.95); color: var(--text-dark); padding: 6px 12px; border-radius: var(--radius-sm); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }

.ss-recent-details { padding: 24px; }
.ss-title-price-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 15px; margin-bottom: 10px; }
.ss-recent-title { font-size: 20px; font-weight: 600; color: var(--text-dark); line-height: 1.3; max-width: 60%; }
.ss-recent-price { font-size: 24px; font-weight: 700; color: var(--primary-gold); white-space: nowrap; text-align: right; }
.ss-recent-location { font-size: 14px; color: var(--text-gray); display: flex; align-items: center; gap: 6px; margin-bottom: 20px; font-weight: 500; }

.ss-recent-metrics { display: flex; gap: 20px; border-top: 1px solid #f0f0f0; padding-top: 16px; }
.ss-recent-metrics span { font-size: 13px; color: var(--text-gray); font-weight: 600; display: flex; align-items: center; gap: 6px; }

.ss-recent-actions { display: flex; justify-content: center; gap: 20px; margin-top: 20px; }

.ss-btn-outline { 
    background: var(--primary-gold); 
    color: var(--text-light); 
    border: 2px solid transparent; 
    padding: 14px 32px; 
    border-radius: var(--radius-md); 
    font-size: 15px; 
    font-weight: 600; 
    cursor: pointer; 
    transition: all 0.3s ease; 
    text-decoration: none; 
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    box-shadow: 0 5px 8px rgba(0,0,0,0.3); 
}
.ss-btn-outline:hover { background: transparent; color: var(--primary-gold); transform: translateY(-2px) scale(.95); box-shadow: none; border: 2px solid var(--primary-gold); }

.ss-btn-primary { 
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    background: var(--text-light); 
    -webkit-backdrop-filter: blur(16px); 
    color: var(--primary-gold); 
    border: 2px solid var(--primary-gold); 
    padding: 10px 15px; 
    border-radius: var(--radius-md); 
    text-decoration: none; 
    font-size: 15px; 
    font-weight: 600; 
    transition: all 0.3s ease; 
}
.ss-btn-primary:hover { background: var(--primary-gold); border-color: var(--primary-gold); color: var(--text-light); transform: translateY(-2px); box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.ss-btn-primary .ss-icon-circle-black { margin-left: 10px; }
.ss-btn-primary:hover .ss-icon-circle-black { box-shadow: none; transition: .3s ease; transform: scale(.9); }
.ss-btn-primary:hover .ss-icon-circle-black i { transform: rotate(45deg); font-size: 25px; }


/* ==========================================================================
   8. FEATURED PROPERTIES SECTION
   ========================================================================== */
.ss-properties-section { background-color: #f8f9fa; padding: 60px 5%; }
.ss-properties-container { max-width: 1200px; margin: 0 auto; }

/*.ss-properties-section .ss-section-header { margin-bottom: 50px; text-align: center; display: flex; flex-direction: column; align-items: flex-start; }*/
.ss-properties-section .ss-section-header h2 { font-size: 42px; font-weight: 600; letter-spacing: -0.02em; color: var(--text-dark); }

/*.ss-properties-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }*/

.ss-property-card { background: var(--light-bg); border: 1px solid #eaeaea; border-radius: var(--radius-md); overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.03); transition: transform 0.3s ease, box-shadow 0.3s ease; text-decoration: none; display: flex; flex-direction: column; }
.ss-property-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); border-color: transparent; }

.ss-property-card .ss-property-img-wrapper { position: relative; height: 250px; overflow: hidden; background: #eee; }
.ss-property-card .ss-property-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.ss-property-card:hover .ss-property-img-wrapper img { transform: scale(1.05); }

.ss-property-badge { position: absolute; top: 20px; left: 20px; background: rgba(255, 255, 255, 0.3); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid var(--primary-gold); color: var(--primary-gold); padding: 6px 14px; border-radius: var(--radius-sm); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }

.ss-property-info { padding: 25px; display: flex; flex-direction: column; flex-grow: 1; }
.ss-property-price { font-size: 24px; color: var(--primary-gold); font-weight: 700; margin-bottom: 8px; }
.ss-property-title { font-size: 20px; font-weight: 600; color: var(--text-dark); margin-bottom: 10px; }
.ss-property-location { font-size: 14px; color: var(--text-gray); display: flex; align-items: center; gap: 6px; margin-bottom: 20px; }

.ss-property-metrics { display: flex; justify-content: space-between; border-top: 1px solid #f0f0f0; padding-top: 15px; margin-top: auto; }
.ss-property-metrics span { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--text-gray); font-weight: 600; }

/*.ss-properties-footer { text-align: center; margin-top: 50px; }*/
/* The Split Layout Grid */
.ss-properties-split {
    display: grid;
    grid-template-columns: 350px 1fr; 
    gap: 60px;
    align-items: flex-start; /* THIS FIXES THE ALIGNMENT */
}

.ss-properties-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.ss-section-description {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-top: 15px;
    margin-bottom: 30px;
}
.ss-properties-right {
    min-width: 0; /* This forces the grid column to stop expanding! */
    width: 100%;
}
.ss-slider-controls {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}
.ss-slider-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.ss-slider-btn:hover {
    background: var(--primary-gold);
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: none;
}

.ss-properties-section .ss-section-header { 
    margin-bottom: 30px; 
    text-align: left; 
    display: flex; 
    flex-direction: column; 
    align-items: flex-start; 
}

.ss-properties-footer { 
    margin-top: 10px; 
}

/* The Horizontal Slider */
.ss-properties-slider {
    display: flex;
    flex-wrap: nowrap; /* Forces cards into a straight horizontal line */
    gap: 30px;
    overflow-x: auto;
    padding-bottom: 20px; 
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth; 
    -ms-overflow-style: none;  
    scrollbar-width: none;  
}
/* Custom Scrollbar Styling for Chrome/Safari */
.ss-properties-slider::-webkit-scrollbar {
    display: none;
}
/*.ss-properties-slider::-webkit-scrollbar { height: 6px; }*/
.ss-properties-slider::-webkit-scrollbar-track { background: #f0f0f0; border-radius: 10px; }
.ss-properties-slider::-webkit-scrollbar-thumb { background: var(--primary-gold); border-radius: 10px; }

/* Forces cards to stay the right size in the slider */
.ss-property-card { 
    min-width: 320px; /* Prevents cards from shrinking */
    max-width: 320px;
    flex-shrink: 0; 
    scroll-snap-align: start; /* Snaps cards neatly into place when scrolling */
    background: var(--light-bg); 
    border: 1px solid #eaeaea; 
    border-radius: var(--radius-md); 
    overflow: hidden; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.03); 
    transition: transform 0.3s ease, box-shadow 0.3s ease; 
    text-decoration: none; 
    display: flex; 
    flex-direction: column; 
}


/* ==========================================================================
   9. PREMIUM AUTO-REVEAL ANIMATIONS
   ========================================================================== */
.ss-auto-reveal { opacity: 0; transform: translateY(40px); }
.ss-auto-reveal.ss-revealed { animation: premiumFadeUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards; }
@keyframes premiumFadeUp { 0% { opacity: 0; transform: translateY(40px); } 100% { opacity: 1; transform: translateY(0); } }


/* ==========================================================================
   10. WHY US SECTION (Premium Light Mode Fix)
   ========================================================================== */
.ss-why-us-section { 
    background-color: #f8f9fa; 
    background-image: 
        linear-gradient(to bottom, #f8f9fa 0%, transparent 15%, transparent 85%, #f8f9fa 100%),
        linear-gradient(to right, #f8f9fa 0%, transparent 5%, transparent 95%, #f8f9fa 100%),
        linear-gradient(#f0f0f0 1px, transparent 1px),
        linear-gradient(90deg, #f0f0f0 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 40px 40px, 40px 40px;
    background-position: center;
    padding: 80px 20px;
    color: #111111;
    border-top: 1px solid #eaeaea;
}

.ss-why-us-container { width: 100%; max-width: 1200px; margin: 0 auto; }
.ss-bento-split { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.ss-counters-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 24px; }

.ss-bento-card { background: #ffffff; border: 1px solid #eaeaea; border-radius: var(--radius-lg); box-shadow: 0 10px 30px rgba(0,0,0,0.03); transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; }
.ss-bento-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.06); border-color: var(--primary-gold); }

.ss-bento-text-card { padding: 60px 50px; display: flex; flex-direction: column; justify-content: center; }
.ss-bento-text-card h2 { font-size: 46px; font-weight: 600; margin-bottom: 24px; letter-spacing: -0.03em; line-height: 1.2; color: var(--text-dark); }
.ss-bento-text-card p { font-size: 16px; color: var(--text-gray); line-height: 1.7; margin-bottom: 20px; }
.ss-bento-text-card p:last-child { margin-bottom: 0; }

.ss-achievement-card { padding: 40px 30px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.ss-achievement-icon { font-size: 32px; color: var(--primary-gold); margin-bottom: 20px; background: rgba(212, 175, 55, 0.1); width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; border-radius: var(--radius-md); }
.ss-counter-wrapper { display: flex; align-items: baseline; margin-bottom: 8px; }
.ss-achievement-item h3, .ss-counter { font-size: 48px; font-weight: 700; color: var(--text-dark); line-height: 1; }
.ss-plus { font-size: 28px; color: var(--primary-gold); font-weight: 600; margin-left: 2px; }
.ss-achievement-card p { font-size: 14px; color: var(--text-gray); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }


/* ==========================================================================
   11. CINEMATIC JUMBOTRON 
   ========================================================================== */
.ss-cinematic-jumbotron { position: relative; width: 100%; aspect-ratio: 21 / 9; overflow: hidden; background-color: #000; }
.ss-cinematic-wrapper { position: relative; width: 100%; height: 100%; }

.ss-cinematic-image { width: 100%; height: 100%; object-fit: cover; object-position: center; transform: scale(1.09); transition: transform 8s cubic-bezier(0.2, 0.8, 0.2, 1); }
.ss-cinematic-jumbotron:hover .ss-cinematic-image { transform: scale(1); }

.ss-cinematic-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to top left, rgba(0,0,0,0.85) 0%, transparent 45%); z-index: 1; }

.ss-cinematic-wrapper::before, .ss-cinematic-wrapper::after { content: ''; position: absolute; left: 0; width: 100%; height: 5%; background: rgba(17, 17, 17, 0.3); z-index: 2; -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); }
.ss-cinematic-wrapper::before { top: 0; }
.ss-cinematic-wrapper::after { bottom: 0; }

.ss-cinematic-content { position: absolute; bottom: 8%; right: 40px; z-index: 3; text-align: right; color: var(--text-light); width: 100%; max-width: 700px; padding: 0; }
.ss-cinematic-content h2 { font-size: 5vw; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 20px; text-shadow: 0 4px 15px rgba(0,0,0,0.5); }
.ss-cinematic-content p { font-size: 20px; color: rgba(255, 255, 255, 0.9); margin-bottom: 35px; font-weight: 500; }


/* ==========================================================================
   12. FOUNDER'S DESK SECTION 
   ========================================================================== */
.ss-founder-section { background-color: #f8f9fa; padding: 60px 5%; color: var(--text-dark); border-top: 1px solid #eaeaea; }
.ss-founder-container { max-width: 1200px; margin: 0 auto; }
.ss-founder-split { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 70px; align-items: center; margin-bottom: 90px; }

.ss-founder-img-wrapper { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; box-shadow: 0 20px 40px rgba(0,0,0,0.08); border: 1px solid #eaeaea; }
.ss-founder-img-wrapper img { width: 100%; height: 100%; object-fit: contain; object-position: top;  }

.ss-founder-badge { position: absolute; bottom: 20px; left: 20px; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); padding: 10px 20px; border-radius: var(--radius-md); border: 1px solid #eaeaea; color: var(--text-dark); font-weight: 600; font-size: 14px; display: flex; align-items: center; gap: 8px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }

.ss-founder-content h2 { font-size: 42px; font-weight: 600; margin-bottom: 10px; letter-spacing: -0.02em; color: var(--text-dark); }
.ss-founder-content h4 { font-size: 18px; color: var(--primary-gold); margin-bottom: 30px; font-weight: 600; }
.ss-founder-content p { font-size: 14px; color: var(--text-gray); line-height: 1.8; margin-bottom: 20px; }
.ss-founder-signature { font-family: 'Brush Script MT', cursive, serif; font-size: 36px; color: var(--text-dark); margin-top: 35px; opacity: 0.8; }

.ss-team-header { text-align: center; margin-bottom: 50px; border-top: 1px solid #eaeaea; padding-top: 70px; }
.ss-team-header h3 { font-size: 32px; font-weight: 600; letter-spacing: -0.02em; color: var(--text-dark); }
.ss-team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }

.ss-team-card { background: #ffffff; border: 1px solid #eaeaea; border-radius: var(--radius-lg); padding: 40px 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.03); transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease; display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 0 15px; }
.ss-team-card:hover { transform: translateY(-6px); border-color: var(--primary-gold); box-shadow: 0 20px 40px rgba(0,0,0,0.06); }
.ss-team-icon { font-size: 36px; color: var(--primary-gold); margin-bottom: 0; }
.ss-team-card h4 { font-size: 20px; font-weight: 600; margin-bottom: 0; color: var(--text-dark); }
.ss-team-card p { grid-column: 1 / -1; margin-top: 15px; font-size: 15px; color: var(--text-gray); line-height: 1.6; }


/* ==========================================================================
   13. GOOGLE REVIEWS SECTION (Premium Infinite Slider)
   ========================================================================== */
.ss-reviews-section { background-color: #f8f9fa; overflow: hidden; padding: 60px 5% 80px; }
.ss-reviews-container { max-width: 100%; margin: 0 auto; }

.ss-reviews-header { text-align: center; margin-bottom: 50px; max-width: 700px; margin-left: auto; margin-right: auto; }
.ss-reviews-header p { font-size: 16px; color: #666; line-height: 1.6; margin-bottom: 30px; }
.ss-reviews-header h2 { font-size: 36px; font-weight: 600; color: #111; margin-bottom: 15px; letter-spacing: -0.02em; }

.ss-google-badge { display: inline-flex; align-items: center; gap: 10px; background: #fff; padding: 10px 20px; border-radius: 50px; border: 1px solid #eaeaea; box-shadow: 0 4px 10px rgba(0,0,0,0.02); }
.ss-g-logo { width: 20px; height: 20px; }
.ss-rating-number { font-weight: 700; color: #111; font-size: 16px; }
.ss-stars { color: #fbbc04; font-size: 18px; letter-spacing: 2px; }
.ss-review-count { color: #666; font-size: 14px; font-weight: 500; }

.ss-reviews-slider-wrapper { position: relative; width: 100%; overflow: hidden; padding: 20px 0; mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent); -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent); }
.ss-reviews-grid { display: flex; gap: 30px; width: max-content; animation: scrollPremium 80s linear infinite; padding-left: 15px; }
.ss-reviews-grid:hover { animation-play-state: paused; }

@keyframes scrollPremium { 0% { transform: translateX(0); } 100% { transform: translateX(calc(-50% - 15px)); } }

.ss-review-card { background: #ffffff; border: 1px solid #eaeaea; border-radius: var(--radius-lg); padding: 40px 20px; width: 300px; box-shadow: 0 10px 30px rgba(0,0,0,0.04); transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; position: relative; flex-shrink: 0; }
.ss-review-card::before { content: '"'; position: absolute; top: 20px; right: 30px; font-size: 20px; color: rgba(212, 175, 55, 0.1); font-family: Georgia, serif; line-height: 1; }
.ss-review-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); border-color: var(--primary-gold); }

.ss-card-stars { color: #fbbc04; font-size: 18px; margin-bottom: 20px; letter-spacing: 2px; }
.ss-review-text { font-size: 14px; color: #444; line-height: 1.5; margin-bottom: 20px; font-style: italic; display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }
.ss-review-author { display: flex; align-items: center; gap: 15px; border-top: 1px solid #f0f0f0; padding-top: 10px; }
.ss-review-author img { width: 45px; height: 45px; border-radius: 50%; object-fit: cover; }
.ss-review-author strong { font-size: 16px; color: #111; }


/* ==========================================================================
   14. FAQ SECTION 
   ========================================================================== */
.ss-faq-section { background-color: #ffffff; padding: 60px 5%; }
.ss-faq-container { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: start; }

.ss-faq-left { position: sticky; top: 120px; }
.ss-faq-left h2 { font-size: 42px; font-weight: 600; color: #111; margin-bottom: 20px; letter-spacing: -0.02em; line-height: 1.1; }
.ss-faq-left p { font-size: 17px; color: #666; line-height: 1.7; margin-bottom: 10px; }

.ss-faq-item { border-bottom: 1px solid #eaeaea; }
.ss-faq-item:first-child { border-top: 1px solid #eaeaea; }

.ss-faq-question { width: 100%; text-align: left; padding: 30px 0; background: none; border: none; font-size: 15px; font-weight: 500; color: #111; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: color 0.3s ease; font-family: inherit; }
.ss-faq-question:hover { color: var(--primary-gold); }
.ss-faq-icon { font-size: 24px; color: #111; transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1); }

.ss-faq-container .ss-hero-btn { color: var(--text-gray); font-size: 18px; display: flex; justify-content: space-around; width: 100%; border: 1px solid var(--primary-gold); }

.ss-faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.5s cubic-bezier(0.2, 0.8, 0.2, 1); }
.ss-faq-answer p { padding-bottom: 30px; padding-right: 40px; font-size: 15px; color: #555; line-height: 1.7; }

.ss-faq-item.active .ss-faq-question { color: var(--primary-gold); }
.ss-faq-item.active .ss-faq-icon { transform: rotate(45deg); color: var(--primary-gold); }
.ss-faq-item.active .ss-faq-answer { max-height: 300px; }





/* ==========================================================================
   16. MASTER MOBILE RESPONSIVENESS (ALL SECTIONS)
   ========================================================================== */
.ss-mobile-menu { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: rgba(255, 255, 255, 0.98); z-index: 20; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: all 0.4s ease; transform: translateY(-20px); }
.ss-mobile-menu.active { opacity: 1; visibility: visible; transform: translateY(0); }
.ss-mobile-links { display: flex; flex-direction: column; gap: 40px; text-align: center; }
.ss-mobile-links a {  border:1px solid var(--primary-gold);padding:10px 15px;font-size: 20px; font-weight: lighter; color: var(--primary-gold); text-decoration: none; transition: color 0.2s; letter-spacing: -1px; }
.ss-mobile-links a:hover { color: var(--primary-gold); }

@media (max-width: 900px) {
    /* Navbar & Hero */
    /*.ss-slide-content { width: 90%; }*/
    .ss-slide-content h1 { font-size: 40px; }
    .ss-slide-content p { font-size: 18px; }
    .ss-nav-logo-wrapper{gap:15px}
    
    .ss-nav-links, .ss-nav-divider, .ss-nav-cta { display: none; }
    .ss-menu-btn { display: flex; align-items: center; justify-content: center; margin-left: auto; }
    .ss-navbar { position: fixed; padding: 8px 10px;background:rgba(250,250,250,.9); }
    .ss-brand-logo { top: -35px; height: 50px; }
    
    /*.ss-massive-text { bottom: 250px; font-size: 14vw; text-align: center; left: 50%; transform: translateX(-50%) !important; }
    .ss-hero-content { top: 65%; left: 20px; right: 20px; max-width: 100%; text-align: center; }*/
    .ss-massive-text { 
        bottom: 300px; 
        font-size: 14vw; 
        text-align: center; 
        left: 50%; 
        transform: translateX(-50%) !important; 
        line-height: 1;
    }
    
    /* Anchored safely above the massive text so they never touch */
    .ss-hero-content { 
        top: auto; 
        bottom: 220px; 
        left: 20px; 
        right: 20px; 
        max-width: 100%; 
        text-align: center; 
        z-index: 10; 
    }
    .ss-hero-content p { font-size: 16px; margin-bottom: 20px; opacity: 0; display: none; }
    .ss-hero-btn { font-size: 14px; padding: 6px 6px 6px 20px; gap: 10px; }
    .ss-icon-circle-black { width: 32px; height: 32px; font-size: 14px; }
    .ss-carousel-controls { bottom: 10px; left:50%;}
    .ss-social-links{justify-content: center;}
    
    /* Glass Panel */
    .ss-desktop-only { display: none !important; }
    .ss-glass-panel { bottom: 130px; right: 30px; gap: 5px; width: calc(100% - 20px); z-index: 10; max-width: 320px; padding: 5px; border-radius: var(--radius-md); }
    .ss-glass-whatsapp { padding: 10px; }

    
    /* About Us */
    .ss-about-features { gap: 10px; }
    .ss-about-section { padding: 40px 20px; }
    .ss-about-container { gap: 40px; }
    .ss-about-header h2 { font-size: 36px; }
    .ss-about-header p { font-size: 18px; }
    .ss-feature-card { flex-direction: row; gap: 20px; padding:0; }
    .ss-feature-icon { font-size: 36px; }
    .ss-about-grid { grid-template-columns: 1fr; gap: 50px; }
    .ss-about-content h2 { font-size: 36px; }
    .ss-feature-card:hover{ transform: translateX(-5px) !important;}

    /* Recent Properties */
    .ss-recent-section { padding: 40px 20px; }
    .ss-recent-header { margin-bottom: 20px; }
    .ss-recent-header h2 { font-size: 36px; }
    .ss-recent-grid { grid-template-columns: 1fr; gap: 20px; }
    .ss-recent-metrics { border-top: 1px solid #f0f0f0; padding-top: 16px; flex-wrap: wrap; }
    .ss-recent-title { max-width: 100%; }
    .ss-recent-actions { flex-direction: column; gap: 15px; }
    .ss-btn-outline, .ss-btn-primary { width: 100%; text-align: center; }
    
    /* Featured Properties */
   /* Featured Properties */
    .ss-properties-section { padding: 40px 20px; }
    .ss-properties-split { grid-template-columns: 1fr; gap: 30px; }
    .ss-properties-left { align-items: center; text-align: center; }
    .ss-properties-section .ss-section-header { align-items: center; text-align: center; }
    .ss-properties-section .ss-section-header h2 { font-size: 32px; }
    .ss-properties-slider { padding-bottom: 20px; }

    /* Why Us */
    .ss-why-us-section{padding:40px 5%;}
    .ss-bento-split { grid-template-columns: 1fr; }
    .ss-counters-grid { grid-template-columns: 1fr 1fr; }
    .ss-bento-text-card { padding: 40px 24px; }
    .ss-achievement-card { padding: 30px 20px; display: grid; grid-template-columns: auto auto; justify-content: space-around; align-items: center; gap: 0 15px; text-align: center; }
    .ss-achievement-icon { margin-bottom: 0; }
    .ss-counter-wrapper { margin-bottom: 0; }
    .ss-achievement-card p { grid-column: 1 / -1; margin-top: 15px; text-align: right; }

    /* Cinematic Jumbotron */
    .ss-cinematic-jumbotron { aspect-ratio: 16 / 9; }
    .ss-cinematic-content { bottom: 8%; right: 20px; padding-left: 20px; }
    .ss-cinematic-content h2 { font-size: 32px; }
    .ss-cinematic-content p { font-size: 16px; margin-bottom: 25px; }

    /* Founder's Desk */
    .ss-founder-section { padding: 40px 5%; }
    .ss-team-card { padding: 30px 20px; }
    .ss-founder-split { grid-template-columns: 1fr; gap: 50px; margin-bottom: 20px; }
    .ss-founder-img-wrapper { max-width: 400px; margin: 0 auto; }
    .ss-team-grid { grid-template-columns: 1fr; }
    .ss-founder-content h2 { font-size: 36px; }
    .ss-team-header { padding-top: 20px; }

    /* Google Reviews */
    .ss-reviews-header { margin-bottom: 20px; }
    .ss-reviews-section { padding: 40px 5%; }
    .ss-review-card { width: 320px; padding: 30px 20px; }

    /* FAQ */
    .ss-faq-section { padding: 40px 5%; }
    .ss-faq-container { grid-template-columns: 1fr; gap: 5px; }
    .ss-faq-left { position: relative; top: 0; }
    .ss-faq-question { font-size: 18px; padding: 25px 0; }
    .ss-faq-left h2 { font-size: 36px; }

    /* The Grand Finale (Footer) */
    .ss-finale-grid { grid-template-columns: 1fr; gap: 50px; }
    .ss-glass-form-wrapper { padding: 30px 20px; }
    .ss-expanded-footer { grid-template-columns: 1fr; gap: 45px; padding: 40px 0 30px; }
    .ss-footer-brand p { max-width: 100%; }
}

@media (max-width: 500px) {
    .ss-counters-grid { grid-template-columns: 1fr; }
}

/* =========================================
   1. DESKTOP RULES
   ========================================= */
/* Hide the new mobile action buttons on large screens */
.ss-fixed-actions {
    display: none;
}

/* (Your standard .ss-glass-panel CSS remains unchanged here so it looks perfect on desktop!) */


/* =========================================
   2. MOBILE RULES (900px and below)
   ========================================= */
@media (max-width: 900px) {
    
    /* Hide the old desktop WhatsApp button & last divider inside the panel */
    .ss-glass-panel .ss-glass-whatsapp,
    .ss-glass-panel .ss-glass-horizontal-divider {
        display: none !important;
    }

    /* Show the new Mobile-Only Action Bar */
    .ss-fixed-actions {
        display: flex;
        position: fixed;
        bottom: 20px;
        left: 0;
        width: 100%;
        padding: 0 15px;
        justify-content: space-between;
        z-index: 9999;
        pointer-events: none; /* Allows clicking between the buttons */
    }

    /* Glass Effect + Floating Animation for Mobile Buttons */
    .ss-fixed-actions a {
        pointer-events: auto; /* Makes the buttons clickable */
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 12px 20px;
        border-radius: 50px;
        font-weight: 600;
        font-size: 14px;
        color:var(--primary-gold);
        text-decoration: none;
        
        /* The Glassmorphism Effect */
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid var(--primary-gold);
        
        /* Attach the continuous floating animation */
        animation: mobile-float 3s ease-in-out infinite;
    }

    /* Offset the animation so they float in a subtle "seesaw" pattern */
    .ss-fixed-actions .ss-btn-call { animation-delay: 0s; }
    .ss-fixed-actions .ss-btn-whatsapp { animation-delay: 1.5s; color:#fff; }

    .ss-fixed-actions a i {
        font-size: 20px;
    }

    /* Glass WhatsApp (85% Opacity Green) */
    .ss-btn-whatsapp {
        background-color: rgba(37, 211, 102, 0.85); 
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    }

    /* Glass Call Button (85% Opacity Dark) */
    .ss-btn-call {
        background-color: rgba(170, 170, 170, 0.3); 
        border-color:var(--primary-gold);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
        text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.25);
    }

    /* The Continuous Floating Keyframes */
    @keyframes mobile-float {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-5px); } /* Gently rises up 8 pixels */
    }
}


