/* AY Watercoolers - Main Stylesheet */
/* Brand Colours: Coral #F06060 | Dark Blue #1565A0 | Cyan #60CFEF */

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

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

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

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

/* Header / Navigation */
.header {
    background: #1565A0;
    border-bottom: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    display: flex;
    align-items: stretch;
    margin: 0;
    padding: 0;
}

.logo img {
    height: 120px;
    width: auto;
    display: block;
}

.nav {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav a {
    color: #F06060;
    font-weight: 600;
    font-size: 1.15rem;
    letter-spacing: 0.3px;
    transition: color 0.3s;
}

.nav a:hover {
    color: #fff;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    font-size: 16px;
}

.btn-primary {
    background: #F06060;
    color: #fff;
}

.btn-primary:hover {
    background: #D94F4F;
}

.header .btn-primary {
    background: #F06060;
    color: #fff;
    font-size: 1.1rem;
    padding: 14px 28px;
}

.btn-outline {
    background: transparent;
    border: 2px solid #F06060;
    color: #F06060;
}

.btn-outline:hover {
    background: #FDE8E5;
}

.btn-white {
    background: #fff;
    color: #F06060;
}

.btn-white:hover {
    background: #FDE8E5;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #fff;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #FDE8E5 0%, #E0F5FC 100%);
    padding: 80px 0;
}

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

.hero-badge {
    display: inline-block;
    background: rgba(240, 96, 96, 0.12);
    color: #F06060;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 3.5rem;
    color: #1A1A1A;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero h1 span {
    color: #1565A0;
}

.hero p {
    font-size: 1.2rem;
    color: #4A5568;
    margin-bottom: 30px;
    max-width: 500px;
}

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

.hero-contact {
    margin-top: 30px;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.hero-contact a {
    color: #1565A0;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-contact a:hover {
    color: #F06060;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

/* Trust Badges */
.trust-badges {
    background: #1565A0;
    padding: 20px 0;
}

.trust-badges .container {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.9);
}

.trust-badge svg {
    color: #60CFEF;
}

/* Section Styles */
.section {
    padding: 80px 0;
}

.section-light {
    background: #fff;
}

.section-gray {
    background: #F5F7FA;
}

.section-blue {
    background: #1565A0;
    color: #fff;
}

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

.section-title h2 {
    font-size: 2.5rem;
    color: #1A1A1A;
    margin-bottom: 15px;
}

.section-blue .section-title h2 {
    color: #fff;
}

.section-title p {
    color: #4A5568;
    font-size: 1.1rem;
}

.section-blue .section-title p {
    color: rgba(255,255,255,0.8);
}

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

.feature-card {
    background: linear-gradient(135deg, #fff 0%, #F5F7FA 100%);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid #F06060;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: #E0F5FC;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon svg {
    width: 35px;
    height: 35px;
    color: #1565A0;
}

.feature-card h3 {
    color: #1A1A1A;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.feature-card p {
    color: #4A5568;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: #F5F7FA;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #F06060;
    color: #fff;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    text-transform: capitalize;
}

.product-content {
    padding: 25px;
}

.product-content h3 {
    color: #1A1A1A;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.product-content p {
    color: #4A5568;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    color: #F06060;
    font-weight: 600;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.services-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 30px 0;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.9);
}

.service-item svg {
    color: #60CFEF;
    flex-shrink: 0;
}

.services-image img {
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.services-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Coming Soon */
.coming-soon {
    text-align: center;
    padding: 60px 0;
    background: #fff;
}

.coming-soon-badge {
    display: inline-block;
    background: #FDE8E5;
    color: #F06060;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 15px;
}

.coming-soon h2 {
    color: #1A1A1A;
    font-size: 2rem;
    margin-bottom: 15px;
}

.coming-soon p {
    color: #4A5568;
    max-width: 600px;
    margin: 0 auto;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #F06060 0%, #D94F4F 100%);
    padding: 60px 0;
    text-align: center;
}

.cta h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.cta .btn-primary {
    background: #fff;
    color: #F06060;
}

.cta .btn-primary:hover {
    background: #FDE8E5;
}

.cta .btn-outline {
    border-color: rgba(255,255,255,0.5);
    color: #fff;
}

.cta .btn-outline:hover {
    background: rgba(255,255,255,0.15);
}

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

/* Footer */
.footer {
    background: #0D3B66;
    color: #fff;
    padding: 60px 0 30px;
}

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

.footer-brand p {
    color: rgba(255,255,255,0.7);
    margin: 20px 0;
    font-size: 0.95rem;
}

.footer-social a {
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: #60CFEF;
}

.footer h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #60CFEF;
}

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

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

.footer-links a {
    color: rgba(255,255,255,0.7);
    transition: color 0.3s;
}

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

.footer-contact a,
.footer-contact p {
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 30px;
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

/* Page Headers */
.page-header {
    background: linear-gradient(135deg, #FDE8E5 0%, #E0F5FC 100%);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    color: #1A1A1A;
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-header p {
    color: #4A5568;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Category Filter */
.category-filter {
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
    padding: 20px 0;
    position: sticky;
    top: 110px;
    z-index: 50;
}

.filter-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid #e2e8f0;
    background: #fff;
    color: #1A1A1A;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: #F06060;
    color: #fff;
    border-color: #F06060;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    display: flex;
    gap: 15px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #E0F5FC;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: #1565A0;
}

.contact-card h3 {
    color: #1A1A1A;
    font-size: 1rem;
    margin-bottom: 5px;
}

.contact-card a {
    color: #F06060;
    font-weight: 500;
}

.contact-card p {
    color: #4A5568;
    font-size: 0.9rem;
}

.contact-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.contact-form-wrapper h2 {
    color: #1A1A1A;
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    color: #1A1A1A;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-group label span {
    color: #F06060;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #F06060;
}

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

.form-note {
    color: #4A5568;
    font-size: 0.9rem;
    margin-top: 15px;
}

/* Responsive */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero {
        padding: 30px 0;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }
    
    .hero h1 {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .hero p {
        margin: 0 auto 15px;
        font-size: 1rem;
    }
    
    .hero-badge {
        margin-bottom: 10px;
    }
    
    .hero-buttons {
        justify-content: center;
        gap: 10px;
    }
    
    .hero-contact {
        justify-content: center;
        margin-top: 15px;
        gap: 15px;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-image img {
        border-radius: 12px;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .section-title {
        margin-bottom: 25px;
    }
    
    .section-title h2 {
        font-size: 1.6rem;
        margin-bottom: 8px;
    }
    
    .section-title p {
        font-size: 0.95rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .feature-card {
        padding: 25px 20px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .services-list {
        grid-template-columns: 1fr;
        gap: 10px;
        margin: 15px 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
    
    .trust-badges {
        padding: 15px 0;
    }
    
    .trust-badges .container {
        gap: 15px;
    }
    
    .cta {
        padding: 40px 0;
    }
    
    .cta h2 {
        font-size: 1.5rem;
    }
    
    .page-header {
        padding: 30px 0;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .logo img {
        height: 50px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .coming-soon h2 {
        font-size: 1.5rem;
    }
    
    .contact-form-wrapper {
        padding: 25px 20px;
    }
}
