/* 
   HomeTech Services - Modern Premium CSS Stylesheet
   Design Guidelines: Rounded corners, soft premium shadows, blue gradients, glassmorphism, responsive mobile-first, and dark-mode support.
*/

/* --- Google Fonts --- */
@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');

/* --- CSS Variables & Custom Theme Settings --- */
:root {
    /* Brand Colors */
    --primary: #0A4D9B;         /* Royal Blue */
    --primary-hover: #083c7a;
    --secondary: #123E7A;       /* Dark Navy */
    --secondary-hover: #0e2f5d;
    --accent: #FF9F43;          /* Warm Gold/Orange for ratings & alerts */
    --accent-green: #2ecc71;    /* WhatsApp & Success states */
    
    /* Neutral Light Theme */
    --bg-primary: #FFFFFF;
    --bg-secondary: #F5F7FA;     /* Light Gray */
    --bg-tertiary: #E9ECEF;
    --text-primary: #1E293B;     /* Slate 800 */
    --text-secondary: #64748B;   /* Slate 500 */
    --text-light: #94A3B8;
    
    /* Layout & Components */
    --card-bg: #FFFFFF;
    --card-border: rgba(10, 77, 155, 0.08);
    --nav-bg: rgba(255, 255, 255, 0.85);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 24px rgba(18, 62, 122, 0.06);
    --shadow-lg: 0 16px 32px rgba(18, 62, 122, 0.12);
    --gradient-hero: linear-gradient(135deg, rgba(10, 77, 155, 0.95), rgba(18, 62, 122, 0.98));
    --gradient-blue: linear-gradient(135deg, #0A4D9B, #123E7A);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.4));
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --gradient-orange: linear-gradient(135deg, #FF9F43, #FF6B00);
}

/* --- Dark Theme Variables --- */
[data-theme="dark"] {
    --bg-primary: #0F172A;       /* Slate 900 */
    --bg-secondary: #1E293B;     /* Slate 800 */
    --bg-tertiary: #334155;      /* Slate 700 */
    --text-primary: #F8FAFC;     /* Slate 50 */
    --text-secondary: #94A3B8;   /* Slate 400 */
    --text-light: #64748B;
    
    --card-bg: #1E293B;
    --card-border: rgba(255, 255, 255, 0.05);
    --nav-bg: rgba(15, 23, 42, 0.85);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 16px 32px rgba(0, 0, 0, 0.4);
    --gradient-hero: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(9, 24, 45, 0.98));
    --gradient-glass: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(30, 41, 59, 0.4));
    --gradient-orange: linear-gradient(135deg, #FF9F43, #FF6B00);
}

/* --- Core Resets --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

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

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    outline: none;
    border: none;
}

/* --- Scrollbar Customization --- */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}
::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
    border: 2px solid var(--bg-secondary);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--secondary);
}

/* --- Global Utilities & Grids --- */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 5rem 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 3.5rem 0;
    }
}

.text-center { text-align: center; }
.flex { display: flex; }
.grid { display: grid; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    font-weight: 600;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-heading);
}

.btn-primary {
    background: var(--gradient-orange);
    color: #FFFFFF;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: var(--gradient-orange);
    opacity: 0.95;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3);
}

.btn-secondary {
    background: var(--bg-primary);
    color: var(--primary);
    border: 2px solid var(--primary);
}

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

.btn-white {
    background: #FFFFFF;
    color: var(--secondary);
    box-shadow: var(--shadow-sm);
}

.btn-white:hover {
    background: var(--bg-secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

/* --- Badge & Tags --- */
.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 50px;
    background: rgba(10, 77, 155, 0.1);
    color: var(--primary);
    margin-bottom: 1rem;
}

[data-theme="dark"] .badge {
    background: rgba(10, 77, 155, 0.25);
    color: #93C5FD;
}

.rating-stars {
    color: var(--accent);
    display: flex;
    gap: 0.2rem;
    margin-bottom: 0.5rem;
}

/* --- Header & Navigation --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    transition: var(--transition);
}

@media (min-width: 993px) {
    .navbar nav {
        margin-left: auto;
        margin-right: 2.5rem;
    }
}

header.scrolled {
    background-color: var(--nav-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--card-border);
}

header.scrolled .navbar {
    padding: 0.75rem 0;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2rem;
}

.nav-links li {
    position: relative;
}

.nav-link {
    font-weight: 500;
    color: var(--text-primary);
    position: relative;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

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

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

/* Dropdown Menu CSS */
.dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-lg);
    list-style: none;
    min-width: 240px;
    padding: 0.75rem 0;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1010;
}

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

.dropdown li {
    width: 100%;
}

.dropdown-item {
    display: block;
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
    transition: var(--transition);
    text-align: left;
}

.dropdown-item:hover {
    background: rgba(10, 77, 155, 0.05);
    color: var(--primary);
    padding-left: 1.75rem;
}

[data-theme="dark"] .dropdown {
    background: var(--bg-secondary);
    border-color: var(--card-border);
}


.nav-controls {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

/* Theme Toggle Button */
.theme-toggle {
    background: var(--bg-secondary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--text-primary);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.theme-toggle:hover {
    background: var(--bg-tertiary);
    transform: rotate(15deg);
}

/* Mobile Toggle Hamburger */
.menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    cursor: pointer;
}

.menu-btn span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--text-primary);
    border-radius: 3px;
    transition: var(--transition);
}

/* Mobile responsive menu */
@media (max-width: 992px) {
    .menu-btn {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: calc(100vh - 80px);
        background: var(--bg-primary);
        box-shadow: var(--shadow-lg);
        flex-direction: column;
        align-items: flex-start;
        padding: 2.5rem;
        gap: 1.5rem;
        transition: var(--transition);
        border-left: 1px solid var(--card-border);
        overflow-y: auto;
    }
    
    .nav-links.open {
        right: 0;
    }
    
    .nav-controls .btn-cta {
        display: none;
    }
    
    .nav-links li {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .nav-links li > a {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.5rem 0;
    }

    .nav-links .dropdown {
        position: static !important;
        width: 100% !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: none;
        transform: none !important;
        box-shadow: none !important;
        border: none !important;
        background: transparent !important;
        padding: 0.5rem 0 0.5rem 1.25rem !important;
        min-width: unset !important;
    }

    .nav-links li.active-mobile-dropdown .dropdown {
        display: block !important;
    }

    .dropdown-item {
        padding: 0.5rem 0;
        font-size: 0.9rem;
        border-bottom: 1px solid rgba(10, 77, 155, 0.05);
    }
    
    [data-theme="dark"] .dropdown-item {
        border-bottom-color: rgba(255, 255, 255, 0.05);
    }
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    padding-top: 8rem;
    padding-bottom: 4rem;
    background: var(--gradient-hero);
    color: #FFFFFF;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(10, 77, 155, 0.25) 0%, transparent 70%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

.hero-btns {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img-wrapper {
    position: relative;
    width: 100%;
    max-width: 480px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(18, 62, 122, 0.4), transparent);
}

/* Floating Badges in Hero */
.hero-floating-badge {
    position: absolute;
    background: var(--gradient-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.8rem 1.2rem;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 0.9rem;
    animation: float 4s ease-in-out infinite;
}

.hfb-1 {
    bottom: 30px;
    left: -20px;
}

.hfb-2 {
    top: 40px;
    right: -20px;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 4rem;
    }
    
    .hero-content h1 {
        font-size: 2.75rem;
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .hero-visual {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .hfb-1, .hfb-2 {
        display: none;
    }
}

/* --- Section Headers --- */
.section-header {
    max-width: 650px;
    margin: 0 auto 3.5rem auto;
}

.section-header h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* --- Why Choose Us (Feature Cards) --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--primary);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(10, 77, 155, 0.2);
}

.feature-card:hover::before {
    height: 100%;
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius-sm);
    background: rgba(10, 77, 155, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.feature-card:hover .feature-icon-wrapper {
    background: var(--primary);
    color: #FFFFFF;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-secondary);
}

/* --- Our Services --- */
.services-section {
    background-color: var(--bg-secondary);
}

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

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-card-img {
    height: 180px;
    width: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-card-img {
    transform: scale(1.05);
}

.service-card-body {
    padding: 1.75rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-card-body h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.service-card-list {
    list-style: none;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-card-list li {
    font-size: 0.95rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.4rem;
}

.service-card-list li i {
    color: var(--primary);
    font-size: 0.8rem;
}

.service-card-body .btn {
    width: 100%;
    margin-top: auto;
}

/* --- Brands We Service --- */
.brands-section {
    background-color: var(--bg-primary);
}

.brands-slider-container {
    overflow: hidden;
    padding: 1.5rem 0;
    position: relative;
    width: 100%;
}

.brands-track {
    display: flex;
    width: max-content;
    gap: 4rem;
    padding-right: 4rem;
    animation: scrollBrands 25s linear infinite;
}

.brand-logo-item {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    padding: 0 1.5rem;
    border-radius: var(--border-radius-sm);
    background: var(--bg-secondary);
    border: 1px solid var(--card-border);
    transition: var(--transition);
}

.brand-logo-item:hover {
    color: var(--primary);
    border-color: var(--primary);
    transform: scale(1.05);
}

@keyframes scrollBrands {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- How It Works --- */
.timeline-section {
    background-color: var(--bg-secondary);
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background: var(--primary);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    border-radius: 4px;
    opacity: 0.2;
}

.timeline-item {
    padding: 1rem 3rem;
    position: relative;
    background: transparent;
    width: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: var(--bg-primary);
    border: 4px solid var(--primary);
    top: 1.5rem;
    border-radius: 50%;
    z-index: 1;
    transition: var(--transition);
}

.timeline-left {
    left: 0;
    text-align: right;
}

.timeline-right {
    left: 50%;
}

.timeline-right::after {
    left: -10px;
}

.timeline-content {
    padding: 1.5rem;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    position: relative;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.timeline-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: flex-end;
}

.timeline-right .timeline-content h3 {
    justify-content: flex-start;
}

.timeline-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.timeline-step {
    background: var(--primary);
    color: #FFFFFF;
    font-size: 0.8rem;
    padding: 0.2rem 0.5rem;
    border-radius: 50px;
}

.timeline-item:hover::after {
    background-color: var(--accent);
    transform: scale(1.2);
}

.timeline-item:hover .timeline-content {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .timeline::after {
        left: 31px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 5rem;
        padding-right: 1.5rem;
    }
    
    .timeline-item::after {
        left: 21px;
        top: 2rem;
    }
    
    .timeline-left {
        left: 0;
        text-align: left;
    }
    
    .timeline-left .timeline-content h3 {
        justify-content: flex-start;
    }
}

/* --- Why Customers Trust Us (Counters) --- */
.counters-section {
    background: var(--gradient-blue);
    color: #FFFFFF;
    position: relative;
}

.counters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    text-align: center;
}

.counter-item h3 {
    font-size: 3.5rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

.counter-item p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* --- Testimonials --- */
.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
    min-width: 100%;
    padding: 3rem 2rem;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    text-align: center;
    box-sizing: border-box;
}

.testimonial-card p {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--primary);
}

.testimonial-role {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.testimonial-nav-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--bg-secondary);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

/* --- Book a Service (Booking Form) --- */
.booking-section {
    background-color: var(--bg-secondary);
}

.booking-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius-md);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    max-width: 800px;
    margin: 0 auto;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group-full {
    grid-column: span 2;
}

.form-group label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.form-control {
    background: var(--bg-secondary);
    border: 1px solid var(--card-border);
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius-sm);
    color: var(--text-primary);
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary);
    background: var(--bg-primary);
    box-shadow: 0 0 0 3px rgba(10, 77, 155, 0.1);
}

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

.booking-card .btn {
    width: 100%;
    padding: 1rem;
}

@media (max-width: 768px) {
    .booking-card {
        padding: 1.75rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group-full {
        grid-column: span 1;
    }
}

/* --- FAQ Accordion --- */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    font-family: var(--font-heading);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: transparent;
    width: 100%;
    text-align: left;
}

.faq-question i {
    color: var(--primary);
    transition: var(--transition);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    border-top: 0px solid transparent;
}

.faq-answer-inner {
    padding: 1.25rem 1.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-item.active {
    border-color: rgba(10, 77, 155, 0.3);
    box-shadow: var(--shadow-md);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    border-top: 1px solid var(--card-border);
}

/* --- Contact & Maps --- */
.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
    align-items: stretch;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 2rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
}

.contact-info-item {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(10, 77, 155, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-info-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.contact-info-text p, 
.contact-info-text a {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.map-container {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-md);
    min-height: 350px;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 350px;
    background: linear-gradient(135deg, #e9ecef, #f5f7fa);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    padding: 2rem;
    text-align: center;
}

.map-placeholder i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* --- Footer --- */
footer {
    background-color: var(--secondary);
    color: rgba(255, 255, 255, 0.8);
    padding: 5rem 0 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-logo-desc h3 {
    color: #FFFFFF;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.footer-logo-desc p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-column h4 {
    color: #FFFFFF;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #FFFFFF;
    padding-left: 0.25rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-btn:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-links a:hover {
    color: #FFFFFF;
}

.designer-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.designer-link:hover {
    color: #FFFFFF;
    text-shadow: 0 0 8px rgba(255, 159, 67, 0.4);
}

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

/* --- Floating Action Buttons --- */
.floating-actions {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    z-index: 999;
}

.floating-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    font-size: 1.5rem;
    transition: var(--transition);
}

.floating-btn:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.btn-whatsapp {
    background-color: var(--accent-green);
}

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

.btn-back-to-top {
    background-color: var(--bg-secondary);
    color: var(--text-primary);
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
}

.btn-back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

@media (max-width: 576px) {
    .floating-actions {
        bottom: 1rem;
        right: 1rem;
    }
    
    .floating-btn {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }
}

/* --- Loading Animation --- */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-primary);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.loader {
    width: 50px;
    height: 50px;
    border: 4px solid var(--bg-tertiary);
    border-top: 4px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loader-wrapper.fade-out {
    opacity: 0;
    visibility: hidden;
}

/* --- Intersection Observer Scroll Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

/* --- Interactive Detail Modals (Services / Dashboard) --- */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.modal-content {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius-md);
    max-width: 600px;
    width: 100%;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    position: relative;
    animation: modalReveal 0.3s ease-out;
}

@keyframes modalReveal {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.modal-header {
    background: var(--gradient-blue);
    padding: 1.25rem 1.75rem;
    color: #FFFFFF;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    color: #FFFFFF;
}

.modal-close {
    background: transparent;
    color: #FFFFFF;
    font-size: 1.5rem;
    cursor: pointer;
}

.modal-body {
    padding: 1.75rem;
}

/* --- Subpages Specific --- */

/* About Page Hero & Info Cards */
.subpage-hero {
    background: var(--gradient-hero);
    color: #FFFFFF;
    padding: 10rem 0 5rem 0;
    text-align: center;
}

.subpage-hero h1 {
    font-size: 3rem;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.subpage-hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

@media (max-width: 768px) {
    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.about-narrative h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.about-narrative p {
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 4rem;
}

@media (max-width: 768px) {
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
}

.mv-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 2.5rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.mv-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.mv-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.mv-card p {
    color: var(--text-secondary);
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.team-member-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
}

.team-member-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.team-member-img {
    height: 280px;
    width: 100%;
    object-fit: cover;
}

.team-member-info {
    padding: 1.5rem;
}

.team-member-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.team-member-info p {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.team-member-experience {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* Service Areas */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
}

.area-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 1.5rem;
    border-radius: var(--border-radius-sm);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.area-card:hover {
    border-color: var(--primary);
    color: var(--primary);
    font-weight: 600;
    transform: scale(1.03);
}

/* AMC Package Grid */
.amc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.amc-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius-md);
    padding: 3rem 2rem;
    box-shadow: var(--shadow-sm);
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.amc-card.popular {
    border: 2px solid var(--primary);
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}

.amc-card:hover {
    transform: translateY(-5px);
}

.amc-card.popular:hover {
    transform: scale(1.03) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #FFFFFF;
    padding: 0.25rem 1rem;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
}

.amc-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.amc-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.amc-price span {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.amc-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.amc-features li {
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.amc-features li i {
    color: var(--primary);
}

.amc-card .btn {
    width: 100%;
}

/* Offers Grid */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.offer-card {
    background: var(--card-bg);
    border: 2px dashed rgba(10, 77, 155, 0.3);
    padding: 2rem;
    border-radius: var(--border-radius-md);
    position: relative;
    overflow: hidden;
    display: flex;
    gap: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.offer-icon {
    font-size: 2.5rem;
    color: var(--primary);
    display: flex;
    align-items: center;
}

.offer-details h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.offer-details p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.promo-code {
    display: inline-block;
    background: rgba(10, 77, 155, 0.08);
    border: 1px dashed var(--primary);
    padding: 0.3rem 0.8rem;
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 4px;
    color: var(--primary);
}

/* Blog Page layout */
.blog-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.blog-filter-btn {
    background: var(--bg-secondary);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.9rem;
    transition: var(--transition);
}

.blog-filter-btn.active, 
.blog-filter-btn:hover {
    background: var(--primary);
    color: #FFFFFF;
}

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

.blog-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-card-img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.blog-card-content {
    padding: 1.75rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-meta {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    display: flex;
    gap: 1rem;
}

.blog-card-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.blog-card-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.blog-read-more {
    font-weight: 700;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.blog-read-more:hover {
    gap: 0.5rem;
}

/* Newsletter section */
.newsletter-section {
    background: var(--gradient-blue);
    color: #FFFFFF;
    text-align: center;
}

.newsletter-section h2 {
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.newsletter-form {
    max-width: 500px;
    margin: 2rem auto 0 auto;
    display: flex;
    gap: 0.5rem;
}

.newsletter-input {
    flex-grow: 1;
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius-sm);
    color: var(--text-primary);
}

@media (max-width: 576px) {
    .newsletter-form {
        flex-direction: column;
    }
}

/* --- Admin Dashboard Layout --- */
.dashboard-container {
    display: grid;
    grid-template-columns: 260px 1fr;
    min-height: 100vh;
    background-color: var(--bg-secondary);
}

.dashboard-sidebar {
    background: var(--secondary);
    color: #FFFFFF;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.dashboard-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.dashboard-brand .logo-img {
    height: 40px;
}

.dashboard-brand h3 {
    color: #FFFFFF;
    font-size: 1.3rem;
}

.sidebar-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sidebar-menu-item a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius-sm);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.sidebar-menu-item.active a,
.sidebar-menu-item a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #FFFFFF;
}

.dashboard-main {
    padding: 2.5rem;
    overflow-y: auto;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.dashboard-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.stat-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius-md);
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.stat-info h4 {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.stat-info .stat-value {
    font-size: 1.75rem;
    font-weight: 800;
    font-family: var(--font-heading);
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(10, 77, 155, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.25rem;
}

.stat-card:nth-child(2) .stat-icon {
    background: rgba(255, 159, 67, 0.08);
    color: var(--accent);
}

.stat-card:nth-child(3) .stat-icon {
    background: rgba(46, 204, 113, 0.08);
    color: var(--accent-green);
}

/* Dashboard Filter Bar */
.dashboard-filter-bar {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 1.25rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.filter-control {
    background: var(--bg-secondary);
    border: 1px solid var(--card-border);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-sm);
    color: var(--text-primary);
}

.search-input {
    flex-grow: 1;
}

/* Data Tables */
.table-responsive {
    overflow-x: auto;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
}

.dashboard-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.95rem;
}

.dashboard-table th, 
.dashboard-table td {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--card-border);
}

.dashboard-table th {
    background: var(--bg-secondary);
    font-weight: 700;
    color: var(--text-primary);
    font-family: var(--font-heading);
}

.dashboard-table tr:last-child td {
    border-bottom: none;
}

.status-pill {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
}

.status-pending { background: rgba(255, 159, 67, 0.15); color: var(--accent); }
.status-assigned { background: rgba(10, 77, 155, 0.15); color: var(--primary); }
.status-completed { background: rgba(46, 204, 113, 0.15); color: var(--accent-green); }
.status-cancelled { background: rgba(231, 76, 60, 0.15); color: #e74c3c; }

.action-btn {
    padding: 0.3rem 0.6rem;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    margin-right: 0.25rem;
    transition: var(--transition);
}

.action-btn-view { background: var(--bg-tertiary); color: var(--text-primary); }
.action-btn-status { background: var(--primary); color: #FFFFFF; }
.action-btn-delete { background: #e74c3c; color: #FFFFFF; }

.action-btn:hover {
    opacity: 0.9;
}

@media (max-width: 992px) {
    .dashboard-container {
        grid-template-columns: 1fr;
    }
    
    .dashboard-sidebar {
        display: none; /* In a production environment, we'd add a toggle dashboard drawer */
    }
}

/* Toast Messages */
.toast-container {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.toast {
    background: var(--card-bg);
    border-left: 4px solid var(--primary);
    box-shadow: var(--shadow-lg);
    border-radius: var(--border-radius-sm);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: toastReveal 0.3s ease-out;
}

.toast-success { border-left-color: var(--accent-green); }
.toast-info { border-left-color: var(--primary); }
.toast-warning { border-left-color: var(--accent); }

@keyframes toastReveal {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Login Panel overlay */
.login-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    z-index: 11000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.login-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius-md);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    max-width: 420px;
    width: 100%;
    text-align: center;
}

.login-card h2 {
    margin-bottom: 0.5rem;
}

.login-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.login-card .form-group {
    text-align: left;
    margin-bottom: 1.5rem;
}

.login-card .btn {
    width: 100%;
}

/* --- Process Timeline Section --- */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius-md);
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.process-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-orange);
    color: #FFFFFF;
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 111, 0, 0.2);
}

.process-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    color: var(--text-primary);
}

.process-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- FAQ Accordion Section --- */
.faq-accordion {
    max-width: 800px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-details {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    transition: border-color var(--transition-fast);
}

.faq-details[open] {
    border-color: var(--accent);
    box-shadow: var(--shadow-sm);
}

.faq-summary {
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    user-select: none;
}

.faq-summary::-webkit-details-marker {
    display: none;
}

.faq-summary::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: transform var(--transition-normal);
}

.faq-details[open] .faq-summary::after {
    transform: rotate(180deg);
    color: var(--accent);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.98rem;
}

