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

:root {
    --primary: #2975A7;
    --secondary: #58BBDE;
    --light: #DAE0E4;
    --dark: #1a1a1a;
    --white: #ffffff;
    --gray: #999999;
}

body {
    font-family: 'Barlow', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
}

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

/* Header */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.nav-list {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-list a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: clamp(14px, 2vw, 16px);
    transition: color 0.3s;
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--primary);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    color: var(--white);
    text-align: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
  background: linear-gradient(135deg, rgba(41, 117, 167, 0.1), rgba(88, 187, 222, 0.1));
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 100px 20px;
}

.hero-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: clamp(16px, 2.5vw, 20px);
    margin-bottom: 40px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    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: clamp(14px, 2vw, 16px);
    transition: all 0.3s;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

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

.btn-secondary {
    background: var(--secondary);
    color: var(--white);
}

.btn-secondary:hover {
    background: #3a9ec4;
}

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

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
}

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

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary);
}

/* Counters Section */
.counters {
    padding: 80px 0;
    background: var(--light);
}

.counters-grid {
    display: flex;
    gap: 40px;
    justify-content: space-around;
    flex-wrap: wrap;
}

.counter-item {
    text-align: center;
    min-width: 200px;
}

.counter-icon {
    color: var(--primary);
    margin-bottom: 15px;
}

.counter-number {
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.counter-label {
    font-size: clamp(14px, 2vw, 18px);
    color: var(--dark);
}

/* About Section */
.about {
    padding: 100px 0;
}

.about-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    background: var(--gray);
}

.about-content {
    flex: 1;
}

.section-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--primary);
}

.section-title.centered {
    text-align: center;
    margin-bottom: 60px;
}

.about-text {
    font-size: clamp(15px, 2vw, 17px);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-features {
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.feature-item svg {
    color: var(--secondary);
    flex-shrink: 0;
}

.external-link {
    display: inline-block;
    color: var(--secondary);
    text-decoration: none;
    font-weight: 500;
    margin-top: 20px;
}

.external-link:hover {
    color: var(--primary);
}

/* Services Metro Section */
.services {
    padding: 100px 0;
    background: var(--light);
}

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

.metro-tile {
    position: relative;
    height: 280px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s;
}

.metro-tile:hover {
    transform: scale(1.03);
}

.tile-large {
    grid-column: span 2;
    height: 380px;
}

.tile-wide {
    grid-column: span 2;
}

.tile-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(41, 117, 167, 0.85), rgba(88, 187, 222, 0.75));
}

.tile-content {
    position: relative;
    z-index: 1;
    padding: 30px;
    color: var(--white);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.tile-content svg {
    margin-bottom: 20px;
}

.tile-content h3 {
    font-size: clamp(20px, 3vw, 26px);
    margin-bottom: 10px;
}

.tile-content p {
    font-size: clamp(14px, 2vw, 16px);
    opacity: 0.95;
}

/* Shop Section */
.shop {
    padding: 100px 0;
}

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

.shop-item {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.shop-item:hover {
    transform: translateY(-5px);
}

.shop-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background: var(--gray);
}

.shop-content {
    padding: 25px;
}

.shop-content h3 {
    font-size: clamp(20px, 3vw, 24px);
    margin-bottom: 15px;
    color: var(--primary);
}

.shop-content p {
    margin-bottom: 20px;
    color: var(--dark);
}

.shop-price {
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 20px;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: var(--primary);
    color: var(--white);
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    min-height: 250px;
}

.testimonial-item {
    display: none;
    text-align: center;
    padding: 40px;
}

.testimonial-item.active {
    display: block;
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.testimonial-rating {
    font-size: clamp(24px, 4vw, 32px);
    color: #FFD700;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: clamp(16px, 2.5vw, 20px);
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    font-size: clamp(14px, 2vw, 16px);
    opacity: 0.9;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.slider-btn {
    background: var(--white);
    color: var(--primary);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s;
}

.slider-btn:hover {
    background: var(--secondary);
    color: var(--white);
    transform: scale(1.1);
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: var(--light);
}

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

.pricing-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.featured {
    border: 3px solid var(--secondary);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.pricing-title {
    font-size: clamp(20px, 3vw, 24px);
    color: var(--primary);
    margin-bottom: 20px;
}

.pricing-price {
    font-size: clamp(32px, 5vw, 42px);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 30px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--light);
    font-size: clamp(14px, 2vw, 16px);
}

.pricing-note {
    text-align: center;
    margin-top: 30px;
    color: var(--gray);
    font-size: clamp(13px, 1.8vw, 14px);
}

/* FAQ Section */
.faq {
    padding: 100px 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--light);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: var(--white);
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: clamp(15px, 2vw, 17px);
    font-weight: 600;
    text-align: left;
    transition: background 0.3s;
}

.faq-question:hover {
    background: var(--light);
}

.faq-icon {
    font-size: 24px;
    color: var(--primary);
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 25px 20px;
    font-size: clamp(14px, 2vw, 16px);
    line-height: 1.8;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: clamp(16px, 2.5vw, 20px);
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 20px;
}

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

.footer-col h3,
.footer-col h4 {
    margin-bottom: 20px;
    color: var(--secondary);
    font-size: clamp(18px, 2.5vw, 20px);
}

.footer-col p {
    font-size: clamp(14px, 2vw, 15px);
    line-height: 1.8;
    opacity: 0.8;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    font-size: clamp(14px, 2vw, 15px);
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--secondary);
}

.footer-social a {
    color: var(--secondary);
    text-decoration: none;
    font-size: clamp(14px, 2vw, 15px);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-form input {
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: clamp(14px, 2vw, 15px);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: clamp(13px, 1.8vw, 14px);
    opacity: 0.7;
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, rgba(41, 117, 167, 0.9), rgba(88, 187, 222, 0.8));
    padding: 80px 0;
    text-align: center;
    color: var(--white);
}

.contact-content {
    padding: 80px 0;
}

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

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    color: var(--primary);
    flex-shrink: 0;
}

.contact-form-wrap {
    background: var(--light);
    padding: 40px;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: clamp(14px, 2vw, 15px);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: clamp(14px, 2vw, 15px);
    font-family: inherit;
}

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

.map-container {
    margin: 60px 0;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
    border-radius: 10px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        transition: left 0.3s;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        padding: 30px;
        gap: 0;
    }
    
    .nav-list li {
        border-bottom: 1px solid var(--light);
    }
    
    .nav-list a {
        display: block;
        padding: 15px 0;
    }
    
    .about-grid {
        flex-direction: column;
    }
    
    .metro-tile.tile-large,
    .metro-tile.tile-wide {
        grid-column: span 1;
    }
    
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
}