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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #01223D;
    background-color: #FEFEFF;
}

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

/* Header */
header {
    background-color: #FEFEFF;
    color: #01223D;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(1, 34, 61, 0.1);
    border-bottom: 1px solid rgba(1, 34, 61, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: #01223D;
    white-space: nowrap;
}

.main-nav {
    display: flex;
    gap: 30px;
    flex: 1;
    justify-content: center;
}

.main-nav a {
    color: #01223D;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s;
    white-space: nowrap;
}

.main-nav a:hover {
    color: #289BB7;
}

.phone-btn {
    background-color: #289BB7;
    color: #FEFEFF;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    white-space: nowrap;
}

.phone-btn:hover {
    background-color: #1f7a91;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #042F50 0%, #01223D 100%);
    color: #FEFEFF;
    padding: 80px 0;
    text-align: center;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-cta {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: #289BB7;
    color: #FEFEFF;
}

.btn-primary:hover {
    background-color: #1f7a91;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(40, 155, 183, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #FEFEFF;
    border: 2px solid #FEFEFF;
}

.btn-secondary:hover {
    background-color: #FEFEFF;
    color: #042F50;
}

/* Equipment Gallery Section */
.equipment-gallery {
    padding: 80px 0;
    background-color: #FEFEFF;
}

.equipment-gallery h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #01223D;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 50px;
    color: #625C56;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.gallery-item {
    background: #FEFEFF;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(1, 34, 61, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(1, 34, 61, 0.15);
}

.image-placeholder {
    width: 100%;
    height: 300px;
    background: #FEFEFF;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #625C56;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #f0f0f0;
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.image-placeholder::before {
    position: absolute;
    text-align: center;
    padding: 20px;
    opacity: 0.7;
}

.gallery-item h3 {
    font-size: 1.5rem;
    margin: 20px;
    color: #01223D;
}

.gallery-item p {
    margin: 0 20px 20px;
    color: #625C56;
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.services h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #01223D;
}

.city-intro {
    max-width: 900px;
    margin: 0 auto 40px;
    color: #625C56;
    line-height: 1.8;
}

.city-intro p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

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

.service-card {
    background: #FEFEFF;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(1, 34, 61, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(1, 34, 61, 0.12);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #042F50;
}

.service-card p {
    margin-bottom: 20px;
    color: #625C56;
}

.service-card ul {
    list-style: none;
}

.service-card ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #625C56;
}

.service-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #289BB7;
    font-weight: bold;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background-color: #FEFEFF;
}

.pricing h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #01223D;
}

.pricing .section-intro {
    margin-bottom: 50px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto 40px;
}

.pricing-card {
    background: #FEFEFF;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(1, 34, 61, 0.08);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(1, 34, 61, 0.15);
    border-color: #289BB7;
}

.pricing-card.featured {
    border: 2px solid #289BB7;
    box-shadow: 0 4px 15px rgba(40, 155, 183, 0.2);
}

.price-header {
    background: linear-gradient(135deg, #042F50 0%, #01223D 100%);
    color: #FEFEFF;
    padding: 30px;
    text-align: center;
}

.pricing-card.featured .price-header {
    background: linear-gradient(135deg, #289BB7 0%, #1f7a91 100%);
}

.price-header h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.price-label {
    font-size: 1.1rem;
    opacity: 0.95;
    font-weight: 500;
}

.price-features {
    list-style: none;
    padding: 30px;
}

.price-features li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    border-bottom: 1px solid #f0f0f0;
    color: #625C56;
}

.price-features li:last-child {
    border-bottom: none;
}

.price-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #289BB7;
    font-weight: bold;
    font-size: 1.2rem;
}

.pricing-cta {
    text-align: center;
}

/* Service Areas */
.service-areas {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.service-areas h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #01223D;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
}

.area {
    background: #FEFEFF;
    padding: 20px;
    text-align: center;
    border-radius: 5px;
    font-weight: 600;
    color: #042F50;
    box-shadow: 0 2px 5px rgba(1, 34, 61, 0.08);
    transition: all 0.3s;
}

.area:hover {
    background: #289BB7;
    color: #FEFEFF;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(40, 155, 183, 0.2);
}

/* Why Choose Us */
.why-choose {
    padding: 80px 0;
    background-color: #FEFEFF;
}

.why-choose h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #01223D;
}

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

.benefit {
    text-align: center;
    padding: 20px;
}

.benefit h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #042F50;
}

.benefit p {
    color: #625C56;
    line-height: 1.7;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #042F50 0%, #01223D 100%);
    color: #FEFEFF;
}

.contact h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.contact .section-intro {
    color: rgba(254, 254, 255, 0.9);
    margin-bottom: 50px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.contact-item {
    margin-bottom: 15px;
    line-height: 1.8;
}

.contact-item a {
    color: #289BB7;
    text-decoration: none;
}

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

/* Contact Form */
.contact-form {
    background: #FEFEFF;
    padding: 30px;
    border-radius: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    color: #01223D;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #289BB7;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    width: 100%;
}

/* Footer */
footer {
    background-color: #01223D;
    color: #FEFEFF;
    padding: 50px 0 20px;
}

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

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #289BB7;
}

.footer-section p {
    color: rgba(254, 254, 255, 0.8);
    line-height: 1.7;
}

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

.footer-section ul li {
    padding: 5px 0;
    color: rgba(254, 254, 255, 0.8);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(254, 254, 255, 0.1);
    color: rgba(254, 254, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .main-nav {
        gap: 20px;
    }

    .main-nav a {
        font-size: 0.9rem;
    }

    .logo-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .hero h2 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .header-content {
        flex-wrap: wrap;
        justify-content: center;
    }

    .logo {
        flex: 1 0 100%;
        justify-content: center;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .main-nav {
        flex: 1 0 100%;
        order: 3;
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
        padding-top: 10px;
        border-top: 1px solid rgba(1, 34, 61, 0.15);
    }

    .main-nav a {
        font-size: 0.85rem;
    }

    .header-cta {
        order: 2;
    }

    .services h2,
    .pricing h2,
    .service-areas h2,
    .why-choose h2,
    .contact h2,
    .equipment-gallery h2 {
        font-size: 1.8rem;
    }

    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

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

@media (max-width: 480px) {
    .hero {
        padding: 50px 0;
    }

    .logo-text {
        font-size: 1rem;
    }

    .logo img {
        height: 40px;
    }

    .main-nav {
        gap: 10px;
    }

    .main-nav a {
        font-size: 0.8rem;
        padding: 5px 8px;
    }

    .services,
    .pricing,
    .service-areas,
    .why-choose,
    .contact,
    .equipment-gallery {
        padding: 50px 0;
    }

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

    .image-placeholder {
        height: 250px;
    }
}
