/* =====================================================
   ANGWAH PREMIUM WEBSITE
   ===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f7fbfd;
    color: #071522;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}


/* =====================================================
   VARIABLES
   ===================================================== */

:root {
    --blue: #149bd3;
    --blue-dark: #0879ad;
    --blue-light: #eaf8ff;

    --dark: #071722;
    --dark-2: #0b2430;

    --text: #10212c;
    --muted: #63747e;

    --white: #ffffff;
    --line: #d7e6ec;

    --green: #20c96b;

    --radius: 28px;
}


/* =====================================================
   HEADER
   ===================================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(215, 230, 236, 0.8);
}

.nav-container {
    max-width: 1400px;
    margin: auto;

    min-height: 90px;

    padding: 0 5%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


/* LOGO */

.logo-link {
    display: flex;
    align-items: center;

    flex-shrink: 0;
}

.logo {
    width: 185px;
    height: 72px;

    object-fit: contain;
}


/* NAVIGATION */

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 32px;

    margin-left: auto;
}

.desktop-nav a {
    font-size: 14px;
    font-weight: 600;

    color: #52646f;

    transition: 0.3s;
}

.desktop-nav a:hover {
    color: var(--blue);
}


/* NAV BUTTON */

.nav-button {
    background: var(--blue);
    color: white;

    padding: 15px 24px;

    border-radius: 12px;

    font-size: 13px;
    font-weight: 800;

    transition: 0.3s;

    box-shadow: 0 12px 30px rgba(20, 155, 211, 0.2);
}

.nav-button:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
}


/* MENU */

.menu-btn {
    display: none;

    border: 0;
    background: transparent;

    font-size: 30px;

    color: var(--blue);

    cursor: pointer;
}


/* MOBILE MENU */

.mobile-menu {
    display: none;

    background: white;

    padding: 20px 7% 28px;

    border-top: 1px solid var(--line);
}

.mobile-menu.active {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.mobile-menu a {
    font-weight: 700;
}


/* =====================================================
   HERO
   ===================================================== */

.hero {
    padding-top: 90px;

    min-height: 850px;

    background:
        radial-gradient(
            circle at 80% 45%,
            rgba(20, 155, 211, 0.18),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f5fbfe 50%,
            #e9f8ff 100%
        );

    display: flex;
    align-items: center;
}

.hero-container {
    width: min(1400px, 90%);

    margin: auto;

    display: grid;
    grid-template-columns: 1fr 0.85fr;

    gap: 60px;

    align-items: center;
}


/* HERO CONTENT */

.eyebrow,
.section-label {
    color: var(--blue-dark);

    font-size: 12px;

    letter-spacing: 4px;

    font-weight: 900;

    margin-bottom: 24px;
}

.eyebrow::before {
    content: "";

    display: inline-block;

    width: 38px;
    height: 2px;

    background: var(--blue);

    margin-right: 12px;

    vertical-align: middle;
}


.hero h1 {
    font-size: clamp(58px, 7vw, 105px);

    line-height: 0.92;

    letter-spacing: -5px;

    max-width: 800px;

    margin-bottom: 34px;

    font-weight: 900;
}

.hero h1 span {
    color: var(--blue);
}


.hero-text {
    max-width: 650px;

    color: var(--muted);

    font-size: 18px;

    line-height: 1.75;

    margin-bottom: 34px;
}


/* BUTTONS */

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 16px;

    margin-bottom: 55px;
}

.primary-btn,
.secondary-btn,
.outline-btn,
.cta-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 56px;

    padding: 0 28px;

    border-radius: 14px;

    font-weight: 800;

    transition: 0.3s;
}

.primary-btn {
    background: var(--blue);
    color: white;

    box-shadow: 0 15px 35px rgba(20, 155, 211, 0.24);
}

.primary-btn:hover {
    transform: translateY(-3px);
    background: var(--blue-dark);
}

.primary-btn span {
    margin-left: 15px;
    font-size: 20px;
}

.secondary-btn {
    background: white;

    border: 1px solid var(--line);

    color: var(--text);
}

.secondary-btn:hover {
    border-color: var(--blue);
    color: var(--blue);
}


/* HERO POINTS */

.hero-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    max-width: 700px;

    border-top: 1px solid var(--line);

    padding-top: 22px;
}

.hero-points div {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hero-points strong {
    font-size: 14px;
}

.hero-points span {
    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 1.5px;

    color: var(--muted);
}


/* HERO BOTTLE */

.hero-product {
    position: relative;

    min-height: 650px;

    display: flex;

    justify-content: center;
    align-items: center;
}

.product-glow {
    position: absolute;

    width: 520px;
    height: 520px;

    border-radius: 50%;

    background: rgba(20, 155, 211, 0.12);

    filter: blur(50px);
}

.hero-bottle {
    position: relative;
    z-index: 2;

    width: min(440px, 90%);

    max-height: 650px;

    object-fit: contain;

    border-radius: 20px;

    box-shadow:
        0 30px 80px rgba(7, 23, 34, 0.12);
}


.bottle-tag {
    position: absolute;

    right: 5%;
    bottom: 12%;

    z-index: 5;

    background: white;

    padding: 16px 22px;

    border-radius: 14px;

    box-shadow: 0 20px 50px rgba(7, 23, 34, 0.14);

    font-size: 11px;

    letter-spacing: 2px;

    font-weight: 800;

    color: var(--muted);
}

.bottle-tag span,
.image-badge span {
    display: inline-block;

    width: 8px;
    height: 8px;

    background: var(--green);

    border-radius: 50%;

    margin-right: 8px;
}


/* =====================================================
   GENERAL SECTION
   ===================================================== */

.section {
    padding: 130px 5%;
}

.section > *,
.section-heading,
.about-grid,
.why-container,
.contact-grid {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}


/* =====================================================
   ABOUT
   ===================================================== */

.about {
    background: white;
}

.about-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;
}

.about h2,
.section-heading h2,
.why h2,
.contact h2 {
    font-size: clamp(48px, 5vw, 80px);

    line-height: 0.98;

    letter-spacing: -4px;
}

.about h2 em,
.section-heading h2 em,
.why h2 em,
.contact h2 em {
    color: var(--blue);

    font-family: Georgia, serif;

    font-weight: 400;
}

.about-grid p {
    color: var(--muted);

    line-height: 1.8;

    font-size: 17px;

    margin-bottom: 22px;
}

.about-grid .large-text {
    font-size: 25px;

    color: var(--text);

    line-height: 1.55;
}


/* =====================================================
   BOTTLES
   ===================================================== */

.bottles {
    background: #f5fbfd;
}

.section-heading {
    display: flex;

    align-items: end;

    justify-content: space-between;

    gap: 40px;

    margin-bottom: 60px;
}

.section-heading > p {
    max-width: 370px;

    color: var(--muted);

    line-height: 1.7;
}


/* BOTTLE SHOWCASE */

.bottle-showcase {
    max-width: 1400px;

    margin: auto;

    background: white;

    border: 1px solid var(--line);

    border-radius: 35px;

    padding: 20px;

    display: grid;

    grid-template-columns: 1.2fr 0.8fr;

    gap: 50px;

    box-shadow: 0 30px 80px rgba(7, 23, 34, 0.06);
}


.bottle-image-wrap {
    position: relative;

    overflow: hidden;

    border-radius: 25px;

    background: #202020;

    min-height: 650px;
}

.bottle-image-wrap img {
    width: 100%;
    height: 100%;

    min-height: 650px;

    object-fit: cover;
}


.image-badge {
    position: absolute;

    left: 25px;
    bottom: 25px;

    background: white;

    padding: 15px 20px;

    border-radius: 50px;

    font-size: 11px;

    letter-spacing: 2px;

    font-weight: 900;

    color: var(--muted);
}


/* BOTTLE INFO */

.bottle-info {
    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 40px;
}

.bottle-info .number {
    color: var(--blue);

    font-size: 14px;

    font-weight: 900;

    letter-spacing: 3px;
}

.bottle-info h3 {
    font-size: 55px;

    letter-spacing: -3px;

    margin: 15px 0 20px;
}

.bottle-info > p:not(.number) {
    color: var(--muted);

    font-size: 17px;

    line-height: 1.7;
}

.bottle-features {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;

    margin: 35px 0;
}

.bottle-features span {
    padding: 14px;

    background: var(--blue-light);

    border-radius: 10px;

    font-size: 13px;

    font-weight: 700;
}

.outline-btn {
    width: fit-content;

    border: 1px solid var(--text);

    color: var(--text);
}

.outline-btn:hover {
    background: var(--text);

    color: white;
}


/* SIZE CARDS */

.size-grid {
    max-width: 1400px;

    margin: 30px auto 0;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.size-card {
    background: white;

    border: 1px solid var(--line);

    border-radius: 25px;

    padding: 35px;

    transition: 0.3s;
}

.size-card:hover {
    transform: translateY(-7px);

    box-shadow: 0 25px 50px rgba(7, 23, 34, 0.08);
}

.size-card.featured {
    background: var(--dark);

    color: white;
}

.size-card > span {
    color: var(--blue);

    font-weight: 900;
}

.size-card h3 {
    font-size: 38px;

    margin: 35px 0 15px;
}

.size-card p {
    color: var(--muted);

    line-height: 1.6;
}

.size-card.featured p {
    color: #a7bbc5;
}


/* =====================================================
   SERVICES
   ===================================================== */

.services {
    background: white;
}

.services-grid {
    max-width: 1400px;

    margin: auto;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}

.service-card {
    min-height: 370px;

    border: 1px solid var(--line);

    border-radius: 25px;

    padding: 30px;

    position: relative;

    transition: 0.3s;
}

.service-card:hover {
    background: var(--dark);

    color: white;

    transform: translateY(-8px);
}

.service-number {
    color: var(--blue);

    font-weight: 900;

    letter-spacing: 2px;
}

.service-card h3 {
    font-size: 28px;

    margin: 70px 0 18px;

    letter-spacing: -1px;
}

.service-card p {
    color: var(--muted);

    line-height: 1.7;
}

.service-card:hover p {
    color: #a8bac3;
}

.service-arrow {
    position: absolute;

    right: 28px;
    bottom: 25px;

    font-size: 25px;

    color: var(--blue);
}


/* =====================================================
   WHY
   ===================================================== */

.why {
    background: var(--dark);

    color: white;
}

.why-container {
    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    gap: 100px;
}

.why h2 {
    color: white;
}

.why-list {
    border-top: 1px solid #28414c;
}

.why-item {
    display: grid;

    grid-template-columns: 70px 1fr;

    gap: 25px;

    padding: 32px 0;

    border-bottom: 1px solid #28414c;
}

.why-item > span {
    color: var(--blue);

    font-weight: 900;
}

.why-item h3 {
    font-size: 24px;

    margin-bottom: 10px;
}

.why-item p {
    color: #a9bbc4;

    line-height: 1.7;
}


/* =====================================================
   REVIEWS
   ===================================================== */

.reviews {
    background: #f5fbfd;
}

.review-grid {
    max-width: 1400px;

    margin: auto;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.review-card {
    background: white;

    border: 1px solid var(--line);

    border-radius: 25px;

    padding: 35px;

    transition: 0.3s;
}

.review-card:hover {
    transform: translateY(-7px);

    box-shadow: 0 25px 50px rgba(7, 23, 34, 0.08);
}

.stars {
    color: #f3b400;

    letter-spacing: 3px;

    margin-bottom: 25px;
}

.review-card > p {
    color: #425560;

    font-size: 16px;

    line-height: 1.8;

    min-height: 145px;
}

.review-person {
    display: flex;

    align-items: center;

    gap: 14px;

    margin-top: 25px;

    padding-top: 20px;

    border-top: 1px solid var(--line);
}

.avatar {
    width: 45px;
    height: 45px;

    border-radius: 50%;

    background: var(--blue-light);

    color: var(--blue);

    display: grid;

    place-items: center;

    font-weight: 900;
}

.review-person strong {
    display: block;

    margin-bottom: 4px;
}

.review-person span {
    color: var(--muted);

    font-size: 12px;
}


/* =====================================================
   CTA
   ===================================================== */

.cta {
    background: var(--blue);

    color: white;

    padding: 130px 5%;
}

.cta-inner {
    max-width: 1100px;

    margin: auto;

    text-align: center;
}

.cta .section-label {
    color: white;
}

.cta h2 {
    font-size: clamp(50px, 7vw, 100px);

    line-height: 0.95;

    letter-spacing: -5px;

    margin-bottom: 30px;
}

.cta h2 em {
    font-family: Georgia, serif;

    font-weight: 400;
}

.cta p:not(.section-label) {
    max-width: 650px;

    margin: auto auto 35px;

    line-height: 1.7;

    font-size: 17px;

    opacity: 0.9;
}

.cta-button {
    background: white;

    color: var(--blue);

    min-width: 220px;
}

.cta-button:hover {
    transform: translateY(-4px);

    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}


/* =====================================================
   CONTACT
   ===================================================== */

.contact {
    background: white;
}

.contact-grid {
    display: grid;

    grid-template-columns: 1fr 0.8fr;

    gap: 100px;

    align-items: center;
}

.contact h2 {
    margin-bottom: 30px;
}

.contact > .contact-grid > div:first-child > p {
    color: var(--muted);

    font-size: 18px;

    line-height: 1.8;

    max-width: 600px;
}

.contact-box {
    border: 1px solid var(--line);

    border-radius: 25px;

    padding: 35px;

    background: #f7fbfd;
}

.contact-row {
    display: flex;

    flex-direction: column;

    gap: 8px;

    padding: 20px 0;

    border-bottom: 1px solid var(--line);
}

.contact-row span {
    color: var(--muted);

    font-size: 12px;

    text-transform: uppercase;

    letter-spacing: 2px;
}

.contact-row strong {
    font-size: 17px;
}

.contact-button {
    display: flex;

    justify-content: center;
    align-items: center;

    background: var(--green);

    color: white;

    min-height: 58px;

    border-radius: 12px;

    font-weight: 900;

    margin-top: 25px;

    transition: 0.3s;
}

.contact-button:hover {
    transform: translateY(-3px);

    box-shadow: 0 15px 30px rgba(32, 201, 107, 0.25);
}


/* =====================================================
   FOOTER
   ===================================================== */

footer {
    background: var(--dark);

    color: white;

    padding: 70px 5%;
}

.footer-container {
    max-width: 1400px;

    margin: auto;
}

.footer-logo {
    width: 190px;

    height: 75px;

    object-fit: contain;

    background: white;

    border-radius: 10px;

    padding: 5px;

    margin-bottom: 25px;
}

.footer-container > p {
    color: #a9bbc4;

    margin-bottom: 30px;
}

.footer-line {
    height: 1px;

    background: #28414c;

    margin-bottom: 25px;
}

.footer-bottom {
    display: flex;

    justify-content: space-between;

    gap: 20px;

    color: #8da2ad;

    font-size: 13px;
}


/* =====================================================
   FLOATING WHATSAPP
   ===================================================== */

.floating-wa {
    position: fixed;

    right: 25px;
    bottom: 25px;

    width: 68px;
    height: 68px;

    background: var(--green);

    color: white;

    border-radius: 50%;

    display: grid;

    place-items: center;

    font-size: 18px;

    font-weight: 900;

    z-index: 999;

    box-shadow:
        0 15px 35px rgba(32, 201, 107, 0.3);

    transition: 0.3s;
}

.floating-wa:hover {
    transform: scale(1.08);
}


/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 1100px) {

    .desktop-nav,
    .nav-button {
        display: none;
    }

    .menu-btn {
        display: block;
    }

    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding-top: 70px;
    }

    .hero-product {
        min-height: 600px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bottle-showcase {
        grid-template-columns: 1fr;
    }

    .why-container {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 750px) {

    .nav-container {
        min-height: 78px;
    }

    .logo {
        width: 170px;
        height: 65px;
    }

    .hero {
        padding-top: 78px;
    }

    .hero-container {
        width: 90%;
    }

    .hero h1 {
        font-size: 58px;

        letter-spacing: -3px;
    }

    .hero-text {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;

        align-items: stretch;
    }

    .hero-buttons a {
        width: 100%;
    }

    .hero-points {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .hero-product {
        min-height: 500px;
    }

    .hero-bottle {
        width: 90%;
    }

    .bottle-tag {
        right: 2%;
        bottom: 8%;
    }

    .section {
        padding: 90px 5%;
    }

    .about-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .section-heading {
        flex-direction: column;

        align-items: flex-start;
    }

    .bottle-image-wrap,
    .bottle-image-wrap img {
        min-height: 500px;
    }

    .bottle-info {
        padding: 20px;
    }

    .bottle-info h3 {
        font-size: 42px;
    }

    .bottle-features {
        grid-template-columns: 1fr;
    }

    .size-grid,
    .review-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .why-container {
        gap: 50px;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .cta h2 {
        letter-spacing: -3px;
    }
}


@media (max-width: 480px) {

    .logo {
        width: 155px;
    }

    .hero h1 {
        font-size: 47px;
    }

    .hero-product {
        min-height: 430px;
    }

    .bottle-image-wrap,
    .bottle-image-wrap img {
        min-height: 430px;
    }

    .review-card > p {
        min-height: auto;
    }

    .floating-wa {
        width: 60px;
        height: 60px;

        right: 18px;
        bottom: 18px;
    }
}