/* === ROOT VARIABLES === */
:root {
    /* Colors */
    --primary-color: #1a365d;       /* Navy blue */
    --primary-dark: #0f2942;        /* Darker navy for hover states */
    --secondary-color: #0f1f3d;     /* Dark navy */
    --accent-color: #f59e0b;        /* Amber for CTAs */
    --accent-hover: #d97706;        /* Darker amber for hover */
    --text-color: #1f2937;          /* Dark gray for text */
    --text-light: #f9fafb;          /* Light text for dark backgrounds */
    --light-gray: #f3f4f6;          /* Light gray for backgrounds */
    --border-color: #e5e7eb;        /* Border color */
    --success-color: #10b981;       /* Green for success messages */
    --error-color: #ef4444;         /* Red for error messages */
    --warning-color: #f59e0b;       /* Yellow for warnings */
    
    /* Typography */
    --font-main: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-heading: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    
    /* Spacing */
    --container-padding: 0 5%;
    --section-padding: 5rem 0;
    --card-padding: 2rem;
    --border-radius: 8px;
    --box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --transition: all 0.3s ease;
}

/* === BASE STYLES === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    line-height: 1.7;
    color: var(--text-color);
    background-color: #ffffff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1.5rem;
    color: #4b5563;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:not(.no-hover):hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style-position: inside;
    margin-bottom: 1.5rem;
}

button, .button, .cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    text-decoration: none;
    font-size: 1rem;
    line-height: 1.5;
}

button:hover, .button:hover, .cta-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

button:active, .button:active, .cta-button:active {
    transform: translateY(0);
}

.secondary {
    background-color: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

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

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

.section-header h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.section-header p {
    max-width: 700px;
    margin: 0 auto;
    color: #6b7280;
}

/* === HEADER STYLES === */
.site-header {
    background-color: rgba(255, 255, 255, 0.5);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

/* Scrolled state for header */
.site-header.scrolled {
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

/* Debug styles - make it very obvious when scrolled */
.site-header.scrolled {
    border-bottom: 3px solid red !important;
}

/* Ensure the header stays above other content */
body {
    padding-top: 60px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-logo {
    height: 75px;
    width: 300px;
    transition: var(--transition);
}

.company-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Main Navigation */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 1rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
    background-color: rgba(37, 99, 235, 0.1);
}

.nav-link.cta-button {
    background-color: var(--accent-color);
    color: white;
    padding: 0.5rem 1.5rem;
    margin-left: 0.5rem;
}

.nav-link.cta-button:hover {
    background-color: var(--accent-hover);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--primary-color);
    padding: 10px;
    z-index: 1001;
    color: var(--text-color);
}

/* Hero Section - Debug Mode */
.hero {
    background-color: var(--primary-color);
    color: white;
    padding: 6rem 1.5rem;
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.9) 0%, rgba(15, 31, 61, 0.9) 100%);
    z-index: 1;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 2;
    min-height: 300px;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
}

/* Hero section image styles removed */

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

.hero p.hero-bullets {
    font-size: 1.25rem;
    margin: 0 auto 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
}

.hero-bullets .bullet-point {
    display: inline-block;
    margin: 0 0.5rem;
}

.hero-bullets .bullet-separator {
    display: inline-block;
    margin: 0 0.25rem;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .hero-bullets {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.25rem;
    }
    
    .hero-bullets .bullet-point {
        margin: 0.1rem 0;
    }
    
    .hero-bullets .bullet-separator {
        display: block;
        margin: 0.1rem 0;
        font-size: 1.5rem;
        line-height: 0.5;
        opacity: 0.6;
    }
}

.hero p:not(.hero-bullets) {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 1024px) {
    .hero-container {
        flex-direction: column;
        padding: 2rem;
    }
    
    .hero-image {
        max-width: 80%;
        margin: 1rem 0;
    }
    
    .hero-content {
        order: -1;
        max-width: 100%;
    }
}

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

.hero .cta-button {
    font-size: 1.1rem;
    padding: 1rem 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.hero .cta-button i {
    font-size: 1.2em;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background-color: #f9fafb;
    width: 100%;
    box-sizing: border-box;
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    box-sizing: border-box;
}

.service-card {
    width: 100%;
    margin: 0;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card i {
    font-size: 2.75rem;
    color: #1a365d;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.service-card h3 {
    margin: 0 0 1.5rem 0;
    color: #1a365d;
    font-size: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.service-card p {
    color: #4b5563;
    margin: 0;
    line-height: 1.7;
    font-size: 1rem;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 100%;
    }
}

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        padding: 0 1.5rem;
    }
    
    .service-card {
        max-width: 100%;
        margin: 0 auto 1.5rem;
    }
}

.services .services-title {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.services .services-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.services .section-description {
    color: #4b5563;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-grid .service-card:last-child {
    grid-column: 3;
    justify-self: end;
    max-width: 400px;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 100%;
    }
    
    .services-grid .service-card:last-child {
        grid-column: auto;
        justify-self: stretch;
        max-width: 100%;
    }
}
    
.service-card {
    padding: 2.5rem 2rem;
    background: white;
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    position: relative;
    background-color: #ffffff;
    overflow: hidden;
    min-height: 320px;
    justify-content: flex-start;
    outline: 2px solid rgba(37, 99, 235, 0.3);
    outline-offset: 1px;
    width: 100%;
    margin: 0 auto;
    padding: 1.5rem;
}


.service-card {
    padding: 2.5rem 2rem;
    background: white;
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    position: relative;
    background-color: #ffffff;
    overflow: hidden;
    min-height: 320px;
    justify-content: flex-start;
    outline: 2px solid rgba(37, 99, 235, 0.3);
    outline-offset: 1px;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    outline: 3px solid var(--primary-dark);
    outline-offset: 0;
    border-color: transparent;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card i {
    font-size: 2.75rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
    width: 100px;
    border-radius: 50%;
    padding: 1rem;
    height: 100px;
    border-radius: 50%;
}

.service-card:hover i {
    transform: scale(1.1);
    color: var(--accent-color);
}

.service-card h3 {
    margin: 0 0 1.5rem 0;
    color: var(--primary-color);
    transition: color 0.3s ease;
    position: relative;
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 700;
    padding-bottom: 0.5rem;
}

.service-card h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.service-card:hover h3::after {
    width: 100%;
}

.service-card p {
    color: #4b5563;
    margin: 0;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* About Section */
.about {
    padding: var(--section-padding);
    background-color: #1a365d;
    color: white; /* Set default text color to white */
}

.about h2,
.about h3,
.about p,
.about li {
    color: white; /* Ensure all text is white */
}

.about a {
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s ease;
}

.about a:hover {
    color: white;
    text-decoration: underline;
}

/* Features List Styling */
.features-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0;
}

.features-list li {
    margin-bottom: 1rem;
    padding-left: 2.5rem;
    position: relative;
    line-height: 1.6;
    font-size: 1.1rem;
}

.features-list li i {
    position: absolute;
    left: 0;
    top: 0.25rem;
    color: white;
    background-color: rgba(255, 255, 255, 0.2);
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.features-list li:hover i {
    background-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.about {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0f1f3d 0%, #1a365d 100%);
}

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

.about-content {
    width: 100%;
    margin: 0 auto;
}

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

.section-header h2 {
    color: white;
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.divider {
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    margin: 0 auto 1.5rem;
}

.section-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

.value-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 0 auto;
    max-width: 1200px;
    width: 100%;
    padding: 0 1rem;
}

.about-text {
    width: 100%;
    margin: 0 auto;
}

.value-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1.8rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.3);
}

.value-card h3 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.value-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .value-cards {
        max-width: 1000px;
        padding: 0 2rem;
    }
}

@media (max-width: 992px) {
    .value-cards {
        grid-template-columns: 1fr 1fr;
        max-width: 800px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 3rem 0;
    }
    
    .value-cards {
        grid-template-columns: 1fr;
        max-width: 500px;
        padding: 0 1.5rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .about {
        padding: 2.5rem 0;
    }
    
    .value-cards {
        padding: 0 1rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .value-card h3 {
        font-size: 1.25rem;
    }
}

.about-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.03);
}

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

.features-list li {
    margin-bottom: 1rem;
    padding-left: 2.5rem;
    position: relative;
    color: #4b5563;
}

.features-list li i {
    position: absolute;
    left: 0;
    top: 0.25rem;
    color: var(--accent-color);
    font-size: 1.25rem;
}

/* Testimonials Section */
.testimonials {
    padding: var(--section-padding);
    background-color: #f9fafb;
}

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

.testimonial-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    font-style: italic;
    color: #4b5563;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1.5rem;
    border-left: 3px solid var(--accent-color);
}

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

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

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

.testimonial-author span {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Footer */
.site-footer {
    background-color: #1a365d;
    color: #fff;
    padding: 4rem 0 0;
    font-size: 0.95rem;
}

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

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

.footer-section h4 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: #e2b04a;
}

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

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

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

.footer-section a:hover {
    color: #e2b04a;
}

.footer-section p {
    color: #e2e8f0;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-section i {
    color: #e2b04a;
    width: 20px;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #e2b04a;
    color: #1a365d;
    transform: translateY(-3px);
}

.footer-bottom {
    background-color: #0f1f3a;
    padding: 1.5rem 2rem;
    text-align: center;
    margin-top: 3rem;
}

.footer-bottom p {
    margin: 0;
    color: #a0aec0;
    font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        padding: 0 1.5rem;
    }
    
    .footer-section {
        margin-bottom: 2.5rem;
    }
    
    .footer-section:last-child {
        margin-bottom: 0;
    }
}

/* Status Messages */
.status-message {
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 4px;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    animation: fadeIn 0.3s ease-in-out;
}

.status-message i {
    font-size: 1.25rem;
    margin-top: 0.2rem;
}

.status-message.success {
    background-color: #d1fae5;
    color: #065f46;
    border-left: 4px solid #10b981;
}

.status-message.error {
    background-color: #fee2e2;
    color: #b91c1c;
    border-left: 4px solid #ef4444;
}

.status-message.loading {
    background-color: #e0f2fe;
    color: #0369a1;
    border-left: 4px solid #0ea5e9;
}

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

/* Contact Section */
.contact {
    padding: var(--section-padding);
    background-color: #9e9e9e;
    min-height: 100vh;
}

.contact-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100%;
    margin: 0 auto;
    padding: 2rem 0;
}

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

.contact-method {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.contact-method i {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-top: 0.25rem;
}

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

.contact-method a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-method a:hover {
    color: var(--primary-color);
}

.business-hours {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.business-hours h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.business-hours p {
    margin-bottom: 0.5rem;
    color: #4b5563;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.contact-form h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
    font-size: 2.25rem;
    position: relative;
    padding-bottom: 1rem;
}

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

.form-group {
    margin-bottom: 0;
}

.form-group:last-child {
    margin-bottom: 0;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #1e40af;
    border-radius: 0.25rem;
    transition: all 0.2s ease-in-out;
    background-color: #f8fafc;
    color: #1e293b;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1e40af;
    box-shadow: 0 0 0 2px rgba(30, 64, 175, 0.2);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%231e40af' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
}

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

/* Center the Send Message button */
.contact-form button[type="submit"] {
    display: block;
    margin: 2rem auto 0;
    min-width: 200px;
    text-align: center;
}

/* Ensure full width on mobile */
@media (max-width: 768px) {
    .contact-form button[type="submit"] {
        width: 100%;
        max-width: 300px;
    }
}

/* Footer Section */
.site-footer {
    background-color: #1e293b;
    color: #9ca3af;
    padding: 4rem 0 0;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 2rem;
    overflow-x: auto;
    padding-bottom: 1rem;
}

.footer-section {
    min-width: 200px;
    flex: 1;
    padding: 0 0.5rem;
}

/* Hide scrollbar for cleaner look but keep functionality */
.footer-content::-webkit-scrollbar {
    display: none;
}

/* Business hours adjustments */
.business-hours {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    font-size: 0.9rem;
}

.business-hours li {
    margin-bottom: 0.6rem;
    line-height: 1.5;
    white-space: nowrap;
}

/* Make sure logo and social links don't cause overflow */
.footer-logo-wrapper {
    max-width: 100%;
}

.footer-logo {
    max-width: 100%;
    height: auto;
}

.social-links {
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* Business Hours in Footer */
.business-hours {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}

.business-hours li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
}

.business-hours strong {
    color: #e2e8f0;
    font-weight: 500;
    margin-right: 0.5rem;
    white-space: nowrap;
}

.business-hours .emergency {
    color: #fecaca;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.business-hours .emergency i {
    color: #ef4444;
    font-size: 1.1em;
}

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

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 1.5rem;
}

.footer-section p {
    color: #9ca3af;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    position: relative;
    padding-bottom: 0.75rem;
    font-weight: 600;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: var(--accent-color);
    border-radius: 3px;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    font-size: 0.95rem;
}

.footer-links a:not(.no-hover):hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    margin-bottom: 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    line-height: 1.5;
}

.contact-info i {
    color: var(--accent-color);
    margin-top: 0.25rem;
    min-width: 20px;
}

.contact-info a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--transition);
}

.contact-info a:hover {
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 2rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: white;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.social-links a:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.15);
    padding: 1.5rem 0;
    margin-top: 3rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
    position: relative;
}

.footer-legal a:not(:last-child)::after {
    content: '|';
    position: absolute;
    right: -1rem;
    color: rgba(255, 255, 255, 0.3);
}

.footer-legal a:hover {
    color: var(--accent-color);
}

/* Back to Top Button */
#back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 99;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

#back-to-top:hover {
    background-color: var(--accent-hover);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 4rem 0;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .cta-button {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-logo-wrapper {
        justify-content: center;
    }
    
    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links a:hover {
        transform: none;
    }
    
    .social-links {
        justify-content: center;
    }
    
    #back-to-top {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .about-content,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-image {
        order: -1;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    .header-container {
        padding: 0 1.5rem;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        display: flex;
        justify-content: flex-start;
        align-items: center;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
        z-index: 1000;
        opacity: 0;
        pointer-events: none;
    }
    
    .main-nav.active {
        transform: translateX(0);
        opacity: 1;
        pointer-events: all;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        width: 100%;
        height: 100%;
        overflow-y: auto;
    }
}

@media (max-width: 1024px) {
    .about-content,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-image {
        order: -1;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    .header-container {
        padding: 0 1.5rem;
    }
    
    .nav-link.cta-button {
        margin-left: 0;
        margin-top: 1rem;
    }
    
    .hero {
        padding: 8rem 0 6rem;
    }
    
    .hero h1 {
        font-size: 2.25rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        padding: 0 1.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero .cta-button {
        width: 100%;
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .back-to-top {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        bottom: 1rem;
        right: 1rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Utility Classes */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }