* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #005a96;
    --primary-light: #0073b8;
    --secondary: #f39c12;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --border: #e0e0e0;
    --success: #27ae60;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #fff;
}

/* Global Link Styling - Accessibility */
a {
    color: var(--primary);
    text-decoration: underline;
}

a:visited {
    color: var(--primary);
}

/* Header & Navigation */
header {
    background-color: var(--primary);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo-text {
    color: white;
    font-weight: bold;
    font-size: 0.9rem;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    margin-left: 2rem;
    transition: opacity 0.3s;
}

nav a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 2rem;
    color: white;
    font-size: 0.9rem;
}

.phone-link {
    color: white;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(0,90,150,0.7) 0%, rgba(0,115,184,0.7) 100%), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><linearGradient id="g1" x1="0%" y1="0%" x2="0%" y2="100%"><stop offset="0%25" style="stop-color:%23a8d8ff;stop-opacity:0.3" /><stop offset="100%25" style="stop-color:%23006ba6;stop-opacity:0.5" /></linearGradient></defs><path d="M0,300 Q300,250 600,280 T1200,300 L1200,600 L0,600 Z" fill="%23004d7a"/><path d="M0,350 Q300,300 600,330 T1200,350 L1200,600 L0,600 Z" fill="%23003d5c"/><path d="M0,400 Q300,350 600,380 T1200,400 L1200,600 L0,600 Z" fill="%23002d45"/></svg>') center/cover;
    min-height: 500px;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: white;
    opacity: 1;
}

.hero-tagline {
    font-size: 1rem;
    color: #FFAA00;
    font-weight: 600;
    margin-bottom: 2rem;
    margin-top: 1.5rem;
}

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

.btn {
    padding: 0.75rem 2rem;
    border: 2px solid;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background-color: #e68910;
    border-color: #e68910;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(243,156,18,0.3);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border-color: white;
}

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

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

.hero-image img {
    height: 300px;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.2));
}

/* Services Section */
.services {
    padding: 4rem 2rem;
    background-color: var(--bg-light);
}

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

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: var(--primary);
}

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

.service-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-card img {
    display: none;
}

.service-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: var(--primary);
    font-size: 1.3rem;
}

.service-card p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-dark);
    font-size: 0.95rem;
}

/* Pricing Section */
.pricing {
    padding: 4rem 2rem;
    background-color: white;
}

.pricing-intro {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

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

.pricing-table {
    background: white;
    border: 2px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}

.pricing-table h3 {
    background-color: var(--primary);
    color: white;
    padding: 1.5rem;
    font-size: 1.3rem;
}

.pricing-table table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-table th {
    background-color: #f5f5f5;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    border-bottom: 1px solid var(--border);
    font-size: 0.85rem;
    color: var(--text-dark);
}

.pricing-table td {
    padding: 0.9rem 1rem;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.9rem;
}

.pricing-table tr:last-child td {
    border-bottom: none;
}

.size-col {
    font-weight: 600;
    color: var(--primary);
}

.pricing-note {
    background-color: #f9f9f9;
    padding: 1rem;
    font-size: 0.85rem;
    color: var(--text-dark);
    border-top: 1px solid var(--border);
    font-style: italic;
}

/* About Section */
.about {
    padding: 4rem 2rem;
    background-color: var(--bg-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.8;
}

.features-list {
    list-style: none;
    margin-top: 1.5rem;
}

.features-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-dark);
}

.features-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Contact Section */
.contact {
    padding: 4rem 2rem;
    background-color: #d4e8f5;
}

.contact-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-heading {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    text-align: center;
}

.contact-intro {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 3rem;
    text-align: center;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    text-align: left;
    width: fit-content;
    margin: 0 auto 3rem auto;
}

.contact-subheading {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contact-text {
    color: var(--text-dark);
    line-height: 1.8;
}

.contact-access {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    margin-bottom: 2rem;
}

.contact-cta {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-label {
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    font-weight: 600;
}

.contact-phone {
    color: var(--primary);
    font-size: 2.2rem;
    font-weight: bold;
    text-decoration: none;
    display: block;
}

.contact-button-wrapper {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-social {
    font-size: 0.9rem;
    color: var(--text-dark);
    text-align: center;
}

.contact-social a {
    color: var(--primary);
    text-decoration: underline;
}

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

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

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

.contact-info p {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.8;
}

.contact-details {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 6px;
    margin: 1.5rem 0;
}

.contact-details h3 {
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.contact-details p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.contact-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.contact-link:hover {
    text-decoration: underline;
}

/* Form */
.contact-form {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-family: inherit;
    font-size: 0.95rem;
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0,90,150,0.1);
}

.submit-btn {
    background-color: var(--primary);
    color: white;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: var(--primary-light);
}

/* Footer */
footer {
    background-color: var(--text-dark);
    color: white;
    padding: 2rem;
    text-align: center;
}

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

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--secondary);
}

.footer-section p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #bbb;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 2rem;
    text-align: center;
    font-size: 0.85rem;
    color: #999;
}

/* Footer Links - Light gray with underline on hover */
footer a {
    color: #bbb !important;
    text-decoration: none;
}

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

.certifications {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.cert-badge {
    height: 60px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.cert-badge:hover {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    nav {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-image {
        flex-direction: column;
    }

    .hero-image img {
        height: 200px;
    }

    .pricing-grids {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

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

    .section-title {
        font-size: 1.8rem;
    }

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

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .pricing-table th,
    .pricing-table td {
        font-size: 0.85rem;
        padding: 0.75rem 0.5rem;
    }

    .pricing-table th:first-child,
    .pricing-table td:first-child {
        font-size: 0.9rem;
        padding: 0.75rem 0.75rem;
        font-weight: 600;
    }

    .pricing-table {
        overflow-x: auto;
    }

    .pricing {
        padding: 3rem 1.5rem;
    }

    .hero {
        padding: 3rem 1.5rem;
    }

    .services {
        padding: 3rem 1.5rem;
    }

    .pricing-grids {
        gap: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}
