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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #374151;
    background-color: #ffffff;
}

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

/* Header */
.header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

.logo {
    flex-shrink: 0;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e40af;
    text-decoration: none;
}

.phone-btn {
    background-color: #f59e0b;
    color: #ffffff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.phone-btn:hover {
    background-color: #d97706;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e40af 0%, #374151 100%);
    color: #ffffff;
    padding: 80px 0;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-photo {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-photo {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}

.coverage-photo {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #e5e7eb;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-image {
    text-align: center;
}

.placeholder-image {
    background-color: #374151;
    color: #e5e7eb;
    padding: 80px 40px;
    border-radius: 12px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: #f59e0b;
    color: #ffffff;
    border-color: #f59e0b;
}

.btn-primary:hover {
    background-color: #d97706;
    border-color: #d97706;
}

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

.btn-secondary:hover {
    background-color: #ffffff;
    color: #1e40af;
}

/* Sections */
section {
    padding: 80px 0;
    text-align: center;
}

section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #1e40af;
}

section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #374151;
}

section p {
    color: #6b7280;
    margin-bottom: 1rem;
}

/* Services */
.services {
    background-color: #f9fafb;
}

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

.service-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    border: 1px solid #e5e7eb;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature {
    text-align: center;
    padding: 1rem;
}

/* Process */
.process {
    background-color: #f9fafb;
}

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

.step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #1e40af;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem auto;
}

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

.product-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}

.product-image {
    height: 200px;
    background-color: #f3f4f6;
}

.product-image .placeholder-image {
    height: 100%;
    padding: 40px 20px;
    color: #6b7280;
    font-size: 1rem;
    min-height: auto;
}

.product-card .product-image + h3 {
    padding: 1.5rem 1.5rem 0 1.5rem;
}

.product-card p {
    padding: 0 1.5rem;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e40af;
    padding: 0 1.5rem;
    margin-bottom: 1rem;
}

.product-card .btn {
    margin: 0 1.5rem 1.5rem 1.5rem;
    width: calc(100% - 3rem);
    text-align: center;
}

/* Benefits */
.benefits {
    background-color: #f9fafb;
}

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

.benefit {
    text-align: center;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

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

.testimonial {
    background-color: #f9fafb;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #f59e0b;
}

.testimonial p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #374151;
}

.customer {
    font-weight: 600;
    color: #1e40af;
}

/* Coverage */
.coverage {
    background-color: #f9fafb;
    text-align: center;
}

.coverage p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem auto;
}

.coverage-image {
    max-width: 500px;
    margin: 0 auto;
}

.coverage-image .placeholder-image {
    height: 300px;
}

/* Contact */
.contact {
    background-color: #1e40af;
    color: #ffffff;
    text-align: center;
}

.contact h2 {
    color: #ffffff;
}

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

.contact-item {
    text-align: center;
}

.contact-item h3 {
    color: #f59e0b;
    margin-bottom: 1rem;
}

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

.contact-item a:hover {
    color: #f59e0b;
}

/* Footer */
.footer {
    background-color: #374151;
    color: #e5e7eb;
    padding: 40px 0 20px 0;
    text-align: left;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 2rem;
}

.footer-brand .brand-name {
    color: #e5e7eb;
    font-size: 1.25rem;
}

.footer-brand p {
    color: #9ca3af;
    margin-top: 1rem;
}

.footer h4 {
    color: #f59e0b;
    margin-bottom: 1rem;
}

.footer ul {
    list-style: none;
}

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

.footer ul li a {
    color: #e5e7eb;
    text-decoration: none;
}

.footer ul li a:hover {
    color: #f59e0b;
}

.footer-contact p {
    margin-bottom: 0.5rem;
}

.footer-contact a {
    color: #e5e7eb;
    text-decoration: none;
}

.footer-contact a:hover {
    color: #f59e0b;
}

.footer-legal {
    
}

.footer-legal h4 {
    color: #f59e0b;
    margin-bottom: 1rem;
}

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

.footer-legal ul li {
    margin-bottom: 0.5rem;
}

.footer-legal ul li a {
    color: #e5e7eb;
    text-decoration: none;
}

.footer-legal ul li a:hover {
    color: #f59e0b;
}

.footer-bottom {
    border-top: 1px solid #4b5563;
    padding-top: 2rem;
    text-align: center;
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-content {
        order: 2;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .services-grid,
    .features-grid,
    .process-steps,
    .products-grid,
    .benefits-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .header .container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .phone-btn {
        display: block;
        text-align: center;
    }
    
    section {
        padding: 60px 0;
    }
    
    section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        text-align: center;
    }
    
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 40px 0;
    }
    
    .service-card,
    .step,
    .benefit {
        padding: 1.5rem;
    }
}