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

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;700;800&family=Montserrat:wght@800;900&display=swap');

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f5f5f5;
}

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

/* Header */
header {
    background: #fff;
    border-bottom: 3px solid #0d4a7a;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    order: 1;
}

.logo-image {
    height: 180px;
    width: auto;
    max-width: 700px;
}

.header-contact {
    order: 2;
    margin-left: auto;
    display: flex;
    align-items: center;
}

.phone-header,
.email-header {
    background: #34C759;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.05rem;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.phone-header:hover,
.email-header:hover {
    background: #2da84a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 199, 89, 0.3);
}

/* Hero */
.hero {
    background: linear-gradient(135deg, #0d4a7a 0%, #1A5FA8 100%);
    color: white;
    padding: 120px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(52, 199, 89, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(52, 199, 89, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-family: 'Montserrat', 'Poppins', sans-serif;
    font-size: 2.8rem;
    margin-bottom: 24px;
    line-height: 1.1;
    font-weight: 900;
    text-shadow: 0 4px 20px rgba(0,0,0,0.4), 0 2px 6px rgba(0,0,0,0.3);
    letter-spacing: -1px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    text-transform: none;
}

.hero-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 30px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
    line-height: 1.6;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background: #34C759;
    color: white;
    padding: 18px 40px;
    font-size: 1.3rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    margin: 10px 0;
    box-shadow: 0 4px 20px rgba(52, 199, 89, 0.4);
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #2da84a;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(52, 199, 89, 0.5);
}

.cta-subtext {
    margin-top: 15px;
    font-size: 1rem;
}

.cta-subtext a {
    color: white;
    text-decoration: underline;
}

.cta-note {
    font-size: 0.9rem;
    margin-top: 10px;
    font-style: italic;
}

/* Benefits */
.benefits {
    padding: 60px 20px;
    background: #f9f9f9;
}

.benefits h2 {
    font-family: 'Poppins', sans-serif;
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #0d4a7a;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

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

.benefit-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    border-left: 4px solid #34C759;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.benefit-card h3 {
    color: #0d4a7a;
    margin-bottom: 10px;
    font-size: 1.1rem;
    font-weight: 700;
}

.benefit-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Stock Section */
.stock {
    padding: 60px 20px;
    background: white;
}

.stock h2 {
    font-family: 'Poppins', sans-serif;
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: #0d4a7a;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.stock-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto 30px;
}

.stock-item {
    background: white;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #34C759;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.stock-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(52, 199, 89, 0.15);
}

.stock-item h3 {
    color: #0d4a7a;
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.stock-item p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

.stock-contact {
    text-align: center;
    color: #1A5FA8;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 20px;
}

.stock-category h3 {
    color: #1A5FA8;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.stock-category p {
    color: #666;
    font-size: 0.9rem;
}

/* Product Range */
.product-range {
    padding: 60px 20px;
    background: #f9f9f9;
}

.product-range h2 {
    font-family: 'Poppins', sans-serif;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #0d4a7a;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 50px 0;
}

.product-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    border: 0.5px solid #e0e0e0;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.15);
}

.product-card.popular {
    border: 2px solid #10B981;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.2);
}

.product-card.popular:hover {
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.3);
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #FBBF24 0%, #F59E0B 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(251, 191, 36, 0.4);
}

.product-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
}

.product-content {
    padding: 25px;
}

.product-content h3 {
    font-family: 'Poppins', sans-serif;
    color: #0d4a7a;
    font-size: 1.6rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.product-tagline {
    color: #10B981;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.product-description {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.product-features h4,
.product-specs h4 {
    color: #333;
    font-size: 1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.product-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.product-features li {
    color: #555;
    padding: 6px 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.product-features li::before {
    content: '✓ ';
    color: #10B981;
    font-weight: bold;
    margin-right: 8px;
}

.product-specs table {
    width: 100%;
    border-collapse: collapse;
}

.product-specs tr {
    border-bottom: 1px solid #e8e8e8;
}

.product-specs tr:last-child {
    border-bottom: none;
}

.product-specs td {
    padding: 10px 0;
    font-size: 0.9rem;
}

.product-specs td:first-child {
    color: #666;
    font-weight: 600;
    width: 45%;
}

.product-specs td:last-child {
    color: #333;
}

.product-cta {
    text-align: center;
    margin-top: 40px;
}

.product-cta .cta-button {
    background: #0d4a7a;
    color: white;
    padding: 18px 40px;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 50px;
    display: inline-block;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(13, 74, 122, 0.3);
    transition: all 0.3s ease;
}

.product-cta .cta-button:hover {
    background: #0a3557;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(13, 74, 122, 0.4);
}

/* Locations */
.locations {
    padding: 60px 20px;
    background: white;
}

.locations h2 {
    font-family: 'Poppins', sans-serif;
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: #0d4a7a;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.location-button {
    background: linear-gradient(135deg, #0d4a7a 0%, #1A5FA8 100%);
    color: white;
    padding: 24px;
    text-align: center;
    text-decoration: none;
    border-radius: 12px;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(13, 74, 122, 0.3);
    transition: all 0.3s ease;
}

.location-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(26, 95, 168, 0.35);
}

.locations-note {
    text-align: center;
    color: #666;
    font-size: 0.95rem;
    margin-top: 20px;
}

/* Reviews */
.reviews {
    padding: 60px 20px;
    background: #f9f9f9;
}

.reviews h2 {
    font-family: 'Poppins', sans-serif;
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #0d4a7a;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.review-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.review-track {
    overflow: hidden;
}

.review {
    display: none;
    text-align: center;
    padding: 50px 40px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.review.active {
    display: block;
}

.review-text {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 20px;
    font-style: italic;
}

.review-author {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.review-stars {
    color: #FFB800;
    font-size: 1.2rem;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #1A5FA8;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
}

.slider-btn:hover {
    background: #2a7fcc;
}

.slider-btn.prev {
    left: -60px;
}

.slider-btn.next {
    right: -60px;
}

/* Final CTA */
.cta-final {
    padding: 80px 20px;
    background: linear-gradient(135deg, #34C759 0%, #2da84a 100%);
    color: white;
    text-align: center;
}

.cta-final h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.cta-final p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-final .cta-button {
    background: white;
    color: #34C759;
}

.cta-final .cta-button:hover {
    background: #f0f0f0;
}

.cta-final .cta-subtext a {
    color: white;
}

/* Footer */
footer {
    background: #0d4a7a;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

footer a {
    color: white;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.footer-blog-button {
    display: inline-block;
    background: #34C759;
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(52, 199, 89, 0.3);
    transition: all 0.3s ease;
}

.footer-blog-button:hover {
    background: #2da84a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 199, 89, 0.4);
    text-decoration: none;
}

.footer-locations {
    margin: 15px 0;
    font-size: 0.9rem;
}

.footer-note {
    margin-top: 15px;
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 1.8rem;
        letter-spacing: -0.5px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .benefits-grid,
    .stock-list,
    .product-grid,
    .locations-grid {
        grid-template-columns: 1fr;
    }
    
    .product-image {
        height: 200px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .slider-btn.prev {
        left: -50px;
    }
    
    .slider-btn.next {
        right: -50px;
    }
    
    header .container {
        gap: 15px;
        justify-content: space-between;
    }
    
    .logo {
        order: 1;
    }
    
    .header-contact {
        order: 2;
    }
    
    .logo-image {
        height: 120px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
        letter-spacing: -0.3px;
    }
    
    .product-content {
        padding: 20px;
    }
    
    .product-content h3 {
        font-size: 1.3rem;
    }
    
    .popular-badge {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
    
    .slider-btn.prev {
        left: 5px;
    }
    
    .slider-btn.next {
        right: 5px;
    }
    
    .review {
        padding: 20px;
    }
}