/* =======================================
   Variables & Reset
   ======================================= */
:root {
    /* Colors */
    --clr-bg: #ffffff; /* White background */
    --clr-bg-alt: #f8fafc; /* Card background */
    --clr-text-main: #0f172a;
    --clr-text-muted: #475569;
    
    /* Brand Gradients & Accents */
    --clr-primary: #0060ad; /* Blue */
    --clr-secondary: #f26522; /* Orange */
    --clr-accent: #00a65a; /* Green */
    
    --gradient-primary: linear-gradient(135deg, var(--clr-primary), var(--clr-accent));
    --gradient-text: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary));
    
    /* Layout & Spacing */
    --container-width: 1200px;
    --transition-fast: 0.3s ease;
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Effects */
    --glass-bg: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(0, 0, 0, 0.08);
    --shadow-neon: 0 0 20px rgba(0, 96, 173, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--clr-bg);
    color: var(--clr-text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-weight: 700;
}

.text-gradient {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* =======================================
   Buttons
   ======================================= */
.btn-primary, .btn-secondary, .btn-primary-sm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition-fast);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    padding: 14px 28px;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

.btn-primary-sm {
    background: var(--gradient-primary);
    color: #fff;
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-primary-sm:hover {
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--clr-text-main);
    padding: 14px 28px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--clr-primary);
}

/* =======================================
   Navbar
   ======================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition-fast);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 15px 0;
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -1px;
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 70px;
    height: auto;
    object-fit: contain;
    display: block;
}

.logo span {
    color: var(--clr-primary);
}

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

.nav-links a:not(.btn-primary-sm) {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--clr-text-muted);
    transition: var(--transition-fast);
}

.nav-links a:not(.btn-primary-sm):hover {
    color: var(--clr-text-main);
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--clr-text-main);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: var(--transition-slow);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu ul {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mobile-menu a {
    font-size: 1.5rem;
    font-weight: 600;
}

.close-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 2rem;
    cursor: pointer;
}

/* =======================================
   Hero Section
   ======================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
    background: #ffffff;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-content {
    text-align: left;
    max-width: 600px;
    z-index: 1;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.shape-1 {
    top: -10%;
    left: -10%;
    width: 40vw;
    height: 40vw;
    background: var(--clr-primary);
}

.shape-2 {
    bottom: -20%;
    right: -10%;
    width: 35vw;
    height: 35vw;
    background: var(--clr-secondary);
}

.shape-3 {
    top: 40%;
    left: 50%;
    width: 30vw;
    height: 30vw;
    background: var(--clr-accent);
    transform: translate(-50%, -50%);
    opacity: 0.2;
}

/* CSS-Only Animations for Hero Section (Prevent IntersectionObserver dependency on load) */
@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 96, 173, 0.1);
    border: 1px solid rgba(0, 96, 173, 0.2);
    border-radius: 50px;
    color: var(--clr-primary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero .badge {
    animation: heroFadeIn 0.8s ease forwards;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 24px;
    letter-spacing: -1px;
    opacity: 0;
    animation: heroFadeIn 0.8s ease forwards 0.15s;
}

.hero p {
    font-size: 1.1rem;
    color: var(--clr-text-muted);
    margin-bottom: 40px;
    max-width: 650px;
    opacity: 0;
    animation: heroFadeIn 0.8s ease forwards 0.3s;
}

.hero-buttons {
    display: flex;
    justify-content: flex-start;
    gap: 16px;
    opacity: 0;
    animation: heroFadeIn 0.8s ease forwards 0.45s;
}

/* =======================================
   Stats Section
   ======================================= */
.stats {
    position: relative;
    margin-top: -60px;
    z-index: 10;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.stat-box {
    text-align: center;
    border-right: 1px solid var(--glass-border);
}

.stat-box:last-child {
    border-right: none;
}

.stat-box h2 {
    font-size: 2.5rem;
    color: var(--clr-text-main);
    margin-bottom: 8px;
}

.stat-box p {
    color: var(--clr-primary);
    font-weight: 500;
    font-size: 0.95rem;
}

/* =======================================
   Services Section
   ======================================= */
.section-title {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-title p {
    color: var(--clr-text-muted);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--clr-bg-alt);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 32px;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    z-index: -1;
    transition: var(--transition-fast);
}

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

.service-card:hover::before {
    opacity: 0.05;
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(59, 130, 246, 0.1);
    color: var(--clr-primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 24px;
    transition: var(--transition-fast);
}

.service-card:hover .icon-box {
    background: var(--gradient-primary);
    color: #fff;
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* =======================================
   Why Us Section
   ======================================= */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.why-content p {
    color: var(--clr-text-muted);
    margin-bottom: 30px;
}

.why-list {
    margin-bottom: 40px;
}

.why-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-weight: 500;
}

.why-list li i {
    color: var(--clr-primary);
    font-size: 1.2rem;
}

.why-images {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.glass-box {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.glass-box i {
    font-size: 2rem;
    color: var(--clr-secondary);
    margin-bottom: 16px;
}

.glass-box h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.glass-box p {
    color: var(--clr-text-muted);
    font-size: 0.9rem;
}

.float-box {
    transform: translateX(40px);
    animation: float 6s ease-in-out infinite;
}

.mb-box {
    animation: float 6s ease-in-out infinite reverse;
}

@keyframes float {
    0% { transform: translate(40px, 0); }
    50% { transform: translate(40px, -15px); }
    100% { transform: translate(40px, 0); }
}

/* =======================================
   CTA Section
   ======================================= */
.cta-section {
    position: relative;
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
}

.cta-bg-shapes {
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0.1;
    z-index: -1;
}

.cta-container {
    max-width: 700px;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    color: var(--clr-text-muted);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.contact-form .input-group {
    display: flex;
    gap: 12px;
    background: rgba(255, 255, 255, 0.03);
    padding: 8px;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
}

.contact-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0 20px;
    color: var(--clr-text-main);
    font-family: inherit;
    font-size: 1rem;
    outline: none;
}

.contact-form input::placeholder {
    color: var(--clr-text-muted);
}

/* =======================================
   Team Section
   ======================================= */
.team-section { background: var(--clr-bg-alt); }
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.team-card {
    background: #fff;
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: var(--transition-fast);
}
.team-card:hover {
    box-shadow: 0 15px 35px rgba(0, 96, 173, 0.1);
    transform: translateY(-5px);
    border-color: var(--clr-primary);
}
.team-img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 3px solid rgba(0, 96, 173, 0.1);
}
.placeholder-img {
    background: var(--clr-bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--clr-primary);
}
.team-card h3 {
    font-size: 1.3rem;
    color: var(--clr-text-main);
    margin-bottom: 5px;
}
.team-card .role {
    color: var(--clr-primary);
    font-weight: 600;
    margin-bottom: 15px;
}
.team-card .desc {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
}

/* =======================================
   Footer
   ======================================= */
footer {
    background: #ffffff;
    padding: 80px 0 30px;
    border-top: 1px solid var(--glass-border);
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--clr-text-muted);
    margin: 20px 0;
    font-size: 0.95rem;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--clr-bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--glass-border);
    transition: var(--transition-fast);
}

.social-links a:hover {
    background: var(--clr-primary);
    color: #fff;
    border-color: var(--clr-primary);
}

footer h4 {
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--clr-primary);
}

.footer-contact p {
    color: var(--clr-text-muted);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--clr-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(0,0,0,0.05);
    color: var(--clr-text-muted);
    font-size: 0.9rem;
}

/* =======================================
   Animations Context
   ======================================= */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.appear, .slide-up.appear {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

/* =======================================
   Responsive Design
   ======================================= */
@media (max-width: 1024px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-box {
        border-right: none;
        border-bottom: 1px solid var(--glass-border);
        padding-bottom: 20px;
    }
    
    .stat-box:nth-last-child(-n+2) {
        border-bottom: none;
        padding-bottom: 0;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .float-box {
        transform: translateX(0);
        animation: none;
    }
    
    .mb-box {
        animation: none;
    }
}

@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .logo img {
        max-height: 50px !important;
    }
    
    .navbar {
        padding: 12px 0;
    }
    
    .nav-links {
        display: none;
    }
    
    .hamburger {
        display: block;
    }
    
    .hero {
        padding-top: 120px;
        min-height: 100vh;
        padding-bottom: 80px;
        background: linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)), url('https://images.unsplash.com/photo-1550751827-4bd374c3f58b?auto=format&fit=crop&q=80&w=800') center center / cover no-repeat;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .hero-content { margin: 0 auto; text-align: center; }
    .hero-buttons { justify-content: center; margin-bottom: 20px; }
    
    .hero-image {
        display: none;
    }
    
    .contact-form .input-group {
        flex-direction: column;
        background: transparent;
        border: none;
        padding: 0;
    }
    
    .contact-form input {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid var(--glass-border);
        padding: 15px;
        border-radius: 8px;
        margin-bottom: 12px;
    }
    
    .embedded-enquiry-card {
        padding: 24px;
        border-radius: 12px;
    }
    
    .enquiry-modal-content {
        padding: 24px;
        border-radius: 12px;
    }
}

@media (max-width: 600px) {
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .stat-box {
        border-bottom: 1px solid var(--glass-border);
        padding-bottom: 20px;
    }
    
    .stat-box:last-child {
        border-bottom: none;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
} 

/* =======================================
   Enquiry Form Modal & Sticky Button
   ======================================= */
.sticky-enquiry-btn { position: fixed; bottom: 30px; right: 30px; background: var(--gradient-primary); color: #fff; padding: 15px 25px; border-radius: 50px; font-weight: 600; box-shadow: 0 4px 15px rgba(0, 96, 173, 0.4); z-index: 999; cursor: pointer; display: flex; align-items: center; gap: 10px; transition: var(--transition-fast); border: none; font-size: 1rem; }
.sticky-enquiry-btn:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0, 96, 173, 0.5); }
.enquiry-modal { position: fixed; inset: 0; background: rgba(0,0,0,0.6); backdrop-filter: blur(5px); z-index: 3000; display: flex; justify-content: center; align-items: center; opacity: 0; pointer-events: none; transition: var(--transition-fast); }
.enquiry-modal.active { opacity: 1; pointer-events: all; }
.enquiry-modal-content { background: #fff; width: 90%; max-width: 500px; padding: 40px; border-radius: 20px; position: relative; transform: translateY(30px); transition: var(--transition-fast); box-shadow: 0 20px 40px rgba(0,0,0,0.2); text-align: left; }
.enquiry-modal.active .enquiry-modal-content { transform: translateY(0); }
.enquiry-modal-close { position: absolute; top: 20px; right: 20px; font-size: 1.5rem; cursor: pointer; color: var(--clr-text-muted); transition: var(--transition-fast); }
.enquiry-modal-close:hover { color: var(--clr-primary); }
.enquiry-modal h3 { font-size: 1.8rem; margin-bottom: 20px; color: var(--clr-text-main); }
.enquiry-form .form-group { margin-bottom: 15px; }
.enquiry-form label { display: block; margin-bottom: 5px; font-weight: 500; font-size: 0.95rem; color: var(--clr-text-main); }
.enquiry-form input, .enquiry-form textarea, .enquiry-form select { width: 100%; padding: 12px 15px; border: 1px solid var(--glass-border); border-radius: 8px; background: var(--clr-bg-alt); color: var(--clr-text-main); font-family: inherit; outline: none; transition: var(--transition-fast); }
.enquiry-form input:focus, .enquiry-form textarea:focus, .enquiry-form select:focus { border-color: var(--clr-primary); }
.enquiry-form textarea { resize: vertical; min-height: 100px; }
.enquiry-form button { width: 100%; margin-top: 10px; padding: 14px; font-size: 1.05rem; border-radius: 8px; border: none; }

.embedded-enquiry-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-top: 30px;
    text-align: left;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
@media (max-width: 600px) {
    .form-row { grid-template-columns: 1fr; gap: 0; }
}

/* =======================================
   WhatsApp & Scroll To Top Floating Buttons
   ======================================= */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background-color: #25d366;
    color: #fff;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: var(--transition-fast);
    text-align: center;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    color: #fff;
}

.scroll-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background-color: var(--clr-primary);
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: var(--transition-fast);
    border: none;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
}

.scroll-to-top.show {
    opacity: 1;
    pointer-events: auto;
}

.scroll-to-top:hover {
    background-color: var(--clr-secondary);
    transform: translateY(-3px);
}

/* Mobile responsive adjustments for floating buttons */
@media (max-width: 480px) {
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 26px;
        bottom: 20px;
        left: 20px;
    }
    .scroll-to-top {
        width: 40px;
        height: 40px;
        font-size: 16px;
        bottom: 85px;
        right: 20px;
    }
    .sticky-enquiry-btn {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

/* =======================================
   Custom Success & Error Notification Modal
   ======================================= */
.custom-alert-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.custom-alert-overlay.active {
    opacity: 1;
    pointer-events: all;
}
.custom-alert-box {
    background: #ffffff;
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    width: 90%;
    max-width: 450px;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15), var(--shadow-neon);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.custom-alert-overlay.active .custom-alert-box {
    transform: scale(1);
}
.custom-alert-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2.5rem;
}
.custom-alert-icon.success {
    background: rgba(0, 166, 90, 0.1);
    color: var(--clr-accent);
    border: 2px solid rgba(0, 166, 90, 0.2);
}
.custom-alert-icon.error {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 2px solid rgba(239, 68, 68, 0.2);
}
.custom-alert-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--clr-text-main);
    margin-bottom: 12px;
}
.custom-alert-message {
    color: var(--clr-text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 28px;
}
.custom-alert-btn {
    width: 100%;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition-fast);
}
.custom-alert-btn.success {
    background: var(--gradient-primary);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 96, 173, 0.3);
}
.custom-alert-btn.success:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 96, 173, 0.4);
}

/* =======================================
   Admin Collapsible Sidebar Dashboard Layout
   ======================================= */
.admin-layout {
    display: flex;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.admin-sidebar {
    width: 260px;
    background: #ffffff;
    border-right: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 999;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.admin-main {
    flex-grow: 1;
    margin-left: 260px;
    min-height: 100vh;
    background: var(--clr-bg-alt);
    transition: margin-left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

/* Sidebar Header & Brand */
.sidebar-brand {
    padding: 24px;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 75px;
    overflow: hidden;
}

.sidebar-brand img {
    max-height: 38px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand-logo-collapsed {
    display: none !important;
}

.brand-logo-expanded {
    display: block;
}

.sidebar-close-btn {
    display: none;
}

/* Sidebar Nav Menu */
.sidebar-menu {
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-grow: 1;
}

.sidebar-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 18px;
    border-radius: 10px;
    color: var(--clr-text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-fast);
    cursor: pointer;
    border: none;
    background: transparent;
    width: 100%;
    text-align: left;
}

.sidebar-item i {
    font-size: 1.15rem;
    width: 20px;
    text-align: center;
}

.sidebar-item:hover, .sidebar-item.active {
    background: rgba(0, 96, 173, 0.05);
    color: var(--clr-primary);
    font-weight: 600;
}

.sidebar-item.theme-logout {
    color: #ef4444;
    margin-top: auto;
}
.sidebar-item.theme-logout:hover {
    background: #fef2f2;
    color: #b91c1c;
}

/* Top Bar Header */
.admin-topbar {
    background: #ffffff;
    border-bottom: 1px solid var(--glass-border);
    height: 75px;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 95;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.menu-toggle-btn {
    background: var(--clr-bg-alt);
    border: 1px solid var(--glass-border);
    color: var(--clr-text-main);
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition-fast);
}

.menu-toggle-btn:hover {
    color: var(--clr-primary);
    border-color: var(--clr-primary);
    background: #ffffff;
}

.topbar-title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--clr-text-main);
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Collapsed States on Desktop (width >= 901px) */
@media (min-width: 901px) {
    .admin-sidebar.collapsed {
        width: 76px;
    }
    .admin-sidebar.collapsed .sidebar-brand {
        justify-content: center;
    }
    .admin-sidebar.collapsed .brand-logo-expanded {
        display: none !important;
    }
    .admin-sidebar.collapsed .brand-logo-collapsed {
        display: block !important;
        max-height: 36px;
        transform: scale(0.9);
    }
    .admin-sidebar.collapsed .sidebar-brand span, 
    .admin-sidebar.collapsed .sidebar-item span {
        display: none;
    }
    .admin-sidebar.collapsed ~ .admin-main {
        margin-left: 76px;
    }
}

/* Mobile responsiveness (width <= 900px) */
@media (max-width: 900px) {
    .sidebar-close-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        border: none;
        color: var(--clr-text-muted);
        width: 32px;
        height: 32px;
        border-radius: 6px;
        cursor: pointer;
        transition: all 0.2s ease;
    }
    .sidebar-close-btn:hover {
        color: #ef4444;
        background: rgba(239, 68, 68, 0.08);
    }
    .admin-sidebar {
        transform: translateX(-260px);
    }
    .admin-sidebar.active {
        transform: translateX(0);
    }
    .admin-main {
        margin-left: 0;
    }
    .sidebar-overlay {
        position: fixed;
        inset: 0;
        background: rgba(15, 23, 42, 0.4);
        backdrop-filter: blur(4px);
        z-index: 998;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }
    .sidebar-overlay.active {
        opacity: 1;
        pointer-events: all;
    }
    .admin-topbar {
        padding: 0 20px;
    }
}

/* Profile Styling */
.profile-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    margin-top: 20px;
}
.profile-card {
    background: #ffffff;
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.profile-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(0, 96, 173, 0.1);
    color: var(--clr-primary);
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 2px solid rgba(0, 96, 173, 0.2);
}
.profile-avatar i {
    line-height: 1;
}
.profile-details-table {
    width: 100%;
    margin-top: 15px;
    border-collapse: collapse;
}
.profile-details-row {
    border-bottom: 1px solid var(--glass-border);
}
.profile-details-row:last-child {
    border-bottom: none;
}
.profile-details-label {
    padding: 12px 0;
    font-weight: 600;
    color: var(--clr-text-muted);
    font-size: 0.9rem;
    text-align: left;
    width: 40%;
}
.profile-details-value {
    padding: 12px 0;
    color: var(--clr-text-main);
    font-size: 0.95rem;
    text-align: right;
    font-weight: 500;
}
.profile-form-box {
    background: #ffffff;
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
}

.dashboard-content-tabs {
    padding: 30px 32px;
    flex-grow: 1;
}

@media (max-width: 768px) {
    .profile-grid {
        grid-template-columns: 1fr;
    }
    .dashboard-content-tabs {
        padding: 20px;
    }
}

.tab-content {
    display: none;
}
.tab-content.active {
    display: block;
}

/* =======================================
   Enquiry Stats Cards & Table Grid
   ======================================= */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}
.stat-card {
    background: #ffffff;
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.03);
}
.stat-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(0, 96, 173, 0.08);
    color: var(--clr-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}
.stat-info h3 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--clr-text-main);
}
.stat-info p {
    margin: 4px 0 0 0;
    font-size: 0.9rem;
    color: var(--clr-text-muted);
    font-weight: 500;
}
.table-card {
    background: #ffffff;
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.03);
    overflow: hidden;
}
.table-card-header {
    padding: 24px;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.table-card-header h2 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
}
.table-container {
    overflow-x: auto;
    width: 100%;
}
table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}
th {
    background: var(--clr-bg-alt);
    padding: 16px 24px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--clr-text-muted);
    border-bottom: 1px solid var(--glass-border);
}
td {
    padding: 18px 24px;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--glass-border);
    vertical-align: top;
    text-align: left;
}
tr:last-child td {
    border-bottom: none;
}
tr:hover td {
    background: var(--clr-bg-alt);
}
.badge-service {
    background: rgba(0, 96, 173, 0.08);
    color: var(--clr-primary);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    text-transform: capitalize;
}
.message-text {
    max-width: 320px;
    white-space: pre-wrap;
    color: var(--clr-text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}
.no-data {
    padding: 40px 24px;
    text-align: center;
    color: var(--clr-text-muted);
}
.no-data i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #d1d5db;
}

/* =======================================
   Interactive Calendar Widget Styles
   ======================================= */
.calendar-card {
    background: #ffffff;
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.03);
    margin-top: 0;
}
.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.calendar-month-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--clr-text-main);
}
.calendar-controls {
    display: flex;
    gap: 8px;
}
.calendar-btn {
    background: var(--clr-bg-alt);
    border: 1px solid var(--glass-border);
    color: var(--clr-text-main);
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.85rem;
    transition: var(--transition-fast);
}
.calendar-btn:hover {
    color: var(--clr-primary);
    border-color: var(--clr-primary);
    background: #ffffff;
}
.calendar-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--clr-text-muted);
}
.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}
.calendar-day-cell {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 0.9rem;
    position: relative;
    cursor: default;
    color: var(--clr-text-main);
    transition: var(--transition-fast);
}
.calendar-day-cell.empty {
    pointer-events: none;
    opacity: 0;
}
.calendar-day-cell:not(.empty):hover {
    background: var(--clr-bg-alt);
    cursor: pointer;
}
.calendar-day-cell.current-day-highlight {
    background: rgba(0, 96, 173, 0.08) !important;
    color: var(--clr-primary) !important;
    font-weight: 700;
    border: 1px solid rgba(0, 96, 173, 0.2);
}
.calendar-event-dot {
    position: absolute;
    bottom: 5px;
    width: 6px;
    height: 6px;
    background-color: var(--clr-accent);
    border-radius: 50%;
}
.calendar-day-cell:hover .calendar-event-dot {
    transform: scale(1.2);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.dashboard-activities-card {
    background: #ffffff;
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.03);
}

.activity-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid var(--glass-border);
}
.activity-item:last-child {
    border-bottom: none;
}
.activity-icon-badge {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(0, 96, 173, 0.05);
    color: var(--clr-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
}
.activity-info {
    flex-grow: 1;
    font-size: 0.9rem;
}
.activity-time-stamp {
    font-size: 0.75rem;
    color: var(--clr-text-muted);
    margin-top: 4px;
}

@media (max-width: 1024px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}

