/* ===================================
   KAD ASSET MANAGEMENT PVT LTD - Professional Landing Page
   Mobile-First Responsive Design
   =================================== */

/* CSS Variables - Dark Mode (Default) */
:root {
    --primary-dark: #0a1628;
    --primary-blue: #1a365d;
    --accent-blue: #4299e1;
    --accent-gold: #d4a853;
    --accent-gold-light: #e8c87a;
    --text-white: #ffffff;
    --text-light: #e2e8f0;
    --text-muted: #a0aec0;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.3);
    --transition: all 0.3s ease;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --body-bg: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 50%, #0d2137 100%);
}

/* Light Mode Variables */
body.light-mode {
    --primary-dark: #ffffff;
    --primary-blue: #f8fafc;
    --text-white: #1a365d;
    --text-light: #334155;
    --text-muted: #64748b;
    --glass-bg: rgba(0, 0, 0, 0.03);
    --glass-border: rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.1);
    --body-bg: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
}

body.light-mode {
    background: var(--body-bg);
}

body.light-mode .sidebar {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 245, 249, 0.98));
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

body.light-mode .hero-section {
    background: var(--body-bg);
}

body.light-mode .mobile-menu-toggle {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

body.light-mode .hero-logo,
body.light-mode .sidebar-logo {
    box-shadow: none;
    border: none;
    border-radius: 24px;
    filter: drop-shadow(0 0 0 transparent);
    outline: none;
}

body.light-mode .footer {
    background: rgba(0, 0, 0, 0.05);
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 50%, #0d2137 100%);
    color: var(--text-light);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================================
   Mobile Menu Toggle
   =================================== */
.mobile-menu-toggle {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1001;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-blue), #3182ce);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.mobile-menu-toggle i {
    font-size: 1.5rem;
    color: white;
}

.mobile-menu-toggle:hover {
    transform: scale(1.05);
}

/* Hide hamburger when sidebar is open */
.sidebar.active~.mobile-menu-toggle,
.mobile-menu-toggle.hidden {
    opacity: 0;
    pointer-events: none;
}

/* ===================================
   Sidebar Navigation
   =================================== */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100vh;
    height: 100dvh;
    /* Better for mobile browsers */
    background: linear-gradient(180deg, rgba(10, 22, 40, 0.98), rgba(26, 54, 93, 0.98));
    backdrop-filter: blur(15px);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-lg);
    border-right: 1px solid var(--glass-border);
    will-change: transform;
    overflow-y: auto;
    scrollbar-width: none;
    /* Hide scrollbar for cleaner look */
}

.sidebar::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar for Chrome/Safari */
}

.sidebar.active {
    transform: translateX(0);
}

.sidebar-header {
    padding: 30px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid var(--glass-border);
}

.sidebar-logo {
    width: 58px;
    height: 58px;
    border-radius: 10px;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
    /* Sharpens in Chrome/Safari */
    image-rendering: high-quality;
    background: transparent;
    padding: 0;
    box-shadow: none;
}

.sidebar-brand {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.1;
}

.sidebar-brand small {
    display: block;
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

.sidebar-nav {
    list-style: none;
    padding: 20px 0;
    flex: 1;
}

.sidebar-nav li {
    margin: 2px 15px;
    /* Reduced margin for better fit */
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    border-radius: 12px;
    color: var(--text-muted);
    font-weight: 500;
    transition: var(--transition);
}

.nav-link i {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.nav-link:hover,
.nav-link.active {
    background: var(--glass-bg);
    color: var(--accent-gold);
}

.nav-link.active {
    background: linear-gradient(135deg, rgba(212, 168, 83, 0.2), rgba(212, 168, 83, 0.1));
    border-left: 3px solid var(--accent-gold);
}

.sidebar-social {
    padding: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
    border-top: 1px solid var(--glass-border);
}

.sidebar-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border-radius: 10px;
    color: var(--text-muted);
    font-size: 1.1rem;
    transition: var(--transition);
}

.sidebar-social a:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

/* Sidebar Overlay */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ===================================
   Main Content
   =================================== */
.main-content {
    width: 100%;
    min-height: 100vh;
}

/* ===================================
   Section Styling
   =================================== */
section {
    padding: 80px 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--text-white), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 50px;
    font-size: 1rem;
}

/* ===================================
   Hero Section
   =================================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(66, 153, 225, 0.15) 0%, transparent 70%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.hero-logo {
    width: 120px;
    height: 120px;
    border-radius: 24px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-lg);
    animation: float 3s ease-in-out infinite;
    will-change: transform;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 25px;
    letter-spacing: 1px;
    line-height: 1.1;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-brand-sub {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-gold);
    letter-spacing: 4px;
    margin-top: 8px;
    opacity: 0.9;
}

.hero-tagline {
    font-size: 1.2rem;
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-description {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
    color: var(--primary-dark);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 168, 83, 0.4);
}

/* Send Message Button - Green */
.btn-send {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
}

.btn-send:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--glass-border);
}

.btn-secondary:hover {
    background: var(--glass-bg);
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.btn-full {
    width: 100%;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.hero-scroll a {
    color: var(--text-muted);
    font-size: 1.5rem;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* ===================================
   About Section
   =================================== */
.about-section {
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.2));
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-text h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.8;
}

.goal-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.goal-card i {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.goal-card h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-white);
    margin-bottom: 15px;
}

.goal-card p {
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.8;
}

/* ===================================
   Services Section
   =================================== */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.service-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-card);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 168, 83, 0.2), rgba(66, 153, 225, 0.2));
    border-radius: 20px;
}

.service-icon i {
    font-size: 1.8rem;
    color: var(--accent-gold);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-white);
    margin-bottom: 10px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ===================================
   Partners Section
   =================================== */
.partners-section {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2), transparent);
}

.partners-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.partner-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
}

.partner-card.featured {
    border-color: var(--accent-gold);
    background: linear-gradient(135deg, rgba(212, 168, 83, 0.1), var(--glass-bg));
}

.partner-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--accent-gold);
    color: var(--primary-dark);
    padding: 5px 40px;
    font-size: 0.75rem;
    font-weight: 600;
    transform: rotate(45deg);
}

.partner-logo {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.hdfc-logo {
    background: linear-gradient(135deg, #ed1c24, #c41e3a);
    color: white;
}

.tata-logo {
    background: linear-gradient(135deg, #00529b, #003d73);
    color: white;
}

.niva-logo {
    background: linear-gradient(135deg, #00a5e0, #0077b6);
    color: white;
}

.partner-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px;
    object-fit: cover;
}

.partner-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-white);
    margin-bottom: 5px;
}

.partner-tagline {
    color: var(--accent-gold);
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 15px;
}

.partner-card p:last-child {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ===================================
   Team Section
   =================================== */
.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.team-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
}

.team-card.chairman {
    border-color: var(--accent-gold);
    background: linear-gradient(135deg, rgba(212, 168, 83, 0.15), var(--glass-bg));
}

.team-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--glass-border);
    transition: var(--transition);
}

.team-card:hover .team-image {
    border-color: var(--accent-gold);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.team-image.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
}

.team-image.placeholder i {
    font-size: 3rem;
    color: var(--text-muted);
}

.team-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-white);
    margin-bottom: 5px;
}

.team-role {
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.team-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* ===================================
   Testimonials Section
   =================================== */
.testimonials-section {
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.2));
}

.testimonials-slider {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.testimonial-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
}

.testimonial-stars {
    margin-bottom: 15px;
}

.testimonial-stars i {
    color: var(--accent-gold);
    font-size: 1rem;
    margin-right: 3px;
}

.testimonial-text {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar i {
    color: var(--primary-dark);
    font-size: 1.2rem;
}

.author-info h4 {
    color: var(--text-white);
    font-size: 1rem;
    margin-bottom: 2px;
}

.author-info p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ===================================
   Contact Section
   =================================== */
.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 20px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.contact-item:hover {
    border-color: var(--accent-gold);
}

.contact-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(212, 168, 83, 0.2), rgba(66, 153, 225, 0.2));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    font-size: 1.3rem;
    color: var(--accent-gold);
}

.contact-details h4 {
    color: var(--text-white);
    font-size: 1rem;
    margin-bottom: 5px;
}

.contact-details a,
.contact-details p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-details a:hover {
    color: var(--accent-gold);
}

.contact-social {
    padding-top: 10px;
}

.contact-social h4 {
    color: var(--text-white);
    font-size: 1rem;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text-muted);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-container {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: rgba(212, 168, 83, 0.05);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--primary-dark);
    color: var(--text-white);
}

/* ===================================
   WhatsApp Floating Button
   =================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 998;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
}

.whatsapp-float i {
    font-size: 2rem;
    color: white;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--primary-dark);
    color: var(--text-white);
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
    }
}

.whatsapp-float {
    animation: pulse 2s infinite;
}

/* ===================================
   FAQ Section
   =================================== */
.faq-section {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2), transparent);
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--accent-gold);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(212, 168, 83, 0.1);
}

.faq-question h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--text-white);
    font-weight: 600;
}

.faq-question i {
    color: var(--accent-gold);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 25px 20px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===================================
   Enhanced Hover Effects for Cards
   =================================== */
.team-card:hover,
.partner-card:hover {
    border-color: var(--accent-gold);
}

.service-card.featured-service {
    border-color: var(--accent-gold);
    background: linear-gradient(135deg, rgba(212, 168, 83, 0.1), var(--glass-bg));
}

/* ===================================
   Theme Toggle (Top Right)
   =================================== */
.theme-toggle-float {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
    width: 45px;
    height: 45px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
    backdrop-filter: blur(10px);
}

body.light-mode .theme-toggle-float {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
}

/* Theme toggle hover is handled in media query below */

.theme-toggle-float i {
    font-size: 1.2rem;
    position: absolute;
    transition: opacity 0.2s ease, color 0.2s ease;
    pointer-events: none;
    /* Icon shouldn't block clicks */
}

.theme-toggle-float .fa-sun {
    color: var(--accent-gold);
    opacity: 1;
}

.theme-toggle-float .fa-moon {
    color: var(--text-muted);
    opacity: 0;
}

body.light-mode .theme-toggle-float .fa-sun {
    opacity: 0;
}

body.light-mode .theme-toggle-float .fa-moon {
    color: #b8860b;
    /* Darker gold for better contrast in light mode */
    opacity: 1;
}

/* Fix for mobile "stuck" hover state and contrast */
@media (hover: hover) {
    .theme-toggle-float:hover {
        background: var(--accent-gold);
        border-color: var(--accent-gold);
        transform: scale(1.1);
    }

    .theme-toggle-float:hover i {
        color: var(--primary-dark);
    }

    body.light-mode .theme-toggle-float:hover i {
        color: #1a365d;
        /* Dark blue icon on gold background in light mode */
    }
}

/* Active state for better mobile feedback */
.theme-toggle-float:active {
    transform: scale(0.9);
    background: rgba(212, 168, 83, 0.4);
}

/* ===================================
   Stats Counter Section
   =================================== */
.stats-section {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(212, 168, 83, 0.1), transparent);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 25px 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-card);
}

.stat-icon {
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 5px;
}

.stat-number::after {
    content: '+';
    font-size: 1.5rem;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

/* ===================================
   Back to Top Button
   =================================== */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 997;
    width: 50px;
    height: 50px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
}

.back-to-top i {
    font-size: 1.2rem;
    color: var(--accent-gold);
    transition: var(--transition);
}

.back-to-top:hover i {
    color: var(--primary-dark);
}

/* ===================================
   Contact Map
   =================================== */
.contact-map {
    margin-top: 25px;
}

.contact-map h4 {
    color: var(--text-white);
    font-family: var(--font-heading);
    margin-bottom: 15px;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: rgba(0, 0, 0, 0.3);
    padding: 50px 0 20px;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-logo-container {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    margin-bottom: 10px;
}

.footer-tagline {
    color: var(--accent-gold);
    font-size: 0.9rem;
    margin-top: 5px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    padding: 5px 10px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border-radius: 10px;
    color: var(--text-muted);
    font-size: 1.1rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--glass-border);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ===================================
   Tablet Styles (768px+)
   =================================== */
@media (min-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-brand-sub {
        font-size: 1.2rem;
        letter-spacing: 6px;
    }

    .hero-tagline {
        font-size: 1.4rem;
    }

    .hero-logo {
        width: 150px;
        height: 150px;
    }

    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-slider {
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 20px;
    }

    .testimonial-card {
        min-width: 350px;
        scroll-snap-align: start;
    }

    .contact-grid {
        flex-direction: row;
    }

    .contact-info {
        flex: 1;
    }

    .contact-form-container {
        flex: 1;
    }
}

/* ===================================
   Desktop Styles (1024px+)
   =================================== */
@media (min-width: 1024px) {

    /* Keep hamburger menu visible on desktop for toggleable sidebar */
    .mobile-menu-toggle {
        display: flex;
    }

    /* Sidebar stays hidden until toggled */
    .sidebar {
        transform: translateX(-100%);
        width: 280px;
        left: 0;
    }

    .sidebar.active {
        transform: translateX(0);
    }

    .sidebar-overlay {
        display: block;
    }

    /* Main content takes full width */
    .main-content {
        margin-left: 0;
        width: 100%;
    }

    section {
        padding: 100px 0;
    }

    .section-title {
        font-size: 3rem;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-brand-sub {
        font-size: 1.4rem;
        letter-spacing: 8px;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .partners-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .testimonials-slider {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
        overflow: visible;
    }

    .testimonial-card {
        min-width: auto;
    }

    .about-content {
        flex-direction: row;
        align-items: center;
    }

    .about-text {
        flex: 2;
    }

    .about-goals {
        flex: 1;
    }
}

/* ===================================
   Large Desktop (1400px+)
   =================================== */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }

    .hero-logo {
        width: 180px;
        height: 180px;
    }

    .hero-title {
        font-size: 4.2rem;
        /* Adjusted for long name */
    }
}

/* ===================================
   Animations
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.partner-card,
.team-card,
.testimonial-card {
    animation: fadeInUp 0.6s ease forwards;
}

/* Stagger animation delays */
.services-grid .service-card:nth-child(1) {
    animation-delay: 0.1s;
}

.services-grid .service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.services-grid .service-card:nth-child(3) {
    animation-delay: 0.3s;
}

.services-grid .service-card:nth-child(4) {
    animation-delay: 0.4s;
}

.services-grid .service-card:nth-child(5) {
    animation-delay: 0.5s;
}

.services-grid .service-card:nth-child(6) {
    animation-delay: 0.6s;
}

.services-grid .service-card:nth-child(7) {
    animation-delay: 0.7s;
}

.services-grid .service-card:nth-child(8) {
    animation-delay: 0.8s;
}

.services-grid .service-card:nth-child(9) {
    animation-delay: 0.9s;
}

.team-grid .team-card:nth-child(1) {
    animation-delay: 0.1s;
}

.team-grid .team-card:nth-child(2) {
    animation-delay: 0.2s;
}

.team-grid .team-card:nth-child(3) {
    animation-delay: 0.3s;
}

.team-grid .team-card:nth-child(4) {
    animation-delay: 0.4s;
}

.team-grid .team-card:nth-child(5) {
    animation-delay: 0.5s;
}

.team-grid .team-card:nth-child(6) {
    animation-delay: 0.6s;
}

.team-grid .team-card:nth-child(7) {
    animation-delay: 0.7s;
}

.team-grid .team-card:nth-child(8) {
    animation-delay: 0.8s;
}

.team-grid .team-card:nth-child(9) {
    animation-delay: 0.9s;
}

/* ===================================
   Mobile Performance Optimizations
   =================================== */
@media (max-width: 768px) {

    /* Reduce backdrop-filter on mobile for better performance */
    .sidebar,
    .contact-item,
    .service-card,
    .partner-card,
    .team-card,
    .faq-item,
    .stat-card {
        backdrop-filter: none;
    }

    /* Disable blurs for smoother scrolling on mobile */

    /* GPU acceleration for smooth scrolling */
    .main-content {
        transform: translateZ(0);
        will-change: scroll-position;
    }

    /* Reduce shadow complexity */
    .mobile-menu-toggle,
    .whatsapp-float,
    .back-to-top,
    .theme-toggle-float {
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }
}

/* ===================================
   Print Styles
   =================================== */
@media print {

    .sidebar,
    .mobile-menu-toggle,
    .sidebar-overlay {
        display: none;
    }

    .main-content {
        margin-left: 0;
        width: 100%;
    }

    body {
        background: white;
        color: black;
    }
}