:root {
    --primary-color: #facc15; /* Brand Yellow */
    --primary-hover: #eab308;
    --primary-dark: #a16207;
    --secondary-color: #475569; /* Medium Grey */
    --dark-color: #1e293b; /* Deep Grey/Blue */
    --light-grey: #f8fafc; /* Very Light Grey */
    --medium-grey: #e2e8f0; /* Border Grey */
    --text-main: #334155; /* Main Text Grey */
    --light-color: #ffffff;
    --white: #ffffff;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --radius: 0.75rem;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

/* Typography Enhancements */
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--white);
    overflow-x: hidden;
    word-wrap: break-word;
}

/* Typography */
h1, h2, h3, h4 {
    color: var(--dark-color);
    font-weight: 700;
    line-height: 1.2;
}

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

/* Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem; /* Reduced for mobile */
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--dark-color);
    box-shadow: 0 4px 14px rgba(250, 204, 21, 0.4);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(250, 204, 21, 0.5);
}

.btn-secondary {
    background-color: var(--medium-grey);
    color: var(--dark-color);
}

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

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--gray-700);
}

input, select, textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Card Enhancements */
.card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

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

.card i {
    color: var(--primary-color);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--white);
    padding: 1.2rem 0;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.navbar.sticky {
    padding: 0.6rem 0;
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid var(--medium-grey);
}

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

.logo-wrapper {
    position: relative;
    z-index: 1100;
    align-self: stretch;
    display: flex;
    align-items: center;
}

.logo-circle {
    background: var(--white);
    width: 130px;
    height: 130px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    border: 6px solid var(--primary-color);
    transition: var(--transition);
    overflow: hidden;
    position: absolute;
    /* Exactly half in header and half in hero */
    top: 100%;
    left: 0;
    margin-top: 1.2rem;
    transform: translateY(-50%);
    z-index: 1101;
}

.navbar.sticky .logo-circle {
    margin-top: 0.6rem;
}

.logo-circle img {
    width: 85px; /* Scaled up for more impact */
    height: auto;
    object-fit: contain;
    transform: scale(1.1);
}

.logo-circle:hover {
    transform: translateY(-50%) scale(1.08);
}

.nav-links {
    display: flex;
    align-items: center;
    margin-left: auto;
    gap: 3rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.nav-menu a.active {
    color: var(--primary-dark);
    position: relative;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

.nav-auth {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark-color);
}

@media (max-width: 992px) {
    .navbar {
        padding: 0.8rem 0;
    }

    .navbar.sticky {
        padding: 0.5rem 0;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        gap: 1.5rem;
        border-top: 1px solid var(--medium-grey);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: var(--transition);
        pointer-events: none;
        z-index: 1200; /* Higher than logo circle */
        text-align: center;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: all;
    }

    .nav-menu {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .nav-auth {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .nav-auth .btn {
        width: 100%;
    }

    .logo-wrapper {
        position: static;
    }
    
    .logo-circle {
        width: 110px;
        height: 110px;
        border-width: 4px;
        margin-top: 1.2rem;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 1300; /* Above mobile menu */
    }

    .logo-circle:hover {
        transform: translate(-50%, -50%) scale(1.08);
    }

    .navbar.sticky .logo-circle {
        margin-top: 0.6rem;
    }
    
    .logo-circle img {
        width: 65px;
    }
}

/* Sidebar Layout */
.wrapper {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: 260px;
    background: var(--dark-color);
    color: var(--white);
    padding: 2rem 1.5rem;
    transition: var(--transition);
}

.sidebar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    color: var(--white);
}

.sidebar-nav {
    list-style: none;
}

.sidebar-nav li {
    margin-bottom: 0.5rem;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    padding: 0.8rem 1rem;
    color: #94a3b8;
    border-radius: var(--radius);
}

.sidebar-nav a:hover, .sidebar-nav a.active {
    background: rgba(255,255,255,0.1);
    color: var(--white);
}

.main-content {
    flex: 1;
    padding: 2rem;
    overflow-x: hidden;
}

/* Badges */
.badge {
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-pending { background: #fef3c7; color: #92400e; }
.badge-confirmed { background: #dcfce7; color: #166534; }
.badge-completed { background: #dcfce7; color: #166534; }
.badge-cancelled { background: #fee2e2; color: #991b1b; }

/* Grid Layouts */
.grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

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

/* Section Typography */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.section-description {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.light-bg {
    background: var(--light-grey) !important;
    color: var(--text-main) !important;
}

.text-center {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    color: var(--primary-dark);
}

.stat-label {
    font-weight: 600;
    color: var(--secondary-color);
}

/* Trust Section */
.trust-section {
    padding: 60px 0;
    background: var(--light-grey);
    border-top: 1px solid var(--medium-grey);
    border-bottom: 1px solid var(--medium-grey);
}

.trust-title {
    text-align: center;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
}

.trust-logos {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    align-items: center;
    gap: 3rem;
    opacity: 0.5;
    filter: grayscale(1);
}

.trust-logo {
    text-align: center;
}

/* Page Header Variations */
.about-header {
    background: linear-gradient(rgba(30, 41, 59, 0.85), rgba(30, 41, 59, 0.85)), 
                url('https://images.unsplash.com/photo-1521737711867-e3b97375f902?auto=format&fit=crop&w=1920&q=80') !important;
}

.services-header {
    background: linear-gradient(rgba(30, 41, 59, 0.85), rgba(30, 41, 59, 0.85)), 
                url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?auto=format&fit=crop&w=1920&q=80') !important;
}

.contact-header {
    background: linear-gradient(rgba(30, 41, 59, 0.85), rgba(30, 41, 59, 0.85)), 
                url('https://images.unsplash.com/photo-1534536281715-e28d76689b4d?auto=format&fit=crop&w=1920&q=80') !important;
}

/* Auth Pages */
.auth-body {
    background-color: var(--light-grey);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.auth-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.auth-card {
    max-width: 500px;
    width: 100%;
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.auth-card.login-card {
    max-width: 400px;
}

.auth-card.register-card {
    max-width: 600px;
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.auth-header h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.auth-header p {
    color: var(--secondary-color);
}

.auth-footer {
    text-align: center;
    margin-top: 2rem;
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.auth-footer a {
    color: var(--primary-color);
    font-weight: 600;
}

.input-icon-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--secondary-color);
}

.input-with-icon {
    padding-left: 2.75rem !important;
}

.auth-info-box {
    background: var(--medium-grey);
    padding: 1rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    color: var(--secondary-color);
}

/* Utilities */
.w-100 { width: 100% !important; }
.h-150 { height: 150px !important; }
.m-0 { margin: 0 !important; }
.flex { display: flex !important; }
.flex-align { display: flex !important; align-items: center !important; }
.flex-between { display: flex !important; justify-content: space-between !important; align-items: center !important; }
.flex-wrap { flex-wrap: wrap !important; }
.gap-5 { gap: 5px !important; }
.gap-10 { gap: 10px !important; }
.text-center { text-align: center !important; }
.mb-10 { margin-bottom: 10px !important; }
.mb-15 { margin-bottom: 1.5rem !important; }
.mt-16 { margin-top: 1rem !important; }
.mt-auto { margin-top: auto !important; }
.p-16 { padding: 1rem !important; }
.pt-20 { padding-top: 2rem !important; }
.d-none { display: none !important; }

/* Colors */
.color-primary { color: var(--primary-color) !important; }
.color-secondary { color: var(--secondary-color) !important; }
.color-warning { color: var(--warning-color) !important; }
.color-success { color: var(--success-color) !important; }

/* Grid Variations */
.services-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

/* Nav Fixes */
.nav-links.active.static {
    display: flex;
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
    position: static;
    box-shadow: none;
    border: none;
    padding: 0;
}

/* Table Content Styling */
.text-center { text-align: center; }
.p-32 { padding: 2rem; }
.fw-500 { font-weight: 500 !important; }
.fw-600 { font-weight: 600 !important; }
.fw-700 { font-weight: 700 !important; }
.fs-11 { font-size: 0.7rem; }
.fs-12 { font-size: 0.75rem; }
.fs-13 { font-size: 0.8rem; }
.fs-14 { font-size: 0.85rem; }
.fs-15 { font-size: 0.9rem; }
.fs-28 { font-size: 1.75rem; }
.fs-32 { font-size: 2rem; }
.italic { font-style: italic; }
.avatar-sm {
    width: 24px;
    height: 24px;
    background: var(--gray-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}
.gap-8 { gap: 0.5rem; }
.w-80 { width: 80px; }
.p-4-8 { padding: 4px 8px; }
.p-4-12 { padding: 4px 12px; }

/* Stat Card Variations */
.stat-card-green { border-left: 4px solid #10b981 !important; }
.stat-card-orange { border-left: 4px solid #f59e0b !important; }

/* Feature List */
.feature-list {
    margin-top: 1.5rem;
    list-style: none;
}

.feature-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--secondary-color);
    font-weight: 500;
}

.feature-list i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Contact Page Styles */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
}

.contact-info-card {
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-method-content h4 {
    margin-bottom: 4px;
    font-size: 1.1rem;
}

.contact-method-content p {
    color: var(--secondary-color);
    line-height: 1.5;
}

.contact-form-wrapper {
    background: var(--light-grey);
    padding: 3.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

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

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

.dashboard-title h1 {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.dashboard-title p {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.stat-card {
    padding: 1.5rem;
}

.stat-card-label {
    font-size: 0.85rem;
    color: var(--secondary-color);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.stat-card-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark-color);
}

.sidebar-brand-wrapper {
    padding: 2rem 1rem;
    text-align: center;
}

.sidebar-logo {
    width: 100%;
    max-width: 180px;
    height: auto;
    background: white;
    padding: 12px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.logout-link {
    color: #ef4444 !important; /* Tailwind red-500 */
}

.logout-link:hover {
    background: rgba(239, 68, 68, 0.1) !important;
}

/* Form Styles */
.form-card {
    padding: 2rem;
}

.form-card h3 {
    margin-bottom: 1.5rem;
}

/* Table Responsiveness */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 1rem;
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
}

table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
}

.table-responsive table {
    min-width: 600px;
}

th, td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--gray-200);
}

th {
    background: var(--gray-100);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--secondary-color);
    text-transform: uppercase;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .sidebar {
        position: fixed;
        left: -260px;
        z-index: 1100;
        height: 100vh;
        box-shadow: var(--shadow-lg);
    }
    
    .sidebar.active {
        left: 0;
    }

    #sidebar-toggle {
        display: block !important;
        background: var(--light-grey);
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        cursor: pointer;
    }

    .dashboard-header {
        flex-direction: row; /* Keep it horizontal on mobile for dashboard */
        gap: 1rem;
    }

    .main-content {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        max-width: 100%;
        line-height: 1.5;
    }

    .hero {
        padding: 150px 0 60px;
        background-attachment: scroll;
    }

    .page-header {
        padding: 140px 0 60px;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .hero-content h1 .d-block {
        white-space: normal;
        line-height: 1.2;
    }

    .availability-badge {
        font-size: 0.8rem;
        padding: 0.6rem 1.2rem;
        line-height: 1.4;
        border-radius: 15px;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    .logo-circle {
        width: 100px;
        height: 100px;
    }
    
    .logo-circle img {
        width: 60px;
    }

    .card {
        padding: 1.5rem;
    }

    .grid, .grid-2, .grid-3, .grid-4, .stats-grid, .features-grid, .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-item h3 {
        font-size: 2.5rem;
    }

    .trust-logos {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        gap: 1rem;
    }

    .hero-btns .btn {
        width: 100%;
        margin: 0;
    }

    .row {
        flex-direction: column;
    }

    .nav-links {
        padding: 1.5rem;
        text-align: center;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .hero-btns .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero {
        padding: 120px 0 40px;
    }

    .page-header {
        padding: 120px 0 40px;
    }

    .hero-content h1, .page-header h1 {
        font-size: 1.6rem; /* Further reduced */
        line-height: 1.2;
        word-wrap: break-word;
        overflow-wrap: break-word;
        letter-spacing: normal;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .availability-badge {
        font-size: 0.7rem;
        padding: 0.5rem 0.8rem;
        width: 100%;
        max-width: 100%;
        border-radius: 10px;
        margin-bottom: 1.5rem;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .trust-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .logo-circle {
        width: 85px;
        height: 85px;
        border-width: 3px;
    }

    .logo-circle:hover {
        transform: translate(-50%, -50%) scale(1.05);
    }

    .logo-circle img {
        width: 50px;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-brand img {
        height: 60px;
        margin-bottom: 1rem;
    }

    .footer-legal {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
}

@media (max-width: 360px) {
    .hero-content h1, .page-header h1 {
        font-size: 1.4rem;
    }
    
    .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* Stats Cards */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    padding: 1.5rem;
    border-left: 4px solid var(--primary-color);
}

/* Hero Section Enhancement */
.hero {
    position: relative;
    padding: 200px 0 100px; /* Increased top padding for better logo clearance */
    min-height: 95vh;
    background: linear-gradient(rgba(15, 23, 42, 0.88), rgba(15, 23, 42, 0.82)), 
                url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    color: var(--white);
}

/* Page Headers */
.page-header {
    padding: 180px 0 100px;
    text-align: center;
    color: var(--white);
    background-size: cover !important;
    background-position: center !important;
    position: relative;
}

.page-header h1 {
    color: var(--white) !important;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.page-header p {
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 0 2px 15px rgba(0,0,0,0.4);
    font-weight: 500;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-content h1 {
    font-size: 4rem; /* Slightly smaller to guarantee two lines on most screens */
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--white);
    text-shadow: 0 4px 30px rgba(0,0,0,0.9);
    letter-spacing: -1.5px;
}

.hero-content h1 .d-block {
    display: block;
    white-space: normal; /* Changed from nowrap to allow wrapping on mobile */
}

.hero-content h1 .highlight {
    color: var(--primary-color);
    display: block;
    margin-top: 0.2rem;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 15px rgba(0,0,0,0.6);
    font-weight: 400;
    line-height: 1.6;
}

.availability-badge {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(250, 204, 21, 0.4);
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    line-height: 1.4;
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    margin-right: 10px;
    display: inline-block;
    box-shadow: 0 0 10px var(--primary-color);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(250, 204, 21, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(250, 204, 21, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(250, 204, 21, 0); }
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn-secondary-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 0.8rem 1.8rem;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.btn-secondary-outline:hover {
    background: var(--white);
    color: var(--dark-color);
    transform: translateY(-2px);
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: var(--dark-color);
    color: var(--white);
}

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

.stat-item h3 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.8;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 800;
}

.section-header p {
    color: var(--secondary-color);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.feature-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--medium-grey);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--light-grey);
    color: var(--primary-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 2rem;
    transition: var(--transition);
}

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

.feature-card h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-card p {
    color: var(--secondary-color);
    line-height: 1.7;
}

/* Footer SEO Optimization */
.main-footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 100px 0 40px;
}

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

.footer-brand img {
    height: 70px;
    background: var(--white);
    padding: 12px;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.footer-brand p {
    opacity: 0.8;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.footer-socials {
    display: flex;
    gap: 1.2rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.1);
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--dark-color);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.footer-heading {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 10px;
}

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

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

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

.footer-contact-info {
    list-style: none;
}

.footer-contact-info li {
    display: flex;
    gap: 15px;
    margin-bottom: 1.2rem;
    color: rgba(255,255,255,0.7);
}

.footer-contact-info i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    opacity: 0.6;
    font-size: 0.95rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

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

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

    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .footer-brand img {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-contact-info li {
        justify-content: center;
    }

    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
