/* SRS Color Variables */
:root {
    --primary-color: #1B313A;  /* Deep Slate (Foundation/Trust) */
    --hover-color: #13242B;    
    --accent-color: #F3A966;   /* Brand Gold (Opportunity/Wealth) */
    --light-accent: #FDCFA4;   /* Soft Apricot (Warmth) */
    --light-bg: #FFF8F2;       
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #ffffff;
    color: #1B313A;
    overflow-x: hidden;
}

/* Custom Utilities */
.text-primary { color: var(--primary-color) !important; }
.bg-primary { background-color: var(--primary-color) !important; }
.text-accent { color: var(--accent-color) !important; }
.bg-accent { background-color: var(--accent-color) !important; }
.bg-light-apricot { background-color: var(--light-bg) !important; }
.fs-7 { font-size: 0.875rem; }

/* Navbar Styling */
/* Custom Logo Styling */
.site-logo {
    height: 48px; /* App requirement ke hisab se 40px se 55px kar sakte hain */
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.site-logo:hover {
    transform: scale(1.03);
}


.logo-icon { 
    width: 40px; 
    height: 40px; 
    background-color: var(--primary-color) !important;
}
.nav-link {
    color: #4a5568 !important;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
}
.nav-link:hover, .nav-link.active {
    color: var(--accent-color) !important;
}
.btn-primary {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #ffffff !important;
}
.btn-primary:hover {
    background-color: var(--hover-color) !important;
    border-color: var(--hover-color) !important;
}

/* Hero Badge Glow Animation */
.animated-badge {
    animation: pulseGlow 2s infinite ease-in-out;
    background-color: var(--accent-color) !important;
    color: var(--primary-color) !important;
}
@keyframes pulseGlow {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(243, 169, 102, 0.6); }
    70% { transform: scale(1.03); box-shadow: 0 0 0 12px rgba(243, 169, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(243, 169, 102, 0); }
}

/* Hero Overlay Layer */
.hero-section {
    background: linear-gradient(rgba(27, 49, 58, 0.85), rgba(27, 49, 58, 0.7)), 
                url('https://images.unsplash.com/photo-1582407947304-fd86f028f716?auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    height: 80vh;
    min-height: 550px;
}

/* Tab Filters */
.search-box { border-radius: 16px; }
.search-box .nav-pills .nav-link {
    color: var(--primary-color);
    background: var(--light-accent);
    margin-right: 8px;
    border-radius: 8px;
}
.search-box .nav-pills .nav-link.active {
    background-color: var(--primary-color);
    color: #ffffff;
}
.form-control, .form-select {
    height: 48px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
}
.form-control:focus, .form-select:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.25rem rgba(243, 169, 102, 0.25);
}

/* Logo Hover */
.logo-hover { transition: all 0.3s ease; }
.logo-hover:hover {
    transform: scale(1.1);
    opacity: 1 !important;
}

/* Property Cards */
.property-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.property-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(27, 49, 58, 0.12) !important;
}
.property-img { height: 210px; object-fit: cover; }
.transform-scale { transition: transform 0.5s ease; }
.property-card:hover .transform-scale { transform: scale(1.08); }

/* Favorite Button Styling */
.favorite-btn {
    z-index: 10;
    transition: transform 0.2s ease;
}
.favorite-btn:hover { transform: scale(1.15); }

/* Help Cards */
.help-card { transition: all 0.4s ease; }
.help-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(27, 49, 58, 0.1);
}
.bg-light-accent { background-color: rgba(253, 207, 164, 0.3); }
.bg-light-primary { background-color: rgba(27, 49, 58, 0.1); }
.icon-circle { width: 50px; height: 50px; }
.contact-icon { width: 50px; height: 50px; background-color: var(--primary-color) !important; }

/* ===================================================
   REDESIGNED MODERN ENQUIRY FORM STYLES
====================================================== */

/* Form Outer Section & Background Glow Effects */
.form-bg-glow-1 {
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(243, 169, 102, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
    top: -80px;
    left: -80px;
    z-index: 0;
}

.form-bg-glow-2 {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(27, 49, 58, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    bottom: -60px;
    right: -60px;
    z-index: 0;
}

/* Glassmorphic Elevated Form Card */
.modern-form-card {
    background: #ffffff;
    box-shadow: 0 25px 50px -12px rgba(27, 49, 58, 0.15) !important;
    border-radius: 20px !important;
    overflow: hidden;
}

.border-top-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
}

/* Floating Input Controls */
.custom-form-group .form-control,
.custom-form-group .form-select {
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    background-color: #f8fafc;
    color: var(--primary-color);
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.custom-form-group .form-control:focus,
.custom-form-group .form-select:focus {
    border-color: var(--accent-color);
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(243, 169, 102, 0.2);
}

.custom-form-group label {
    color: #64748b;
    font-weight: 500;
}

/* Premium Gradient Submit Button */
.btn-gradient-submit {
    background: linear-gradient(135deg, var(--accent-color) 0%, #e08b43 100%) !important;
    border: none !important;
    color: var(--primary-color) !important;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-gradient-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(243, 169, 102, 0.4) !important;
    background: linear-gradient(135deg, var(--primary-color) 0%, #13242B 100%) !important;
    color: #ffffff !important;
}

.tracking-wider {
    letter-spacing: 1px;
}

/* ===================================================
   ABOUT US SECTION STYLES
====================================================== */
.about-img-wrapper {
    box-shadow: 0 20px 40px rgba(27, 49, 58, 0.12);
    border-radius: 20px;
}

.about-experience-card {
    backdrop-filter: blur(10px);
    max-width: 240px;
    z-index: 5;
    animation: floatCard 4s infinite ease-in-out;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}
/* Partner Logo Slider CSS (Renamed to prevent Bootstrap Clash) */
.logo-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 10px 0;
}

.logo-slide-track {
    display: flex;
    width: calc(250px * 10);
    animation: scrollLogos 20s linear infinite;
}

.logo-slide-track:hover {
    animation-play-state: paused;
}

/* Updated class name to partner-logo-slide instead of .slide */
.partner-logo-slide {
    width: 200px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-200px * 5));
    }
}

/* --- VIBRANT SERVICES SECTION STYLES --- */
#services {
    /* Gradient Background - Rich Dark Navy Blue Feel */
    background: #1B313A !important;
    position: relative;
}

/* Heading Highlights */
#services h2 {
    color: #ffffff !important;
}

#services p.text-muted {
    color: #cbd5e1 !important; /* Soft White Subtext */
}

/* Service Card Styling */
#services .service-card {
    background: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    transition: all 0.35s ease-in-out;
}

/* Hover Effect: Vibrant Lifting Card */
#services .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25) !important;
    border-color: #f59e0b !important; /* Golden/Accent Border on Hover */
}

/* Icon Box Styling */
#services .icon-box {
    background: #eff6ff !important;
    color: #0d233a !important;
    transition: all 0.3s ease;
}

#services .service-card:hover .icon-box {
    background: #0d233a !important;
    color: #ffffff !important;
}

/* Button & Links inside Card */
#services .service-card a {
    color: #d97706 !important; /* Vibrant Orange/Golden link */
    font-weight: 700;
}

#services .service-card a:hover {
    color: #b45309 !important;
    text-decoration: underline !important;
}