/* ===================================================
   SRI JEYAM AUTO PARTS
   Theme: White & Blue + Red & Yellow
   Fully Responsive: Mobile + Desktop
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* --- CSS Variables / Design Tokens --- */
:root {
    /* Core colours */
    --blue-dark: #0A2D6E;
    --blue-main: #1A56DB;
    --blue-mid: #2563EB;
    --blue-light: #DBEAFE;
    --blue-pale: #EFF6FF;

    --red-main: #DC2626;
    --red-dark: #991B1B;
    --red-light: #FEE2E2;

    --yellow-main: #F59E0B;
    --yellow-dark: #D97706;
    --yellow-light: #FEF3C7;
    --yellow-pale: #FFFBEB;

    --white: #FFFFFF;
    --off-white: #F8FAFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-400: #9CA3AF;
    --gray-600: #4B5563;
    --gray-800: #1F2937;
    --gray-900: #111827;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.10), 0 2px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-blue: 0 8px 30px rgba(26, 86, 219, 0.20);
    --shadow-red: 0 8px 30px rgba(220, 38, 38, 0.20);
    --shadow-ylw: 0 8px 30px rgba(245, 158, 11, 0.25);

    /* Transitions */
    --trans: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --trans-slow: 0.55s cubic-bezier(0.4, 0, 0.2, 1);

    /* Radii */
    --r-sm: 8px;
    --r-md: 14px;
    --r-lg: 22px;
    --r-xl: 32px;
    --r-full: 9999px;
}

/* ===================================================
   RESET & BASE
   =================================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    font-size: 16px;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--white);
    color: var(--gray-800);
    line-height: 1.7;
    overflow-x: hidden;
}

img,
video {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    border: none;
}

/* ===================================================
   ANIMATED BACKGROUND ELEMENTS
   =================================================== */
#bg-canvas {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.gear-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.gear-bg svg {
    position: absolute;
    fill: var(--blue-light);
    opacity: 0.35;
}

.gear-bg .gear-1 {
    width: 280px;
    height: 280px;
    top: -80px;
    right: -60px;
    animation: gearSpin 35s linear infinite;
}

.gear-bg .gear-2 {
    width: 180px;
    height: 180px;
    bottom: 5%;
    left: -50px;
    animation: gearRev 22s linear infinite;
}

.gear-bg .gear-3 {
    width: 130px;
    height: 130px;
    top: 42%;
    right: 3%;
    animation: gearSpin 28s linear infinite;
    fill: var(--yellow-light);
}

.gear-bg .gear-4 {
    width: 90px;
    height: 90px;
    bottom: 28%;
    right: 18%;
    animation: gearRev 16s linear infinite;
    fill: var(--red-light);
}

@keyframes gearSpin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes gearRev {
    to {
        transform: rotate(-360deg);
    }
}

/* All visible content sits above background */
header,
main,
footer {
    position: relative;
    z-index: 1;
}

/* ===================================================
   LAYOUT UTILITIES
   =================================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-pad {
    padding: 5rem 0;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.text-center {
    text-align: center;
}

.mt-1 {
    margin-top: .5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

.p-4 {
    padding: 1.8rem;
}

/* ===================================================
   TYPOGRAPHY
   =================================================== */
h1 {
    font-size: clamp(2rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--gray-900);
}

h2 {
    font-size: clamp(1.6rem, 3vw, 2.6rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
}

h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: .6rem;
}

h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--gray-800);
}

p {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.8;
    font-family: 'Inter', sans-serif;
    margin-bottom: 1rem;
}

.highlight {
    color: var(--blue-main);
}

.highlight-red {
    color: var(--red-main);
}

.highlight-ylw {
    color: var(--yellow-dark);
}

.section-tag {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    padding: .35rem 1rem;
    border-radius: var(--r-full);
    margin-bottom: .8rem;
}

.tag-blue {
    background: var(--blue-light);
    color: var(--blue-main);
}

.tag-red {
    background: var(--red-light);
    color: var(--red-main);
}

.tag-yellow {
    background: var(--yellow-light);
    color: var(--yellow-dark);
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3rem;
}

.section-header h2 {
    margin-bottom: .75rem;
}

.section-header p {
    margin: 0;
}

/* Decorative underline for section titles */
.title-line {
    display: block;
    width: 56px;
    height: 4px;
    border-radius: 2px;
    margin: 1rem auto 0;
    background: linear-gradient(90deg, var(--blue-main), var(--yellow-main));
}

/* ===================================================
   HEADER & NAVIGATION
   =================================================== */
#main-header {
    background: var(--white);
    border-bottom: 2px solid var(--blue-light);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--trans);
    box-shadow: var(--shadow-sm);
}

#main-header.scrolled {
    box-shadow: var(--shadow-md);
    border-bottom-color: var(--blue-main);
}

#main-header nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .85rem 0;
    gap: 1rem;
}

/* Logo */
.logo a {
    display: flex;
    align-items: center;
    gap: .55rem;
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--blue-dark);
    white-space: nowrap;
}

.logo a span {
    color: var(--red-main);
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--blue-main), var(--blue-dark));
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: .95rem;
    flex-shrink: 0;
}

/* Nav links */
.nav-links {
    display: flex;
    align-items: center;
    gap: .25rem;
}

.nav-links a {
    padding: .5rem .9rem;
    border-radius: var(--r-sm);
    font-size: .92rem;
    font-weight: 600;
    color: var(--gray-700, #374151);
    transition: var(--trans);
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--blue-main);
    background: var(--blue-pale);
}

.nav-links a.active {
    color: var(--blue-main);
    background: var(--blue-light);
    font-weight: 700;
}

/* Header phone button */
.header-contact a {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .55rem 1.2rem;
    background: linear-gradient(135deg, var(--red-main), var(--red-dark));
    color: var(--white);
    border-radius: var(--r-full);
    font-weight: 700;
    font-size: .88rem;
    transition: var(--trans);
    white-space: nowrap;
    box-shadow: var(--shadow-red);
}

.header-contact a:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, .3);
}

/* Hamburger (mobile) */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--blue-main);
    border-radius: 2px;
    transition: var(--trans);
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav dropdown */
.nav-mobile-open {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 2px solid var(--blue-light);
    border-bottom: 2px solid var(--blue-light);
    padding: 1rem 1.5rem 1.5rem;
    gap: .3rem;
    box-shadow: var(--shadow-md);
    z-index: 999;
}

.nav-mobile-open a {
    width: 100%;
    display: block;
    font-size: 1rem;
    padding: .75rem 1rem;
    border-radius: var(--r-sm);
}

/* ===================================================
   BUTTONS
   =================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    padding: .85rem 1.9rem;
    border-radius: var(--r-full);
    font-weight: 700;
    font-size: .95rem;
    font-family: 'Outfit', sans-serif;
    transition: var(--trans);
    cursor: pointer;
    border: none;
    white-space: nowrap;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--blue-main), var(--blue-dark));
    color: var(--white);
    box-shadow: var(--shadow-blue);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(26, 86, 219, .35);
}

.btn-red {
    background: linear-gradient(135deg, var(--red-main), var(--red-dark));
    color: var(--white);
    box-shadow: var(--shadow-red);
}

.btn-red:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(220, 38, 38, .35);
}

.btn-yellow {
    background: linear-gradient(135deg, var(--yellow-main), var(--yellow-dark));
    color: var(--white);
    box-shadow: var(--shadow-ylw);
}

.btn-yellow:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(245, 158, 11, .4);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(37, 211, 102, .35);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, .45);
}

.btn-outline-blue {
    border: 2px solid var(--blue-main);
    color: var(--blue-main);
    background: transparent;
}

.btn-outline-blue:hover {
    background: var(--blue-main);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-red {
    border: 2px solid var(--red-main);
    color: var(--red-main);
    background: transparent;
}

.btn-outline-red:hover {
    background: var(--red-main);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
}

.btn-lg {
    padding: 1rem 2.2rem;
    font-size: 1.02rem;
}

/* ===================================================
   HERO — VIDEO (Home page)
   =================================================== */
.hero-video-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 70px;
    /* header height */
}

.video-container {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .45;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(10, 45, 110, .88) 0%,
            rgba(10, 45, 110, .7) 50%,
            rgba(0, 0, 0, .5) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 3rem 0 4rem;
}

.badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
    margin-bottom: 1.4rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .38rem 1rem;
    border-radius: var(--r-full);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.badge-blue {
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .3);
    color: #fff;
}

.badge-yellow {
    background: rgba(245, 158, 11, .25);
    border: 1px solid rgba(245, 158, 11, .5);
    color: #FEF3C7;
}

.badge-red {
    background: rgba(220, 38, 38, .25);
    border: 1px solid rgba(220, 38, 38, .5);
    color: #FEE2E2;
}

.hero-content h1 {
    color: var(--white);
    font-size: clamp(2.2rem, 6vw, 4.2rem);
    margin-bottom: 1.2rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, .4);
}

.hero-content h1 .highlight-ylw {
    color: var(--yellow-main);
}

.hero-content h1 .highlight-red {
    color: #FCA5A5;
}

.hero-content>p {
    color: rgba(255, 255, 255, .88);
    font-size: 1.08rem;
    margin-bottom: 1.8rem;
    max-width: 560px;
    line-height: 1.9;
}

.rating-display {
    display: inline-flex;
    align-items: center;
    gap: .8rem;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .2);
    backdrop-filter: blur(8px);
    padding: .65rem 1.4rem;
    border-radius: var(--r-md);
    margin-bottom: 2rem;
}

.rating-display .stars {
    color: #FCD34D;
    display: flex;
    gap: 2px;
    font-size: .9rem;
}

.rating-display span {
    color: rgba(255, 255, 255, .85);
    font-size: .88rem;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem;
}

/* Scroll arrow */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .4rem;
    opacity: .75;
    animation: bounce 2s ease-in-out infinite;
}

.scroll-indicator span {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: rgba(255, 255, 255, .7);
}

.scroll-indicator i {
    color: var(--yellow-main);
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0)
    }

    50% {
        transform: translateX(-50%) translateY(8px)
    }
}

/* ===================================================
   STATS BAR
   =================================================== */
.stats-bar {
    background: linear-gradient(135deg, var(--blue-dark), var(--blue-main));
    padding: 2rem 0;
    position: relative;
    z-index: 1;
}

.stats-bar .container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1rem;
}

.stat-pill {
    text-align: center;
    padding: .5rem 1.5rem;
}

.stat-pill .num {
    font-size: 2rem;
    font-weight: 900;
    color: var(--yellow-main);
    line-height: 1;
}

.stat-pill .lbl {
    font-size: .82rem;
    color: rgba(255, 255, 255, .8);
    font-family: 'Inter', sans-serif;
    margin-top: .2rem;
}

/* ===================================================
   CARDS — FEATURE / INFO
   =================================================== */
.info-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--r-lg);
    padding: 2.2rem 1.8rem;
    text-align: center;
    transition: var(--trans);
    position: relative;
    overflow: hidden;
}

.info-card .card-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 1.2rem;
    transition: var(--trans);
}

.icon-blue {
    background: var(--blue-light);
    color: var(--blue-main);
}

.icon-red {
    background: var(--red-light);
    color: var(--red-main);
}

.icon-yellow {
    background: var(--yellow-light);
    color: var(--yellow-dark);
}

.info-card h3 {
    margin-bottom: .5rem;
    font-size: 1.1rem;
}

.info-card p {
    font-size: .93rem;
    margin: 0;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 2px 2px 0 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--trans);
}

.card-border-blue::before {
    background: var(--blue-main);
}

.card-border-red::before {
    background: var(--red-main);
}

.card-border-yellow::before {
    background: var(--yellow-main);
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.info-card:hover::before {
    transform: scaleX(1);
}

/* ===================================================
   PAGE TITLE BANNER (inner pages)
   =================================================== */
.page-title {
    padding: 9rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-title-blue {
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-main) 100%);
}

.page-title-blue h1,
.page-title-blue p,
.page-title-blue .section-tag {
    color: var(--white);
}

.page-title-blue .section-tag {
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .3);
}

.page-title h1 {
    margin-bottom: .8rem;
}

.page-title p {
    font-size: 1.05rem;
    max-width: 480px;
    margin: 0 auto;
}

.page-title-line {
    display: block;
    width: 56px;
    height: 4px;
    border-radius: 2px;
    margin: 1.2rem auto 0;
    background: linear-gradient(90deg, var(--red-main), var(--yellow-main));
}

/* Breadcrumb stripe below hero on inner pages */
.breadcrumb-bar {
    background: var(--blue-light);
    padding: .7rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.breadcrumb-bar a {
    color: var(--blue-main);
    font-size: .88rem;
    font-weight: 600;
}

.breadcrumb-bar span {
    color: var(--gray-400);
    font-size: .88rem;
    margin: 0 .4rem;
}

.breadcrumb-bar .current {
    color: var(--gray-600);
    font-size: .88rem;
}

/* ===================================================
   ABOUT PAGE
   =================================================== */
.about-section {
    padding: 5rem 0;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    margin-top: 2rem;
}

.stat-item {
    border-radius: var(--r-md);
    padding: 1.4rem 1rem;
    text-align: center;
    border: 2px solid transparent;
    transition: var(--trans);
}

.si-blue {
    background: var(--blue-pale);
    border-color: var(--blue-light);
}

.si-red {
    background: var(--red-light);
    border-color: #FECACA;
}

.si-yellow {
    background: var(--yellow-pale);
    border-color: var(--yellow-light);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stat-item .num {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: .2rem;
}

.si-blue .num {
    color: var(--blue-main);
}

.si-red .num {
    color: var(--red-main);
}

.si-yellow .num {
    color: var(--yellow-dark);
}

.stat-item p {
    font-size: .85rem;
    margin: 0;
    color: var(--gray-600);
}

.rounded-img {
    width: 100%;
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
    outline: 2px solid var(--blue-light);
    object-fit: cover;
    display: block;
}

/* Video overlay blocks */
.section-overlay-video {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.rounded-video {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}

.video-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(10, 45, 110, .92) 0%, transparent 100%);
    padding: 3.5rem 2rem 2rem;
    color: var(--white);
}

.video-text h3 {
    color: var(--white);
    font-size: 1.6rem;
    margin-bottom: .5rem;
}

.video-text p {
    color: rgba(255, 255, 255, .85);
    margin-bottom: 1rem;
}

/* Values section */
.values-section {
    background: var(--off-white);
    padding: 5rem 0;
}

/* ===================================================
   PRODUCTS / SERVICES PAGE
   =================================================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.8rem;
}

.product-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--r-lg);
    padding: 2rem 1.8rem;
    transition: var(--trans);
    position: relative;
    overflow: hidden;
}

.product-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    transform: scaleX(0);
    transition: var(--trans);
}

.pc-blue::after {
    background: var(--blue-main);
}

.pc-red::after {
    background: var(--red-main);
}

.pc-yellow::after {
    background: var(--yellow-main);
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--gray-200);
    box-shadow: var(--shadow-lg);
}

.product-card:hover::after {
    transform: scaleX(1);
}

.product-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
}

.pi-blue {
    background: var(--blue-light);
    color: var(--blue-main);
}

.pi-red {
    background: var(--red-light);
    color: var(--red-main);
}

.pi-yellow {
    background: var(--yellow-light);
    color: var(--yellow-dark);
}

.product-card h3 {
    margin-bottom: .9rem;
    font-size: 1.1rem;
}

.product-card ul {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.product-card ul li {
    color: var(--gray-600);
    font-size: .92rem;
    padding-left: 1.2rem;
    position: relative;
    font-family: 'Inter', sans-serif;
}

.product-card ul li::before {
    content: '›';
    position: absolute;
    left: 0;
    font-weight: 700;
}

.pc-blue li::before {
    color: var(--blue-main);
}

.pc-red li::before {
    color: var(--red-main);
}

.pc-yellow li::before {
    color: var(--yellow-dark);
}

/* Video cards */
.video-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: var(--trans);
    box-shadow: var(--shadow-sm);
}

.video-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--blue-light);
}

.video-card video {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.video-card .p-4 {
    padding: 1.5rem;
}

.video-card h4 {
    color: var(--gray-900);
    margin-bottom: .4rem;
}

.video-card p {
    font-size: .92rem;
    margin: 0;
}

/* CTA box */
.cta-box {
    background: linear-gradient(135deg, var(--blue-dark), var(--blue-main));
    border-radius: var(--r-xl);
    padding: 3.5rem 2rem;
    text-align: center;
    color: var(--white);
    box-shadow: var(--shadow-blue);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .05);
}

.cta-box h2 {
    color: var(--white);
    margin-bottom: .75rem;
}

.cta-box p {
    color: rgba(255, 255, 255, .85);
    max-width: 480px;
    margin: 0 auto 2rem;
}

.cta-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* ===================================================
   CONTACT PAGE
   =================================================== */
.contact-info-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--r-lg);
    padding: 2.5rem 1.8rem;
    text-align: center;
    transition: var(--trans);
}

.contact-info-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.cic-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 1.2rem;
}

.contact-info-card h3 {
    margin-bottom: .6rem;
}

.contact-info-card p {
    font-size: .93rem;
    margin-bottom: .4rem;
}

.link-blue {
    color: var(--blue-main);
    font-weight: 600;
    transition: var(--trans);
}

.link-blue:hover {
    color: var(--red-main);
}

/* Contact form */
.contact-form-wrapper {
    max-width: 820px;
    margin: 0 auto;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--r-xl);
    padding: 3rem 2.5rem;
    box-shadow: var(--shadow-lg);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.4rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.span-2 {
    grid-column: 1/-1;
}

.form-group label {
    font-size: .85rem;
    font-weight: 700;
    color: var(--gray-700, #374151);
    margin-bottom: .5rem;
    letter-spacing: .02em;
}

.form-group input,
.form-group textarea {
    padding: .85rem 1.1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--r-md);
    font-size: .95rem;
    font-family: 'Outfit', sans-serif;
    color: var(--gray-900);
    background: var(--gray-50);
    transition: var(--trans);
    outline: none;
    resize: vertical;
    width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--blue-main);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(26, 86, 219, .12);
}

/* ===================================================
   GALLERY PAGE
   =================================================== */
.gallery-section {
    padding: 4rem 0 6rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.4rem;
}

.gallery-item {
    border-radius: var(--r-lg);
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    border: 2px solid var(--gray-200);
    transition: var(--trans);
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: var(--blue-light);
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--trans-slow);
}

.gallery-item:hover img,
.gallery-item:hover video {
    transform: scale(1.06);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(10, 45, 110, .6) 0%, transparent 55%);
    opacity: 0;
    transition: var(--trans);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.coming-soon {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    background: linear-gradient(135deg, var(--blue-pale), var(--off-white));
}

.coming-soon i {
    font-size: 2.5rem;
    color: var(--blue-main);
    margin-bottom: 1rem;
}

.coming-soon h3 {
    color: var(--blue-dark);
    margin-bottom: .5rem;
}

.coming-soon p {
    font-size: .9rem;
    margin-bottom: 1.2rem;
}

/* ===================================================
   FOOTER
   =================================================== */
footer {
    background: var(--blue-dark);
    padding: 4.5rem 0 2rem;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--blue-main), var(--red-main), var(--yellow-main));
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3.5rem;
}

.footer-about h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: .8rem;
}

.footer-about h3 span {
    color: var(--yellow-main);
}

.footer-about>p {
    color: rgba(255, 255, 255, .65);
    font-size: .93rem;
    max-width: 310px;
    line-height: 1.8;
}

.contact-box {
    margin-top: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

.contact-box p {
    display: flex;
    align-items: center;
    gap: .65rem;
    color: rgba(255, 255, 255, .65);
    font-size: .88rem;
    margin: 0;
}

.contact-box p i {
    color: var(--yellow-main);
    width: 14px;
    text-align: center;
}

footer h4 {
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: rgba(255, 255, 255, .45);
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: .7rem;
}

.footer-links ul a {
    color: rgba(255, 255, 255, .65);
    font-size: .92rem;
    transition: var(--trans);
    display: flex;
    align-items: center;
    gap: .5rem;
}

.footer-links ul a::before {
    content: '›';
    color: var(--yellow-main);
    font-weight: 700;
    transition: var(--trans);
}

.footer-links ul a:hover {
    color: var(--yellow-main);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: .7rem;
    margin-bottom: 1.2rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    color: rgba(255, 255, 255, .75);
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    transition: var(--trans);
}

.social-icons a:hover {
    background: var(--red-main);
    border-color: var(--red-main);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-red);
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: #34D399;
    font-size: .82rem;
    font-weight: 700;
}

.verified-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #34D399;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .5;
        transform: scale(1.4)
    }
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .35);
    font-size: .85rem;
}

/* ===================================================
   FLOATING WHATSAPP
   =================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 1.6rem;
    right: 1.6rem;
    z-index: 999;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.55rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, .4);
    transition: var(--trans);
    animation: floatWa 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.15);
    box-shadow: 0 14px 35px rgba(37, 211, 102, .55);
}

@keyframes floatWa {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-7px)
    }
}

.whatsapp-float:hover {
    animation: none;
}

/* ===================================================
   SCROLL REVEAL
   =================================================== */
.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity .65s ease-out, transform .65s ease-out;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.rd-1 {
    transition-delay: .10s;
}

.rd-2 {
    transition-delay: .20s;
}

.rd-3 {
    transition-delay: .30s;
}

.rd-4 {
    transition-delay: .40s;
}

/* ===================================================
   DIVIDER STRIPE
   =================================================== */
.stripe-divider {
    height: 6px;
    background: linear-gradient(90deg, var(--blue-main) 0%, var(--red-main) 50%, var(--yellow-main) 100%);
}

/* ===================================================
   RESPONSIVE — TABLET  (≤ 900px)
   =================================================== */
@media (max-width: 900px) {
    .container {
        padding: 0 1.2rem;
    }

    /* Header */
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .header-contact {
        display: none;
    }

    /* Grids */
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-about {
        grid-column: 1/-1;
    }

    /* Hero */
    .hero-content {
        max-width: 100%;
        padding: 2rem 0 3rem;
    }

    .hero-btns {
        flex-direction: column;
        width: fit-content;
    }

    /* Stats */
    .stats-bar .container {
        justify-content: start;
        gap: 1.5rem 2rem;
    }

    /* Stat grid */
    .stat-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Form */
    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group.span-2 {
        grid-column: 1;
    }

    .contact-form-wrapper {
        padding: 2.5rem 1.5rem;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================================
   RESPONSIVE — MOBILE  (≤ 580px)
   =================================================== */
@media (max-width: 580px) {

    /* Typography */
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    h3 {
        font-size: 1.15rem;
    }

    /* Spacing */
    .section-pad {
        padding: 3.5rem 0;
    }

    .page-title {
        padding: 7.5rem 0 3rem;
    }

    /* Grid stack */
    .grid-3 {
        grid-template-columns: 1fr;
    }

    .grid-4 {
        grid-template-columns: 1fr 1fr;
    }

    .stat-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    /* Hero */
    .hero-video-section {
        min-height: 100svh;
        padding-top: 65px;
    }

    .hero-btns {
        flex-direction: column;
    }

    .badge-row {
        gap: .5rem;
    }

    /* Stats bar */
    .stats-bar .container {
        flex-direction: column;
        align-items: center;
    }

    .stat-pill {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, .08);
        padding-bottom: 1rem;
    }

    .stat-pill:last-child {
        border-bottom: none;
    }

    /* Buttons */
    .btn,
    .btn-lg {
        padding: .8rem 1.5rem;
        font-size: .9rem;
    }

    .cta-btns {
        flex-direction: column;
        align-items: center;
    }

    /* Contact form */
    .contact-form-wrapper {
        padding: 1.8rem 1.2rem;
        border-radius: var(--r-lg);
    }

    /* Video */
    .rounded-video {
        height: 240px;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-about>p {
        max-width: 100%;
    }

    .social-icons {
        flex-wrap: wrap;
    }

    /* WhatsApp */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.35rem;
        bottom: 1rem;
        right: 1rem;
    }
}