/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

/* ===== RESET & GLOBAL ===== */
*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --navy: #0A2540;
    --navy-mid: #0d3060;
    --navy-light: #143d73;
    --red: #FF3B3B;
    --red-dark: #d92c2c;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.07);
    --glass-border: rgba(255, 255, 255, 0.13);
    --text-muted: rgba(255, 255, 255, 0.65);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--navy);
    color: var(--white);
    width: 100%;
    min-height: 100dvh;
    overflow-x: hidden;
}

/* scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--navy);
}

::-webkit-scrollbar-thumb {
    background: var(--red);
    border-radius: 10px;
}

/* floating shapes (unchanged) */
.bg-shapes {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.bg-shapes span {
    position: absolute;
    border-radius: 50%;
    background: -o-radial-gradient(circle, rgba(255, 59, 59, 0.15), transparent 70%);
    background: radial-gradient(circle, rgba(255, 59, 59, 0.15), transparent 70%);
    -webkit-animation: floatBlob 18s ease-in-out infinite;
    animation: floatBlob 18s ease-in-out infinite;
}

.bg-shapes span:nth-child(1) {
    width: 500px;
    height: 500px;
    top: -100px;
    left: -150px;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

.bg-shapes span:nth-child(2) {
    width: 350px;
    height: 350px;
    top: 50%;
    right: -100px;
    background: -o-radial-gradient(circle, rgba(10, 37, 64, 0.8), transparent 70%);
    background: radial-gradient(circle, rgba(10, 37, 64, 0.8), transparent 70%);
    -webkit-animation-delay: 4s;
    animation-delay: 4s;
}

.bg-shapes span:nth-child(3) {
    width: 250px;
    height: 250px;
    bottom: 80px;
    left: 30%;
    -webkit-animation-delay: 8s;
    animation-delay: 8s;
}

@-webkit-keyframes floatBlob {

    0%,
    100% {
        -webkit-transform: translate(0, 0) scale(1);
        transform: translate(0, 0) scale(1);
    }

    33% {
        -webkit-transform: translate(20px, -30px) scale(1.05);
        transform: translate(20px, -30px) scale(1.05);
    }

    66% {
        -webkit-transform: translate(-15px, 20px) scale(0.97);
        transform: translate(-15px, 20px) scale(0.97);
    }
}

@keyframes floatBlob {

    0%,
    100% {
        -webkit-transform: translate(0, 0) scale(1);
        transform: translate(0, 0) scale(1);
    }

    33% {
        -webkit-transform: translate(20px, -30px) scale(1.05);
        transform: translate(20px, -30px) scale(1.05);
    }

    66% {
        -webkit-transform: translate(-15px, 20px) scale(0.97);
        transform: translate(-15px, 20px) scale(0.97);
    }
}

/* ===== NAVBAR ===== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    background: rgba(10, 37, 64, 0.85);
    border-bottom: 1px solid var(--glass-border);
    height: 70px;
    padding: 0 5%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-transition: -webkit-box-shadow 0.3s;
    transition: -webkit-box-shadow 0.3s;
    -o-transition: box-shadow 0.3s;
    transition: box-shadow 0.3s;
    transition: box-shadow 0.3s, -webkit-box-shadow 0.3s;
    width: 100%;
}

nav.scrolled {
    -webkit-box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.nav-logo {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-decoration: none;
}

.nav-logo span:first-child {
    color: var(--white);
}

.nav-logo span:last-child {
    color: var(--red);
}

.nav-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.88rem;
    font-weight: 500;
    -webkit-transition: color 0.25s;
    -o-transition: color 0.25s;
    transition: color 0.25s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--red);
    border-radius: 2px;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: -webkit-transform 0.25s;
    transition: -webkit-transform 0.25s;
    -o-transition: transform 0.25s;
    transition: transform 0.25s;
    transition: transform 0.25s, -webkit-transform 0.25s;
}

.nav-links a:hover {
    color: var(--white);
}

.nav-links a:hover::after {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}

.nav-cta {
    background: var(--red);
    color: var(--white);
    border: none;
    padding: 9px 22px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    -webkit-transition: background 0.25s, -webkit-transform 0.2s, -webkit-box-shadow 0.25s;
    transition: background 0.25s, -webkit-transform 0.2s, -webkit-box-shadow 0.25s;
    -o-transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
    transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
    transition: background 0.25s, transform 0.2s, box-shadow 0.25s, -webkit-transform 0.2s, -webkit-box-shadow 0.25s;
    -webkit-box-shadow: 0 4px 20px rgba(255, 59, 59, 0.35);
    box-shadow: 0 4px 20px rgba(255, 59, 59, 0.35);
}

.nav-cta:hover {
    background: var(--red-dark);
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
    -webkit-box-shadow: 0 6px 24px rgba(255, 59, 59, 0.45);
    box-shadow: 0 6px 24px rgba(255, 59, 59, 0.45);
}

.hamburger {
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 2.5px;
    background: var(--white);
    border-radius: 3px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(10, 37, 64, 0.97);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    padding: 1.5rem 5% 2rem;
    z-index: 999;
    border-bottom: 1px solid var(--glass-border);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1.2rem;
}

.mobile-menu.open {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.mobile-menu a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    -webkit-transition: color 0.2s;
    -o-transition: color 0.2s;
    transition: color 0.2s;
}

.mobile-menu a:hover {
    color: var(--white);
}

/* ===== HERO ===== */
#hero {
    min-height: 100vh;
    padding: 90px 5% 70px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.hero-content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    max-width: 560px;
}

.hero-badge {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 7px 18px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    -webkit-animation: fadeUp 0.6s ease both;
    animation: fadeUp 0.6s ease both;
}

.hero-title {
    font-size: clamp(2.2rem, 6vw, 4.2rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 1.2rem;
    -webkit-animation: fadeUp 0.6s 0.1s ease both;
    animation: fadeUp 0.6s 0.1s ease both;
}

.hero-title .blue {
    color: var(--white);
}

.hero-title .red {
    color: var(--red);
}

.hero-title .shop {
    color: var(--text-muted);
    font-weight: 700;
    font-size: 0.6em;
    display: block;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 4px;
}

.hero-sub {
    font-size: clamp(0.9rem, 2vw, 1.05rem);
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 480px;
    margin-bottom: 2rem;
    -webkit-animation: fadeUp 0.6s 0.2s ease both;
    animation: fadeUp 0.6s 0.2s ease both;
}

.hero-sub strong {
    color: var(--white);
}

.hero-btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-animation: fadeUp 0.6s 0.3s ease both;
    animation: fadeUp 0.6s 0.3s ease both;
}

.btn-primary {
    background: -o-linear-gradient(315deg, var(--red), #ff6b6b);
    background: linear-gradient(135deg, var(--red), #ff6b6b);
    color: white;
    border: none;
    padding: 14px 34px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-box-shadow: 0 8px 30px rgba(255, 59, 59, 0.4);
    box-shadow: 0 8px 30px rgba(255, 59, 59, 0.4);
}

.btn-primary:hover {
    -webkit-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    transform: translateY(-3px);
    -webkit-box-shadow: 0 12px 40px rgba(255, 59, 59, 0.5);
    box-shadow: 0 12px 40px rgba(255, 59, 59, 0.5);
}

.btn-primary i {
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    -o-transition: transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
}

.btn-primary:hover i {
    -webkit-transform: translateX(4px);
    -ms-transform: translateX(4px);
    transform: translateX(4px);
}

.btn-ghost {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    color: white;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.13);
    -webkit-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    transform: translateY(-3px);
}

.hero-stats {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-animation: fadeUp 0.6s 0.45s ease both;
    animation: fadeUp 0.6s 0.45s ease both;
}

.stat {
    text-align: center;
}

.stat-num {
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1;
}

.stat-num span {
    color: var(--red);
}

.stat-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* hero visual */
.hero-visual {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    max-width: 480px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-animation: fadeUp 0.7s 0.4s ease both;
    animation: fadeUp 0.7s 0.4s ease both;
}

.circles-wrap {
    position: relative;
    width: 380px;
    height: 380px;
}

.circle-main {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: -o-linear-gradient(315deg, var(--navy-mid), var(--navy-light));
    background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
    border: 2px solid var(--glass-border);
    -webkit-box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-animation: floatMain 4s ease-in-out infinite;
    animation: floatMain 4s ease-in-out infinite;
}

.circle-main i {
    font-size: 7rem;
    color: rgba(255, 255, 255, 0.12);
}

.circle-float {
    position: absolute;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
}

.cf1 {
    width: 110px;
    height: 110px;
    top: 10px;
    right: 10px;
    background: -o-linear-gradient(315deg, rgba(255, 59, 59, 0.25), rgba(255, 59, 59, 0.1));
    background: linear-gradient(135deg, rgba(255, 59, 59, 0.25), rgba(255, 59, 59, 0.1));
    -webkit-animation: floatCircle 3.5s 0.5s infinite;
    animation: floatCircle 3.5s 0.5s infinite;
    font-size: 2.5rem;
}

.cf2 {
    width: 90px;
    height: 90px;
    bottom: 30px;
    left: 0px;
    background: -o-linear-gradient(315deg, rgba(10, 37, 64, 0.6), rgba(20, 61, 115, 0.5));
    background: linear-gradient(135deg, rgba(10, 37, 64, 0.6), rgba(20, 61, 115, 0.5));
    -webkit-animation: floatCircle 4.5s 1s infinite;
    animation: floatCircle 4.5s 1s infinite;
    font-size: 2rem;
}

.cf3 {
    width: 70px;
    height: 70px;
    top: 40px;
    left: 30px;
    background: rgba(255, 59, 59, 0.15);
    -webkit-animation: floatCircle 5s 0.8s infinite;
    animation: floatCircle 5s 0.8s infinite;
    font-size: 1.5rem;
}

@-webkit-keyframes floatCircle {

    0%,
    100% {
        -webkit-transform: translateY(0) rotate(0deg);
        transform: translateY(0) rotate(0deg);
    }

    50% {
        -webkit-transform: translateY(-16px) rotate(4deg);
        transform: translateY(-16px) rotate(4deg);
    }
}

@keyframes floatCircle {

    0%,
    100% {
        -webkit-transform: translateY(0) rotate(0deg);
        transform: translateY(0) rotate(0deg);
    }

    50% {
        -webkit-transform: translateY(-16px) rotate(4deg);
        transform: translateY(-16px) rotate(4deg);
    }
}

@-webkit-keyframes floatMain {

    0%,
    100% {
        -webkit-transform: translate(-50%, -50%) translateY(0);
        transform: translate(-50%, -50%) translateY(0);
    }

    50% {
        -webkit-transform: translate(-50%, -50%) translateY(-14px);
        transform: translate(-50%, -50%) translateY(-14px);
    }
}

@keyframes floatMain {

    0%,
    100% {
        -webkit-transform: translate(-50%, -50%) translateY(0);
        transform: translate(-50%, -50%) translateY(0);
    }

    50% {
        -webkit-transform: translate(-50%, -50%) translateY(-14px);
        transform: translate(-50%, -50%) translateY(-14px);
    }
}

.ring {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.1);
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-animation: rotateSlow 30s linear infinite;
    animation: rotateSlow 30s linear infinite;
}

.ring1 {
    width: 340px;
    height: 340px;
}

.ring2 {
    width: 390px;
    height: 390px;
    border-style: dotted;
    animation-direction: reverse;
}

@-webkit-keyframes rotateSlow {
    to {
        -webkit-transform: translate(-50%, -50%) rotate(360deg);
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes rotateSlow {
    to {
        -webkit-transform: translate(-50%, -50%) rotate(360deg);
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* ===== SECTION COMMONS ===== */
section {
    position: relative;
    z-index: 1;
    padding: 90px 5%;
}

.section-tag {
    display: inline-block;
    background: rgba(255, 59, 59, 0.12);
    border: 1px solid rgba(255, 59, 59, 0.3);
    color: var(--red);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.8rem;
}

.section-sub {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 520px;
    line-height: 1.7;
}

.section-header {
    margin-bottom: 3.5rem;
}

.section-header.centered {
    text-align: center;
}

.section-header.centered .section-sub {
    margin: 0 auto;
}

/* services */
#services {
    background: -webkit-gradient(linear, left top, left bottom, from(var(--navy)), to(#071d34));
    background: -o-linear-gradient(top, var(--navy) 0%, #071d34 100%);
    background: linear-gradient(180deg, var(--navy) 0%, #071d34 100%);
}

.services-grid {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 2rem 1.8rem;
    -webkit-transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    -o-transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    cursor: default;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: -o-linear-gradient(315deg, rgba(255, 59, 59, 0.08), transparent);
    background: linear-gradient(135deg, rgba(255, 59, 59, 0.08), transparent);
    opacity: 0;
    -webkit-transition: opacity 0.35s;
    -o-transition: opacity 0.35s;
    transition: opacity 0.35s;
}

.service-card:hover {
    -webkit-transform: translateY(-8px);
    -ms-transform: translateY(-8px);
    transform: translateY(-8px);
    border-color: rgba(255, 59, 59, 0.35);
    -webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.service-card:hover::before {
    opacity: 1;
}

.svc-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: -o-linear-gradient(315deg, rgba(255, 59, 59, 0.2), rgba(255, 59, 59, 0.06));
    background: linear-gradient(135deg, rgba(255, 59, 59, 0.2), rgba(255, 59, 59, 0.06));
    border: 1px solid rgba(255, 59, 59, 0.25);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.service-card:hover .svc-icon {
    background: var(--red);
    border-color: var(--red);
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.svc-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.svc-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* offer */
#offer {
    background: -o-linear-gradient(315deg, var(--navy-mid) 0%, #071d34 100%);
    background: linear-gradient(135deg, var(--navy-mid) 0%, #071d34 100%);
}

.offer-wrap {
    background: -o-linear-gradient(315deg, rgba(255, 59, 59, 0.12), rgba(255, 59, 59, 0.03));
    background: linear-gradient(135deg, rgba(255, 59, 59, 0.12), rgba(255, 59, 59, 0.03));
    border: 1px solid rgba(255, 59, 59, 0.25);
    border-radius: 28px;
    padding: 3.5rem 3rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 3rem;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}

.offer-wrap::before {
    content: '';
    position: absolute;
    right: -80px;
    top: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: -o-radial-gradient(circle, rgba(255, 59, 59, 0.15), transparent 70%);
    background: radial-gradient(circle, rgba(255, 59, 59, 0.15), transparent 70%);
}

.offer-text {
    position: relative;
    z-index: 1;
}

.offer-text h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 0.7rem;
}

.offer-text p {
    color: var(--text-muted);
    max-width: 440px;
    line-height: 1.7;
}

.offer-badge-wrap {
    position: relative;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
}

.offer-badge {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: -o-linear-gradient(315deg, var(--red), #ff6b6b);
    background: linear-gradient(135deg, var(--red), #ff6b6b);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-shadow: 0 0 0 0 rgba(255, 59, 59, 0.5);
    box-shadow: 0 0 0 0 rgba(255, 59, 59, 0.5);
    -webkit-animation: pulseBadge 2s ease-in-out infinite;
    animation: pulseBadge 2s ease-in-out infinite;
    position: relative;
}

.offer-badge::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px dashed rgba(255, 59, 59, 0.4);
    -webkit-animation: rotateSlow 8s linear infinite;
    animation: rotateSlow 8s linear infinite;
}

.offer-badge .off {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
}

.offer-badge .off-sub {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.9;
}

@-webkit-keyframes pulseBadge {

    0%,
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 59, 59, 0.5);
        box-shadow: 0 0 0 0 rgba(255, 59, 59, 0.5);
    }

    50% {
        -webkit-box-shadow: 0 0 0 20px rgba(255, 59, 59, 0);
        box-shadow: 0 0 0 20px rgba(255, 59, 59, 0);
    }
}

@keyframes pulseBadge {

    0%,
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 59, 59, 0.5);
        box-shadow: 0 0 0 0 rgba(255, 59, 59, 0.5);
    }

    50% {
        -webkit-box-shadow: 0 0 0 20px rgba(255, 59, 59, 0);
        box-shadow: 0 0 0 20px rgba(255, 59, 59, 0);
    }
}

.offer-list {
    list-style: none;
    margin-top: 1.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0.6rem;
}

.offer-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.offer-list li i {
    color: var(--red);
    font-size: 0.85rem;
}

/* why us */
#why {
    background: var(--navy);
}

.why-grid {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.why-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.why-card:hover {
    -webkit-transform: translateY(-6px);
    -ms-transform: translateY(-6px);
    transform: translateY(-6px);
    border-color: rgba(255, 59, 59, 0.25);
    -webkit-box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.why-icon {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.why-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.why-card p {
    font-size: 0.83rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* contact */
#contact {
    background: -webkit-gradient(linear, left top, left bottom, from(#071d34), to(var(--navy)));
    background: -o-linear-gradient(top, #071d34 0%, var(--navy) 100%);
    background: linear-gradient(180deg, #071d34 0%, var(--navy) 100%);
}

.contact-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 3rem 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
}

.contact-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1.4rem;
}

.contact-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1.2rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 1.2rem 1.6rem;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    text-decoration: none;
    color: var(--white);
    width: 100%;
    word-wrap: break-word;
}

.contact-item:hover {
    border-color: rgba(255, 59, 59, 0.35);
    -webkit-transform: translateX(6px);
    -ms-transform: translateX(6px);
    transform: translateX(6px);
    -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: -o-linear-gradient(315deg, rgba(255, 59, 59, 0.2), rgba(255, 59, 59, 0.06));
    background: linear-gradient(135deg, rgba(255, 59, 59, 0.2), rgba(255, 59, 59, 0.06));
    border: 1px solid rgba(255, 59, 59, 0.25);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 3px;
}

.contact-val {
    font-size: 0.95rem;
    font-weight: 600;
}

.contact-form {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 2.5rem;
    width: 100%;
}

.contact-form h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.form-row {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1rem 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 1rem;
}

.form-group label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}


.form-group input,
.form-group textarea,
.form-group select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 12px 14px;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 0.88rem;
    outline: none;
    -webkit-transition: border-color 0.25s;
    -o-transition: border-color 0.25s;
    transition: border-color 0.25s;
    width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: rgba(255, 59, 59, 0.5);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-submit {
    width: 100%;
    background: -o-linear-gradient(315deg, var(--red), #ff6b6b);
    background: linear-gradient(135deg, var(--red), #ff6b6b);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 8px;
    -webkit-box-shadow: 0 6px 20px rgba(255, 59, 59, 0.35);
    box-shadow: 0 6px 20px rgba(255, 59, 59, 0.35);
}

.form-submit:hover {
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
    -webkit-box-shadow: 0 10px 28px rgba(255, 59, 59, 0.45);
    box-shadow: 0 10px 28px rgba(255, 59, 59, 0.45);
}

/* footer */
footer {
    background: #050f1e;
    border-top: 1px solid var(--glass-border);
    padding: 4rem 5% 2rem;
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 2fr 3rem 1fr 3rem 1fr;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.7;
    margin: 1rem 0 1.5rem;
    max-width: 300px;
}

.footer-socials {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.8rem;
}

.social-btn {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    -webkit-transition: all 0.25s;
    -o-transition: all 0.25s;
    transition: all 0.25s;
}

.social-btn:hover {
    -webkit-transform: translateY(-4px);
    -ms-transform: translateY(-4px);
    transform: translateY(-4px);
}

.social-btn.wa:hover {
    background: #25d366;
    border-color: #25d366;
}

.social-btn.ig:hover {
    background: -o-linear-gradient(315deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: transparent;
}

.footer-col h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0.7rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.87rem;
    -webkit-transition: color 0.2s;
    -o-transition: color 0.2s;
    transition: color 0.2s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
}

.footer-links a:hover {
    color: var(--red);
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding-top: 1.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.footer-bottom span {
    color: var(--red);
}

/* floating whatsapp */
.float-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: white;
    padding: 14px 22px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    -webkit-box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45);
    -webkit-animation: floatWA 3s ease-in-out infinite;
    animation: floatWA 3s ease-in-out infinite;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.float-wa:hover {
    -webkit-transform: translateY(-4px) scale(1.04);
    -ms-transform: translateY(-4px) scale(1.04);
    transform: translateY(-4px) scale(1.04);
    -webkit-box-shadow: 0 12px 40px rgba(37, 211, 102, 0.55);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.55);
}

@-webkit-keyframes floatWA {

    0%,
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    50% {
        -webkit-transform: translateY(-8px);
        transform: translateY(-8px);
    }
}

@keyframes floatWA {

    0%,
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    50% {
        -webkit-transform: translateY(-8px);
        transform: translateY(-8px);
    }
}

/* reveal animations */
.reveal {
    opacity: 0;
    -webkit-transform: translateY(32px);
    -ms-transform: translateY(32px);
    transform: translateY(32px);
    -webkit-transition: opacity 0.7s ease, -webkit-transform 0.7s ease;
    transition: opacity 0.7s ease, -webkit-transform 0.7s ease;
    -o-transition: opacity 0.7s ease, transform 0.7s ease;
    transition: opacity 0.7s ease, transform 0.7s ease;
    transition: opacity 0.7s ease, transform 0.7s ease, -webkit-transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

@-webkit-keyframes fadeUp {
    from {
        opacity: 0;
        -webkit-transform: translateY(24px);
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        -webkit-transform: translateY(24px);
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE (FULLY OPTIMIZED FOR 320px and up) ===== */
@media (max-width: 900px) {
    #hero {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: center;
        padding-top: 110px;
        padding-bottom: 60px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-sub {
        margin: 0 auto 2rem;
    }

    .hero-btns,
    .hero-stats {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .hero-visual {
        max-width: 320px;
    }

    .circles-wrap {
        width: 300px;
        height: 300px;
    }

    .circle-main {
        width: 220px;
        height: 220px;
    }

    .ring1 {
        width: 270px;
        height: 270px;
    }

    .ring2 {
        width: 310px;
        height: 310px;
    }

    .contact-grid {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }

    .footer-grid {
        -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    }

    .offer-wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 2.5rem 1.5rem;
    }

    .offer-text p {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .contact-grid {
        gap: 2rem;
    }

    .contact-form {
        padding: 1.8rem;
    }

    .contact-item {
        padding: 1rem 1.2rem;
        gap: 1rem;
    }

    .contact-icon {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }

    .form-row {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }

    .services-grid {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
}

@media (max-width: 640px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    .hamburger {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .footer-grid {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 1.9rem;
    }

    section {
        padding: 60px 5%;
    }

    .offer-wrap {
        padding: 2rem 1rem;
    }

    .float-wa .wa-text {
        display: none;
    }

    .float-wa {
        padding: 14px;
        border-radius: 50%;
        width: 56px;
        height: 56px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .hero-visual {
        max-width: 280px;
    }

    .circles-wrap {
        width: 260px;
        height: 260px;
    }

    .circle-main {
        width: 180px;
        height: 180px;
    }

    .circle-main i {
        font-size: 4rem;
    }

    .cf1,
    .cf2,
    .cf3 {
        -webkit-transform: scale(0.7);
        -ms-transform: scale(0.7);
        transform: scale(0.7);
    }

    .ring1 {
        width: 230px;
        height: 230px;
    }

    .ring2 {
        width: 270px;
        height: 270px;
    }
}

@media (max-width: 480px) {
    .contact-form {
        padding: 1.4rem;
        border-radius: 18px;
    }

    .contact-item {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .contact-icon {
        width: 38px;
        height: 38px;
    }

    .hero-stats {
        gap: 1rem;
    }

    .stat-num {
        font-size: 1.2rem;
    }

    .stat-label {
        font-size: 0.6rem;
    }

    .btn-primary,
    .btn-ghost {
        padding: 10px 20px;
        font-size: 0.8rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .service-card {
        padding: 1.5rem;
    }
}


/* extra safety for 320px viewport */
@media (max-width: 376px) {
    html {
        font-size: 14px;
    }

    body {
        overflow-x: auto;
    }

    .container,
    section,
    nav,
    footer {
        padding-left: 4%;
        padding-right: 4%;
    }

    .hero-title {
        font-size: 2rem;
        letter-spacing: -0.5px;
        line-height: 2.3rem;
    }

    .hero-btns {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
        gap: 0.8rem;
    }

    .btn-primary,
    .btn-ghost {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 100%;
    }

    .hero-visual {
        display: none;
    }

    /* hide visual on extremely small screens to save space */
    .services-grid {
        gap: 1rem;
    }

    .service-card {
        padding: 1.2rem;
    }

    .offer-badge {
        width: 120px;
        height: 120px;
    }

    .offer-badge .off {
        font-size: 2.2rem;
    }

    .contact-item {
        padding: 0.8rem;
        gap: 0.8rem;
    }

    .contact-val {
        font-size: 0.8rem;
    }

    .footer-grid {
        gap: 2rem;
    }

    .float-wa {
        bottom: 16px;
        right: 16px;
        width: 48px;
        height: 48px;
    }
}