﻿@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap" );

:root {
    --navy: #071d3b;
    --deep-blue: #0a2e5c;
    --blue: #0879c9;
    --aqua: #20c4db;
    --pale: #effaff;
    --white: #ffffff;
    --text: #18324f;
    --muted: #6a7e91;
    --line: #dcecf4;
    --shadow: 0 24px 60px rgba(6, 44, 85, .13);
}

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

html { scroll-behavior: smooth; }

body {
    background: var(--white);
    color: var(--text);
    font-family: "DM Sans", sans-serif;
    line-height: 1.6;
}

h1, h2, h3, strong, .brand { font-family: "Manrope", sans-serif; }

.site-header {
    align-items: center;
    background: rgba(255,255,255,.94);
    display: flex;
    height: 82px;
    justify-content: space-between;
    padding: 0 7%;
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(16px);
}

.brand { align-items: center; color: var(--navy); display: flex; gap: 10px; text-decoration: none; }
.brand-mark { color: var(--blue); font-size: 29px; line-height: 1; }
.brand strong { display: block; font-size: 18px; letter-spacing: 2px; line-height: 1.05; }
.brand small { color: var(--blue); display: block; font-size: 9px; letter-spacing: 3px; margin-top: 3px; }

.navigation { align-items: center; display: flex; gap: 31px; }
.navigation a { color: var(--text); font-size: 14px; font-weight: 600; text-decoration: none; }
.navigation a:hover { color: var(--blue); }
.navigation .nav-contact { background: var(--navy); border-radius: 30px; color: white; padding: 12px 20px; }
.menu-toggle { background: none; border: 0; color: var(--navy); cursor: pointer; display: none; font-size: 27px; }

.hero {
    background: linear-gradient(115deg, #edfaff 0%, #f8fdff 52%, #d9f6fb 100%);
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 650px;
    overflow: hidden;
    padding: 86px 10% 100px;
    position: relative;
}
.hero-content { align-self: center; max-width: 590px; position: relative; z-index: 2; }
.eyebrow, .section-label { color: var(--blue); font-size: 11px; font-weight: 800; letter-spacing: 2px; }
.hero h1 { color: var(--navy); font-size: clamp(52px, 6vw, 84px); letter-spacing: -4px; line-height: 1.03; margin: 18px 0 22px; }
.hero h1 span, h2 span { color: var(--blue); }
.hero-text { color: var(--muted); font-size: 18px; max-width: 510px; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 13px; margin: 32px 0 27px; }
.button { border-radius: 5px; display: inline-block; font-size: 13px; font-weight: 700; padding: 15px 23px; text-decoration: none; transition: .25s; }
.button:hover { box-shadow: 0 10px 25px rgba(8,121,201,.25); transform: translateY(-2px); }
.button-primary { background: var(--blue); color: white; }
.button-outline { border: 1px solid #9acadd; color: var(--deep-blue); }
.button-light { background: white; color: var(--deep-blue); }
.quick-info { color: var(--deep-blue); display: flex; flex-wrap: wrap; font-size: 12px; gap: 22px; }
.hero-image { align-items: center; display: flex; justify-content: center; position: relative; }
.hero-image img { border-radius: 155px 155px 14px 14px; box-shadow: var(--shadow); height: 500px; object-fit: cover; position: relative; transform: rotate(3deg); width: 365px; z-index: 2; }
.image-glow { background: var(--aqua); border-radius: 50%; filter: blur(4px); height: 420px; opacity: .24; position: absolute; right: 8%; top: 4%; width: 420px; }
.floating-card { align-items: center; background: rgba(255,255,255,.94); border-radius: 10px; bottom: 55px; box-shadow: var(--shadow); display: flex; gap: 12px; padding: 16px 20px; position: absolute; right: 3%; z-index: 3; }
.drop-icon { background: #d8f7fb; border-radius: 50%; font-size: 22px; padding: 8px; }
.floating-card strong, .floating-card small { display: block; }
.floating-card strong { color: var(--navy); font-size: 13px; }
.floating-card small { color: var(--muted); font-size: 11px; }
.wave { background: white; border-radius: 50% 50% 0 0; bottom: -55px; height: 100px; left: -5%; position: absolute; width: 110%; }

.section { padding: 105px 10%; }
.about-grid, .contact-grid { display: grid; gap: 80px; grid-template-columns: 1fr 1fr; margin-top: 24px; }
h2 { color: var(--navy); font-size: clamp(34px, 4vw, 54px); letter-spacing: -2px; line-height: 1.1; }
.about-grid p { color: var(--muted); font-size: 16px; margin-bottom: 16px; max-width: 520px; }
.values-row { display: grid; gap: 17px; grid-template-columns: repeat(3, 1fr); margin-top: 65px; }
.value-card { border-top: 2px solid var(--aqua); padding: 19px 10px 10px 0; }
.value-card span, .service-number { color: var(--aqua); font-size: 12px; font-weight: 800; letter-spacing: 1px; }
.value-card h3 { color: var(--navy); font-size: 21px; margin: 13px 0 5px; }
.value-card p { color: var(--muted); font-size: 14px; }

.services-section { background: var(--pale); }
.section-heading { align-items: end; display: flex; justify-content: space-between; margin-bottom: 45px; }
.section-heading > p { color: var(--muted); max-width: 330px; }
.services-grid { display: grid; gap: 18px; grid-template-columns: repeat(4, 1fr); }
.service-card { background: white; border-radius: 8px; min-height: 315px; padding: 25px 21px; transition: .25s; }
.service-card:hover { box-shadow: var(--shadow); transform: translateY(-6px); }
.service-main { background: var(--navy); color: white; }
.service-main h3 { color: white; }
.service-main p { color: #b6cede; }
.service-icon { font-size: 31px; margin: 30px 0 20px; }
.service-card h3 { color: var(--navy); font-size: 18px; line-height: 1.25; }
.service-card p { color: var(--muted); font-size: 13px; margin: 12px 0 23px; }
.service-card a { color: var(--blue); font-size: 12px; font-weight: 800; text-decoration: none; }

.product-banner { background: var(--deep-blue); color: white; display: grid; grid-template-columns: 1fr 1fr; min-height: 450px; }
.product-photo { min-height: 450px; }
.product-photo img { height: 100%; object-fit: cover; width: 100%; }
.product-content { align-self: center; max-width: 530px; padding: 65px 9%; }
.product-content h2 { color: white; margin: 17px 0; }
.product-content h2 span { color: var(--aqua); }
.product-content p { color: #b8cddd; margin-bottom: 28px; max-width: 420px; }

.why-section { text-align: center; }
.why-section h2 { margin: 17px 0 55px; }
.reasons-grid { display: grid; gap: 20px; grid-template-columns: repeat(4, 1fr); text-align: left; }
.reason { border-left: 1px solid var(--line); padding: 0 15px 0 20px; }
.reason-icon { color: var(--blue); font-size: 24px; font-weight: bold; }
.reason h3 { color: var(--navy); font-size: 16px; margin: 12px 0 7px; }
.reason p { color: var(--muted); font-size: 13px; }

.quote-section { background: #e9faff; padding: 75px 15%; text-align: center; }
.quote-mark { color: var(--aqua); font-family: Georgia, serif; font-size: 76px; height: 43px; line-height: 1; }
blockquote { color: var(--navy); font-family: "Manrope", sans-serif; font-size: clamp(24px, 3vw, 39px); font-weight: 700; letter-spacing: -1px; line-height: 1.25; margin: 12px auto 17px; max-width: 850px; }
.quote-section p { color: var(--blue); font-size: 13px; font-weight: 700; }

.contact-section { background: white; }
.contact-grid { align-items: center; }
.contact-section h2 { margin: 17px 0; }
.contact-section > .contact-grid > div > p { color: var(--muted); max-width: 480px; }
.contact-details { display: grid; gap: 13px; margin-top: 28px; }
.contact-details a, .contact-details p { color: var(--text); font-size: 14px; text-decoration: none; }
.contact-details span { color: var(--blue); display: inline-block; font-size: 19px; margin-right: 12px; min-width: 21px; text-align: center; }
.contact-box { background: var(--pale); border-radius: 10px; box-shadow: var(--shadow); padding: 38px; }
.open-badge { color: #178947; font-size: 12px; font-weight: 700; }
.open-badge span { background: #25c76a; border-radius: 50%; display: inline-block; height: 8px; margin-right: 7px; width: 8px; }
.contact-box h3 { color: var(--navy); font-size: 26px; margin: 18px 0 4px; }
.contact-box > p { color: var(--muted); font-size: 14px; }
.hours { color: var(--blue); font-family: "Manrope"; font-size: 42px; font-weight: 800; margin: 12px 0; }
.hours small { color: var(--navy); font-size: 14px; }
.muted { color: var(--muted); font-size: 12px; }
.full-button { margin-top: 26px; text-align: center; width: 100%; }

.site-footer { align-items: center; background: var(--navy); color: #a9bfd1; display: flex; flex-wrap: wrap; gap: 22px; justify-content: space-between; padding: 25px 7%; }
.footer-brand { align-items: center; color: white; display: flex; gap: 10px; }
.footer-brand .brand-mark { font-size: 22px; }
.footer-brand strong { font-size: 13px; letter-spacing: 1px; }
.site-footer p { font-size: 12px; }
.copyright { color: #7791a8; }
.floating-whatsapp { align-items: center; background: #20bb62; border: 4px solid white; border-radius: 50%; bottom: 22px; box-shadow: 0 5px 20px rgba(0,0,0,.2); color: white; display: flex; font-size: 25px; height: 57px; justify-content: center; position: fixed; right: 22px; text-decoration: none; width: 57px; z-index: 20; }

@media (max-width: 900px) {
    .site-header { padding: 0 5%; }
    .navigation { gap: 17px; }
    .hero { padding-left: 7%; padding-right: 7%; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .reasons-grid { grid-template-columns: repeat(2, 1fr); row-gap: 35px; }
    .section { padding-left: 7%; padding-right: 7%; }
}

@media (max-width: 650px) {
    .site-header { height: 70px; }
    .menu-toggle { display: block; }
    .navigation { background: white; box-shadow: var(--shadow); display: none; flex-direction: column; left: 0; padding: 22px 7%; position: absolute; right: 0; top: 70px; }
    .navigation.open { display: flex; }
    .navigation .nav-contact { width: 100%; text-align: center; }
    .hero { display: block; min-height: auto; padding: 63px 7% 95px; }
    .hero h1 { font-size: 53px; }
    .hero-image { margin: 50px 0 0; }
    .hero-image img { height: 440px; width: 84%; }
    .floating-card { bottom: 18px; right: 0; }
    .about-grid, .contact-grid, .product-banner { grid-template-columns: 1fr; gap: 32px; }
    .values-row, .services-grid, .reasons-grid { grid-template-columns: 1fr; }
    .section-heading { align-items: start; display: block; }
    .section-heading > p { margin-top: 20px; }
    .product-photo { min-height: 320px; }
    .product-content { padding: 65px 8%; }
    .quote-section { padding: 65px 8%; }
    .site-footer { align-items: flex-start; flex-direction: column; gap: 12px; }
}

.enquiry-section {
    background: #f5fcff;
}

.enquiry-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 70px;
    margin-top: 25px;
}

.enquiry-intro {
    color: var(--muted);
    font-size: 16px;
    max-width: 430px;
}

.enquiry-form {
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
    display: grid;
    gap: 9px;
    padding: 30px;
}

.enquiry-form label {
    color: var(--navy);
    font-size: 13px;
    font-weight: 700;
    margin-top: 8px;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
    border: 1px solid var(--line);
    border-radius: 5px;
    color: var(--text);
    font: inherit;
    font-size: 14px;
    padding: 13px;
    width: 100%;
}

.enquiry-form textarea {
    resize: vertical;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
    border-color: var(--aqua);
    outline: none;
}

.enquiry-form button {
    border: 0;
    cursor: pointer;
    margin-top: 15px;
}

@media (max-width: 650px) {
    .enquiry-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .enquiry-form {
        padding: 22px;
    }
}
