/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1e3a8a;
    --secondary-color: #3b82f6;
    --accent-color: #60a5fa;
    --text-color: #1f2937;
    --text-color-secondary: #6b7280;
    --light-text: #6b7280;
    --background-color: #ffffff;
    --light-background: #f8fafc;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    --transition-speed: 0.3s;
    --header-pad: 10px;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles - Restored Desktop Structure */
.header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo {
    flex-shrink: 0;
}

.logo a {
    text-decoration: none;
    color: var(--primary-color);
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 50px;
    width: auto;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

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

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

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
}

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

.nav-links a.active {
    color: var(--primary-color);
}

.contact-info {
    flex-shrink: 0;
}

.contact-info a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

/* Mobile menu button - hidden on desktop */
.mobile-menu-btn {
    display: none;
}

/* Login button styling */
.login-btn {
    background: var(--primary-color);
    color: white !important;
    padding: 8px 16px !important;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.login-btn:hover {
    background: var(--secondary-color);
    color: white !important;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo {
    flex-shrink: 0;
}

.logo a {
    text-decoration: none;
    color: var(--primary-color);
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 50px;
    width: auto;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

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

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

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
}

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

.nav-links a.active {
    color: var(--primary-color);
}

.contact-info {
    flex-shrink: 0;
}

.contact-info a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--background-color);
    min-width: 250px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 1rem;
    max-height: 80vh;
    overflow-y: auto;
    z-index: 1000;
    top: 100%;
    left: 0;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    display: block;
    padding: 0.5rem 0;
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.dropdown-content a:hover {
    color: var(--primary-color);
}

/* Enhanced Touch Interactions */
.nav-links a,
.footer-links a,
.social-links a {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Dropdown arrow styling for mobile */
.dropdown > a {
    position: relative;
}

.dropdown > a::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
    opacity: 0.7;
}

.dropdown.active > a::after {
    transform: rotate(180deg);
}

/* Desktop dropdown positioning */
@media (min-width: 768px) {
    .dropdown-content {
        position: absolute;
        top: 100%;
        left: 0;
        background: white;
        min-width: 250px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        z-index: 1000;
    }
    
    .dropdown:hover .dropdown-content {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .dropdown > a::after {
        display: none;
    }
}

/* Mobile Navigation Enhancements - Restored Structure */
@media (max-width: 992px) {
    .header {
        padding: 0.5rem 0;
    }
    
    .navbar {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }
    
    .logo {
        align-self: center;
        margin-bottom: 0.5rem;
    }
    
    .contact-info {
        align-self: center;
        order: -1;
        margin-bottom: 0.5rem;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        border-radius: 0 0 12px 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        max-height: 80vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links ul {
        padding: 1rem 0;
        flex-direction: column;
        gap: 0;
    }
    
    .nav-links li {
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        width: 100%;
    }
    
    .nav-links li:last-child {
        border-bottom: none;
    }
    
    .nav-links a {
        padding: 1rem 2rem;
        width: 100%;
        justify-content: flex-start;
        border-radius: 0;
        position: relative;
        min-height: 44px;
    }
    
    .nav-links a:hover {
        background: rgba(30, 58, 138, 0.1);
    }
    
    /* Mobile dropdowns */
    .dropdown-content {
        position: static;
        box-shadow: none;
        padding-left: 1rem;
        margin-top: 0.5rem;
        background-color: var(--light-background);
        border-radius: 8px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        display: block;
        opacity: 1;
        visibility: visible;
        transform: none;
    }
    
    .dropdown.active .dropdown-content {
        max-height: 500px;
        padding: 1rem;
        margin-top: 0.5rem;
    }
    
    .dropdown-content a {
        padding: 10px 16px;
        margin: 4px 0;
        border-radius: 6px;
        font-size: 0.9rem;
    }
    
    .dropdown-content a:hover {
        background-color: var(--background-color);
    }
    
    /* Show mobile menu button */
    .mobile-menu-btn {
        display: block;
        font-size: 1.5rem;
        cursor: pointer;
        color: var(--primary-color);
        transition: all 0.3s ease;
        background: none;
        border: none;
        padding: 8px;
        border-radius: 6px;
        min-height: 44px;
        min-width: 44px;
        align-items: center;
        justify-content: center;
    }
    
    .mobile-menu-btn:hover {
        background-color: var(--light-background);
    }
    
    .mobile-menu-btn.active {
        color: var(--secondary-color);
        background-color: var(--light-background);
    }
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--background-color);
    min-width: 250px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    padding: 1rem;
    max-height: 80vh;
    overflow-y: auto;
    z-index: 1000;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    display: block;
    padding: 0.5rem 0;
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.dropdown-content a:hover {
    color: var(--primary-color);
}

/* Scrollbar Styles for Dropdown */
.dropdown-content::-webkit-scrollbar {
    width: 6px;
}

.dropdown-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.dropdown-content::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

.dropdown-content::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(30, 58, 138, 0.6) 25%, rgba(59, 130, 246, 0.5) 50%, rgba(96, 165, 250, 0.4) 75%, rgba(0, 0, 0, 0.7) 100%), url('../images/home/hero-background.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    text-align: center;
    padding: 120px 0 80px;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    margin-top: 0; /* Ensure no overlap with sticky header */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 25%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.7) 75%, rgba(0, 0, 0, 0.9) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: white;
    padding: 2rem;
    width: 100%;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero p {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    line-height: 1.6;
}

.hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    min-height: 44px; /* Minimum touch target size */
    min-width: 44px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    line-height: 1.5;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(30, 58, 138, 0.6) 50%, rgba(0, 0, 0, 0.7) 100%);
    color: #ffffff;
    border: 2px solid rgba(0, 0, 0, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(59, 130, 246, 0.5) 50%, rgba(0, 0, 0, 0.8) 100%);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.6);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    margin-left: 1rem;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background-color: var(--light-background);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-color);
}

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

.service-card {
    background-color: var(--background-color);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

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

.service-card h3 {
    margin-bottom: 1rem;
}

/* Why Choose Us Section */
.why-us {
    padding: 5rem 0;
}

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

.feature {
    text-align: center;
    padding: 2rem;
}

.feature i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background-color: var(--light-background);
}

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

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

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(30, 58, 138, 0.6) 25%, rgba(59, 130, 246, 0.5) 50%, rgba(96, 165, 250, 0.4) 75%, rgba(0, 0, 0, 0.8) 100%);
    color: white;
    padding: 30px 0 15px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 25%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.6) 75%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.footer-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 25px;
    margin-bottom: 15px;
}

.footer-section h3 {
    color: #fbbf24;
    margin-bottom: 12px;
    font-size: 1rem;
}

.footer-section p {
    margin-bottom: 6px;
    font-size: 0.85rem;
    line-height: 1.3;
}

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

.footer-links li {
    margin-bottom: 6px;
}

.footer-links a {
    color: #e5e7eb;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

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

.footer-logo {
    max-width: 100px;
    margin-bottom: 12px;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(30, 58, 138, 0.5) 50%, rgba(0, 0, 0, 0.7) 100%);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    border: 1px solid rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(59, 130, 246, 0.4) 50%, rgba(0, 0, 0, 0.8) 100%);
    color: white;
    transform: translateY(-2px);
    border: 1px solid rgba(0, 0, 0, 0.5);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
    font-size: 0.8rem;
}

.footer-contact i {
    color: #fbbf24;
    width: 14px;
    text-align: center;
}

.footer-areas p {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
    font-size: 0.8rem;
}

.footer-areas i {
    color: #fbbf24;
    width: 14px;
    text-align: center;
}

.footer-bottom {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.3);
    font-size: 0.8rem;
    color: #e5e7eb;
}

/* Responsive footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-contact p {
        justify-content: center;
    }
    
    .footer-areas p {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 0 15px;
    }
    
    .footer-content {
        gap: 20px;
    }
    
    .footer-section h3 {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .footer-section p {
        font-size: 0.85rem;
    }
}

/* ===== RESPONSIVE DESIGN ===== */

/* Large Desktop (1200px and above) */
@media (min-width: 1200px) {
    .container {
        max-width: 1400px;
        padding: 0 40px;
    }
    
    .hero h1 {
        font-size: 4rem;
    }
    
    .hero p {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .areas-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Desktop (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .container {
        max-width: 960px;
        padding: 0 30px;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .areas-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablet Landscape (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .container {
        max-width: 720px;
        padding: 0 25px;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .who-we-are-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .who-we-are-image {
        order: -1;
    }
}

/* Tablet Portrait (576px - 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .container {
        max-width: 540px;
        padding: 0 20px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .area-card {
        padding: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .navbar {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 0;
    }
    
    .nav-links ul {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-secondary {
        margin-left: 0;
    }
    
    .solution-content,
    .service-content {
        flex-direction: column;
    }
    
    .solution-image,
    .service-image {
        margin-top: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .solution-hero h1,
    .service-hero h1 {
        font-size: 2.5rem;
    }
    
    .footer-info {
        max-width: 100%;
    }
}

/* Mobile Large (480px - 575px) */
@media (max-width: 575px) {
    .container {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .hero {
        padding: 6rem 0 3rem;
    }
    
    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .area-card {
        padding: 1.5rem;
    }
    
    .area-card h3 {
        font-size: 1.2rem;
    }
    
    .area-card p {
        font-size: 0.9rem;
    }
    
    .onsite-cta {
        padding: 2rem 1.5rem;
    }
    
    .onsite-cta h3 {
        font-size: 1.3rem;
    }
    
    .onsite-cta p {
        font-size: 1rem;
    }
    
    .navbar {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 0;
    }
    
    .nav-links {
        display: none;
        width: 100%;
    }
    
    .nav-links.active {
        display: block;
    }
    
    .nav-links ul {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        background: white;
        padding: 1.5rem;
        border-radius: 12px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        margin: 0;
        list-style: none;
    }
    
    .mobile-menu-btn {
        display: flex;
        font-size: 1.5rem;
        cursor: pointer;
        color: var(--primary-color);
        transition: all 0.3s ease;
        background: none;
        border: none;
        padding: 8px;
        border-radius: 6px;
        min-height: 44px;
        min-width: 44px;
        align-items: center;
        justify-content: center;
    }
    
    .mobile-menu-btn:hover {
        background-color: var(--light-background);
    }
    
    .mobile-menu-btn.active {
        color: var(--secondary-color);
        background-color: var(--light-background);
    }
    
    /* Body state when menu is open */
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }
    
    body.menu-open .header {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }
    
    /* Body scroll lock for mobile menu */
body.no-scroll { 
    overflow: hidden; 
}

/* Better touch targets for mobile */
.nav a,
.dropdown-content a {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

/* Smooth scrolling for mobile */
.nav {
    scroll-behavior: smooth;
}

/* Additional responsive improvements */
@media (max-width: 768px) {
    /* Improve touch targets */
    .btn,
    .nav-links a,
    .dropdown-content a {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Better spacing for mobile */
    .section-title {
        margin-bottom: 1.5rem;
    }
    
    .section-subtitle {
        margin-bottom: 1.5rem;
    }
    
    /* Improve grid layouts */
    .areas-grid {
        gap: 1.5rem;
    }
    
    .solutions-grid,
    .services-grid {
        gap: 1.5rem;
    }
    
    /* Better card layouts */
    .area-card,
    .solution-card,
    .service-card {
        margin-bottom: 0;
    }
    
    /* Improve form elements */
    input,
    textarea,
    select {
        font-size: 16px; /* Prevents zoom on iOS */
    }
}
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        text-align: center;
        padding: 1rem;
        font-size: 1rem;
    }
    
    .btn-secondary {
        margin-left: 0;
    }
    
    .solution-content,
    .service-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .solution-image,
    .service-image {
        margin-top: 0;
        order: -1;
    }
    
    .solution-image img,
    .service-image img {
        width: 100%;
        height: auto;
        border-radius: 12px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .solution-hero h1,
    .service-hero h1 {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-info {
        max-width: 100%;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-contact p,
    .footer-areas p {
        justify-content: center;
    }
    
    .who-we-are-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .who-we-are-image {
        order: -1;
    }
    
    .who-we-are-image img {
        width: 100%;
        height: auto;
        border-radius: 12px;
    }
}

/* Mobile Small (320px - 479px) */
@media (max-width: 479px) {
    .container {
        padding: 0 10px;
    }
    
    .hero {
        padding: 5rem 0 2rem;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .area-card {
        padding: 1rem;
    }
    
    .area-card h3 {
        font-size: 1.1rem;
    }
    
    .area-card p {
        font-size: 0.85rem;
    }
    
    .onsite-cta {
        padding: 1.5rem 1rem;
    }
    
    .onsite-cta h3 {
        font-size: 1.2rem;
    }
    
    .onsite-cta p {
        font-size: 0.95rem;
    }
    
    .btn {
        padding: 0.875rem;
        font-size: 0.95rem;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
    }
    
    .footer-section p {
        font-size: 0.8rem;
    }
}

/* Landscape Mobile Optimization */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        padding: 4rem 0 2rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero p {
        margin-bottom: 1rem;
    }
    
    .hero-buttons {
        gap: 0.75rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Enhanced Mobile Form Elements */
input, textarea, select {
    touch-action: manipulation;
    -webkit-appearance: none;
    border-radius: 8px;
    min-height: 44px;
    padding: 0.75rem 1rem;
    font-size: 16px; /* Prevents zoom on iOS */
}

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

/* Mobile-specific enhancements */
@media (max-width: 767px) {
    /* Better touch targets for mobile */
    .floating-buttons {
        bottom: 20px;
        right: 20px;
        gap: 1rem;
    }
    
    .floating-buttons .btn {
        width: 56px;
        height: 56px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
    }
    
    /* Improved mobile scrolling */
    .container {
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }
    
    /* Better mobile typography */
    h1, h2, h3, h4, h5, h6 {
        word-wrap: break-word;
        hyphens: auto;
    }
    
    /* Mobile-optimized images */
    img {
        max-width: 100%;
        height: auto;
        -webkit-user-select: none;
        user-select: none;
    }
    
    /* Mobile-friendly tables */
    table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .mobile-menu-btn,
    .floating-buttons {
        display: none;
    }
    
    .hero {
        background: none !important;
        color: black !important;
    }
    
    .container {
        max-width: 100%;
        padding: 0;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
}

/* Local Service Areas Section */
.local-areas {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(30, 58, 138, 0.6) 25%, rgba(59, 130, 246, 0.5) 50%, rgba(96, 165, 250, 0.4) 75%, rgba(0, 0, 0, 0.8) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.local-areas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 25%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.6) 75%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.local-areas .container {
    position: relative;
    z-index: 2;
}

.local-areas .section-subtitle {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

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

.area-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.area-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(30, 58, 138, 0.5) 50%, rgba(0, 0, 0, 0.7) 100%);
    z-index: -1;
}

.area-card:hover {
    transform: translateY(-5px);
    border-color: #fbbf24;
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
}

.area-card i {
    font-size: 2.5rem;
    color: #fbbf24;
    margin-bottom: 1rem;
}

.area-card h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.area-card p {
    color: #e5e7eb;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.onsite-badge {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #000000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    border: 2px solid #fbbf24;
}

.onsite-cta {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.onsite-cta h3 {
    color: #fbbf24;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.onsite-cta p {
    color: #e5e7eb;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(30, 58, 138, 0.6) 25%, rgba(59, 130, 246, 0.5) 50%, rgba(96, 165, 250, 0.4) 75%, rgba(0, 0, 0, 0.7) 100%);
    background-size: cover;
    background-position: center;
    color: white;
    padding: 8rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/about/about-hero-background.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.9;
    z-index: 1;
}

.about-hero .container {
    position: relative;
    z-index: 2;
}

.mission-vision {
    padding: 5rem 0;
    background-color: var(--light-background);
}

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

.mission, .vision {
    padding: 2rem;
    background-color: var(--background-color);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.mission h2, .vision h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 2px;
    background-color: var(--primary-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    padding: 2rem 0;
    position: relative;
}

.timeline-item .year {
    position: absolute;
    width: 100px;
    text-align: center;
    background-color: var(--primary-color);
    color: white;
    padding: 0.5rem;
    border-radius: 4px;
    left: 50%;
    transform: translateX(-50%);
}

.timeline-item .content {
    width: 45%;
    padding: 1rem;
    background-color: var(--background-color);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.timeline-item:nth-child(odd) .content {
    margin-left: auto;
}

.team {
    padding: 5rem 0;
    background-color: var(--light-background);
}

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

.team-member {
    background-color: var(--background-color);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.member-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    margin-bottom: 0.5rem;
}

.team-member .position {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.values {
    padding: 5rem 0;
}

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

.value-card {
    text-align: center;
    padding: 2rem;
    background-color: var(--background-color);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

/* Services Page Styles */
.services-hero {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(30, 58, 138, 0.5) 50%, rgba(0, 0, 0, 0.7) 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-hero {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(30, 58, 138, 0.5) 50%, rgba(0, 0, 0, 0.7) 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/services/services-background.svg') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.service-hero-content {
    position: relative;
    z-index: 2;
}

.service-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.service-hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.service-details {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.service-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.service-text h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--secondary-color);
}

.service-text ul {
    list-style: none;
    padding: 0;
}

.service-text li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.service-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-features {
    padding: 80px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

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

.service-areas {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(30, 58, 138, 0.5) 50%, rgba(0, 0, 0, 0.7) 100%);
    color: white;
}

.service-areas .section-title {
    color: white;
}

.service-areas .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.area-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, background 0.3s ease;
}

.area-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.15);
}

.area-card i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.area-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: white;
}

.area-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.onsite-badge {
    background: linear-gradient(135deg, var(--accent-color), #fbbf24);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    min-width: 120px;
}

/* Responsive Design for Service Pages */
@media (max-width: 768px) {
    .service-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-hero h1 {
        font-size: 2rem;
    }
    
    .service-text h2 {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .areas-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(26, 26, 26, 0.9)), url('../images/contact-hero.html');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 8rem 0 4rem;
    text-align: center;
}

.contact-info-section {
    padding: 5rem 0;
    background-color: var(--light-background);
}

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

.info-card {
    background-color: var(--background-color);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

.contact-form-map {
    padding: 5rem 0;
}

.contact-form-map-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form-container h2,
.map-container h2 {
    margin-bottom: 2rem;
    color: var(--primary-color);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
}

.map {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.faq-section {
    padding: 5rem 0;
    background-color: var(--light-background);
}

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

.faq-item {
    background-color: var(--background-color);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-content,
    .contact-form-map-grid {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 31px;
    }

    .timeline-item .year {
        left: 0;
        transform: none;
    }

    .timeline-item .content {
        width: calc(100% - 80px);
        margin-left: 80px;
    }

    .timeline-item:nth-child(odd) .content {
        margin-left: 80px;
    }
}

/* Logo Styles */
.logo img {
    max-height: 50px;
    transition: transform var(--transition-speed);
}

.logo img:hover {
    transform: scale(1.05);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: none; /* Hidden by default for desktop */
    flex-direction: column;
    justify-content: space-between;
    height: 30px;
    width: 30px;
}

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

.mobile-menu-btn:hover span {
    background-color: var(--secondary-color);
}

/* Hero Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(51, 51, 51, 0.8));
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

/* Who We Are Section */
.who-we-are {
    padding: 5rem 0;
    background-color: var(--background-color);
}

.who-we-are-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.who-we-are-text h2 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.who-we-are-text p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.who-we-are-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.who-we-are-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

/* Solutions Section */
.solutions {
    padding: 5rem 0;
    background-color: var(--light-background);
}

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

.solution-card {
    background-color: var(--background-color);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

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

.solution-card h3 {
    margin-bottom: 1rem;
}

.solution-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.solution-link:hover {
    color: var(--secondary-color);
}

.solutions-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Responsive Image Handling */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Responsive Grid Improvements */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.area-card {
    background-color: var(--background-color);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px;
}

.area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

.area-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 1.3rem;
}

.area-card p {
    margin-bottom: 1rem;
    color: var(--text-color-secondary);
    line-height: 1.6;
    flex-grow: 1;
}

.onsite-badge {
    background: linear-gradient(135deg, var(--success-color), #059669);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-top: auto;
}

/* Service Link */
.service-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: var(--secondary-color);
}

.services-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background-color: var(--background-color);
}

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

.testimonial {
    background-color: var(--light-background);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    margin-bottom: 0.25rem;
    color: var(--primary-color);
}

.author-info p {
    font-size: 0.9rem;
    color: var(--light-text);
}

/* Clients Section */
.clients {
    padding: 5rem 0;
    background-color: var(--light-background);
}

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

.client-logo {
    text-align: center;
    padding: 1rem;
    background-color: var(--background-color);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.client-logo:hover {
    transform: translateY(-5px);
}

.client-logo img {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.client-logo:hover img {
    filter: grayscale(0%);
}

/* Call Button */
.call-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(30, 58, 138, 0.5) 50%, rgba(0, 0, 0, 0.7) 100%);
    color: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(0, 0, 0, 0.4);
    z-index: 999;
    transition: transform var(--transition-speed), background-color var(--transition-speed);
}

.call-button:hover {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(59, 130, 246, 0.4) 50%, rgba(0, 0, 0, 0.8) 100%);
}

.call-button i {
    font-size: 24px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(30, 58, 138, 0.5) 50%, rgba(0, 0, 0, 0.7) 100%);
    color: #ffffff;
    border: 2px solid rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(59, 130, 246, 0.4) 50%, rgba(0, 0, 0, 0.8) 100%);
    color: #ffffff;
}

.social-links a i {
    font-size: 1.2rem;
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--background-color);
        flex-direction: column;
        padding: 2rem;
        transition: left 0.3s ease;
        z-index: 100;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links ul {
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 12px 16px;
        border-radius: 8px;
        transition: all 0.3s ease;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-links a:hover {
        background-color: var(--light-background);
        color: var(--primary-color);
    }

    .dropdown {
        width: 100%;
    }

    .dropdown > a {
        position: relative;
    }

    .dropdown > a::after {
        content: '\f107';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        margin-left: 0.5rem;
        transition: transform 0.3s ease;
    }

    .dropdown.active > a::after {
        transform: rotate(180deg);
    }

    .dropdown-content {
        position: static;
        box-shadow: none;
        padding-left: 1rem;
        margin-top: 0.5rem;
        background-color: var(--light-background);
        border-radius: 8px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .dropdown.active .dropdown-content {
        max-height: 500px;
        padding: 1rem;
        margin-top: 0.5rem;
    }

    .dropdown-content a {
        padding: 10px 16px;
        margin: 4px 0;
        border-radius: 6px;
        font-size: 0.9rem;
    }

    .dropdown-content a:hover {
        background-color: var(--background-color);
    }
    
    /* Hero section mobile optimization */
    .hero {
        padding: 100px 0 60px;
        min-height: 80vh;
        margin-top: 0;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .hero h1 {
        font-size: clamp(28px, 6vw, 48px);
        line-height: 1.1;
        margin-top: 0;
    }
    
    .hero p {
        font-size: clamp(14px, 3.8vw, 18px);
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
    }
    
    .btn-secondary {
        margin-left: 0;
    }
    
    /* Container mobile optimization */
    .container {
        padding: 0 15px;
    }
    
    /* Section spacing mobile optimization */
    .who-we-are,
    .services,
    .solutions,
    .local-areas,
    .why-us,
    .contact {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .who-we-are-content {
        grid-template-columns: 1fr;
    }

    .who-we-are-image {
        order: -1;
    }

    .testimonials-slider {
        grid-template-columns: 1fr;
    }

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Small (480px and below) */
@media (max-width: 480px) {
    .header__bar {
        padding: 8px 12px;
        padding-top: calc(env(safe-area-inset-top) + 8px);
    }
    
    .logo img {
        height: 22px;
    }
    
    .hamburger {
        width: 36px;
        height: 36px;
        padding: 6px;
    }
    
    .hero {
        padding: 80px 0 40px;
        min-height: 70vh;
        margin-top: 0;
    }
    
    .hero-content {
        padding: 0.5rem;
    }
    
    .hero h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        margin-top: 0;
    }
    
    .hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        gap: 0.75rem;
    }
    
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .who-we-are,
    .services,
    .solutions,
    .local-areas,
    .why-us,
    .contact {
        padding: 2rem 0;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .area-card {
        padding: 1rem;
        min-height: 180px;
    }
    
    .area-card h3 {
        font-size: 1.1rem;
    }
    
    .area-card p {
        font-size: 0.85rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
    }
    
    /* Additional mobile optimizations */
    .who-we-are-content {
        gap: 2rem;
    }
    
    .who-we-are-text {
        order: 2;
    }
    
    .who-we-are-image {
        order: 1;
        margin-bottom: 1rem;
    }
    
    .who-we-are-image img {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .solutions-grid,
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .solution-card,
    .service-card {
        padding: 1.5rem;
    }
    
    .onsite-cta {
        padding: 1.5rem;
        text-align: center;
    }
    
    .onsite-cta h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .onsite-cta p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
}

/* Animation Classes */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-right"] {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-right"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

[data-aos="fade-left"] {
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-left"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="zoom-in"].aos-animate {
    opacity: 1;
    transform: scale(1);
}

/* Service and Solution Hero Sections */
.service-hero,
.solution-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 8rem 0 4rem;
    color: white;
    text-align: center;
}

/* .service-hero background is defined earlier with gradient */

.solution-hero {
    background-image: url('../images/solutions/hero-bg.html');
}

.service-hero-overlay,
.solution-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(51, 51, 51, 0.8));
    z-index: 1;
}

.service-hero-content,
.solution-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.service-hero h1,
.solution-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: fadeIn 1s ease, slideInUp 1s ease;
}

.service-hero p,
.solution-hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    animation: fadeIn 1s ease 0.3s forwards;
    opacity: 0;
}

.service-hero .btn,
.solution-hero .btn {
    animation: fadeIn 1s ease 0.6s forwards, slideInUp 1s ease 0.6s forwards;
    opacity: 0;
}

/* Service and Solution Overview Sections */
.service-overview,
.solution-overview {
    padding: 80px 0;
}

.service-content,
.solution-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.service-text h2,
.solution-text h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 2.2rem;
}

.service-text p,
.solution-text p {
    margin-bottom: 20px;
    color: var(--text-color);
}

.service-text h3,
.solution-text h3 {
    color: var(--secondary-color);
    margin: 30px 0 15px;
    font-size: 1.5rem;
}

.service-features,
.solution-features,
.service-benefits,
.solution-benefits {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li,
.solution-features li,
.service-benefits li,
.solution-benefits li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.service-features i,
.solution-features i,
.service-benefits i,
.solution-benefits i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.2rem;
}

.service-image img,
.solution-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform var(--transition-speed);
}

.service-image img:hover,
.solution-image img:hover {
    transform: scale(1.02);
}

/* Service and Solution Features Sections */
.service-features-section,
.solution-features-section {
    padding: 80px 0;
    background-color: var(--light-background);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
    font-size: 2.2rem;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: transform var(--transition-speed);
}

.feature-card:hover i {
    transform: scale(1.2);
}

.feature-card h3 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

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

.process-step {
    text-align: center;
    padding: 2rem;
    background-color: var(--background-color);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: 600;
}

.process-step h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* Emergency Recovery Section */
.emergency-recovery {
    padding: 5rem 0;
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(51, 51, 51, 0.9)), url('../images/solutions/emergency-bg.html');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}

.emergency-content {
    max-width: 800px;
    margin: 0 auto;
}

.emergency-content h2 {
    margin-bottom: 1.5rem;
}

.emergency-content p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.emergency-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Call to Action Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

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

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cta-buttons .btn {
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.cta-buttons .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .solution-content,
    .service-content {
        flex-direction: column;
    }
    
    .solution-image,
    .service-image {
        margin-top: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .solution-hero h1,
    .service-hero h1 {
        font-size: 2.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-info {
        max-width: 100%;
    }
}

/* Login Button Styles */
.login-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(30, 58, 138, 0.5) 50%, rgba(0, 0, 0, 0.7) 100%);
    color: white;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.login-btn:hover {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(59, 130, 246, 0.4) 50%, rgba(0, 0, 0, 0.8) 100%);
    border: 1px solid rgba(0, 0, 0, 0.5);
}

.login-btn i {
    font-size: 1.1em;
}

/* Floating Buttons Container */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.call-button,
.login-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(30, 58, 138, 0.5) 50%, rgba(0, 0, 0, 0.7) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 1px solid rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.call-button:hover,
.login-button:hover {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(59, 130, 246, 0.4) 50%, rgba(0, 0, 0, 0.8) 100%);
    border: 1px solid rgba(0, 0, 0, 0.5);
}

.call-button i,
.login-button i {
    font-size: 1.2em;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }

    .call-button,
    .login-button {
        width: 45px;
        height: 45px;
    }
}

/* Login Section Styles */
.login-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
}

.login-container {
    max-width: 400px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.login-container h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--accent-color);
}

.login-form .form-group {
    margin-bottom: 20px;
}

.login-form label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.login-form input[type="email"],
.login-form input[type="password"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.login-form input[type="email"]:focus,
.login-form input[type="password"]:focus {
    border-color: var(--accent-color);
    outline: none;
}

.remember-forgot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
}

.forgot-password {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 14px;
}

.forgot-password:hover {
    text-decoration: underline;
}

.login-form .btn {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    margin-top: 10px;
}

.login-footer {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

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

.register-link:hover {
    text-decoration: underline;
}

/* Navigation Updates */
.nav-links ul li .login-btn {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(30, 58, 138, 0.5) 50%, rgba(0, 0, 0, 0.7) 100%);
    color: #fff;
    padding: 8px 16px;
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.nav-links ul li .login-btn:hover {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(59, 130, 246, 0.4) 50%, rgba(0, 0, 0, 0.8) 100%);
    border: 1px solid rgba(0, 0, 0, 0.5);
}

.nav-links ul li .login-btn.active {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(59, 130, 246, 0.4) 50%, rgba(0, 0, 0, 0.8) 100%);
    border: 1px solid rgba(0, 0, 0, 0.5);
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.call-button,
.login-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(30, 58, 138, 0.5) 50%, rgba(0, 0, 0, 0.7) 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.call-button:hover,
.login-button:hover {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(59, 130, 246, 0.4) 50%, rgba(0, 0, 0, 0.8) 100%);
    border: 1px solid rgba(0, 0, 0, 0.5);
}

/* Mobile Responsive Updates */
@media (max-width: 768px) {
    .login-container {
        margin: 20px;
        padding: 30px;
    }

    .floating-buttons {
        bottom: 10px;
        right: 10px;
    }

    .call-button,
    .login-button {
        width: 40px;
        height: 40px;
    }
}

/* Force white color for all footer links */
.footer-section ul li a,
.footer-links ul li a,
.footer-services li a,
.footer-link,
.footer-contact a,
.footer-social a {
    color: #ffffff !important;
    text-decoration: none;
    transition: color var(--transition-speed), padding-left var(--transition-speed);
}

.footer-section ul li a:hover,
.footer-links ul li a:hover,
.footer-services li a:hover,
.footer-link:hover,
.footer-contact a:hover,
.footer-social a:hover {
    color: rgba(255, 255, 255, 0.8) !important;
    padding-left: 5px;
} 