@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* --- PREMIUM LIGHT GREEN THEME VARIABLES --- */
:root {
    --color-primary: #10B981;          /* Emerald Green */
    --color-primary-hover: #059669;    /* Darker Emerald Green */
    --color-primary-light: #ECFDF5;    /* Light Green Tint */
    
    --color-bg-main: #FCFDFD;          /* Soft light gray background */
    --color-bg-sec: #F5F8F6;           /* Mint tint secondary background */
    --color-bg-card: #FFFFFF;          /* Pure white card backgrounds */
    
    --color-text-dark: #111827;        /* Charcoal dark gray */
    --color-text-light: #4B5563;       /* Medium body text gray */
    --color-text-muted: #8B948E;       /* Muted footer/caption gray */
    
    --color-border: #E5E7EB;           /* Thin borders */
    --color-border-green: #D1FAE5;     /* Soft green borders */
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --border-radius-card: 16px;
    --border-radius-btn: 30px;
    
    --shadow-soft: 0 10px 35px rgba(0, 0, 0, 0.03);
    --shadow-hover: 0 20px 45px rgba(16, 185, 129, 0.08);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    --container-width: 1200px;
}

/* --- BASE & TYPOGRAPHY --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text-light);
    background-color: var(--color-bg-main);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-text-dark);
    font-weight: 700;
    line-height: 1.25;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius-card);
}

ul {
    list-style: none;
}

/* --- LAYOUT UTILITIES --- */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -12px;
    margin-left: -12px;
}

.col-12 { width: 100%; padding: 0 12px; }
.col-8 { width: 66.666%; padding: 0 12px; }
.col-6 { width: 50%; padding: 0 12px; }
.col-4 { width: 33.333%; padding: 0 12px; }
.col-3 { width: 25%; padding: 0 12px; }

@media (max-width: 991px) {
    .col-8, .col-6, .col-4, .col-3 {
        width: 100%;
    }
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

@media (max-width: 991px) {
    .grid-3, .grid-4, .grid-5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .grid-2, .grid-3, .grid-4, .grid-5 {
        grid-template-columns: 1fr;
    }
}

.section-padding {
    padding: 90px 0;
}

.section-title {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-title h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--color-text-dark);
}

.section-title p {
    font-size: 16px;
    color: var(--color-text-light);
}

.badge {
    display: inline-block;
    padding: 6px 14px;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    background-color: var(--color-primary-light);
    color: var(--color-primary);
    border-radius: 50px;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.text-center { text-align: center; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.d-flex { display: flex; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: var(--border-radius-btn);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.1);
}

.btn-primary {
    background-color: var(--color-primary);
    color: #FFFFFF;
}

.btn-primary:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.25);
}

.btn-outline {
    border-color: var(--color-primary);
    background-color: transparent;
    color: var(--color-primary);
}

.btn-outline:hover {
    background-color: var(--color-primary);
    color: #FFFFFF;
    transform: translateY(-2px);
}

/* --- HEADER / NAVIGATION --- */
header {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--color-border);
    transition: var(--transition-smooth);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 48px;
    width: auto;
    border-radius: 0;
}

.logo span {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--color-text-dark);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text-dark);
}

.nav-links a:hover,
.nav-links li.active a {
    color: var(--color-primary);
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: var(--color-text-dark);
}

@media (max-width: 991px) {
    .hamburger { display: block; }
    .nav-links, .navbar .btn { display: none; }
}

/* Mobile Side Navigation Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background-color: var(--color-bg-card);
    box-shadow: -10px 0 35px rgba(0,0,0,0.05);
    z-index: 1001;
    transition: var(--transition-smooth);
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mobile-drawer.open {
    right: 0;
}

.drawer-close {
    align-self: flex-end;
    font-size: 24px;
    cursor: pointer;
    color: var(--color-text-dark);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav-links a {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text-dark);
}

.mobile-nav-links a:hover {
    color: var(--color-primary);
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.drawer-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* --- HERO SECTION --- */
.hero {
    background: linear-gradient(135deg, #FFFFFF 0%, #F5FDF9 100%);
    padding: 120px 0;
    border-bottom: 1px solid var(--color-border);
}

.hero h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.15;
}

.hero p {
    font-size: 18px;
    margin-bottom: 35px;
    color: var(--color-text-light);
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.hero-image-wrap {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image-wrap img {
    box-shadow: var(--shadow-soft);
    border: 8px solid #FFFFFF;
}

/* --- BANNER TITLE --- */
.page-banner {
    background: linear-gradient(135deg, var(--color-bg-sec) 0%, #FFFFFF 100%);
    padding: 70px 0;
    text-align: center;
    border-bottom: 1px solid var(--color-border);
}

.page-banner h1 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 10px;
}

.breadcrumbs {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: var(--color-text-light);
}

.breadcrumbs a {
    color: var(--color-primary);
}

/* --- CARDS --- */
.card {
    background-color: var(--color-bg-card);
    border-radius: var(--border-radius-card);
    border: 1px solid var(--color-border);
    padding: 35px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary-light);
    box-shadow: var(--shadow-hover);
}

.card i {
    font-size: 36px;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.card p {
    font-size: 14px;
    color: var(--color-text-light);
    flex-grow: 1;
}

/* --- LOCATION BADGES --- */
.location-card {
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-card);
    padding: 24px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--color-primary);
}

.location-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-text-dark);
}

.location-card .divider {
    height: 1px;
    background-color: var(--color-border);
    width: 100%;
    margin-bottom: 15px;
}

.location-card .map-wrap {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
    border: 1px solid var(--color-border);
    height: 180px;
}

.location-card p {
    font-size: 13px;
    color: var(--color-text-light);
    line-height: 1.5;
    margin-bottom: 15px;
    text-align: left;
    flex-grow: 1;
}

.location-card .card-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
}


/* --- TESTIMONIALS --- */
.testimonial-card {
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-card);
    padding: 30px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-hover);
    border-color: var(--color-primary-light);
}

.rating {
    color: #FBBF24; /* Gold */
    font-size: 14px;
    margin-bottom: 12px;
}

.testimonial-text {
    font-size: 14px;
    font-style: italic;
    color: var(--color-text-light);
    margin-bottom: 20px;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-user img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-user h5 {
    font-size: 14px;
    font-weight: 700;
}

.testimonial-user span {
    font-size: 11px;
    color: var(--color-text-muted);
    display: block;
}

/* --- FORMS --- */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 8px;
    color: var(--color-text-dark);
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--color-border);
    background-color: var(--color-bg-card);
    border-radius: 8px;
    outline: none;
    font-family: var(--font-body);
    font-size: 14px;
    transition: var(--transition-smooth);
}

.form-control:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* --- FOOTER --- */
footer {
    background-color: #111827; /* Dark Slate */
    color: #FAFAFA;
    padding: 80px 0 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo span {
    font-family: var(--font-heading);
    color: #FFFFFF;
    font-size: 24px;
    font-weight: 800;
}

.footer-desc {
    color: #9CA3AF;
    font-size: 14px;
    margin-bottom: 25px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #FFFFFF;
}

.footer-socials a:hover {
    background-color: var(--color-primary);
    transform: translateY(-2px);
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 8px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background-color: var(--color-primary);
    border-radius: 2px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #D1D5DB;
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--color-primary);
    padding-left: 5px;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #9CA3AF;
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* --- WHATSAPP FLOATING BUTTON --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #FFFFFF;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    z-index: 999;
    animation: pulse-whatsapp 2s infinite;
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* --- SCROLL REVEAL ANIMATION --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- DROPDOWN NAVIGATION MENU --- */
.nav-links li.dropdown {
    position: relative;
}

.nav-links .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    padding: 10px 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 1000;
}

.nav-links li.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(5px);
}

.nav-links .dropdown-menu li {
    padding: 0;
    margin: 0;
    width: 100%;
}

.nav-links .dropdown-menu a {
    display: block;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-dark);
    text-align: left;
    white-space: nowrap;
    border-radius: 0;
    transition: var(--transition-smooth);
}

.nav-links .dropdown-menu a:hover {
    background-color: var(--color-primary-light);
    color: var(--color-primary);
    padding-left: 28px;
}

/* Mobile dropdown styles inside drawer */
.mobile-nav-links .mobile-dropdown-menu {
    display: flex;
    flex-direction: column;
    margin: 5px 0 15px 0;
}

.mobile-nav-links .mobile-dropdown-menu a {
    font-size: 15px;
    padding: 8px 12px;
    color: var(--color-text-light);
}

.mobile-nav-links .mobile-dropdown-menu a:hover {
    color: var(--color-primary);
}

/* --- INSTAGRAM FEED HOVER EFFECTS --- */
.insta-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    aspect-ratio: 1/1;
    transition: var(--transition-smooth);
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.insta-item:hover img {
    transform: scale(1.1);
}

.insta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
    text-align: center;
    pointer-events: none;
}

.insta-item:hover .insta-overlay {
    opacity: 1;
}

.insta-overlay i {
    font-size: 32px;
    color: #FFFFFF;
    margin-bottom: 12px;
    transform: scale(0.8);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.insta-item:hover .insta-overlay i {
    transform: scale(1);
}

.insta-overlay p {
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Loader class helper */
.sbi_loader.d-none {
    display: none !important;
}

.sbi_load_area button:disabled {
    cursor: not-allowed;
    opacity: 0.7;
}

/* --- POPUP ENQUIRY MODAL --- */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(17, 24, 39, 0.7);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal.open {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: var(--color-bg-card);
    width: 90%;
    max-width: 500px;
    border-radius: var(--border-radius-card);
    border: 1px solid var(--color-border);
    padding: 35px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    max-height: 90vh;
    overflow-y: auto;
}

.modal.open .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 32px;
    cursor: pointer;
    color: var(--color-text-muted);
    transition: var(--transition-smooth);
    line-height: 1;
}

.modal-close:hover {
    color: var(--color-primary);
}

.modal-header {
    margin-bottom: 25px;
}

.modal-header h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--color-text-dark);
    text-transform: uppercase;
}

.modal-header p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.5;
}

/* --- STICKY SIDE ENQUIRY BUTTON --- */
.sticky-enquiry-btn {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: right bottom;
    background-color: var(--color-primary);
    color: #FFFFFF;
    border: none;
    padding: 14px 26px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    cursor: pointer;
    z-index: 9998;
    border-radius: 8px 8px 0 0;
    box-shadow: 0 -4px 12px rgba(16, 185, 129, 0.2);
    transition: var(--transition-smooth);
    margin-top: -50px; /* Offset alignment center point */
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.sticky-enquiry-btn:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-50%) rotate(-90deg) translateY(-4px); /* Moves out slightly */
}

/* Responsive adjustments for mobile */
@media (max-width: 576px) {
    .sticky-enquiry-btn {
        top: auto;
        bottom: 85px; /* Sits above WhatsApp button */
        right: 0;
        transform: none;
        transform-origin: initial;
        border-radius: 20px 0 0 20px;
        box-shadow: -2px 2px 10px rgba(16, 185, 129, 0.15);
        padding: 10px 16px;
        font-size: 11px;
        margin-top: 0;
    }
    
    .sticky-enquiry-btn:hover {
        transform: translateX(-3px); /* slides out leftwards on mobile */
        padding-bottom: 10px;
    }
    
    .modal-content {
        padding: 24px;
        margin: 15px;
    }
}

/* --- ENHANCED FORM ELEMENTS & ICONS --- */
.input-icon-wrap {
    position: relative;
    width: 100%;
}

.input-icon-wrap i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-text-muted);
    font-size: 16px;
    transition: var(--transition-smooth);
    pointer-events: none;
}

.input-icon-wrap .form-control {
    padding-left: 48px; /* Indent text to give space for icon */
}

/* Change icon color on input focus */
.input-icon-wrap .form-control:focus + i {
    color: var(--color-primary);
}

/* Center modal headers and align them nicely */
.modal-header {
    text-align: center;
    margin-bottom: 25px;
}

.modal-logo {
    height: 55px;
    width: auto;
    margin: 0 auto 15px;
    display: block;
    border-radius: 0;
}

