* 1. CUSTOM FONT DECLARATIONS */
/* Make sure your files are named exactly like this in your /fonts folder */

@font-face {
    font-family: 'FuturaCustom';
    src: url('fonts/futura.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'HelveticaCustom';
    src: url('fonts/helvetica.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* 2. RESET & VARIABLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors */
    --primary-green: #00c0a3;
    --dark-green: #008573;
    --darker-green: #006b5c;
    --light-green: #b3ede4;
    --accent-green: #00d9b8;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --white: #ffffff;
    --light-bg: #f8fffe;

    /* Font Stacks using your uploaded files */
    --font-main: 'FuturaCustom', sans-serif;
    --font-body: 'HelveticaCustom', Arial, sans-serif;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased; /* Makes fonts look sharper on Mac */
}

/* 3. TYPOGRAPHY & SECTIONS */
h1, h2, h3, h4, .price, .download-btn, .catalogue-btn {
    font-family: var(--font-main);
    font-weight: 500;
    letter-spacing: 0.5px;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.featured-image-section {
    padding: 60px 0;
    display: flex;
    justify-content: center;
}

.chamfered-image-container {
    width: 100%;
    max-width: 1100px; /* Adjust based on how wide you want it */
    margin: 0 auto;
    /* This ensures the image doesn't "leak" out of the rounded corners */
    overflow: hidden; 
    border-radius: 30px; /* This creates the 'chamfered' / rounded look */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); /* Soft, designer-grade shadow */
}

.rounded-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

/* Optional: Slight zoom effect when a user hovers over it */
.rounded-img:hover {
    transform: scale(1.02);
}
.whatsapp-full-banner {
    width: 100%;
    background-color: #008069; /* Matched teal from your image */
    padding: 60px 20px; /* Vertical height of the banner */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0 0; /* Space above and below the banner */
}

.banner-content p {
    color: #ffffff;
    font-family: 'Helvetica', sans-serif;
    font-size: 1.8rem; /* Large and clear like the screenshot */
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase; /* Matching the "GET OUR PRODUCT CATALOGUE" style */
    margin: 0;
    line-height: 1.4;
}

/* Mobile Adjustment */
@media (max-width: 768px) {
    .banner-content p {
        font-size: 1.2rem;
        padding: 0 10px;
    }
    .whatsapp-full-banner {
        padding: 40px 15px;
    }
}
/* Header */
header {
    background-color: var(--light-green);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0, 192, 163, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
}

.download-btn {
    background-color: var(--white);
    color: var(--primary-green);
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border: 2px solid var(--primary-green);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-main); /* Forces Futura */
    text-transform: uppercase;
    letter-spacing: 1px;
}

.download-btn:hover {
    background-color: var(--primary-green);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 192, 163, 0.3);
}
.slider-container {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: #fff;
}

.slider-wrapper {
    display: flex;
    /* Use 'cubic-bezier' for a high-end, smooth "designer" feel */
    transition: transform 0.9s cubic-bezier(0.45, 0, 0.55, 1);
}

.slide {
    min-width: 100%;
}

.slide img {
    width: 100%;
    height: 100%; /* You can increase this to 600px if you want it taller */
    display: block;
    object-fit: cover; /* This is the magic: it fills the space without stretching */
    object-position: center; /* Keeps the middle of your design visible on all screens */
}

/* Mobile Adjustment */
@media (max-width: 100%) {
    .slide img {
        height: 100%; /* Makes the slider shorter on phones so it doesn't take the whole screen */
    }
}

.dots-container {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.dot.active {
    background: #00c0a3; /* Your brand teal */
    transform: scale(1.2);
}
/* Hero Section */
.hero {
    background-color: var(--white);
    padding: 60px 0;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
}

.hero-text {
    flex: 1;
    background-color: var(--light-green);
    padding: 50px;
    border-radius: 10px;
}

.hero-text h1 {
    font-size: 48px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: var(--dark-green);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
    font-family: 'Inter', sans-serif;
}

/* Hydration Range Section */
.hydration-range {
    background-color: var(--light-green);
    padding: 80px 0;
}

.hydration-range h2 {
    text-align: center;
    font-size: 42px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: var(--dark-green);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 60px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.product-card {
    background-color: var(--white);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 107, 92, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 192, 163, 0.1);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 107, 92, 0.25);
}

.product-image {
    position: relative;
    margin-bottom: 25px;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    max-width: 200px;
    height: auto;
}

.badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--primary-green);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.badge.premium {
    background-color: var(--dark-green);
}

.badge.economy {
    background-color: var(--accent-green);
}

.product-card h3 {
    color: var(--dark-green);
    font-size: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.product-card > p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
}

.product-features {
    list-style: none;
    text-align: left;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.product-features li {
    margin-bottom: 8px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
}

.price {
    color: var(--primary-green);
    font-size: 24px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

/* Get Catalogue Section */
.get-catalogue {
    background-color: var(--dark-green);
    padding: 80px 0;
    text-align: center;
}

.get-catalogue h2 {
    color: var(--white);
    font-size: 38px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.catalogue-btn {
    background-color: var(--white);
    color: var(--dark-green);
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    font-family: var(--font-main); /* Forces Futura */
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    transition: all 0.3s ease;
}

.catalogue-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
    background-color: var(--primary-green);
    color: var(--white);
}

/* Contact Section */
.contact {
    background-color: var(--white);
    padding: 80px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 36px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
    font-family: 'Inter', sans-serif;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item h4 {
    color: var(--primary-green);
    margin-bottom: 8px;
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.contact-item p {
    color: var(--text-dark);
    font-size: 16px;
    font-family: 'Inter', sans-serif;
}

/* Contact Form */
.contact-form {
    background-color: var(--primary-green);
    padding: 40px;
    border-radius: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    background-color: var(--white);
    color: var(--text-dark);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: 2px solid var(--dark-green);
}

.submit-btn {
    width: 100%;
    background-color: var(--primary-green);
    color: var(--white);
    padding: 15px;
    border: 2px solid var(--white);
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-main); /* Forces Futura */
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: var(--white);
    color: var(--primary-green);
    transform: translateY(-2px);
}

/* Footer */
footer {
    background-color: var(--light-green);
    padding: 40px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-green);
}

.footer-links span {
    color: var(--text-dark);
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-links a:hover {
    background-color: var(--dark-green);
    transform: scale(1.1);
}

.footer-logo {
    text-align: center;
}

.footer-logo img {
    height: 60px;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: var(--white);
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    line-height: 60px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .hero-text {
        padding: 30px;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    header .container {
        flex-direction: column;
        gap: 15px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }

    .hydration-range h2 {
        font-size: 36px;
    }

    .get-catalogue h2 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .hydration-range h2 {
        font-size: 32px;
    }

    .hero-text h1 {
        font-size: 28px;
    }

    .get-catalogue h2 {
        font-size: 28px;
    }

    .contact-info h2 {
        font-size: 28px;
    }
}
/* Legal Page Specific Styling */
.legal-body {
    font-family: "Helvetica", "Arial", sans-serif;
    background-color: #ffffff;
    margin: 0;
    padding: 0;
}

.legal-container {
    max-width: 900px;
    margin: 3rem auto; /* Half-inch margin (approx 48px) */
    padding: 0 3rem;   /* Half-inch side margins */
    line-height: 1.6;
    color: #333;
}

/* Minimalist Back Button */
.back-circle {
    position: fixed;
    top: 100px;
    left: 48px; /* Half-inch from left */
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #333;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.back-circle:hover, .back-circle:active {
    background-color: #00c0a3;
    color: white;
    transform: translateY(-2px);
}

.legal-text h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.legal-text h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
    color: #000;
}