:root {
    --primary-gold: #bda67a;
    --primary-dark: #1a1a1a;
    --accent-light: #f4eee0;
    --text-dark: #2d2d2d;
    --text-light: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

html {
    width: 100%;
    margin: 0;
    padding: 0;
}

body {
    overflow-x: hidden !important;
    width: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    background-color: #ffffff;
    scroll-behavior: smooth;
    top: 0 !important; /* Force body to top to hide translate bar space */
}

h1, h2, h3, .navbar-brand {
    font-family: 'Playfair Display', serif;
}

/* --- Custom Scrollbar --- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--primary-gold); border-radius: 10px; }

/* --- Navbar --- */
.navbar {
    padding: 15px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    height: 50px;
    transition: var(--transition);
}

.nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    margin: 0 12px;
    position: relative;
    opacity: 0.9;
}

.navbar.scrolled .nav-link {
    color: var(--text-light) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: var(--transition);
}

.nav-link:hover::after { width: 100%; }

/* --- Hero Section --- */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7)), 
                url('../images/hero.jpg'),
                url('https://images.unsplash.com/photo-1512917774080-9991f1c4c750?auto=format&fit=crop&q=80&w=2000'),
                linear-gradient(135deg, #1a1a1a 0%, #333 100%); /* Triple Fallback */
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
}

.hero-content { max-width: 800px; }

.btn-premium {
    background: linear-gradient(135deg, var(--primary-gold), #8e7955);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(189, 166, 122, 0.3);
}

.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(189, 166, 122, 0.4);
    color: white;
}

.btn-outline-premium {
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    padding: 10px 28px;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline-premium:hover {
    background: var(--primary-gold);
    color: white;
}

/* --- Section Styling --- */
section { padding: 120px 0; }
.section-title {
    margin-bottom: 70px;
    position: relative;
    padding-bottom: 25px;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--primary-gold);
}

/* --- About Section --- */
.about-img {
    border-radius: 20px;
    box-shadow: 20px 20px 0px var(--primary-gold);
    transition: var(--transition);
    margin-bottom: 40px; /* Added spacing below image */
    background-color: #f0f0f0; /* Fallback */
}

/* --- Service Cards --- */
.service-card {
    background: #fff;
    border: none;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    background: var(--primary-dark);
    color: white;
}

.service-card:hover .text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

.service-icon {
    font-size: 45px;
    color: var(--primary-gold);
    margin-bottom: 25px;
    transition: var(--transition);
}

.service-card:hover .service-icon { color: white; }

/* --- Property Cards --- */
.property-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: var(--transition);
    background: #fff;
    height: 100%;
}

.property-card:hover { transform: scale(1.03); }

.property-img-container {
    position: relative;
    overflow: hidden;
    height: 250px;
    background: linear-gradient(45deg, #f8f9fa 25%, #e9ecef 25%, #e9ecef 50%, #f8f9fa 50%, #f8f9fa 75%, #e9ecef 75%, #e9ecef 100%);
    background-size: 20px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.property-img-container::before {
    content: '\f1ad'; /* Building Icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 4rem;
    color: var(--primary-gold);
    opacity: 0.1;
    position: absolute;
}

.property-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.property-card:hover .property-img-container img { transform: scale(1.1); }

.property-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-gold);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.property-price {
    color: var(--primary-gold);
    font-weight: 700;
    font-size: 1.25rem;
}

/* --- App Section --- */
.app-section {
    background: var(--primary-dark);
    color: white;
    border-radius: 30px;
    margin: 50px 0;
    overflow: hidden;
}

.playstore-btn {
    background: #000;
    border: 1px solid #333;
    padding: 10px 20px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.playstore-btn:hover { background: #222; transform: translateY(-2px); color: white; }

/* --- Testimonials --- */
.testimonial-card {
    background: var(--accent-light);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    height: 100%;
}

.quote-icon {
    font-size: 40px;
    color: var(--primary-gold);
    opacity: 0.3;
    position: absolute;
    top: 20px;
    right: 30px;
}

/* --- Contact --- */
.contact-info-item {
    display: flex;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-gold);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.form-control {
    padding: 12px 20px;
    border-radius: 10px;
    border: 1px solid #eee;
}

.form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(189, 166, 122, 0.25);
    border-color: var(--primary-gold);
}

/* --- Footer --- */
footer {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.7);
    padding: 80px 0 30px;
}

.footer-logo { height: 60px; margin-bottom: 25px; }
.social-links a {
    color: white;
    background: rgba(255,255,255,0.1);
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
    transition: var(--transition);
}
.social-links a:hover { background: var(--primary-gold); transform: translateY(-3px); }

/* --- Google Translate Styling --- */
#google_translate_element { 
    display: none !important; /* Hidden as per request */
}

@media (max-width: 991px) {
    #google_translate_element {
        margin: 10px 0;
        width: 100%;
        display: flex;
        justify-content: center;
    }
}

/* Hide Google Translate Banner */
.goog-te-banner-frame.skiptranslate, 
.goog-te-banner-frame, 
.goog-te-banner {
    display: none !important;
}

body {
    top: 0 !important;
}

/* Hide Google Translate Tooltips and Branding */
.goog-te-gadget-simple {
    background-color: transparent !important;
    border: 1px solid var(--primary-gold) !important;
    padding: 5px 10px !important;
    border-radius: 5px !important;
    font-family: 'Outfit', sans-serif !important;
    font-size: 0.9rem !important;
}

.goog-te-gadget-simple img { display: none !important; }
.goog-te-menu-value span { color: var(--primary-gold) !important; text-decoration: none !important; }
.goog-te-menu-value:after { content: '' !important; display: none !important; }

/* Hide Tooltip of Translate */
.goog-tooltip, .goog-tooltip:hover {
    display: none !important;
}
.goog-text-highlight {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* --- Scroll to Top --- */
#scrollTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-gold);
    color: white;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: var(--transition);
}
#scrollTop:hover { transform: scale(1.1); }

/* --- Mobile Responsive --- */
@media (max-width: 991.98px) {
    .navbar { background: var(--primary-dark); padding: 10px 0; width: 100%; }
    .navbar .container { padding-left: 15px; padding-right: 15px; }
    .hero h1 { font-size: 2.5rem; }
    section { padding: 50px 0; overflow: hidden; } /* Reduced from 80px */
    .about-img { 
        margin-top: 20px; 
        margin-bottom: 40px; /* Reduced from 60px */
        box-shadow: 10px 10px 0px var(--primary-gold); 
        max-width: calc(100% - 10px); 
    }
    .row { margin-left: 0; margin-right: 0; }
    .row > * { padding-left: 15px; padding-right: 15px; margin-bottom: 20px; } /* Reduced from 30px */
    .row > *:last-child { margin-bottom: 0; }
    .app-section { margin: 20px 0 !important; padding: 30px 15px !important; } /* Tightened app section */
}
