/* ================== CHROME OPTIMIZED CSS ================== */
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f6f8;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}
/* ================== HEADER STYLES ================== */
header {
    background: #033b72 !important;
    color: white !important;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    width: 100%;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

header h1 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    color: white !important;
}

/* Navigation */
.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: white !important;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    display: block;
}

.nav-links a:hover,
.nav-links a.active {
    background: rgba(255, 255, 255, 0.15);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white !important;
    margin: 3px 0;
    transition: 0.3s;
}

/* ================== HERO SECTION ================== */
.hero {
    background: linear-gradient(135deg, #003366 0%, #004080 100%);
    color: white;
    padding: 6rem 1rem;
    text-align: center;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
    text-shadow: 0 3px 5px rgba(255, 255, 255, 0.8);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.stat {
    text-align: center;
    min-width: 120px;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff6b00;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
}

/* ================== CTA BUTTONS ================== */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
    min-width: 160px;
}

.cta-button.primary {
    background: #ff6b00;
    color: white;
    border-color: #ff6b00;
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.cta-button.primary:hover {
    background: #e55a00;
    border-color: #e55a00;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.3);
}

.cta-button.secondary:hover {
    background: white;
    color: #003366;
    transform: translateY(-2px);
}

.cta-button.large {
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
    min-width: 200px;
}

.cta-button.full-width {
    width: 100%;
}

/* ================== SECTION STYLES ================== */
section {
    padding: 4rem 1rem;
}

section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #003366;
    text-align: center;
    position: relative;
}

section h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #ff6b00;
    margin: 0.5rem auto;
    border-radius: 2px;
}

/* ================== MISSION SECTION ================== */
#mission {
    background: white;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.mission-item {
    padding: 2rem;
    border-radius: 8px;
    background: #f4f6f8;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.mission-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.mission-item h3 {
    color: #003366;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.3rem;
}

.mission-item h3 i {
    color: #ff6b00;
}

.values-title {
    text-align: center;
    margin: 3rem 0 2rem;
    color: #003366;
    font-size: 2rem;
}

.values-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.value-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-left: 4px solid #ff6b00;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    min-height: 120px;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.value-item i {
    color: #ff6b00;
    font-size: 1.5rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
    width: 30px;
    text-align: center;
}

.value-item-content {
    flex: 1;
}

.value-item strong {
    color: #003366;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    line-height: 1.3;
}

.value-item p {
    margin: 0;
    color: #666;
    line-height: 1.5;
}

/* ================== WHY CHOOSE SECTION ================== */
#why-choose {
    background: #003366;
    color: white;
}

#why-choose h2 {
    color: white;
}

#why-choose h2:after {
    background: #ff6b00;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    transition: transform 0.3s ease;
    text-align: center;
}

.feature:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.feature i {
    font-size: 3rem;
    color: #ff6b00;
    margin-bottom: 1.5rem;
}

.feature h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* ================== TESTIMONIALS SECTION ================== */
#testimonials {
    background: #f4f6f8;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
}

.testimonial-content {
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
    line-height: 1.6;
}

.testimonial-content:before {
    content: '"';
    font-size: 4rem;
    color: #ff6b00;
    position: absolute;
    top: -1rem;
    left: -1rem;
    opacity: 0.3;
}

.testimonial-author strong {
    display: block;
    color: #003366;
    font-size: 1.1rem;
}

.testimonial-author span {
    color: #6c757d;
    font-size: 0.9rem;
}

/* ================== CTA SECTION ================== */
#cta {
    background: linear-gradient(135deg, #003366 0%, #004080 100%);
    color: white;
    text-align: center;
}

#cta h2 {
    color: white;
    margin-bottom: 1rem;
}

#cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* ================== BREADCRUMBS ================== */
.breadcrumbs {
    background: #003366;
    color: white;
    padding: 3rem 1rem;
    text-align: center;
}

.breadcrumbs h2 {
    color: white;
    margin-bottom: 1rem;
}

.breadcrumbs ol {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumbs ol li:not(:last-child):after {
    content: '/';
    margin-left: 0.5rem;
}

.breadcrumbs ol li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs ol li a:hover {
    color: #ff6b00;
}

/* ================== SERVICES SECTION ================== */
#services {
    background: white;
}

.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border-top: 4px solid #ff6b00;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #ff6b00;
}

.service-icon {
    font-size: 3rem;
    color: #ff6b00;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    color: #003366;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.service-features {
    list-style: none;
    margin-top: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f4f6f8;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li:before {
    content: '✓';
    color: #ff6b00;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.service-features li:last-child {
    border-bottom: none;
}

/* ================== PROCESS SECTION ================== */
#process {
    background: #f4f6f8;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #ff6b00;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.process-step h3 {
    color: #003366;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* ================== SERVICE CTA SECTION ================== */
#service-cta {
    background: linear-gradient(135deg, #003366 0%, #004080 100%);
    color: white;
    text-align: center;
}

#service-cta h2 {
    color: white;
    margin-bottom: 1rem;
}

#service-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* ================== CONTACT SECTION ================== */
#contact {
    background: white;
}

.contact-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f4f6f8;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-3px);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: #ff6b00;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-content h4 {
    color: #003366;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.info-content a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: #ff6b00;
}

.phone-cta {
    transition: transform 0.3s ease;
    display: inline-block;
}

.phone-cta:hover {
    transform: scale(1.05);
}

/* Contact Form */
.contact-form-container {
    background: #f4f6f8;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #003366;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b00;
}

.form-response {
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    display: none;
    text-align: center;
    font-weight: 500;
}


.form-response.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
.form-response.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
/* Loading state for button */
button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}
.fa-spin {
    animation: fa-spin 1s infinite linear;
}

@keyframes fa-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
/* ================== FAQ SECTION ================== */
#faq {
    background: #f4f6f8;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
}

.faq-item h3 {
    color: #003366;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

/* ================== FOOTER ================== */
footer {
    background: #333;
    color: white;
    padding: 3rem 1rem 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-info h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.footer-links h4,
.footer-contact h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff6b00;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.footer-contact i {
    color: #ff6b00;
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    opacity: 0.7;
}

/* ================== BACK TO TOP BUTTON ================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #ff6b00;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.back-to-top:hover {
    background: #e55a00;
    transform: translateY(-3px);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

/* ================== MOBILE STYLES ================== */
@media (max-width: 768px) {
    .header-container {
        padding: 0 1rem;
    }
    
    header h1 {
        font-size: 1.5rem;
    }

    .nav-links {
        position: fixed;
        top: 70px; /* Changed from 100% to fixed pixel value */
        left: 0;
        width: 100%;
        background: #003366;
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        height: calc(100vh - 70px); /* Full height minus header */
        overflow-y: auto; /* Enable scrolling if needed */
    }

    .nav-links.active {
        transform: translateY(0); /* Changed from -100% to 0 */
        opacity: 1;
        visibility: visible;
    }

    .nav-links a {
        padding: 1rem;
        text-align: center;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero {
        padding: 4rem 1rem;
        min-height: 50vh;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        max-width: 250px;
    }

    .hero-stats {
        gap: 2rem;
    }

    .stat {
        min-width: 100px;
    }

    .stat-number {
        font-size: 2rem;
    }

    section {
        padding: 3rem 1rem;
    }

    section h2 {
        font-size: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-grid,
    .features-grid,
    .mission-grid,
    .values-list,
    .testimonials-grid,
    .process-steps,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .hero {
        padding: 3rem 1rem;
    }

    .hero h2 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .stat {
        min-width: 80px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }
}

/* ================== PRINT STYLES ================== */
@media print {
    .hero,
    .breadcrumbs,
    .cta-button,
    .back-to-top,
    .hamburger {
        display: none;
    }

    body {
        background: white;
        color: black;
        font-size: 12pt;
    }

    .container {
        max-width: none;
    }
}

/* For larger screens - better distribution */
@media (min-width: 1024px) {
    .values-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .value-item {
        padding: 2.5rem 2rem;
        min-height: 140px;
    }
}

/* For very large screens */
@media (min-width: 1200px) {
    .values-list {
        grid-template-columns: repeat(2, 1fr);
        max-width: 1100px;
    }
}

/* Manual Email Option Styles */
.manual-email-option {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
    text-align: center;
    border-left: 4px solid #ff6b00;
}

.manual-email-option h3 {
    color: #003366;
    margin-bottom: 1rem;
}

.manual-email-info {
    background: white;
    padding: 1.5rem;
    border-radius: 6px;
    margin-top: 1rem;
}

.manual-email-info p {
    margin: 0.5rem 0;
    font-size: 1rem;
}