@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@600;700;800&display=swap');

:root {
    --primary-tan: #1E90FF;
    --dark-text: #0A1F44;
    --light-bg: #E6F0FA;
}

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

/* BODY */
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    color: var(--dark-text);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -0.1px;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    background-color: #fff;
}

/* GLOBAL TYPOGRAPHY */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    letter-spacing: -1px;
    line-height: 1.15;
    font-weight: 700;
    color: #000000;
}

p,
li,
a,
button,
input,
textarea,
select,
label {
    font-family: 'Inter', sans-serif;
}

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

/* =========================================
   NAVIGATION
========================================= */

.main-header {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 54px;
}

/* MOBILE MENU TOGGLE */
.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: #222;
    border-radius: 20px;
}

.menu-close {
    display: none;
    font-size: 2rem;
    background: none;
    border: none;
    align-self: flex-end;
    cursor: pointer;
}

/* MOBILE NAV */
.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: white;
    display: flex;
    flex-direction: column;
    padding: 40px;
    transition: 0.4s ease;
}

.nav-menu.active {
    right: 0;
}

.nav-menu ul {
    list-style: none;
    margin-top: 60px;
}

.nav-menu ul li {
    margin-bottom: 25px;
}

.nav-menu ul li a {
    text-decoration: none;
    font-size: 1.05rem;
    color: #222;
    font-weight: 600;
    letter-spacing: 0.2px;
    transition: color 0.3s ease;
}

.nav-menu ul li a:hover {
    color: var(--primary-tan);
}

.nav-menu ul li a.active {
    color: var(--primary-tan);
}

/* CALL BUTTONS */
.btn-call-desktop {
    display: none;
    background: var(--primary-tan);
    color: white;
    padding: 13px 28px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-call-desktop:hover {
    transform: translateY(-2px);
}

.btn-call-mobile {
    background: var(--primary-tan);
    color: white;
    padding: 15px;
    text-align: center;
    text-decoration: none;
    margin-top: 25px;
    border-radius: 4px;
    font-weight: 600;
}

/* =========================================
   HERO SECTION
========================================= */

.hero {
    text-align: center;
    padding: 100px 20px 80px;
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    margin-bottom: 24px;
    font-weight: 800;
    max-width: 900px;
    margin-inline: auto;
}

.hero p {
    font-size: 1.15rem;
    max-width: 850px;
    margin: auto;
    color: #555;
}

.shipping-options {
    list-style: disc;
    text-align: left;
    max-width: 700px;
    margin: 35px auto 0;
    padding-left: 20px;
}

.shipping-options li {
    margin-bottom: 14px;
    color: #444;
}

/* =========================================
   SERVICES GRID
========================================= */

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
    margin-top: 50px;
}

.service-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-6px);
}

.service-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 6px;
}

.service-item hr {
    width: 50px;
    margin: 18px auto;
    border: 1px solid var(--primary-tan);
}

.service-item p {
    font-size: 1.05rem;
    font-weight: 600;
    color: #333;
}

/* =========================================
   BUTTONS
========================================= */

.btn-read-more {
    background: var(--primary-tan);
    color: white;
    border: none;
    padding: 16px 42px;
    cursor: pointer;
    margin: 20px 0;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-read-more:hover {
    transform: translateY(-2px);
    opacity: 0.95;
}

.center-btn {
    text-align: center;
}

/* =========================================
   HOW WE WORK
========================================= */

.how-it-works {
    display: flex;
    flex-direction: column;
    background: var(--primary-tan);
    color: white;
    margin-top: 60px;
}

.how-content {
    padding: 60px 30px;
}

.how-content h2 {
    color: white;
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -2px;
}

.steps-grid {
    margin-top: 40px;
}

.step {
    margin-bottom: 40px;
}

.step-icon {
    font-size: 2rem;
}

.step h3 {
    color: white;
    margin-top: 15px;
    font-size: 1.5rem;
}

.step p {
    opacity: 0.95;
    margin-top: 12px;
}

.step hr {
    width: 40px;
    margin: 15px 0;
    border: 1px solid white;
}

.how-image img {
    width: 100%;
    display: block;
    height: 100%;
    object-fit: cover;
}

/* =========================================
   STATS SECTION
========================================= */

.stats {
    padding: 90px 20px;
    text-align: center;
    color: white;
    background-size: cover;
    background-position: center;
}

.stats h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stats h2 {
    color: white;
    font-size: clamp(2.2rem, 4vw, 4rem);
    max-width: 850px;
    margin: auto;
}

.stats p {
    max-width: 700px;
    margin: 25px auto 0;
    font-size: 1.05rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 50px;
}

.stats-grid div {
    background: rgba(255,255,255,0.12);
    padding: 30px 20px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

.stats-grid span {
    font-size: 2.4rem;
    font-weight: 800;
    display: block;
    margin-bottom: 10px;
}

/* =========================================
   FOOTER
========================================= */

.main-footer {
    padding: 70px 20px 40px;
}

.footer-logo img {
    width: 130px;
    margin-bottom: 40px;
}

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

.footer-col h4 {
    margin-bottom: 16px;
    font-size: 1.4rem;
}

.footer-col p {
    margin-bottom: 10px;
    color: #555;
}

.footer-bottom {
    border-top: 1px solid #eee;
    margin-top: 50px;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    color: #666;
}

.footer-bottom a {
    color: var(--primary-tan);
    text-decoration: none;
    font-weight: 600;
}

/* =========================================
   FORM TYPOGRAPHY
========================================= */

input,
textarea,
select {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
}

label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #444;
}

/* =========================================
   PREMIUM HEADING OVERRIDES
========================================= */

.about-hero-text h1,
.services-header h2,
.contact-header h1,
.pricing-header h1,
.forbidden-content h1,
.declaration-sidebar h1,
.how-content h2 {
    font-weight: 800;
    letter-spacing: -2px;
}

/* =========================================
   DESKTOP BREAKPOINT
========================================= */

@media (min-width: 768px) {

    .menu-toggle,
    .menu-close {
        display: none;
    }

    .nav-menu {
        position: static;
        height: auto;
        width: auto;
        flex-direction: row;
        background: none;
        padding: 0;
    }

    .nav-menu ul {
        display: flex;
        margin: 0;
        gap: 30px;
        align-items: center;
    }

    .btn-call-desktop {
        display: block;
    }

    .btn-call-mobile {
        display: none;
    }

    .services-grid {
        grid-template-columns: repeat(5, 1fr);
    }

    .how-it-works {
        flex-direction: row;
    }

    .how-content,
    .how-image {
        flex: 1;
    }

    .steps-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ================================
   FEATURE GRID (GLASSMORPHISM)
================================ */

.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 60px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

/* CARD BASE */
.feature-card {
    position: relative;
    padding: 28px;
    border-radius: 18px;

    background: rgba(18, 26, 42, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.35);

    transition: all 0.35s ease;
    overflow: hidden;
}

/* TEXT */
.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.feature-card p {
    color: #aab4c0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* STRIPE-STYLE GLOW LAYER */
.feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        600px circle at var(--x, 50%) var(--y, 50%),
        rgba(108, 92, 231, 0.25),
        transparent 40%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

/* HOVER EFFECT (LIFT + GLOW) */
.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(108, 92, 231, 0.4);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(108, 92, 231, 0.15);
}

.feature-card:hover::before {
    opacity: 1;
}

/* DESKTOP GRID */
@media (min-width: 768px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .feature-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* OPTIONAL: subtle animated background pulse */
@keyframes softGlow {
    0% { filter: brightness(1); }
    50% { filter: brightness(1.05); }
    100% { filter: brightness(1); }
}

.feature-card {
    animation: softGlow 6s ease-in-out infinite;
}