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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    opacity: 0;
    transition: opacity 0.3s ease;
}

body.loaded {
    opacity: 1;
}

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

/* Color Variables */
:root {
    --primary-blue: #2563eb;
    --secondary-blue: #1e40af;
    --light-blue: #dbeafe;
    --light-grey: #f8fafc;
    --medium-grey: #64748b;
    --dark-grey: #334155;
    --white: #ffffff;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-grey);
}

h1 {
    font-size: 3rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--medium-grey);
}

/* Enhanced Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 25px rgba(0, 0, 0, 0.15);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    height: 100%;
    width: 100%;
}

.nav-logo .logo {
    height: 150px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

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

.nav-logo h3 {
    color: var(--primary-blue);
    margin: 0;
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-item {
    margin-left: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-grey);
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

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

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

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

.cta-btn {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue)) !important;
    color: var(--white) !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.cta-btn::after {
    display: none;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background: var(--dark-grey);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Enhanced CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--white);
    text-align: center;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="75" cy="25" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="25" cy="75" r="1" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 1;
}

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

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

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

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

/* Enhanced Footer */
.footer {
    background: linear-gradient(135deg, var(--dark-grey) 0%, #1e293b 100%);
    color: var(--white);
    padding: 4rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

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

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

.footer-section p,
.footer-section li {
    color: #cbd5e1;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

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

.footer-section a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-section i {
    margin-right: 0.75rem;
    color: var(--primary-blue);
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid #475569;
    padding-top: 2rem;
    text-align: center;
    color: #94a3b8;
}

/* Enhanced Buttons */
.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary-blue);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    border: 2px solid var(--primary-blue);
    transition: all 0.3s ease;
}

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

/* Enhanced Coverage Area */
.coverage-area {
    background: var(--white);
    padding: 6rem 0;
}

.coverage-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.coverage-text {
    flex: 1;
}

.coverage-text h2 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

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

.coverage-text li {
    padding: 0.5rem 0;
    color: var(--medium-grey);
    position: relative;
    padding-left: 1.5rem;
}

.coverage-text li::before {
    content: "✓";
    color: var(--primary-blue);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.coverage-map {
    flex: 1;
    text-align: center;
}

.coverage-map img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.map-caption {
    font-size: 0.9rem;
    color: var(--medium-grey);
    margin-top: 1rem;
    font-style: italic;
}

/* Enhanced Why Choose Us */
.why-choose-us {
    background: var(--light-grey);
    padding: 6rem 0;
}

.why-choose-us h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--dark-grey);
    font-size: 2.5rem;
}

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

.reason-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.reason-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.reason-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.reason-icon i {
    font-size: 2rem;
    color: var(--white);
}

.reason-item h3 {
    margin-bottom: 1rem;
    color: var(--dark-grey);
    font-size: 1.3rem;
}

.reason-item p {
    color: var(--medium-grey);
    line-height: 1.6;
}

/* Full-Screen Hero Section */
.hero-fullscreen {
    position: relative;
    height: calc(100vh - 80px);
    min-height: 620px;
    margin-top: 80px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    color: var(--white);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 64, 175, 0.2);
    z-index: 2;
}

.hero-content-wrapper {
    position: relative;
    z-index: 3;
    margin-left: 4rem;
}

.hero-content-centered {
    text-align: left;
    max-width: 800px;
    margin: 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
    animation: fadeInUp 0.4s ease-out 0.1s both;
}

.hero-content-centered h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--white);
    animation: fadeInUp 0.4s ease-out 0.2s both;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 0.4s ease-out 0.3s both;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.8);
    animation: fadeInUp 0.4s ease-out 0.4s both;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    margin-bottom: 4rem;
    animation: fadeInUp 0.4s ease-out 0.5s both;
}

.btn-primary-large {
    display: inline-flex;
    align-items: center;
    background: var(--white);
    color: var(--primary-blue);
    padding: 1.25rem 2.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-secondary-outline {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: var(--white);
    padding: 1.25rem 2.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.btn-secondary-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    justify-content: flex-start;
    gap: 3rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.4s ease-out 0.6s both;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-arrow:hover {
    border-color: var(--white);
    color: var(--white);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Enhanced Company Intro Section */
.company-intro {
    padding: 6rem 0;
    background: var(--white);
}

/* Intro Section Styling */
.intro-section {
    padding: 6rem 0;
    background: var(--white);
}

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

.intro-content h2 {
    color: var(--primary-blue);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.intro-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--medium-grey);
    margin-bottom: 1.5rem;
}

.intro-content p:first-of-type {
    font-size: 1.2rem;
    color: var(--dark-grey);
    font-weight: 400;
}

/* Stats Section Styling */
.stats-section {
    padding: 4rem 0;
    background: var(--light-grey);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--medium-grey);
    font-weight: 500;
}

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

.section-header {
    margin-bottom: 2rem;
}

.section-badge {
    display: inline-block;
    background: var(--light-blue);
    color: var(--primary-blue);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark-grey);
    margin-bottom: 0;
    line-height: 1.2;
}

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

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

.section-subtitle {
    font-size: 1.2rem;
    color: var(--medium-grey);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.lead-paragraph {
    font-size: 1.3rem;
    line-height: 1.7;
    color: var(--dark-grey);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.intro-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.feature-highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-grey);
    border-radius: 8px;
    border-left: 4px solid var(--primary-blue);
}

.feature-highlight i {
    color: var(--primary-blue);
    font-size: 1.2rem;
    width: 20px;
}

.feature-highlight span {
    font-weight: 500;
    color: var(--dark-grey);
}

.intro-visual {
    position: relative;
}

.image-stack {
    position: relative;
    height: 500px;
}

.stack-image-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 70%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stack-image-overlay {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 50%;
    object-fit: cover;
    border-radius: 12px;
    border: 4px solid var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Premium Services Section */
.services-premium {
    padding: 6rem 0;
    background: var(--light-grey);
}

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

.service-card-premium {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.service-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.service-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.service-content {
    padding: 2rem;
}

.service-icon-premium {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transform: translateY(-30px);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.service-icon-premium i {
    font-size: 1.5rem;
    color: var(--white);
}

.service-content h3 {
    color: var(--dark-grey);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-content p {
    color: var(--medium-grey);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--medium-grey);
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
}

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

.disclaimer {
    font-size: 0.9rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 1rem !important;
    animation: fadeInUp 0.4s ease-out 0.7s both;
}

/* Services Highlights */
.services-highlights {
    background: var(--light-grey);
}

.services-highlights h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-grey);
}

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

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

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

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: var(--primary-blue);
}

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

.service-card p {
    color: var(--medium-grey);
}

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

.coverage-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.coverage-text {
    flex: 1;
}

.coverage-text h2 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

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

.coverage-text li {
    padding: 0.5rem 0;
    color: var(--medium-grey);
    position: relative;
    padding-left: 1.5rem;
}

.coverage-text li::before {
    content: "✓";
    color: var(--primary-blue);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.coverage-map {
    flex: 1;
    text-align: center;
}

.coverage-map img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.map-caption {
    font-size: 0.9rem;
    color: var(--medium-grey);
    margin-top: 1rem;
    font-style: italic;
}

/* Why Choose Us */
.why-choose-us {
    background: var(--light-grey);
}

.why-choose-us h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-grey);
}

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

.reason-item {
    text-align: center;
    padding: 2rem 1rem;
}

.reason-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.reason-icon i {
    font-size: 2rem;
    color: var(--white);
}

.reason-item h3 {
    margin-bottom: 1rem;
    color: var(--dark-grey);
}

.reason-item p {
    color: var(--medium-grey);
}

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

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

.cta-content p {
    color: var(--light-blue);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

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

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

/* Form Styles */
.form-container {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    max-width: 800px;
    margin: 0 auto;
}

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

.form-group.focused label {
    color: var(--primary-blue);
    transform: translateY(-5px);
    font-size: 0.9rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark-grey);
    font-weight: 500;
    transition: all 0.3s ease;
}

input,
select,
textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

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

/* Page Hero Sections */
.page-hero {
    position: relative;
    padding: 8rem 0 6rem;
    margin-top: 80px;
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
    color: var(--white);
    overflow: hidden;
}

.hero-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    background-size: 300px 300px;
    opacity: 0.3;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.page-hero-content .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.page-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.page-hero-content .hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

/* Enhanced Section Styling */
.service-list {
    background: var(--white);
    padding: 6rem 0;
}

.service-list h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--dark-grey);
    font-size: 2.5rem;
}

.service-list > .container > p {
    text-align: center;
    color: var(--medium-grey);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 4rem;
    line-height: 1.6;
}

.service-item {
    background: var(--white);
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-blue);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.service-item:hover::before {
    transform: scaleY(1);
}

.service-item h3 {
    color: var(--dark-grey);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.service-item h3 i {
    color: var(--primary-blue);
    font-size: 1.2rem;
    width: 24px;
}

.service-item p {
    color: var(--medium-grey);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.service-item p:last-child {
    margin-bottom: 0;
}

.service-item p strong {
    color: var(--dark-grey);
    font-weight: 600;
}

/* Enhanced Certifications */
.certifications {
    background: var(--light-grey);
    padding: 6rem 0;
    text-align: center;
}

.certifications h2 {
    margin-bottom: 1rem;
    color: var(--dark-grey);
    font-size: 2.5rem;
}

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

.cert-item {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.cert-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.cert-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
}

.cert-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.cert-item h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--dark-grey);
    font-weight: 600;
}

.cert-item p {
    font-size: 0.9rem;
    color: var(--medium-grey);
    line-height: 1.5;
    margin: 0;
}

/* Team Section */
.team-section {
    background: var(--white);
}

.team-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-blue);
}

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

.team-member {
    text-align: center;
    background: var(--light-grey);
    padding: 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    background: var(--medium-grey);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3rem;
    position: relative;
    overflow: hidden;
}

.team-photo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-member:hover .team-photo::after {
    opacity: 1;
}

.team-member h3 {
    margin-bottom: 0.5rem;
    color: var(--dark-grey);
}

.team-member .title {
    color: var(--primary-blue);
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-member p {
    color: var(--medium-grey);
    font-size: 0.9rem;
}

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

.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;
}

.footer-section p,
.footer-section li {
    color: #cbd5e1;
    margin-bottom: 0.5rem;
}

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

.footer-section a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-section i {
    margin-right: 0.5rem;
    color: var(--primary-blue);
}

.footer-bottom {
    border-top: 1px solid #475569;
    padding-top: 1rem;
    text-align: center;
    color: #94a3b8;
}

/* Additional Professional Enhancements */

/* Enhanced Card Hover Effects */
.service-card {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

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

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
}

/* Enhanced Team Cards */
.team-member {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-photo {
    position: relative;
    overflow: hidden;
}

.team-photo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-member:hover .team-photo::after {
    opacity: 1;
}

/* Enhanced Form Styling */
.form-container {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 12px 12px 0 0;
}

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

/* Enhanced Button Styles */
.btn-primary {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

/* Enhanced CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="75" cy="25" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="25" cy="75" r="1" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 1;
}

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

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

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

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

/* Loading State */
body {
    opacity: 0;
    transition: opacity 0.3s ease;
}

body.loaded {
    opacity: 1;
}

/* Enhanced Form Focus States */
.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group.focused label {
    color: var(--primary-blue);
    transform: translateY(-5px);
    font-size: 0.9rem;
}

.form-group label {
    transition: all 0.3s ease;
}

/* Enhanced Checkbox Styling */
input[type="checkbox"] {
    width: 18px !important;
    height: 18px;
    accent-color: var(--primary-blue);
    cursor: pointer;
}

/* Enhanced Select Styling */
select {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="%232563eb"><path fill-rule="evenodd" d="M5.23 7.21a.75.75 0 011.06.02L10 11.168l3.71-3.938a.75.75 0 111.08 1.04l-4.25 4.5a.75.75 0 01-1.08 0l-4.25-4.5a.75.75 0 01.02-1.06z" clip-rule="evenodd" /></svg>');
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
    appearance: none;
    padding-right: 3rem;
}

/* Enhanced Success/Error Messages */
.success-message,
.error-message {
    animation: slideInUp 0.3s ease-out;
}

/* Enhanced Mobile Menu */
@media (min-width: 769px) {
    .nav-container {
        padding: 0 2rem;
    }
    
    .hero-content-wrapper {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
        z-index: 1000;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 1rem 0;
    }
    
    /* Fix hero positioning on mobile */
    .hero-fullscreen {
        height: calc(100vh - 80px); /* Subtract navbar height */
        min-height: 520px;
        margin-top: 80px; /* Push hero below fixed navbar */
        padding-top: 0; /* Remove padding since we're using margin */
    }
      .hero-content-centered {
        padding: 2rem 1rem;
        text-align: center; /* Center on mobile for better readability */
    }
    
    .hero-cta-group {
        justify-content: center; /* Center buttons on mobile */
    }
    
    .hero-stats {
        justify-content: center; /* Center stats on mobile */
    }
    
    .hero-content-centered h1 {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-badge {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
        margin-bottom: 1.5rem;
    }
      /* Fix page hero positioning on mobile */
    .page-hero {
        margin-top: 80px; /* Push page hero below fixed navbar */
        padding-top: 6rem; /* Reduce top padding since we have margin */
        min-height: 50vh;
    }
    
    .page-hero-content {
        text-align: center; /* Center page hero content on mobile */
    }
    
    .page-hero-content h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .page-hero-content .hero-subtitle {
        font-size: 1rem;
    }
    
    /* Other mobile adjustments */
    .coverage-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .reasons-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .cert-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
      .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .hero-content-wrapper {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-fullscreen {
        min-height: 500px;
        padding-top: 80px;
    }
    
    .hero-content-centered h1 {
        font-size: 2rem;
    }
    
    .hero-content-centered p {
        font-size: 1rem;
    }
    
    .page-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Leaflet Map Styling */
#map {
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    z-index: 1;
    border: 2px solid rgba(37, 99, 235, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

#map:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.leaflet-popup-content-wrapper {
    border-radius: 12px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.leaflet-popup-tip {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.leaflet-popup-content {
    margin: 16px 20px;
    line-height: 1.5;
    font-family: 'Inter', sans-serif;
}

.leaflet-popup-content h4 {
    color: var(--primary-blue) !important;
    font-weight: 600 !important;
    margin-bottom: 8px !important;
    font-size: 15px !important;
}

.leaflet-popup-content p {
    color: var(--medium-grey) !important;
    font-size: 13px !important;
    margin: 0 !important;
}

.leaflet-control-zoom {
    border: none !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2) !important;
    overflow: hidden;
}

.leaflet-control-zoom a {
    border-radius: 0 !important;
    border: none !important;
    color: var(--primary-blue) !important;
    font-weight: 700 !important;
    font-size: 18px !important;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease !important;
}

.leaflet-control-zoom a:hover {
    background: var(--primary-blue) !important;
    color: white !important;
    transform: scale(1.05);
}

.leaflet-control-zoom a:first-child {
    border-radius: 12px 12px 0 0 !important;
}

.leaflet-control-zoom a:last-child {
    border-radius: 0 0 12px 12px !important;
}

.leaflet-control-attribution {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(10px) !important;
    border-radius: 8px !important;
    margin: 8px !important;
    padding: 4px 8px !important;
    font-size: 11px !important;
    font-family: 'Inter', sans-serif !important;
    color: var(--medium-grey) !important;
    border: 1px solid rgba(37, 99, 235, 0.1) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
}

.leaflet-control-attribution a {
    color: var(--primary-blue) !important;
    text-decoration: none !important;
}

/* Custom marker styling */
.leaflet-marker-icon {
    filter: hue-rotate(200deg) saturate(1.2) brightness(1.1);
}

/* Map container enhancement */
.coverage-map {
    position: relative;
}

.coverage-map::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-blue), var(--secondary-blue), var(--primary-blue));
    border-radius: 14px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.coverage-map:hover::before {
    opacity: 0.1;
}

/* Custom map attribution styling */
.custom-attribution {
    font-family: 'Inter', sans-serif;
    pointer-events: none;
}

.custom-attribution span {
    font-size: 10px !important;
    color: #64748b !important;
    background: rgba(255, 255, 255, 0.9) !important;
    padding: 3px 6px !important;
    border-radius: 4px !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
}
