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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a365d;
    background: #ffffff;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.btn-primary {
    background: #32d74b;
    color: #ffffff;
}

.btn-primary:hover {
    background: #28a745;
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background: #1a365d;
    color: #ffffff;
    transform: translateY(-2px);
}

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

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

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

.brand-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a365d;
    transition: color 0.2s ease;
}

.logo-brand a:hover .brand-name {
    color: #32d74b;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 80px 0;
    min-height: 500px;
    display: flex;
    align-items: center;
}

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

.hero-content h1 {
    font-size: 3rem;
    color: #1a365d;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.5;
}

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

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Centered Content */
.centered-content {
    text-align: center;
}

/* Equipment Images */
.equipment-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

/* Services */
.services {
    padding: 60px 0;
    background: #ffffff;
}

.section-title {
    font-size: 2.5rem;
    color: #1a365d;
    margin-bottom: 3rem;
    text-align: center;
}

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

.service-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.2s ease;
}

.service-card:hover {
    transform: translateY(-4px);
}

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

.service-card h3 {
    color: #1a365d;
    margin-bottom: 1rem;
}

.service-card p {
    color: #4a5568;
}

/* How It Works */
.how-it-works {
    padding: 60px 0;
    background: #f8fafc;
}

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

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

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

.step h3 {
    color: #1a365d;
    margin-bottom: 1rem;
}

.step p {
    color: #4a5568;
}

/* Equipment */
.equipment {
    padding: 60px 0;
    background: #ffffff;
}

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

.equipment-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
    text-align: center;
}

.equipment-card:hover {
    transform: translateY(-4px);
}

.equipment-card h3 {
    color: #1a365d;
    margin-bottom: 1rem;
}

.equipment-card p {
    color: #4a5568;
    margin-bottom: 1rem;
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #32d74b;
    margin-bottom: 1.5rem;
}

/* Membership */
.membership {
    padding: 60px 0;
    background: #f8fafc;
}

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

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

.membership-card.featured {
    border: 2px solid #32d74b;
    transform: scale(1.05);
}

.membership-card h3 {
    color: #1a365d;
    margin-bottom: 1rem;
}

.membership-card .price {
    font-size: 2rem;
    color: #32d74b;
    margin-bottom: 1.5rem;
}

.membership-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.membership-card li {
    padding: 0.5rem 0;
    color: #4a5568;
    position: relative;
    padding-left: 1.5rem;
}

.membership-card li:before {
    content: "✓";
    color: #32d74b;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Delivery */
.delivery {
    padding: 60px 0;
    background: #ffffff;
}

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

.delivery-text {
    text-align: left;
}

.delivery-text h3 {
    color: #1a365d;
    margin-bottom: 1rem;
}

.delivery-text ul {
    list-style: none;
    padding: 0;
}

.delivery-text li {
    padding: 0.5rem 0;
    color: #4a5568;
    position: relative;
    padding-left: 1.5rem;
}

.delivery-text li:before {
    content: "→";
    color: #32d74b;
    font-weight: bold;
    position: absolute;
    left: 0;
}

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

/* Why Choose Us */
.why-choose {
    padding: 60px 0;
    background: #f8fafc;
}

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

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

.feature h3 {
    color: #1a365d;
    margin-bottom: 1rem;
}

.feature p {
    color: #4a5568;
}

/* Testimonials */
.testimonials {
    padding: 60px 0;
    background: #ffffff;
}

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

.testimonial {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.testimonial p {
    color: #4a5568;
    font-style: italic;
    margin-bottom: 1rem;
}

.customer {
    color: #1a365d;
    font-weight: 500;
}

/* Contacts */
.contacts {
    padding: 60px 0;
    background: #f8fafc;
    text-align: center;
}

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

.contact-item {
    text-align: center;
    padding: 1.5rem;
}

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

.contact-item p {
    color: #4a5568;
}

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

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

/* Footer */
.footer {
    background: #1a365d;
    color: #ffffff;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 2rem;
}

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

.footer-brand a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.footer-brand a .brand-name {
    color: #ffffff;
}

.footer-brand a:hover .brand-name {
    color: #32d74b;
}

.footer-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer-contact h4,
.footer-location h4,
.footer-links h4 {
    color: #32d74b;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-contact p,
.footer-location p {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.footer-contact a,
.footer-location a {
    color: #ffffff;
    text-decoration: none;
}

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

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #32d74b;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #2d3748;
    color: #a0aec0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

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

    .delivery-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .footer-info {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero {
        padding: 40px 0;
        min-height: 400px;
    }

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

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

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

    .btn {
        width: 100%;
        text-align: center;
    }
}