/* Clean Corporate Design System - Signal Booster Chennai */
:root {
    --primary-color: #0f172a;
    --primary-dark: #020617;
    --accent-color: #475569;
    --text-main: #334155;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;

    --container-width: 1000px;
    --section-padding: 5rem 0;
    --border-radius: 4px;
    --transition: 0.2s ease-in-out;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-4 {
    margin-top: 4rem;
}

.mt-6 {
    margin-top: 6rem;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-4 {
    margin-bottom: 4rem;
}

.mb-6 {
    margin-bottom: 6rem;
}

.pb-2 {
    padding-bottom: 2rem;
}

.pt-2 {
    padding-top: 2rem;
}

.mb-05 {
    margin-bottom: 0.5rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.max-w-800 {
    max-width: 800px;
}

/* Semantic Style Classes */
.benefit-title {
    font-size: 1.75rem;
}

.section-faq {
    background: var(--bg-light);
    padding: 5rem 0;
}

.faq-container {
    max-width: 850px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    border-color: #cbd5e1;
}

.faq-item h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-item h4::before {
    content: 'Q.';
    color: #f59e0b;
    font-weight: 800;
}

.faq-item p {
    color: var(--text-main);
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-desc {
    color: #475569;
}

.contact-note {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: #94a3b8;
}

/* Testimonials Styling */
.section-testimonials {
    background: #ffffff;
    padding: 5rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
    background: white;
}

.stars {
    color: #f59e0b;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.review-text {
    font-style: italic;
    color: var(--text-main);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.client-info {
    display: flex;
    flex-direction: column;
}

.client-info strong {
    color: var(--primary-color);
    font-size: 1rem;
}

.client-info span {
    color: var(--text-muted);
    font-size: 0.85rem;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: #0f172a;
    margin: 0 !important;
    padding: 0 !important;
    height: 100%;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    line-height: 1.6;
    color: var(--text-main);
    background-color: #0f172a; /* Matches footer to fill any gaps at the bottom */
    -webkit-font-smoothing: antialiased;
    margin: 0 !important;
    padding: 0 !important;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

/* Contact Page Specific Styles */
.contact-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 100px 0 60px;
    color: white;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
}

.contact-hero p {
    font-size: 1.1rem;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto;
}

.contact-page-main {
    padding: 4rem 0;
    background-color: #f8fafc;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: start;
}

.form-card {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
}

.form-card h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.form-intro {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.modern-form .form-group {
    margin-bottom: 1.5rem;
}

.modern-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.modern-form input,
.modern-form textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    background: #f8fafc;
    transition: all 0.2s ease;
}

.modern-form input:focus,
.modern-form textarea:focus {
    outline: none;
    border-color: #f59e0b;
    background: white;
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: #f59e0b;
    color: #000;
    border: none;
    border-radius: 8px;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2);
}

.submit-btn:hover {
    background: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
}

.info-card {
    display: flex;
    gap: 1.5rem;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateX(5px);
}

.info-icon {
    font-size: 2rem;
    background: #fef3c7;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.info-details h4 {
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.info-details p {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.info-details p a {
    color: inherit;
    text-decoration: none;
}

.info-details span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.map-link {
    font-size: 0.85rem;
    color: #f59e0b;
    font-weight: 700;
    text-decoration: none;
}

.whatsapp-card-mini {
    background: #ecfdf5;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #d1fae5;
}

.whatsapp-mini-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25d366;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.whatsapp-mini-btn:hover {
    background: #128c7e;
    transform: scale(1.05);
}

.map-section {
    padding-bottom: 4rem;
    background-color: #f8fafc;
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

h1,
h2,
h3,
h4 {
    color: var(--primary-color);
    font-weight: 700;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Modern Solid Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    border-bottom: 3px solid #f59e0b; /* Unique accent border */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    height: 65px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease; /* Added transition for smoothness */
}

.navbar .container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Logo */
.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand-logo {
    max-height: 45px;
    width: auto;
    object-fit: contain;
}


/* Navigation Links */
.menu-close {
    display: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1rem;
    padding: 10px 0;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #f59e0b;
}

/* CTA Button */
.nav-cta {
    display: block;
}

.nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: #f59e0b;
    color: #000;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.95rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2);
}

/* Mobile Quick Actions */
.mobile-actions {
    display: none;
    align-items: center;
    gap: 15px;
}

.mobile-call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: #f59e0b;
    color: #000;
    border-radius: 10px;
    text-decoration: none;
}

/* Hamburger Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    width: 32px;
    height: 22px;
    justify-content: space-between;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    border-radius: 4px;
}

/* Mobile Nav Logic */
@media (max-width: 900px) {
    .navbar {
        height: 65px;
    }

    .mobile-actions {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%; /* Optimized for readability while keeping it partial as requested */
        height: 100vh;
        background: #ffffff;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        transition: 0.4s ease-in-out;
        z-index: 1001;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        font-size: 1.5rem;
    }

    .menu-close {
        display: block;
        position: absolute;
        top: 25px;
        right: 25px;
        font-size: 2.5rem;
        background: none;
        border: none;
        color: var(--primary-color);
        cursor: pointer;
    }

    .nav-cta {
        display: none;
    }
}

/* Hero Section */
.hero-banner {
    padding-top: 80px;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(15, 23, 42, 0.5), rgba(15, 23, 42, 0.5)), url('images/SB-Chennai-Laptop-Size-Banner-Image.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: white;
}

@media (max-width: 768px) {
    .hero-banner {
        min-height: 500px;
        background: linear-gradient(rgba(15, 23, 42, 0.6), rgba(15, 23, 42, 0.6)), url('images/SB-Chennai-Mobile-Size-Banner-Image.jpg');
        background-size: cover;
        background-position: center;
        background-attachment: scroll; /* Better performance on mobile */
    }
}

.hero-container {
    width: 100%;
    position: relative;
    z-index: 10;
}

.hero-container h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-container h1 span {
    color: #f59e0b;
    display: inline-block;
    padding-bottom: 5px;
}

.hero-container p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: #f8fafc;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    font-weight: 400;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.btn-group {
    display: flex;
    gap: 24px;
    /* Increased gap */
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.btn {
    padding: 16px 32px;
    /* More generous padding */
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
}

.btn-call {
    background: #f59e0b;
    /* Bright Amber for maximum visibility */
    color: #0f172a;
    /* Dark text for contrast */
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
    position: relative;
    overflow: hidden;
    animation: btnPulse 2s infinite;
}

.btn-call:hover {
    background: #d97706;
    color: white;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.5);
}

@keyframes btnPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.5);
    }

    70% {
        box-shadow: 0 0 0 18px rgba(245, 158, 11, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
    }
}

.btn-email {
    background: white;
    backdrop-filter: blur(10px);
    border: 2px solid #0f172a;
    color: #0f172a;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.btn-email:hover {
    background: #0f172a;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(15, 23, 42, 0.2);
}

/* Content Sections */
section {
    padding: var(--section-padding);
    background-color: var(--bg-white); /* Ensures main sections stay white */
}

.index-topics {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.index-description {
    text-align: center;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

.section-intro {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
}

.product-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 250px;
    background-color: #f8fafc;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-img {
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
}

.gallery-img-cover {
    object-fit: cover;
}

.gallery-img-contain {
    object-fit: contain;
    padding: 15px;
    background: white;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-overlay span {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
}

.feature-icon {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.SB-benefit-content {
    max-width: 800px;
    margin: 4rem auto 0;
}

.SB-benefits-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
}

.SB-benefits-list li {
    padding: 1.25rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
}

/* Footer */
/* Service Areas Section */
.service-areas-section {
    padding: var(--section-padding);
    background: white;
}

.locations-pill-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 900px;
    margin: 0 auto;
}

.location-pill {
    background: #f8fafc;
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    cursor: default;
}

.location-pill:hover {
    background: white;
    border-color: #f59e0b;
    color: #f59e0b;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.05);
}

/* Homepage Contact Section (New Design) */
.home-contact-section {
    padding: 6rem 0;
    background-color: #f8fafc;
    position: relative;
    overflow: hidden;
}

.home-contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(15, 23, 42, 0.1), transparent);
}

.home-contact-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 0;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

/* Left Column: Form */
.home-contact-form {
    padding: 4rem;
    background: white;
}

.home-contact-form .modern-contact-form {
    margin-top: 2rem;
}

.w-100 {
    width: 100%;
}

/* Right Column: Glassmorphism Details */
.home-contact-details {
    padding: 4rem;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.home-contact-details::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('images/hero-bg.png') center/cover;
    opacity: 0.1;
    z-index: 0;
}

.home-contact-details > * {
    position: relative;
    z-index: 1;
}

.home-contact-details h3 {
    color: white;
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.text-muted {
    color: #94a3b8 !important;
}

.contact-info-list {
    margin: 2.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: white;
    padding: 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.contact-info-item .icon-circle {
    width: 48px;
    height: 48px;
    background: rgba(245, 158, 11, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.contact-info-item .info-text {
    display: flex;
    flex-direction: column;
}

.contact-info-item .label {
    font-size: 0.85rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.contact-info-item .value {
    font-weight: 600;
    font-size: 1.05rem;
    word-wrap: break-word;
    word-break: break-word;
}

.whatsapp-direct .btn-whatsapp {
    justify-content: center;
    padding: 1rem;
    font-size: 1.05rem;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 1.25rem;
    background: #25d366;
    /* WhatsApp Green */
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

/* Responsive Section */
@media (max-width: 1024px) {
    .container {
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 3rem 0;
    }

    .hero-banner {
        min-height: 450px;
        padding-top: 100px;
    }

    .hero-container h1 {
        font-size: 2.25rem;
        margin-bottom: 1rem;
    }

    .hero-container p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .features-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .feature-item {
        padding: 1.5rem;
    }

    .home-contact-wrapper {
        grid-template-columns: 1fr;
    }

    .home-contact-form {
        padding: 2rem 1.25rem;
    }

    .home-contact-details {
        padding: 2rem 1.25rem;
    }


    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .footer-section {
        width: 100%;
    }

    .footer-section ul {
        padding: 0;
    }

    .footer-section .logo {
        justify-content: center;
    }

    .faq-item {
        padding: 1.25rem;
        margin-bottom: 1rem;
    }

    .faq-item h4 {
        font-size: 1rem;
    }

    /* Contact Page Mobile Fixes */
    .contact-hero {
        padding: 80px 0 40px;
    }

    .contact-hero h1 {
        font-size: 2.25rem;
    }

    .contact-page-main {
        padding: 2.5rem 0;
    }

    .form-card {
        padding: 2rem;
    }

    .info-card {
        padding: 1.25rem;
        gap: 1rem;
    }

    .mt-6 {
        margin-top: 3rem;
    }

    .mb-6 {
        margin-bottom: 3rem;
    }
}

@media (max-width: 480px) {
    .hero-container h1 {
        font-size: 1.85rem;
    }

    .btn {
        padding: 12px 24px;
        text-align: center;
    }

    /* Contact Page Extra Small Fixes */
    .contact-hero h1 {
        font-size: 1.85rem;
    }

    .contact-hero p {
        font-size: 0.95rem;
        padding: 0 10px;
    }

    .form-card {
        padding: 1.5rem;
    }

    .home-contact-section {
        padding: 3rem 0;
    }

    .home-contact-wrapper {
        border-radius: 12px;
    }

    .home-contact-form {
        padding: 1.5rem 1rem;
    }

    .home-contact-details {
        padding: 1.5rem 1rem;
    }

    .contact-info-item {
        padding: 0.75rem;
        gap: 0.75rem;
    }

    .contact-info-item .icon-circle {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .contact-info-item .value {
        font-size: 0.9rem;
    }

    .form-card h3 {
        font-size: 1.5rem;
    }

    .info-icon {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
        min-width: 48px;
    }
}

/* Minimalist Footer */
.footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 2.5rem 0 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: auto; /* Sticky footer behavior */
    margin-bottom: 0 !important;
    display: block;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.brand-col {
    flex: 1;
    min-width: 250px;
}

.footer-heading {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.footer-brief {
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.links-col {
    flex: 1;
    display: flex;
    justify-content: center;
}

.footer-links-inline {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    padding: 0;
}

.footer-links-inline a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links-inline a:hover {
    color: #f59e0b;
}

.contact-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
    min-width: 200px;
}

.footer-contact-item {
    font-size: 0.9rem;
    color: #e2e8f0;
}

.footer-middle {
    padding: 1.5rem 0;
    text-align: center;
}

.service-areas-inline {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.6;
}

.service-areas-inline strong {
    color: #94a3b8;
}

.footer-bottom {
    text-align: center;
    font-size: 0.8rem;
    color: #475569;
}

.footer-bottom p {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .contact-col {
        align-items: center;
    }

    .footer-links-inline {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
}

/* Contact Features & Forms */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 3rem 0;
    margin-top: 3rem;
    border-top: 1px solid var(--border-color);
}

.feature-item {
    text-align: center;
}

.feature-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.feature-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .contact-features {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}