/* CSS Variables - Color Theme */
:root {
    --primary: #001F3F;
    --primary-light: #003366;
    --primary-dark: #000a1a;
    --primary-foreground: #ffffff;
    
    --secondary: #e8f0f7;
    --secondary-dark: #d0dce8;
    
    --accent: #FFD700;
    --accent-hover: #e6c200;
    
    --foreground: #1a1a1a;
    --muted-foreground: #666666;
    --muted: #f5f5f5;
    
    --border: #e0e0e0;
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--foreground);
    background-color: #ffffff;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
}

.container.wide {
    max-width: 1440px;
}

.container.narrow {
    max-width: 672px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: white;
    box-shadow: var(--shadow);
    z-index: 50;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo {
    height: 64px;
}

.header-text {
    display: none;
}

@media (min-width: 640px) {
    .header-text {
        display: block;
    }
}

.header-title {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary);
}

.header-subtitle {
    font-size: 14px;
    color: var(--muted-foreground);
}

/* Buttons */
.button {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.button-primary {
    background-color: var(--primary);
    color: var(--primary-foreground);
}

.button-primary:hover {
    background-color: var(--primary-light);
    text-decoration: none;
}

.button-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background-color: transparent;
}

.button-outline:hover {
    background-color: var(--secondary);
}

.button-yellow {
    background-color: var(--accent);
    color: var(--primary);
}

.button-yellow:hover {
    background-color: var(--accent-hover);
}

.button-large {
    padding: 16px 32px;
    font-size: 18px;
}

.button-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media (min-width: 640px) {
    .button-group {
        flex-direction: row;
    }
}

/* Hero Section */
.hero {
    padding-top: 128px;
    padding-bottom: 64px;
    padding-left: 16px;
    padding-right: 16px;
    background: linear-gradient(to bottom, var(--secondary), white);
}

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

@media (min-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-title {
    font-size: 32px;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 24px;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 40px;
    }
}

.hero-description {
    font-size: 18px;
    color: var(--muted-foreground);
    margin-bottom: 32px;
}

.hero-image {
    display: none;
}

@media (min-width: 768px) {
    .hero-image {
        display: block;
    }
}

.hero-image img {
    width: 100%;
    height: 384px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

/* Trust Bar */
.trust-bar {
    background-color: var(--primary);
    padding: 48px 16px;
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
}

@media (min-width: 768px) {
    .trust-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.trust-item {
    color: var(--primary-foreground);
}

.trust-title {
    font-size: 32px;
    font-weight: bold;
    color: var(--accent);
    margin-bottom: 8px;
}

.trust-rating {
    font-size: 24px;
    margin-bottom: 8px;
}

.trust-text {
    font-size: 14px;
}

/* Section Title */
.section-title {
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    color: var(--primary);
    margin-bottom: 48px;
}

.section-title-light {
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    color: var(--primary-foreground);
    margin-bottom: 24px;
}

/* Services Section */
.services {
    padding: 64px 16px;
    background-color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 32px;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background-color: var(--secondary);
    padding: 24px;
    border-radius: 8px;
    border-top: 4px solid var(--accent);
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
}

.service-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
}

.service-description {
    font-size: 14px;
    color: var(--muted-foreground);
    margin-bottom: 16px;
}

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

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

.services-note {
    text-align: center;
    font-size: 14px;
    color: var(--muted-foreground);
}

/* Why Us Section */
.why-us {
    padding: 64px 16px;
    background-color: var(--secondary);
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.why-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 4px;
    font-weight: bold;
}

.why-item p {
    font-size: 18px;
    color: var(--foreground);
}

/* How It Works */
.how-it-works {
    padding: 64px 16px;
    background-color: white;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.step {
    text-align: center;
}

.step-number {
    width: 48px;
    height: 48px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 20px;
    font-weight: bold;
}

.step-title {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
}

.step-desc {
    font-size: 14px;
    color: var(--muted-foreground);
}

/* Reviews Section */
.reviews {
    padding: 64px 16px;
    background-color: var(--secondary);
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 32px;
}

@media (min-width: 768px) {
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.review-card {
    background-color: white;
    padding: 24px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.review-rating {
    color: #fbbf24;
    margin-bottom: 12px;
    font-size: 14px;
}

.review-text {
    color: var(--muted-foreground);
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.6;
}

.review-author {
    font-weight: 600;
    color: var(--primary);
}

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

.review-links {
    font-size: 14px;
    color: var(--muted-foreground);
    margin-bottom: 16px;
}

.review-links a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.review-links a:hover {
    text-decoration: underline;
}

/* About Section */
.about {
    padding: 64px 16px;
    background-color: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about-image img {
    width: 100%;
    height: 384px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.about-content p {
    font-size: 18px;
    color: var(--muted-foreground);
    margin-bottom: 16px;
    line-height: 1.8;
}

/* Service Areas */
.service-areas {
    padding: 64px 16px;
    background-color: var(--secondary);
}

.areas-description {
    text-align: center;
    color: var(--muted-foreground);
    margin-bottom: 32px;
}

.areas-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.area-card {
    background-color: white;
    padding: 24px;
    border-radius: 8px;
    text-align: center;
}

.area-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.area-name {
    font-weight: 600;
    color: var(--primary);
}

/* Commercial Section */
.commercial {
    padding: 64px 16px;
    background-color: var(--primary);
}

.commercial-subtitle {
    text-align: center;
    color: var(--primary-foreground);
    margin-bottom: 48px;
    font-size: 18px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 48px;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.benefit-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 24px;
    border-radius: 8px;
}

.benefit-icon {
    font-size: 32px;
    color: var(--accent);
    margin-bottom: 16px;
    font-weight: bold;
}

.benefit-card h3 {
    font-size: 20px;
    color: var(--primary-foreground);
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 14px;
    color: var(--primary-foreground);
}

/* Partnership Details */
.partnership-details {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 32px;
    border-radius: 8px;
}

.partnership-title {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-foreground);
    margin-bottom: 24px;
    text-align: center;
}

.partnership-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 32px;
}

@media (min-width: 768px) {
    .partnership-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.partnership-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.partnership-arrow {
    color: var(--accent);
    font-weight: bold;
    font-size: 20px;
    margin-top: 4px;
    flex-shrink: 0;
}

.partnership-heading {
    font-weight: 600;
    color: var(--primary-foreground);
}

.partnership-text {
    font-size: 14px;
    color: var(--primary-foreground);
    opacity: 0.9;
}

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

.partnership-cta p {
    color: var(--primary-foreground);
    margin-bottom: 12px;
    font-weight: 600;
}

/* FAQ Section */
.faq {
    padding: 64px 16px;
    background-color: var(--secondary);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.faq-question {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
}

.faq-answer {
    font-size: 14px;
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 64px 16px;
    background-color: white;
}

.contact-description {
    text-align: center;
    color: var(--muted-foreground);
    margin-bottom: 32px;
    font-size: 18px;
}

.contact-cta {
    text-align: center;
    margin-bottom: 32px;
}

.contact-box {
    background-color: var(--secondary);
    padding: 32px;
    border-radius: 8px;
    text-align: center;
}

.contact-heading {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 24px;
}

.contact-link {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    margin-bottom: 16px;
    transition: opacity 0.3s;
}

.contact-link:hover {
    opacity: 0.8;
}

.contact-link.large {
    font-size: 24px;
}

.contact-hours {
    color: var(--muted-foreground);
    margin-top: 16px;
    font-size: 14px;
}

.contact-note {
    color: var(--muted-foreground);
    margin-top: 8px;
    font-size: 14px;
}

/* Footer */
.footer {
    background-color: var(--primary);
    color: var(--primary-foreground);
    padding: 48px 16px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 32px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-col h4 {
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-logo {
    height: 48px;
    margin-bottom: 12px;
}

.footer-text {
    font-size: 14px;
    opacity: 0.9;
}

.footer-list {
    list-style: none;
    font-size: 14px;
}

.footer-list li {
    margin-bottom: 8px;
}

.footer-link {
    display: block;
    font-size: 14px;
    color: var(--primary-foreground);
    text-decoration: none;
    margin-bottom: 12px;
    transition: opacity 0.3s;
}

.footer-link:hover {
    opacity: 0.8;
}

.footer-heading {
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 14px;
}

.footer-subheading {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
    margin-top: 8px;
}

.social-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.social-links a {
    font-size: 14px;
    color: var(--primary-foreground);
    text-decoration: none;
    transition: opacity 0.3s;
}

.social-links a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 32px;
    text-align: center;
    font-size: 14px;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 640px) {
    .header-content {
        flex-direction: column;
        gap: 12px;
    }
}
