/* =========================================================
   DENTSCON — PREMIUM NAVY / BABY BLUE THEME
   Main Website Global Styles
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');

/* =========================================================
   ROOT COLORS
   ========================================================= */

:root {
    --navy: #081b33;
    --navy-2: #0c2746;
    --navy-3: #123657;
    --navy-dark: #061426;

    --blue: #8fd3ff;
    --blue-2: #69c4f5;
    --blue-dark: #278dcc;

    --white: #ffffff;
    --off-white: #f7fbff;

    --text-dark: #14263a;
    --text: #eef8ff;
    --muted: #9fb1c4;
    --muted-dark: #64778b;

    --border: rgba(143, 211, 255, 0.20);
    --border-light: rgba(8, 27, 51, 0.10);

    --card: rgba(17, 48, 79, 0.82);

    --container: 1180px;

    --shadow: 0 18px 45px rgba(2, 15, 30, 0.20);
    --shadow-blue: 0 12px 35px rgba(105, 196, 245, 0.18);
}


/* =========================================================
   RESET
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: var(--navy-dark);
    overflow-x: hidden;
    line-height: 1.5;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
textarea,
select {
    font-family: inherit;
}

button {
    cursor: pointer;
}

.container {
    width: calc(100% - 40px);
    max-width: var(--container);
    margin: 0 auto;
}


/* =========================================================
   NAVBAR — WHITE LIKE SCREENSHOT
   ========================================================= */

.navbar {
    height: 82px;
    background: #ffffff;
    border-bottom: 1px solid rgba(8, 27, 51, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 18px rgba(5, 20, 40, 0.05);
}

.nav-wrapper {
    height: 100%;
    display: flex;
    align-items: center;
}


/* LOGO */

.logo {
    font-size: 25px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--navy);
    white-space: nowrap;
}

.logo span {
    color: var(--blue-dark);
}


/* NAV LINKS */

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-left: auto;
    margin-right: 30px;
}

.nav-links a {
    position: relative;
    font-size: 14px;
    font-weight: 600;
    color: #27384a;
    transition: 0.25s ease;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: var(--blue-dark);
    transition: 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--blue-dark);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}


/* NAV ACTIONS */

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}


/* LOGIN BUTTON */

.login-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 11px 17px;

    border: 1px solid rgba(8, 27, 51, 0.10);
    background: #ffffff;

    color: var(--navy);

    border-radius: 9px;

    font-size: 13px;
    font-weight: 700;

    transition: 0.25s ease;
}

.login-btn:hover {
    background: #f0f8ff;
    border-color: var(--blue);
    color: var(--blue-dark);
}


/* CART BUTTON */

.cart-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 12px 18px;

    background: var(--navy);
    color: #ffffff;

    border-radius: 9px;

    font-size: 13px;
    font-weight: 700;

    transition: 0.25s ease;
    box-shadow: 0 8px 20px rgba(8, 27, 51, 0.16);
}

.cart-btn:hover {
    background: var(--navy-2);
    transform: translateY(-1px);
}

#cart-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 20px;
    height: 20px;

    background: var(--blue);
    color: var(--navy);

    border-radius: 50%;

    padding: 2px 6px;
    margin-left: 5px;

    font-size: 11px;
    font-weight: 800;
}


/* MOBILE MENU */

.mobile-menu-btn {
    display: none;

    margin-left: auto;

    font-size: 25px;

    background: transparent;
    border: none;

    color: var(--navy);
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
    position: relative;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 80% 45%,
            rgba(105, 196, 245, 0.12),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #061426 0%,
            #081b33 48%,
            #0c2746 100%
        );

    color: #ffffff;
}


/* subtle background glow */

.hero::before {
    content: "";
    position: absolute;

    width: 500px;
    height: 500px;

    right: -200px;
    top: -180px;

    background: rgba(105, 196, 245, 0.08);

    border-radius: 50%;

    filter: blur(10px);

    pointer-events: none;
}


/* HERO WRAPPER */

.hero-wrapper {
    min-height: 600px;

    display: grid;
    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 50px;

    position: relative;
    z-index: 2;

    padding: 65px 0;
}


/* HERO CONTENT */

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-label {
    color: var(--blue);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 3px;

    margin-bottom: 18px;
}


/* small pill */

.hero-label::before {
    content: "•";

    display: inline-block;

    margin-right: 8px;

    color: var(--blue);
}


/* HERO HEADING */

.hero h1 {
    font-family: 'Playfair Display', serif;

    font-size: clamp(48px, 5vw, 68px);

    line-height: 1.04;

    letter-spacing: -1px;

    margin-bottom: 22px;

    color: #ffffff;
}

.hero h1 span {
    display: block;

    color: var(--blue);
}


/* HERO DESCRIPTION */

.hero-text {
    max-width: 550px;

    color: #a9bbcd;

    font-size: 15px;

    line-height: 1.75;

    margin-bottom: 28px;
}


/* HERO BUTTONS */

.hero-buttons {
    display: flex;
    align-items: center;

    gap: 12px;

    flex-wrap: wrap;
}


/* GENERAL BUTTON */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 13px 21px;

    border-radius: 9px;

    font-size: 14px;
    font-weight: 700;

    transition: 0.25s ease;
}


/* PRIMARY */

.btn-primary {
    background: var(--blue);
    color: var(--navy);

    box-shadow: var(--shadow-blue);
}

.btn-primary:hover {
    background: #b3e2ff;
    transform: translateY(-2px);
}


/* OUTLINE */

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.25);

    color: #ffffff;

    background: rgba(255, 255, 255, 0.025);
}

.btn-outline:hover {
    border-color: var(--blue);
    color: var(--blue);

    background: rgba(143, 211, 255, 0.06);
}


/* HERO TRUST */

.hero-trust {
    display: flex;

    gap: 35px;

    margin-top: 42px;
    padding-top: 22px;

    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-trust strong {
    display: block;

    font-size: 14px;

    color: #ffffff;
}

.hero-trust span {
    display: block;

    font-size: 11px;

    color: #8ea4b9;

    margin-top: 3px;
}


/* =========================================================
   HERO VISUAL
   ========================================================= */

.hero-visual {
    height: 450px;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 2;
}


/* MAIN CARD */

.hero-card {
    width: 320px;
    height: 400px;

    padding: 35px;

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.10),
            rgba(255,255,255,0.035)
        );

    border: 1px solid rgba(143, 211, 255, 0.16);

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    position: relative;

    overflow: hidden;

    box-shadow:
        0 30px 70px rgba(0,0,0,0.30),
        inset 0 1px 0 rgba(255,255,255,0.06);
}


/* card glow */

.hero-card::before {
    content: "";

    position: absolute;

    width: 240px;
    height: 240px;

    top: -100px;
    right: -80px;

    border-radius: 50%;

    background: rgba(143, 211, 255, 0.08);

    filter: blur(5px);
}


/* MEDICAL CROSS */

.medical-cross {
    position: absolute;

    top: 25px;
    right: 25px;

    width: 60px;
    height: 60px;

    border-radius: 50%;

    background: var(--blue);

    color: var(--navy);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 34px;
    font-weight: 700;

    box-shadow:
        0 10px 30px rgba(105, 196, 245, 0.25);
}


/* HERO CARD TEXT */

.hero-card h3 {
    font-family: 'Playfair Display', serif;

    font-size: 38px;

    line-height: 1.08;

    margin: 15px 0;

    color: #ffffff;
}

.hero-card span {
    color: #9eb3c7;

    font-size: 12px;
}


/* FLOATING CARDS */

.floating-card {
    position: absolute;

    background: #ffffff;

    border: 1px solid rgba(8, 27, 51, 0.08);

    color: var(--navy);

    padding: 11px 15px;

    border-radius: 9px;

    font-size: 12px;
    font-weight: 800;

    box-shadow: 0 15px 30px rgba(0,0,0,0.15);

    z-index: 4;
}

.floating-card-one {
    left: -10px;
    top: 75px;
}

.floating-card-two {
    right: -10px;
    bottom: 65px;
}


/* =========================================================
   TECH GRID / BACKGROUND
   ========================================================= */

.hero-modern-live {
    position: absolute;
    inset: 0;

    pointer-events: none;

    z-index: 0;
}

.dc-tech-grid {
    position: absolute;
    inset: 0;

    opacity: 0.045;

    background-image:
        linear-gradient(
            rgba(143, 211, 255, 0.5) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(143, 211, 255, 0.5) 1px,
            transparent 1px
        );

    background-size: 45px 45px;
}


/* =========================================================
   GENERAL DARK SECTIONS
   ========================================================= */

.intro-section {
    padding: 85px 0;

    background:
        linear-gradient(
            180deg,
            #07172b,
            #081b33
        );
}

.why-section {
    padding: 85px 0;

    background: #061426;
}

.products-section {
    padding: 85px 0;

    background:
        linear-gradient(
            180deg,
            #07172b,
            #081b33
        );
}


/* =========================================================
   INTRO
   ========================================================= */

.intro-wrapper {
    display: grid;

    grid-template-columns: 1fr 0.9fr;

    gap: 60px;

    align-items: center;
}

.intro-section h2,
.why-section h2,
.section-heading h2,
.contact-section h2 {
    font-family: 'Playfair Display', serif;

    color: #ffffff;

    font-size: 40px;

    line-height: 1.18;

    letter-spacing: -0.5px;
}

.intro-wrapper > p,
.feature-card p {
    color: var(--muted);

    line-height: 1.75;

    font-size: 15px;
}


/* =========================================================
   SECTION LABEL
   ========================================================= */

.section-label {
    color: var(--blue);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 3px;

    margin-bottom: 12px;

    text-transform: uppercase;
}


/* =========================================================
   SECTION HEADING
   ========================================================= */

.section-heading {
    text-align: center;

    margin-bottom: 45px;
}


/* =========================================================
   FEATURE CARDS
   ========================================================= */

.feature-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.feature-card {
    padding: 30px;

    background:
        linear-gradient(
            145deg,
            rgba(18, 54, 87, 0.90),
            rgba(9, 31, 53, 0.90)
        );

    border: 1px solid var(--border);

    border-radius: 14px;

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.feature-card:hover {
    transform: translateY(-6px);

    border-color: rgba(143, 211, 255, 0.55);

    box-shadow:
        0 20px 45px rgba(0,0,0,0.20),
        0 0 25px rgba(105,196,245,0.06);
}

.feature-icon {
    width: 44px;
    height: 44px;

    background: rgba(143, 211, 255, 0.10);

    color: var(--blue);

    border: 1px solid var(--border);

    border-radius: 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 17px;

    font-size: 13px;
    font-weight: 800;
}

.feature-card h3 {
    color: #ffffff;

    margin-bottom: 9px;

    font-size: 18px;
}


/* =========================================================
   CONTACT
   ========================================================= */

.contact-section {
    padding: 90px 0;

    background:
        linear-gradient(
            180deg,
            #081b33,
            #061426
        );
}


/* CONTACT CONTAINER */

.contact-container {
    background:
        linear-gradient(
            145deg,
            rgba(17, 48, 79, 0.95),
            rgba(8, 27, 51, 0.95)
        );

    border: 1px solid var(--border);

    padding: 40px;

    border-radius: 16px;

    box-shadow: var(--shadow);
}


/* =========================================================
   FORMS
   IMPORTANT:
   We do NOT style every form globally.
   ========================================================= */

.contact-form,
.message-box {
    background:
        linear-gradient(
            145deg,
            rgba(17, 48, 79, 0.95),
            rgba(8, 27, 51, 0.95)
        );

    border: 1px solid var(--border);

    padding: 40px;

    border-radius: 16px;
}


/* FORM LABELS */

label {
    color: #dcecf8;
    font-size: 13px;
    font-weight: 600;
}


/* INPUTS */

input,
textarea,
select {
    width: 100%;

    background: rgba(4, 18, 34, 0.75) !important;

    border: 1px solid rgba(143, 211, 255, 0.16) !important;

    color: #ffffff !important;

    border-radius: 8px;

    padding: 12px 14px;

    outline: none;

    transition: 0.2s ease;
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--blue) !important;

    box-shadow:
        0 0 0 3px rgba(143, 211, 255, 0.08);
}

input::placeholder,
textarea::placeholder {
    color: #7f96aa;
}


/* =========================================================
   LOGIN REQUIRED BOX
   ========================================================= */

.login-required-box {
    background:
        linear-gradient(
            145deg,
            rgba(17, 48, 79, 0.95),
            rgba(8, 27, 51, 0.95)
        );

    border: 1px solid var(--border);

    border-radius: 16px;

    padding: 45px 30px;

    text-align: center;

    box-shadow: var(--shadow);
}

.login-required-icon {
    width: 60px;
    height: 60px;

    margin: 0 auto 18px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(143, 211, 255, 0.10);

    color: var(--blue);

    font-size: 25px;
}

.login-required-box h3 {
    color: #ffffff;

    margin-bottom: 8px;

    font-size: 22px;
}

.login-required-box p {
    color: var(--muted);

    font-size: 14px;

    margin-bottom: 22px;
}

.login-required-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 12px 20px;

    border-radius: 8px;

    background: var(--blue);

    color: var(--navy);

    font-size: 13px;

    font-weight: 800;

    transition: 0.25s ease;
}

.login-required-btn:hover {
    background: #b3e2ff;

    transform: translateY(-2px);
}


/* =========================================================
   SHOP / PRODUCT CARDS
   ========================================================= */

.product-card {
    background: #ffffff;

    border: 1px solid rgba(8, 27, 51, 0.08);

    border-radius: 14px;

    overflow: hidden;

    box-shadow:
        0 10px 30px rgba(8, 27, 51, 0.08);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.product-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 18px 40px rgba(8, 27, 51, 0.14);
}


/* PRODUCT IMAGE AREA */

.product-image {
    background: #f5faff;

    overflow: hidden;
}

.product-image img {
    width: 100%;

    object-fit: contain;

    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.035);
}


/* PRODUCT INFO */

.product-info {
    padding: 20px;
}

.product-info h3,
.product-card h3 {
    color: var(--navy);

    font-size: 17px;

    line-height: 1.35;

    margin-bottom: 8px;
}

.product-info p,
.product-card p {
    color: var(--muted-dark);

    font-size: 13px;

    line-height: 1.6;
}


/* PRODUCT PRICE */

.product-price,
.price {
    color: var(--blue-dark);

    font-size: 20px;

    font-weight: 800;
}


/* =========================================================
   GENERAL LIGHT CARD
   ========================================================= */

.white-card {
    background: #ffffff;

    color: var(--text-dark);

    border-radius: 14px;

    border: 1px solid rgba(8, 27, 51, 0.08);

    box-shadow:
        0 12px 35px rgba(8, 27, 51, 0.08);
}


/* =========================================================
   TABLE
   ========================================================= */

table {
    width: 100%;

    border-collapse: collapse;
}

th {
    background: var(--navy);

    color: #ffffff;

    font-size: 13px;

    padding: 13px;

    text-align: left;
}

td {
    padding: 13px;

    border-bottom: 1px solid rgba(8, 27, 51, 0.08);

    color: var(--text-dark);

    font-size: 13px;
}


/* =========================================================
   FOOTER
   ========================================================= */

footer {
    background:
        linear-gradient(
            180deg,
            #061426,
            #040b16
        );

    color: #ffffff;

    padding-top: 55px;

    border-top: 1px solid var(--border);
}

.footer-top {
    display: grid;

    grid-template-columns: 1.5fr 1fr 1fr;

    gap: 40px;

    padding-bottom: 45px;
}

.footer-logo {
    font-size: 22px;

    font-weight: 800;

    letter-spacing: 2px;

    color: #ffffff;
}

.footer-logo span {
    color: var(--blue);
}

.footer-top p {
    max-width: 320px;

    color: var(--muted);

    margin-top: 12px;

    font-size: 13px;

    line-height: 1.7;
}

.footer-top h4 {
    color: var(--blue);

    margin-bottom: 17px;

    font-size: 15px;
}

.footer-top a:not(.footer-logo) {
    display: block;

    color: var(--muted);

    font-size: 13px;

    margin-bottom: 9px;

    transition: 0.2s ease;
}

.footer-top a:not(.footer-logo):hover {
    color: var(--blue);
    transform: translateX(2px);
}

.footer-bottom {
    padding: 17px 0;

    border-top: 1px solid rgba(143, 211, 255, 0.08);
}

.footer-bottom p {
    color: #71879b;

    font-size: 12px;
}


/* =========================================================
   SCROLLBAR
   ========================================================= */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #061426;
}

::-webkit-scrollbar-thumb {
    background: #234663;

    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--blue-dark);
}


/* =========================================================
   SELECTION
   ========================================================= */

::selection {
    background: var(--blue);

    color: var(--navy);
}


/* =========================================================
   RESPONSIVE — TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .nav-links {
        gap: 20px;
        margin-right: 18px;
    }

    .hero-wrapper {
        gap: 30px;
    }

    .hero h1 {
        font-size: 52px;
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================================
   RESPONSIVE — MOBILE
   ========================================================= */

@media (max-width: 900px) {

    .navbar {
        height: 72px;
    }

    .nav-links,
    .nav-actions {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }


    .hero-wrapper {
        grid-template-columns: 1fr;

        min-height: auto;

        padding: 70px 0;
    }

    .hero-content {
        text-align: center;
    }

    .hero-text {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }


    .hero-visual {
        height: 430px;
    }


    .intro-wrapper {
        grid-template-columns: 1fr;

        gap: 35px;
    }


    .feature-grid {
        grid-template-columns: 1fr;
    }


    .footer-top {
        grid-template-columns: 1fr;

        gap: 30px;
    }


    .contact-container,
    .contact-form,
    .message-box {
        padding: 25px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .container {
        width: calc(100% - 28px);
    }

    .logo {
        font-size: 21px;
        letter-spacing: 1.5px;
    }


    .hero h1 {
        font-size: 43px;

        line-height: 1.08;
    }

    .hero-text {
        font-size: 14px;
    }


    .hero-trust {
        gap: 20px;
    }


    .hero-visual {
        height: 370px;
    }

    .hero-card {
        width: 270px;
        height: 340px;

        padding: 27px;
    }

    .hero-card h3 {
        font-size: 31px;
    }


    .medical-cross {
        width: 50px;
        height: 50px;

        top: 20px;
        right: 20px;

        font-size: 28px;
    }


    .floating-card-one {
        left: 0;
        top: 45px;
    }

    .floating-card-two {
        right: 0;
        bottom: 35px;
    }


    .intro-section h2,
    .why-section h2,
    .section-heading h2,
    .contact-section h2 {
        font-size: 32px;
    }


    .contact-container,
    .contact-form,
    .message-box {
        padding: 20px;
    }

}