/* Bralex Telecom Styles - Blue Theme */

/* CSS Variables for Blue Theme */
:root {
    --primary-color: #1e40af;
    --primary-dark: #1e3a8a;
    --primary-light: #3b82f6;
    --secondary-color: #1d4ed8;
    --accent-color: #60a5fa;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --white: #ffffff;
    --light-gray: #f8fafc;
    --border-color: #e5e7eb;
    --border-light: #e5e7eb;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --gradient-primary: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
    --gradient-hero: linear-gradient(135deg, rgba(30, 64, 175, 0.9) 0%, rgba(29, 78, 216, 0.9) 100%);

    /* Spacing — matches Summit exactly so shared CSS (gallery.css etc.) works correctly */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;

    /* Border Radius — matches Summit exactly */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

/* Touch-friendly improvements */
button, .btn, a {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

/* Improve touch targets */
@media (max-width: 768px) {
    button, .btn, a, input, select, textarea {
        min-height: 44px;
        min-width: 44px;
    }
}

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

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

/* Prevent horizontal scrolling */
html, body {
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
    /* Improve rendering quality */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-clip: padding-box;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow);
    /* Fix edge rendering issues */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    /* Improve anti-aliasing */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Ensure clean edges */
    border: 1px solid rgba(26, 54, 93, 0.8);
    background-clip: padding-box;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #0f2a44 0%, #1a365d 100%);
    border-color: rgba(15, 42, 68, 0.8);
}

.btn-white {
    background: var(--white);
    color: #1a365d;
    box-shadow: var(--shadow);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: rgba(255, 255, 255, 0.9);
    color: #0f2a44;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

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

/* Header */
.header {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 250, 0.95) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(30, 64, 175, 0.15);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.9) 100%);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

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

/* Bralex Logo */
.bralex-logo {
    color: var(--primary-color);
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
}

.bralex-text {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    display: block;
    line-height: 1;
}

.telecom-line {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.3rem;
    margin-top: -0.2rem;
}

.telecom-text {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.15em;
}

.signal-icon {
    font-size: 1.2rem;
    filter: grayscale(1) brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(214deg) brightness(97%) contrast(97%);
}

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

.logo img {
    height: 55px !important;
    opacity: 0.98;
    transition: opacity 0.3s ease;
}

.header.scrolled .logo img {
    opacity: 0.95;
}

.nav-link {
    text-decoration: none !important;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1.05rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1.25px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

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

/* Contact Us nav pill */
.nav-cta-btn {
    display: inline-block;
    background: transparent;
    color: var(--primary-color) !important;
    padding: 0.4rem 1.1rem;
    border-radius: 50px;
    border: 3px solid var(--primary-color);
    font-weight: 500;
    font-size: 1.05rem;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.nav-cta-btn:hover,
.nav-cta-btn.active {
    background: var(--primary-color);
    color: var(--white) !important;
    text-decoration: none !important;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Home page specific hero background */
.hero.home-hero {
    background:
        linear-gradient(to bottom, rgba(10, 10, 10, 0.65) 0%, rgba(10, 10, 10, 0.55) 100%),
        url('../bralexhomepage.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    min-height: 100vh;
    min-height: 100svh;
    padding-top: 80px;
    padding-bottom: 0;
    display: flex;
    align-items: center;
}

.hero.home-hero .hero-content {
    width: 100%;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.hero.home-hero .hero-content h1 {
    color: #ffffff !important;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
    font-weight: 700;
    font-size: 3.2rem;
    margin-bottom: 1.25rem;
    line-height: 1.15;
}

.hero.home-hero .hero-content p {
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
    font-weight: 400;
    font-size: 1.15rem;
    line-height: 1.65;
    margin-bottom: 0;
}

/* Contact row — centered, stacked, below the tagline */
.home-hero-contact {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
}

.hero-phone-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.home-hero-contact .btn {
    width: 210px;
    padding: 0.875rem 1rem;
    text-align: center;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
}

.btn-number {
    display: block;
    white-space: nowrap;
}

.btn-sub {
    display: block;
    font-size: 0.72rem;
    font-weight: 400;
    opacity: 0.85;
    margin-top: 3px;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

/* About page specific hero background */
.page-hero.about-hero {
    background:
        linear-gradient(to bottom, rgba(10, 10, 10, 0.60) 0%, rgba(10, 10, 10, 0.50) 100%),
        url('summitabout.jpg') !important;
    background-size: cover !important;
    background-position: center 25% !important;
    background-attachment: fixed !important;
    min-height: 80vh !important;
    padding: 80px 0 0 !important;
    margin-top: 0 !important;
    display: flex !important;
    align-items: center !important;
    position: relative !important;
    overflow: hidden !important;
}

.page-hero.about-hero .hero-content h1 {
    color: white !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5), 0 4px 12px rgba(0, 0, 0, 0.3);
    font-weight: 700;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.page-hero.about-hero .hero-content p {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4), 0 2px 6px rgba(0, 0, 0, 0.2);
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

/* Services page specific hero background */
.page-hero.services-hero {
    background:
        linear-gradient(to bottom, rgba(10, 10, 10, 0.60) 0%, rgba(10, 10, 10, 0.50) 100%),
        url('summitcommercial.jpg') !important;
    background-size: cover !important;
    background-position: center 37% !important;
    background-attachment: fixed !important;
    min-height: 80vh !important;
    padding: 80px 0 0 !important;
    margin-top: 0 !important;
    display: flex !important;
    align-items: center !important;
    position: relative !important;
    overflow: hidden !important;
}

.page-hero.services-hero .hero-content h1 {
    color: white !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5), 0 4px 12px rgba(0, 0, 0, 0.3);
    font-weight: 700;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.page-hero.services-hero .hero-content p {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4), 0 2px 6px rgba(0, 0, 0, 0.2);
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

/* Contact page specific hero background */
.page-hero.contact-hero {
    background:
        linear-gradient(to bottom, rgba(10, 10, 10, 0.60) 0%, rgba(10, 10, 10, 0.50) 100%),
        url('summitcontact.jpg') !important;
    background-size: cover !important;
    background-position: center 45% !important;
    background-attachment: fixed !important;
    min-height: 80vh !important;
    padding: 80px 0 0 !important;
    margin-top: 0 !important;
    display: flex !important;
    align-items: center !important;
    position: relative !important;
    overflow: hidden !important;
}

.page-hero.contact-hero .hero-content h1 {
    color: white !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5), 0 4px 12px rgba(0, 0, 0, 0.3);
    font-weight: 700;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.page-hero.contact-hero .hero-content p {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4), 0 2px 6px rgba(0, 0, 0, 0.2);
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 1.6;
}

/* Gallery page specific hero background */
.page-hero.gallery-hero {
    background:
        linear-gradient(to bottom, rgba(10, 10, 10, 0.60) 0%, rgba(10, 10, 10, 0.50) 100%),
        url('summitourwork.jpg') !important;
    background-size: cover !important;
    background-position: center 63% !important;
    background-attachment: fixed !important;
    min-height: 80vh !important;
    padding: 80px 0 0 !important;
    margin-top: 0 !important;
    display: flex !important;
    align-items: center !important;
    position: relative !important;
    overflow: hidden !important;
}

.page-hero.gallery-hero .hero-content h1 {
    color: white !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5), 0 4px 12px rgba(0, 0, 0, 0.3);
    font-weight: 700;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.page-hero.gallery-hero .hero-content p {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4), 0 2px 6px rgba(0, 0, 0, 0.2);
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 1.6;
}

/* Products page specific hero background */
.page-hero.products-hero {
    background:
        linear-gradient(to bottom, rgba(10, 10, 10, 0.60) 0%, rgba(10, 10, 10, 0.50) 100%),
        url('../bralexservices.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed !important;
    min-height: 80vh !important;
    padding: 80px 0 0 !important;
    margin-top: 0 !important;
    display: flex !important;
    align-items: center !important;
    position: relative !important;
    overflow: hidden !important;
}

.page-hero.products-hero .hero-content h1 {
    color: white !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5), 0 4px 12px rgba(0, 0, 0, 0.3);
    font-weight: 700;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.page-hero.products-hero .hero-content p {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4), 0 2px 6px rgba(0, 0, 0, 0.2);
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 1.6;
}











.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-icon {
    font-size: 1.5rem;
}

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

/* Section Styles */
section {
    padding: 5rem 0;
}

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

.section-header h2 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Layout utilities */
.section {
    padding: 5rem 0;
    position: relative;
}

.grid {
    display: grid;
    gap: 2rem;
}

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

@media (max-width: 900px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .grid-3 {
        grid-template-columns: 1fr;
    }
}

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

.mb-lg {
    margin-bottom: 2rem;
}

/* Card component */
.card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.card .btn {
    margin-top: auto;
    align-self: center;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(30, 64, 175, 0.05), transparent);
    transition: left 0.6s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(30, 64, 175, 0.1);
    border-color: rgba(30, 64, 175, 0.2);
}

.card:hover::before {
    left: 100%;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--white);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
    font-family: Arial, sans-serif;
    font-weight: normal;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover .card-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(30, 64, 175, 0.4);
}

.grid-3 .card h3 {
    min-height: 4.8rem;
}

/* Why Choose Section */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: var(--spacing-lg, 2rem);
}

.why-choose-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.why-choose-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.why-choose-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.why-choose-card p {
    color: var(--text-light);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .why-choose-card {
        padding: 1.5rem;
    }

    .why-choose-icon {
        font-size: 2.5rem;
    }
}

/* Services Preview Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    filter: grayscale(1) brightness(0) saturate(100%) invert(12%) sepia(100%) saturate(3000%) hue-rotate(214deg) brightness(90%) contrast(120%);
}

.service-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

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

/* Coverage Area Section */
.coverage-area {
    background: var(--light-gray);
}

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

.coverage-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    color: var(--text-dark);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    cursor: pointer;
}

.coverage-item:hover,
.coverage-item.active {
    transform: translateY(-3px);
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: var(--white);
    color: var(--primary-color);
}

.cta-section .btn-primary:hover {
    background: var(--light-gray);
}

.cta-section .btn-secondary {
    border-color: var(--white);
    color: var(--white);
}

.cta-section .btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
    position: relative;
}

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

.footer-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

.footer-section p {
    color: var(--white);
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
}

.footer-bottom a {
    color: var(--accent-color);
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}



/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2c5282 0%, #1a365d 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 1000;
    box-shadow: none;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: none;
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
}

/* Page Hero (for internal pages) */
.page-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-top: 0;
    padding-top: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a365d 100%);
}

.page-hero .hero-content {
    text-align: center;
    color: var(--white);
    max-width: 600px;
    margin: 0 auto;
}

.page-hero .hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Company Story Section */
.company-story {
    padding: 5rem 0;
}

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

.story-content h2 {
    margin-bottom: 2rem;
}

.story-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.story-highlights {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

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

.highlight-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Poppins', sans-serif;
}

.highlight-text {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.story-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    background: var(--light-gray);
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
    width: 100%;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.placeholder-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    filter: grayscale(1) brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(214deg) brightness(97%) contrast(97%);
}

/* Values Section */
.values-section {
    background: var(--light-gray);
    padding: 5rem 0;
}

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

.value-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(30, 64, 175, 0.1);
    border-color: rgba(30, 64, 175, 0.2);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.75rem;
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
    flex-shrink: 0;
}

.value-card:hover .value-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(30, 64, 175, 0.4);
}

/* Expertise Section */
.expertise-section {
    background: var(--light-gray);
    padding: 5rem 0;
}

.expertise-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.expertise-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--primary-color);
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.expertise-card h3 {
    color: var(--text-dark);
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
}

.expertise-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.expertise-card ul li {
    padding: 0.6rem 0 0.6rem 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    color: var(--text-light);
    position: relative;
    line-height: 1.5;
}

.expertise-card ul li:last-child {
    border-bottom: none;
}

.expertise-card ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 600;
}

.expertise-stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Poppins', sans-serif;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.9rem;
}

/* Service Areas Section */
.service-areas {
    background: var(--light-gray);
    padding: 5rem 0;
}

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

.area-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

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

/* Services Page Styles */
.services-overview {
    padding: 5rem 0;
}

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


.service-detailed-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.service-header {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.service-header .service-icon {
    font-size: 2.5rem;
    filter: brightness(0) invert(1);
}

.service-header h3 {
    color: var(--white);
    margin: 0;
}

.service-content {
    padding: 2rem;
}

.service-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.service-applications {
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}

.service-applications h4 {
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-size: 1rem;
}

.application-tag {
    display: inline-block;
    background: var(--light-gray);
    color: var(--primary-color);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    border: 1px solid var(--primary-color);
}

/* Process Section */
.process-section {
    background: var(--light-gray);
    padding: 5rem 0;
}

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

.process-step {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    font-family: 'Poppins', sans-serif;
}

.step-content h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.step-content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Contact Page Styles */
.contact-section {
    padding: 5rem 0;
}

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

.contact-info h2 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.contact-info > p {
    margin-bottom: 3rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.contact-methods {
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-left: 0;
}

.contact-icon {
    font-size: 1.5rem;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0;
    filter: grayscale(1) brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(214deg) brightness(97%) contrast(97%);
}

.contact-details {
    flex: 1;
    min-width: 0;
}

.contact-details h3 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.2;
}

.contact-details p {
    margin-bottom: 0.25rem;
    font-weight: 600;
    line-height: 1.3;
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-note {
    font-size: 0.9rem;
    color: var(--text-light);
}

.contact-cta {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 15px;
}

.contact-cta h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-benefits {
    list-style: none;
}

.contact-benefits li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.contact-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Contact Form */
.contact-form-container {
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

/* Hide mobile-only sections on desktop */
.mobile-only {
    display: none;
}

/* Desktop stats pyramid layout */
.story-stats-desktop {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.stats-pyramid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.stat-row {
    display: flex;
    gap: 3rem;
}

.stat-row.top {
    justify-content: center;
}

.stat-row.bottom {
    justify-content: center;
}

.story-stats-desktop .highlight-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    min-width: 140px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.story-stats-desktop .highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.story-stats-desktop .highlight-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.story-stats-desktop .highlight-text {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
    line-height: 1.3;
}

.form-header {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 2rem;
    text-align: center;
}

.form-header h2 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.form-header p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.contact-form {
    padding: 2rem;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.form-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.btn-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.form-submit:hover .btn-arrow {
    transform: translateX(4px);
}

.form-note {
    font-size: 0.85rem;
    color: var(--text-light);
    text-align: center;
    margin: 0;
}

/* Service Areas Contact */
.service-areas-contact {
    background: var(--light-gray);
    padding: 5rem 0;
}

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

.area-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.area-item:hover {
    transform: translateY(-3px);
}

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

/* Emergency Contact */
.emergency-contact {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 3rem 0;
}

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

.emergency-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.emergency-content h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.emergency-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.emergency-contact .btn-primary {
    background: var(--white);
    color: var(--primary-color);
}

.emergency-contact .btn-primary:hover {
    background: var(--light-gray);
}

/* Coming Soon Pages */
.coming-soon {
    padding: 5rem 0;
    text-align: center;
}

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

.coming-soon-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    filter: grayscale(1) brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(214deg) brightness(97%) contrast(97%);
}

.coming-soon h2 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.coming-soon > p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: var(--text-light);
    line-height: 1.7;
}

.product-categories,
.gallery-preview {
    margin-bottom: 3rem;
}

.product-categories h3,
.gallery-preview h3 {
    margin-bottom: 2rem;
    color: var(--text-dark);
}

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

.category-item,
.preview-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.category-item:hover,
.preview-item:hover {
    transform: translateY(-3px);
}

.category-icon,
.preview-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    filter: grayscale(1) brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(214deg) brightness(97%) contrast(97%);
}

.category-item h4,
.preview-item h4 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.category-item p,
.preview-item p {
    color: var(--text-light);
    margin: 0;
}

.testimonial-preview {
    background: var(--light-gray);
    padding: 3rem;
    border-radius: 15px;
    margin-bottom: 3rem;
}

.testimonial-preview h3 {
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.testimonial-item {
    max-width: 600px;
    margin: 0 auto;
}

.testimonial-item p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.testimonial-author {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-cta {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.contact-cta h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-cta p {
    margin-bottom: 2rem;
    color: var(--text-light);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        border: 1px solid var(--border-color);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
        z-index: 1000;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-link {
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--light-gray);
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .nav-link::after {
        bottom: 0.5rem;
    }

    .logo {
        display: flex;
        justify-content: flex-start;
    }

    .logo img {
        height: 49.5px !important; /* 10% smaller than 55px */
    }

    .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .page-hero .hero-title {
        font-size: 1.75rem;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 2rem;
        line-height: 1.5;
    }

    .hero-features {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .feature-item {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        flex: 1 1 auto;
        min-width: 140px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .home-hero-contact {
        gap: 0.5rem;
    }

    .hero-phone-row {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .hero.home-hero .hero-content h1 {
        font-size: 2.2rem !important;
    }

    .btn {
        width: auto;
        max-width: 240px;
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
        min-width: 200px;
    }

    h1 { font-size: 2rem; line-height: 1.2; }
    h2 { font-size: 1.75rem; line-height: 1.3; }
    h3 { font-size: 1.5rem; line-height: 1.3; }
    h4 { font-size: 1.25rem; }

    .section {
        padding: 3rem 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .coverage-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

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

    .story-highlights {
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .expertise-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .expertise-stats-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

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

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

    .categories-grid,
    .preview-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .areas-map {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: left;
    }

    .footer-logo {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .footer-logo img {
        display: block;
        margin: 0 auto;
        transform: scale(1.1);
    }

    .footer-section:first-child {
        text-align: center;
    }

    .footer-section ul {
        display: block;
    }

    .footer-section ul li {
        margin-bottom: 0.5rem;
    }

    /* About page mobile fixes */
    .story-highlights {
        flex-direction: column !important;
        gap: 1.5rem !important;
        margin-top: 2rem !important;
        margin-bottom: 2rem !important;
    }

    .highlight-item {
        flex: none !important;
        text-align: center;
        padding: 1rem;
        background: var(--white);
        border-radius: 12px;
        box-shadow: var(--shadow);
        border: 2px solid transparent;
        transition: all 0.3s ease;
    }

    .highlight-item:hover {
        border-color: var(--primary-color);
    }

    .highlight-number {
        font-size: 2rem !important;
        margin-bottom: 0.5rem;
    }

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

    /* Hide the professional team image section on mobile */
    .story-image {
        display: none !important;
    }

    .story-grid {
        grid-template-columns: 1fr !important;
    }

    /* Services page mobile fixes - ensure proper spacing */
    .services-detailed-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        padding: 0 !important;
    }

    .service-detailed-card {
        margin: 0 !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .service-content {
        padding: 1.5rem !important;
    }

    /* Show colorful emojis on mobile instead of filtered blue icons */
    .service-icon {
        filter: none !important;
    }
}

/* Enhanced Mobile Responsiveness for Small Screens */
@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }

    .hero {
        padding: 4rem 0 3rem;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .page-hero .hero-title {
        font-size: 1.75rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .feature-item {
        font-size: 0.85rem;
        padding: 0.5rem 0.75rem;
        min-width: 120px;
    }

    .btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
        max-width: 100%;
    }

    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }

    .section {
        padding: 2.5rem 0;
    }

    .service-card,
    .coverage-card {
        padding: 1.25rem;
    }

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

    .expertise-stats-bar .stat-card {
        padding: 1.5rem;
    }

    .coverage-grid {
        grid-template-columns: 1fr;
    }

    .footer-section ul {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    /* Improve scrolling performance on mobile */
    .hero, .section {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }

    /* background-attachment: fixed breaks with transforms on mobile — revert to scroll */
    .hero.home-hero {
        background-attachment: scroll;
    }

    /* Better mobile form styling */
    input, select, textarea {
        font-size: 16px; /* Prevents zoom on iOS */
        border-radius: 8px;
    }

    /* Mobile-specific button improvements */
    .btn:active {
        transform: scale(0.98);
    }

    /* Hide desktop-only elements on mobile */
    .desktop-only,
    .coverage-item.desktop-only,
    .story-stats-desktop {
        display: none;
    }

    /* Hide service areas section on mobile contact page */
    .service-areas-contact {
        display: none;
    }

    /* Show mobile-only elements */
    .mobile-only {
        display: block !important;
    }

    /* Show mobile-only contact CTA section */
    .contact-cta.mobile-only {
        display: block;
        background: var(--light-gray);
        padding: 2rem;
        border-radius: 12px;
        margin-top: 2rem;
    }

    /* Fix contact method alignment on mobile */
    .contact-method {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 2rem;
        padding-left: 0;
    }

    .contact-icon {
        font-size: 1.5rem;
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        margin-top: 0;
        filter: grayscale(1) brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(214deg) brightness(97%) contrast(97%);
    }

    .contact-details {
        flex: 1;
        min-width: 0;
    }

    .contact-details h3 {
        margin-bottom: 0.5rem;
        color: var(--text-dark);
        font-size: 1.1rem;
        font-weight: 600;
        line-height: 1.2;
    }

    .contact-details p {
        margin-bottom: 0.25rem;
        font-weight: 600;
        line-height: 1.3;
    }

    .contact-note {
        font-size: 0.9rem;
        color: var(--text-light);
        line-height: 1.3;
    }

    /* Fix mobile form issues */
    .checkbox-label input[type="checkbox"] {
        width: 18px !important;
        height: 18px !important;
        min-width: 18px;
        min-height: 18px;
        margin: 0;
        flex-shrink: 0;
    }

    .checkbox-label {
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
        cursor: pointer;
        font-size: 0.95rem;
        line-height: 1.5;
        width: 100%;
    }

    .form-submit {
        width: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0.75rem;
        margin: 1rem 0;
        text-align: center;
    }

    .checkbox-group {
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
        width: 100%;
        margin-bottom: 1.5rem;
    }

    /* Improve mobile navigation */
    .nav-menu.active {
        animation: slideDown 0.3s ease-out;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}
