/* ===== MODERN COLOR PALETTE ===== */
:root {
    /* Primary Colors - Modern & Clean */
    --primary-color: #10b981; /* Lighter Emerald Green to match home page */
    --primary-dark: #059669; /* Medium Emerald */
    --primary-light: #34d399; /* Light Emerald */
    
    /* Secondary Colors */
    --secondary-color: #f59e0b; /* Amber */
    --accent-orange: #ea580c; /* Orange */
    --accent-purple: #7c3aed; /* Purple */
    
    /* Neutral Colors - Modern Grays */
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Status Colors */
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --info: #3b82f6;
    
    /* Typography */
    --font-primary: 'Inter', 'Poppins', sans-serif;
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    
    /* Spacing */
    --section-padding: 5rem 0;
    --container-padding: 1rem;
    
    /* Shadows - Modern & Subtle */
    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --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);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Border Radius - Modern */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-regular);
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    max-width: 100vw;
}

/* ===== MODERN LOADING SCREEN ===== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000; /* Only loading screen should be above header */
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.loading-screen.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    color: var(--white);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 300px;
}

.loading-logo {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.loading-text {
    font-size: 1.25rem;
    font-weight: var(--font-weight-medium);
    margin-bottom: 2rem;
    color: var(--gray-300);
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--gray-600);
    border-top: 3px solid var(--primary-color);
    border-radius: var(--radius-full);
    margin: 0 auto;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Mobile Loading Screen Optimization */
@media (max-width: 768px) {
    .loading-content {
        padding: 1.5rem;
        max-width: 280px;
    }
    
    .loading-logo {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .loading-text {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        line-height: 1.4;
    }
    
    .loading-spinner {
        width: 35px;
        height: 35px;
        border-width: 2px;
    }
}

/* ===== MODERN HEADER DESIGN ===== */
.header-section {
    position: sticky;
    top: 0;
    z-index: 9999; /* Increased from 1000 to ensure it's above notifications */
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.header-section.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

/* Clean Top Bar */
.top-bar {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: 0.75rem 0;
    font-size: 0.875rem;
}

.top-bar-info {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-item i {
    color: var(--primary-color);
    font-size: 0.875rem;
}

.info-item a {
    color: var(--gray-300);
    text-decoration: none;
    font-weight: var(--font-weight-medium);
}

.info-item a:hover {
    color: var(--primary-color);
}

.top-bar-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.5rem;
}

.language-switcher {
    display: flex;
    gap: 0.25rem;
}

.lang-btn {
    background: transparent;
    border: 1px solid var(--gray-600);
    color: var(--gray-300);
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: var(--font-weight-medium);
    cursor: pointer;
}

.lang-btn:hover,
.lang-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 0.5rem;
}

.social-link {
    width: 32px;
    height: 32px;
    background: var(--gray-800);
    color: var(--gray-400);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.875rem;
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Modern Main Navigation */
.main-navbar {
    background: transparent;
    padding: 1.25rem 0;
}

.navbar-brand {
    text-decoration: none;
    color: var(--gray-900);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.logo-text {
    line-height: 1.2;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--gray-900);
    margin: 0;
}

.brand-tagline {
    font-size: 0.875rem;
    color: var(--gray-500);
    font-weight: var(--font-weight-medium);
    margin: 0;
}

/* Clean Navigation Links */
.navbar-nav .nav-link {
    color: var(--gray-700);
    font-weight: var(--font-weight-medium);
    padding: 0.75rem 1rem;
    margin: 0 0.25rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
    background: var(--gray-50);
}

.navbar-nav .nav-link.active {
    color: var(--primary-color);
    background: var(--gray-50);
}

.navbar-nav .nav-link i {
    font-size: 0.875rem;
}

/* Modern Action Buttons */
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-quote {
    background: var(--primary-color);
    border: none;
    color: var(--white);
    padding: 0.875rem 1.5rem;
    border-radius: var(--radius-lg);
    font-weight: var(--font-weight-semibold);
    text-decoration: none;
    font-size: 0.9rem;
    box-shadow: var(--shadow-sm);
}

.btn-quote:hover {
    background: var(--primary-dark);
    color: var(--white);
}

.btn-call {
    border: 2px solid var(--gray-300);
    color: var(--gray-700);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    font-weight: var(--font-weight-semibold);
    text-decoration: none;
    font-size: 0.9rem;
}

.btn-call:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: var(--gray-50);
}

/* ===== HOMEPAGE CONTENT SECTIONS ===== */

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: var(--font-weight-semibold);
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--gray-600);
    line-height: 1.6;
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

a:hover {
    color: var(--primary-dark);
    text-decoration: none;
}

/* Section Styling */
.section-title {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--gray-900);
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 3rem;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Services Overview Section */
.services-overview {
    padding: 6rem 0;
    background: var(--white);
    position: relative;
    z-index: 1;
    margin-top: 2rem;
    overflow: hidden;
}

.service-card {
    background: var(--white);
    padding: 0;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    height: 100%;
    text-align: center;
    position: relative;
    border: 1px solid var(--gray-200);
    margin-bottom: 2rem;
    overflow: hidden;
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.service-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}



.service-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    z-index: 2;
    box-shadow: var(--shadow-md);
}


.service-content {
    padding: 2rem 1.5rem;
}

.service-title {
    font-size: 1.25rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.service-description {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-link {
    color: var(--primary-color);
    font-weight: var(--font-weight-medium);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

/* ===== NEW UNIQUE HERO SECTION - WHITE BACKGROUND, NO ANIMATIONS ===== */
.hero-section-new {
    background: var(--white);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.hero-section-new::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    z-index: 1;
}

.hero-section-new .container {
    position: relative;
    z-index: 2;
}

.hero-content-new {
    padding: 2rem 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: var(--font-weight-medium);
    margin-bottom: 1.5rem;
}

.hero-badge i {
    font-size: 0.875rem;
}

.hero-title-new {
    font-size: 3.5rem;
    font-weight: var(--font-weight-bold);
    line-height: 1.1;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

.hero-highlight {
    color: var(--primary-color);
    display: block;
    margin-top: 0.5rem;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-features {
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-weight: var(--font-weight-medium);
    color: var(--gray-700);
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary-new {
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: var(--font-weight-semibold);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid var(--primary-color);
    /* NO transitions or hover effects */
}

.btn-secondary-new {
    background: transparent;
    color: var(--gray-700);
    padding: 1rem 2rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: var(--font-weight-semibold);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid var(--gray-300);
    /* NO transitions or hover effects */
}

.hero-image-new {
    position: relative;
    padding: 2rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.stat-item {
    text-align: center;
    background: var(--white);
    padding: 1.5rem 1rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}

.stat-number {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: var(--font-weight-medium);
}

.hero-visual {
    text-align: center;
    position: relative;
}

.hero-icon {
    font-size: 8rem;
    color: var(--primary-color);
    opacity: 0.1;
    margin-bottom: 2rem;
}

.service-icons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 200px;
    margin: 0 auto;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    /* NO hover effects or animations */
}

/* ===== RESPONSIVE DESIGN FOR NEW HERO ===== */
@media (max-width: 992px) {
    .hero-section-new {
        padding: 4rem 0;
    }
    
    .hero-title-new {
        font-size: 2.75rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-section-new {
        padding: 3rem 0;
    }
    
    .hero-section-new::before {
        display: none;
    }
    
    .hero-title-new {
        font-size: 2.25rem;
        text-align: center;
    }
    
    .hero-description {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-content-new {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
        margin-bottom: 2rem;
    }
    
    .stat-item {
        padding: 1rem 0.5rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title-new {
        font-size: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary-new,
    .btn-secondary-new {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* ===== MODERN TESTIMONIALS SECTION ===== */
.testimonials-modern {
    background: var(--gray-50);
    padding: 6rem 0;
    position: relative;
}

.testimonials-header {
    margin-bottom: 3rem;
}

.testimonials-title {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.testimonials-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-badge {
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    min-width: 120px;
}

.stat-number {
    display: block;
    font-size: 1.75rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.stat-text {
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: var(--font-weight-medium);
}

.testimonial-card-modern {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    height: 100%;
    display: flex;
    flex-direction: column;
    /* NO hover effects or animations */
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-100);
}

.client-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.client-info {
    flex: 1;
}

.client-name {
    font-size: 1.125rem;
    font-weight: var(--font-weight-semibold);
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.client-location {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin: 0;
}

.rating-stars {
    display: flex;
    gap: 0.25rem;
}

.rating-stars i {
    color: #fbbf24;
    font-size: 0.875rem;
}

.testimonial-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.quote-icon {
    margin-bottom: 1rem;
}

.quote-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
    opacity: 0.3;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
    flex: 1;
    font-style: italic;
}

.service-type {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gray-50);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: var(--font-weight-medium);
    color: var(--gray-700);
    align-self: flex-start;
}

.service-type i {
    color: var(--primary-color);
    font-size: 0.875rem;
}

.testimonials-cta {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    max-width: 500px;
    margin: 0 auto;
}

.cta-text {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    font-weight: var(--font-weight-medium);
}

.btn-testimonials-cta {
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: var(--font-weight-semibold);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    border: 2px solid var(--primary-color);
    /* NO hover effects or animations */
}

.btn-testimonials-cta i {
    font-size: 0.875rem;
}

/* ===== RESPONSIVE TESTIMONIALS ===== */
@media (max-width: 992px) {
    .testimonials-modern {
        padding: 4rem 0;
    }
    
    .testimonials-title {
        font-size: 2.25rem;
    }
    
    .testimonials-stats {
        gap: 1.5rem;
    }
    
    .stat-badge {
        padding: 1.25rem 1.5rem;
        min-width: 100px;
    }
}

@media (max-width: 768px) {
    .testimonials-modern {
        padding: 3rem 0;
    }
    
    .testimonials-title {
        font-size: 2rem;
    }
    
    .testimonials-stats {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .stat-badge {
        width: 100%;
        max-width: 200px;
    }
    
    .testimonial-card-modern {
        padding: 1.5rem;
    }
    
    .testimonial-header {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .client-info {
        text-align: center;
    }
    
    .testimonials-cta {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .testimonials-title {
        font-size: 1.75rem;
    }
    
    .testimonials-stats {
        gap: 0.75rem;
    }
    
    .testimonial-card-modern {
        padding: 1.25rem;
    }
    
    .btn-testimonials-cta {
        width: 100%;
        justify-content: center;
    }
}

/* ===== FOOTER STYLES ===== */
.footer {
    background: var(--gray-900) !important;
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-title {
    color: var(--white) !important;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 1.5rem;
    position: relative;
    font-size: 1.125rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--gray-300);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.contact-info .contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-info .contact-item i {
    width: 20px;
    color: var(--primary-color);
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.contact-info a {
    color: var(--gray-300);
    text-decoration: none;
}

.contact-info a:hover {
    color: var(--primary-color);
}

.contact-info strong {
    color: var(--white);
}

/* ===== FLOATING BUTTONS ===== */
.floating-buttons {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 9998; /* Reduced from 1000 to ensure it's below header */
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.floating-btn {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.25rem;
    box-shadow: var(--shadow-lg);
    border: none;
    cursor: pointer;
}

.floating-btn:hover {
    box-shadow: var(--shadow-xl);
}

.call-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: var(--white);
}

.service-btn {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-orange));
    color: var(--white);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
    
    .main-navbar {
        padding: 1rem 0;
    }
    
    .floating-buttons {
        right: 1rem;
        bottom: 1rem;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.125rem;
    }
    
    /* Mobile Services Grid Fix */
    .services-overview .row {
        margin-left: 0;
        margin-right: 0;
    }
    
    .services-overview .col-lg-3,
    .services-overview .col-md-6 {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    .service-card {
        margin-bottom: 1.5rem;
    }
    
    /* Prevent horizontal overflow */
    .container-fluid {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    /* Fix navbar collapse */
    .navbar-collapse {
        max-width: 100%;
    }
    
    .navbar-nav {
        width: 100%;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 0;
        margin: 0;
        border-radius: 0;
    }
    
    /* Mobile hero section fixes */
    .hero-section-new {
        overflow: hidden;
    }
    
    .hero-image-new {
        padding: 1rem;
    }
    
    .hero-visual img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 576px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
        max-width: 100%;
    }
    
    .row {
        margin-left: -0.75rem;
        margin-right: -0.75rem;
    }
    
    .col-lg-3,
    .col-md-6,
    .col-sm-6,
    .col-12 {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    /* Ensure service cards don't overflow */
    .service-card {
        width: 100%;
        max-width: 100%;
    }
    
    .service-image {
        height: 180px;
    }
    
    .service-content {
        padding: 1.5rem 1rem;
    }
    
    /* Mobile typography adjustments */
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title-new {
        font-size: 1.75rem;
        line-height: 1.2;
    }
    
    /* Fix button layouts on mobile */
    .hero-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn-primary-new,
    .btn-secondary-new {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* ===== PAGE HERO SECTIONS ===== */
.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 8rem 0 4rem;
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/pattern-overlay.png') repeat;
    opacity: 0.1;
}

.page-title {
    font-size: 3rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 2rem;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--white);
}

/* ===== BLOG STYLES ===== */
.blog-posts {
    padding: var(--section-padding);
    background: var(--gray-50);
}

.blog-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
}

.blog-card.featured {
    margin-bottom: 3rem;
}

.blog-image {
    position: relative;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog-card.featured .blog-image img {
    height: 350px;
}

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: var(--font-weight-medium);
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--gray-500);
}

.blog-meta i {
    margin-right: 0.25rem;
}

.blog-title {
    margin-bottom: 1rem;
}

.blog-title a {
    color: var(--gray-800);
    text-decoration: none;
}

.blog-title a:hover {
    color: var(--primary-color);
}

.blog-excerpt {
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.blog-read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: var(--font-weight-medium);
}

.blog-read-more:hover {
    color: var(--primary-dark);
}

.blog-pagination .pagination {
    margin-top: 3rem;
}

.page-link {
    color: var(--primary-color);
    border-color: var(--gray-300);
}

.page-link:hover {
    color: var(--primary-dark);
    background-color: var(--gray-100);
    border-color: var(--primary-color);
}

.page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Blog Sidebar */
.blog-sidebar {
    padding-left: 2rem;
}

.sidebar-widget {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 2rem;
}

.widget-title {
    margin-bottom: 1.5rem;
    color: var(--gray-800);
    font-weight: var(--font-weight-semibold);
}

.search-form .input-group {
    border-radius: 8px;
}

.category-list {
    list-style: none;
    padding: 0;
}

.category-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.category-list li:last-child {
    border-bottom: none;
}

.category-list a {
    color: var(--gray-600);
    text-decoration: none;
}

.category-list a:hover {
    color: var(--primary-color);
}

.category-list i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.recent-post {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.recent-post:last-child {
    border-bottom: none;
}

.post-thumb img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.post-content h6 a {
    color: var(--gray-700);
    text-decoration: none;
    font-size: 0.875rem;
}

.post-content h6 a:hover {
    color: var(--primary-color);
}

.post-date {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.newsletter-widget {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
}

.newsletter-widget .widget-title {
    color: var(--white);
}

.newsletter-form input {
    margin-bottom: 1rem;
}

/* ===== TESTIMONIALS STYLES ===== */
.testimonials-stats {
    padding: 4rem 0;
    background: var(--white);
}

.stat-card {
    text-align: center;
    padding: 2rem 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--gray-600);
    font-weight: var(--font-weight-medium);
}

.testimonials-grid {
    padding: var(--section-padding);
    background: var(--gray-50);
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    height: 100%;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.client-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
}

.client-name {
    margin: 0;
    font-weight: var(--font-weight-semibold);
    color: var(--gray-800);
}

.client-location {
    margin: 0;
    font-size: 0.875rem;
    color: var(--gray-500);
}

.rating {
    margin-bottom: 1rem;
}

.rating i {
    color: var(--secondary-color);
    margin-right: 0.25rem;
}

.testimonial-content {
    position: relative;
    margin-bottom: 1.5rem;
}

.quote-icon {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--gray-600);
    line-height: 1.6;
}

.service-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gray-100);
    color: var(--gray-700);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: var(--font-weight-medium);
}

.service-badge i {
    color: var(--primary-color);
}

.testimonials-cta {
    padding: 4rem 0;
    background: var(--white);
    text-align: center;
}

/* ===== GALLERY STYLES ===== */
.gallery-filter {
    padding: 2rem 0;
    background: var(--white);
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.filter-btn {
    background: var(--gray-100);
    color: var(--gray-600);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: var(--font-weight-medium);
    cursor: pointer;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

.gallery-grid {
    padding: var(--section-padding);
    background: var(--gray-50);
}

.gallery-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
}

.gallery-image {
    position: relative;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    opacity: 0;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    color: var(--white);
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-content h5 {
    margin-bottom: 0.5rem;
    font-weight: var(--font-weight-semibold);
}

.gallery-content p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.gallery-category {
    background: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: var(--font-weight-medium);
}

.project-stats {
    padding: 4rem 0;
    background: var(--white);
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
}

.stat-item .stat-number {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-item .stat-label {
    color: var(--gray-600);
    font-weight: var(--font-weight-medium);
}

.gallery-cta {
    padding: 4rem 0;
    background: var(--gray-50);
    text-align: center;
}

/* ===== SERVICE PAGES STYLES ===== */
.service-hero {
    padding: 8rem 0 4rem;
    background: var(--white);
}

.service-hero-content {
    padding-right: 2rem;
}

.service-title {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--gray-800);
    margin-bottom: 1rem;
}

.service-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-600);
}

.feature-item i {
    color: var(--primary-color);
}

.service-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.service-hero-image img {
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.service-overview {
    padding: var(--section-padding);
    background: var(--gray-50);
}

.service-content h2 {
    color: var(--gray-800);
    margin-bottom: 1.5rem;
}

.service-content h3 {
    color: var(--gray-800);
    margin: 2rem 0 1.5rem;
}

.service-list {
    margin-bottom: 3rem;
}

.service-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 1rem;
}

.service-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.service-item-content h4 {
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.service-item-content p {
    color: var(--gray-600);
    margin: 0;
}

.benefit-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.benefit-card i {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.benefit-card h5 {
    color: var(--gray-800);
    margin-bottom: 0.75rem;
}

.benefit-card p {
    color: var(--gray-600);
    margin: 0;
}

.service-sidebar {
    padding-left: 2rem;
}

.quote-form-card,
.service-areas-card,
.emergency-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
}

.quote-form-card h4,
.service-areas-card h4,
.emergency-card h4 {
    color: var(--gray-800);
    margin-bottom: 1.5rem;
}

.area-list {
    list-style: none;
    padding: 0;
}

.area-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-200);
    color: var(--gray-600);
}

.area-list li:last-child {
    border-bottom: none;
}

.area-list i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.emergency-card {
    background: linear-gradient(135deg, var(--danger), #dc2626);
    color: var(--white);
}

.emergency-card h4 {
    color: var(--white);
}

.service-process {
    padding: var(--section-padding);
    background: var(--white);
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: -10px;
    right: 10px;
    background: var(--primary-color);
    color: var(--white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-weight-bold);
    font-size: 0.875rem;
}

.step-icon {
    background: var(--gray-100);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--primary-color);
}

.process-step h5 {
    color: var(--gray-800);
    margin-bottom: 1rem;
}

.process-step p {
    color: var(--gray-600);
}

.service-faq {
    padding: var(--section-padding);
    background: var(--gray-50);
}

.accordion-button {
    background: var(--white);
    color: var(--gray-800);
    border: none;
    font-weight: var(--font-weight-medium);
}

.accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: var(--white);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(5, 150, 105, 0.25);
}

.issue-list {
    list-style: none;
    padding: 0;
}

.issue-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--gray-600);
}

.issue-list i {
    color: var(--primary-color);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    
    .service-title {
        font-size: 2rem;
    }
    
    .blog-sidebar {
        padding-left: 0;
        margin-top: 3rem;
    }
    
    .service-sidebar {
        padding-left: 0;
        margin-top: 3rem;
    }
    
    .service-hero-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .filter-buttons {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 1rem;
    }
    
    .service-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .service-cta {
        flex-direction: column;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* Services Page Styles */
.services-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #047857 100%);
    color: white;
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.services-hero .container {
    position: relative;
    z-index: 2;
}

.services-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.services-hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.services-stats {
    background: white;
    padding: 60px 0;
    margin-top: -40px;
    position: relative;
    z-index: 3;
    border-radius: 20px 20px 0 0;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-top: 10px;
    font-weight: 500;
}

.services-grid {
    padding: 80px 0;
    background: #f8fafc;
}

.services-grid h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.services-grid .lead {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(5, 150, 105, 0.15);
}

.service-card .service-image {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

.service-card .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.service-features li {
    padding: 8px 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 25px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.service-pricing {
    background: #f1f5f9;
    padding: 15px 20px;
    border-radius: 10px;
    margin: 20px 0;
    text-align: center;
}

.service-pricing .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.service-pricing .price-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 5px;
}

.emergency-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #dc2626;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-card .btn {
    width: 100%;
    margin-top: auto;
}

.services-cta {
    background: var(--primary-color);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.services-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.services-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.services-cta .btn-light {
    background: white;
    color: var(--primary-color);
    border: none;
    padding: 15px 30px;
    font-weight: 600;
    border-radius: 8px;
    margin: 0 10px;
}

.services-cta .btn-light:hover {
    background: #f8fafc;
    transform: translateY(-2px);
}

.services-cta .btn-outline-light {
    border: 2px solid white;
    color: white;
    padding: 13px 30px;
    font-weight: 600;
    border-radius: 8px;
    margin: 0 10px;
}

.services-cta .btn-outline-light:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Responsive Design for Services */
@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 2.5rem;
    }
    
    .services-hero p {
        font-size: 1.1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .services-grid h2 {
        font-size: 2rem;
    }
    
    .service-card {
        margin-bottom: 30px;
    }
    
    .services-cta h2 {
        font-size: 2rem;
    }
    
    .services-cta .btn-light,
    .services-cta .btn-outline-light {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
}

/* ===== MOBILE SERVICES NAVIGATION STYLING ===== */
@media (max-width: 991.98px) {
    /* Mobile services links styling */
    .navbar-nav .nav-item.d-lg-none .nav-link {
        padding: 0.75rem 1rem;
        margin: 0.25rem 0;
        border-radius: var(--radius-md);
        background-color: var(--gray-50);
        border-left: 3px solid var(--primary-color);
        transition: var(--transition);
        font-size: 0.95rem;
        font-weight: var(--font-weight-medium);
    }
    
    .navbar-nav .nav-item.d-lg-none .nav-link:hover {
        background-color: var(--primary-color);
        color: var(--white);
        transform: translateX(5px);
        box-shadow: var(--shadow-md);
    }
    
    .navbar-nav .nav-item.d-lg-none .nav-link.active {
        background-color: var(--primary-color);
        color: var(--white);
        box-shadow: var(--shadow-md);
    }
    
    .navbar-nav .nav-item.d-lg-none .nav-link i {
        margin-right: 0.75rem;
        font-size: 1rem;
        width: 20px;
        text-align: center;
    }
    
    /* Add separator before mobile services */
    .navbar-nav .nav-item.d-lg-none:first-of-type {
        margin-top: 1rem;
        position: relative;
    }
    
    .navbar-nav .nav-item.d-lg-none:first-of-type::before {
        content: "Our Services";
        display: block;
        font-size: 0.8rem;
        font-weight: var(--font-weight-semibold);
        color: var(--gray-500);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 0.5rem;
        padding: 0 1rem;
    }
    
    /* Improve mobile menu spacing */
    .navbar-collapse {
        padding: 1rem 0;
    }
    
    .navbar-nav .nav-item:not(.d-lg-none) {
        margin-bottom: 0.5rem;
    }
    
    .navbar-nav .nav-item:not(.d-lg-none) .nav-link {
        padding: 0.75rem 1rem;
        border-radius: var(--radius-md);
        transition: var(--transition);
    }
    
    .navbar-nav .nav-item:not(.d-lg-none) .nav-link:hover {
        background-color: var(--gray-100);
        color: var(--primary-color);
    }
}

/* ===== DESKTOP DROPDOWN IMPROVEMENTS ===== */
@media (min-width: 992px) {
    .dropdown-menu {
        border: none;
        box-shadow: var(--shadow-xl);
        border-radius: var(--radius-lg);
        padding: 0.5rem 0;
        margin-top: 0.5rem;
    }
    
    .dropdown-item {
        padding: 0.75rem 1.5rem;
        transition: var(--transition);
        border-radius: 0;
    }
    
    .dropdown-item:hover {
        background-color: var(--primary-color);
        color: var(--white);
    }
    
    .dropdown-item i {
        margin-right: 0.75rem;
        width: 16px;
        text-align: center;
    }
}

/* ===== CONTACT PAGE STYLES ===== */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.bg-emerald {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 3rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 1rem;
    color: var(--white);
}

.page-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    line-height: 1.6;
}

.page-header-image {
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Contact Section */
.contact-section {
    background-color: var(--gray-50);
}

.contact-info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    height: 100%;
    border: 1px solid var(--gray-200);
}

.contact-info-card h3 {
    color: var(--gray-800);
    font-weight: var(--font-weight-semibold);
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1rem;
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.contact-item:hover {
    background-color: var(--gray-50);
    transform: translateY(-2px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--white);
    font-size: 1.2rem;
}

.contact-details h5 {
    color: var(--gray-800);
    font-weight: var(--font-weight-semibold);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-details p {
    color: var(--gray-600);
    margin-bottom: 0;
    line-height: 1.5;
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: var(--font-weight-medium);
    transition: var(--transition);
}

.contact-details a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Social Links */
.social-links h5 {
    color: var(--gray-800);
    font-weight: var(--font-weight-semibold);
    margin-bottom: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--gray-100);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--gray-600);
    transition: var(--transition);
    border: 2px solid transparent;
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Contact Form */
.contact-form-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

.contact-form-card h3 {
    color: var(--gray-800);
    font-weight: var(--font-weight-semibold);
    margin-bottom: 2rem;
}

.contact-form .form-label {
    color: var(--gray-700);
    font-weight: var(--font-weight-medium);
    margin-bottom: 0.5rem;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: var(--transition);
    background-color: var(--white);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(5, 150, 105, 0.25);
    outline: none;
}

.contact-form .form-control.is-invalid,
.contact-form .form-select.is-invalid {
    border-color: var(--danger);
}

.contact-form .invalid-feedback {
    color: var(--danger);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.contact-form textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.btn-submit {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border: none;
    color: var(--white);
    padding: 0.875rem 2rem;
    border-radius: var(--radius-md);
    font-weight: var(--font-weight-semibold);
    font-size: 1rem;
    transition: var(--transition);
    min-width: 150px;
}

.btn-submit:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-info-card,
    .contact-form-card {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .contact-item {
        padding: 0.75rem;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 576px) {
    .page-title {
        font-size: 2rem;
    }
    
    .contact-info-card,
    .contact-form-card {
        padding: 1rem;
    }
}

/* ===== ABOUT PAGE STYLES ===== */

/* Company Overview Section */
.company-overview {
    background-color: var(--white);
}

.overview-content .section-title {
    color: var(--gray-800);
    font-weight: var(--font-weight-bold);
    margin-bottom: 1.5rem;
}

.overview-content .lead {
    color: var(--primary-color);
    font-weight: var(--font-weight-medium);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.overview-content p {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Company Stats */
.company-stats {
    margin-top: 2rem;
}

.stat-item {
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 2px solid var(--gray-100);
    transition: var(--transition);
}

.stat-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--gray-600);
    font-weight: var(--font-weight-medium);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Mission, Vision, Values Section */
.mission-vision {
    background-color: var(--gray-50);
}

.foundation-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    text-align: center;
    height: 100%;
    border: 2px solid transparent;
    transition: var(--transition);
}

.foundation-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.foundation-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.foundation-icon i {
    font-size: 2rem;
    color: var(--white);
}

.foundation-card h4 {
    color: var(--gray-800);
    font-weight: var(--font-weight-semibold);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.foundation-card p {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 0;
}

.values-list {
    text-align: left;
    list-style: none;
    padding: 0;
    margin: 0;
}

.values-list li {
    color: var(--gray-600);
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.values-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: var(--font-weight-bold);
    font-size: 1.1rem;
}

.values-list li strong {
    color: var(--primary-color);
    font-weight: var(--font-weight-semibold);
}

/* Why Choose Us Section */
.why-choose-us {
    background-color: var(--white);
}

.choice-reasons {
    padding: 1rem 0;
}

.reason-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.reason-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.reason-icon {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.reason-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.reason-content h5 {
    color: var(--gray-800);
    font-weight: var(--font-weight-semibold);
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.reason-content p {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Text Primary Override for About Page */
.text-primary {
    color: var(--primary-color) !important;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .stat-item {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .foundation-card {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .foundation-icon {
        width: 60px;
        height: 60px;
    }
    
    .foundation-icon i {
        font-size: 1.5rem;
    }
    
    .reason-item {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .reason-icon {
        width: 50px;
        height: 50px;
        margin-right: 1rem;
    }
    
    .reason-icon i {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .foundation-card {
        padding: 1.5rem;
    }
    
    .reason-item {
        flex-direction: column;
        text-align: center;
    }
    
    .reason-icon {
        margin: 0 auto 1rem;
    }
}

/* ===== NOTIFICATION SYSTEM FIXES ===== */
.notification-toast {
    position: fixed !important;
    top: 100px !important; /* Below the sticky header */
    right: 20px !important;
    z-index: 9998 !important; /* Below header but above other content */
    animation: slideInRight 0.3s ease-out;
}

/* Ensure no elements can appear above the header */
.alert, .toast, .modal, .dropdown-menu {
    z-index: 9997 !important;
}

/* Fix for any potential overlay issues */
.loading-screen {
    z-index: 10000; /* Only loading screen should be above header */
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
    
    .main-navbar {
        padding: 1rem 0;
    }
    
    /* Mobile Navigation Improvements */
    .main-navbar .container {
        position: relative;
    }
    
    /* Move hamburger button to right side */
    .navbar-toggler {
        order: 1;
        margin-left: 1rem;
        border: none;
        padding: 0.5rem;
        background: var(--gray-100);
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-sm);
    }
    
    .navbar-toggler:focus {
        box-shadow: 0 0 0 0.2rem rgba(16, 185, 129, 0.25);
    }
    
    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2816, 185, 129, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        width: 1.5rem;
        height: 1.5rem;
    }
    
    /* Center logo on mobile */
    .navbar-brand {
        position: relative;
        left: 0;
        transform: none;
        margin: 0;
    }
    
    .logo-container {
        gap: 0.5rem;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    
    .brand-name {
        font-size: 1.25rem;
    }
    
    .brand-tagline {
        font-size: 0.75rem;
    }
    
    /* Mobile menu styling */
    .navbar-collapse {
        margin-top: 1rem;
        background: var(--white);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
        border: 1px solid var(--gray-200);
        padding: 1rem 0;
    }
    
    .navbar-nav {
        padding: 0 1rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
        margin: 0.25rem 0;
        border-radius: var(--radius-md);
        font-size: 1rem;
        font-weight: var(--font-weight-medium);
    }
    
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        background: var(--primary-color);
        color: var(--white) !important;
    }
    
    .navbar-nav .nav-link i {
        width: 20px;
        text-align: center;
        margin-right: 0.5rem;
    }
    
    /* Mobile dropdown styling */
    .navbar-nav .dropdown-menu {
        background: var(--gray-50);
        border: none;
        box-shadow: none;
        margin: 0.5rem 0 0 1rem;
        padding: 0;
        border-radius: var(--radius-md);
    }
    
    .navbar-nav .dropdown-item {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
        color: var(--gray-600);
        border-radius: var(--radius-sm);
        margin: 0.25rem;
    }
    
    .navbar-nav .dropdown-item:hover {
        background: var(--primary-color);
        color: var(--white);
    }
    
    /* Mobile action buttons */
    .navbar-actions {
        padding: 1rem;
        border-top: 1px solid var(--gray-200);
        margin-top: 1rem;
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn-quote,
    .btn-call {
        width: 100%;
        justify-content: center;
        padding: 1rem;
        font-size: 1rem;
    }
    
    .floating-buttons {
        right: 1rem;
        bottom: 1rem;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.125rem;
    }
}

@media (max-width: 576px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .main-navbar {
        padding: 0.75rem 0;
    }
    
    .logo-icon {
        width: 36px;
        height: 36px;
        font-size: 1.125rem;
    }
    
    .brand-name {
        font-size: 1.125rem;
    }
    
    .brand-tagline {
        font-size: 0.7rem;
    }
    
    .navbar-collapse {
        margin-top: 0.75rem;
    }
    
    .floating-buttons {
        right: 0.75rem;
        bottom: 0.75rem;
        gap: 0.5rem;
    }
    
    .floating-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}
