﻿/* ============================================
   GC Generators Service - Stylesheet
   Theme: Industrial | Red / Black / White
   ============================================ */

:root {
    --yellow: #ff3925;
    --yellow-dark: #ff1700;
    --yellow-light: #ffe4e0;
    --black: #373737;
    --dark: #2a2a2a;
    --dark-grey: #373737;
    --grey: #6b6b6b;
    --light-grey: #f5f5f5;
    --border: #e5e5e5;
    --white: #ffffff;
    --whatsapp: #25D366;
    --whatsapp-dark: #128c7e;

    --font-body: 'Poppins', sans-serif;
    --font-head: 'Poppins', sans-serif;

    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 50px rgba(0,0,0,0.15);
    --shadow-yellow: 0 10px 30px rgba(255, 57, 37, 0.35);

    --radius: 8px;
    --radius-lg: 14px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    font-size: 120%;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--dark-grey);
    background: var(--white);
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-head);
    font-weight: 800;
    line-height: 1.2;
    color: var(--black);
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.15rem; }
h5 { font-size: 1.05rem; }

.container {
    width: 100%;
    max-width: 1240px;
    padding: 0 20px;
    margin: 0 auto;
}

.text-yellow { color: var(--yellow); }

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn-sm { padding: 10px 20px; font-size: 16px; }

.btn-primary {
    background: var(--yellow);
    color: var(--white);
    box-shadow: var(--shadow-yellow);
}
.btn-primary:hover {
    background: var(--black);
    color: var(--yellow);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}
.btn-outline:hover {
    background: var(--white);
    color: var(--black);
    transform: translateY(-3px);
}

.btn-dark {
    background: var(--black);
    color: var(--yellow);
}
.btn-dark:hover {
    background: var(--yellow);
    color: var(--black);
    transform: translateY(-3px);
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: var(--white);
}
.btn-whatsapp:hover {
    background: var(--whatsapp-dark);
    transform: translateY(-3px);
}

.btn-block {
    width: 100%;
}

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--black);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--yellow);
    padding-bottom: 4px;
    margin-top: 10px;
}
.btn-link:hover {
    color: var(--yellow-dark);
    gap: 14px;
}

/* ===== Topbar ===== */
.topbar {
    background: var(--black);
    color: #c8c8c8;
    font-size: 16px;
    padding: 10px 0;
    border-bottom: 2px solid var(--yellow);
}
.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.topbar-left, .topbar-right {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}
.topbar i { color: var(--yellow); margin-right: 6px; }
.social-mini a i { color: inherit; margin-right: 0; }
.topbar a:hover { color: var(--yellow); }
.social-mini {
    display: flex;
    gap: 8px;
}
.social-mini a {
    width: 28px; height: 28px;
    display: inline-flex;
    align-items: center; justify-content: center;
    background: var(--dark-grey);
    border-radius: 50%;
    font-size: 21px;
    color: var(--white);
}
.social-mini a:hover {
    background: var(--yellow);
    color: var(--black);
}

/* ===== Header ===== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.header.scrolled {
    box-shadow: var(--shadow-md);
}
.header-inner {
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 100px;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-icon {
    width: auto;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.logo-icon img {
    width: auto;
    height: 100%;
    max-height: 70px;
    object-fit: contain;
    display: block;
}
.footer .logo-icon {
    height: 80px;
    background: var(--white);
    padding: 8px 14px;
    border-radius: var(--radius);
    box-shadow: 0 4px 14px rgba(255, 57, 37, 0.25);
}
.footer .logo-icon img {
    height: 100%;
    max-height: 64px;
}
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.logo-title {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 18px;
    color: var(--black);
    letter-spacing: 0.3px;
}
.logo-sub {
    font-size: 11px;
    color: var(--grey);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.logo-light .logo-title { color: var(--white); }
.logo-light .logo-sub { color: var(--yellow); }

.nav ul {
    display: flex;
    align-items: center;
    gap: 6px;
}
.nav-link {
    display: inline-block;
    padding: 10px 16px;
    font-weight: 600;
    font-size: 19px;
    color: var(--dark-grey);
    border-radius: var(--radius);
    position: relative;
}
.nav-link:hover, .nav-link.active {
    color: var(--black);
    background: var(--yellow-light);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--yellow);
    transition: var(--transition);
}
.nav-link.active::after,
.nav-link:hover::after {
    width: 24px;
}

.menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0 8px;
}
.menu-toggle span {
    width: 24px;
    height: 3px;
    background: var(--black);
    border-radius: 2px;
    transition: var(--transition);
}
.menu-toggle.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
    position: relative;
    width: 100%;
    aspect-ratio: 2560 / 733;
    display: block;
    color: var(--white);
    overflow: hidden;
    padding: 0;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: var(--black);
    overflow: hidden;
}
.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 0.8s ease;
}
.hero-slide.active { opacity: 1; }

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: var(--white);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    transition: background 0.25s ease, transform 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.hero-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: var(--white);
    color: var(--white);
    transform: translateY(-50%) scale(1.06);
}
.hero-arrow:active { transform: translateY(-50%) scale(0.95); }
.hero-prev { left: 20px; }
.hero-next { right: 20px; }
@media (max-width: 768px) {
    .hero-arrow { width: 38px; height: 38px; font-size: 13px; }
    .hero-prev { left: 10px; }
    .hero-next { right: 10px; }
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 57, 37,0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 57, 37,0.1) 0%, transparent 50%);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 57, 37,0.15);
    border: 1px solid var(--yellow);
    color: var(--yellow);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    text-transform: uppercase;
}
.hero h1 {
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 900;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.hero p {
    font-size: 1.1rem;
    max-width: 750px;
    margin: 0 auto 36px;
    color: #e8e8e8;
}
.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    margin-bottom: 60px;
}
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.15);
}
.stat-number {
    font-family: var(--font-head);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--yellow);
    line-height: 1;
}
.stat-label {
    color: #ccc;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 6px;
}

.scroll-down {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    width: 28px;
    height: 46px;
    border: 2px solid var(--yellow);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}
.scroll-down span {
    width: 4px;
    height: 8px;
    background: var(--yellow);
    border-radius: 2px;
    animation: scroll 1.6s ease-in-out infinite;
}
@keyframes scroll {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(14px); }
}

/* ===== Marquee ===== */
.marquee {
    background: var(--yellow);
    color: var(--black);
    overflow: hidden;
    padding: 16px 0;
    border-bottom: 4px solid var(--black);
}
.marquee-track {
    display: flex;
    gap: 50px;
    white-space: nowrap;
    animation: scrollX 30s linear infinite;
    font-family: var(--font-head);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}
.marquee-track span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.marquee-track i { font-size: 18px; }
@keyframes scrollX {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== Sections common ===== */
section {
    padding: 90px 0;
}
.section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--yellow-light);
    color: var(--black);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    width: fit-content;
}
.section-tag.light {
    background: rgba(255, 57, 37,0.15);
    color: var(--yellow);
    border: 1px solid var(--yellow);
}
.section-tag i { color: var(--yellow-dark); }
.section-tag.light i { color: var(--yellow); }

.section-title {
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}
.section-title.light { color: var(--white); }

.section-lead {
    color: var(--grey);
    font-size: 1.05rem;
}
.section-lead.light { color: #c8c8c8; }

/* ===== About ===== */
.about {
    background: var(--white);
    position: relative;
    overflow: hidden;
}
.about-bg-shape {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--yellow-light) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}
.about .container { position: relative; z-index: 1; }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

/* Visual side - single image with frame */
.about-visual {
    position: relative;
    padding: 24px 24px 0 0;
}
.about-visual::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: calc(100% - 60px);
    height: calc(100% - 60px);
    border: 3px solid var(--yellow);
    border-radius: var(--radius-lg);
    z-index: 1;
}
.about-img-main {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    z-index: 2;
    width: calc(100% - 24px);
    margin-top: 24px;
    margin-left: 0;
}
.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.about-img-main:hover img {
    transform: scale(1.06);
}
.about-experience {
    position: absolute;
    bottom: -28px;
    left: -20px;
    background: var(--yellow);
    color: var(--black);
    padding: 18px 26px;
    border-radius: var(--radius-lg);
    text-align: center;
    z-index: 5;
    box-shadow: 0 14px 30px rgba(255, 57, 37, 0.5);
    border: 5px solid var(--white);
    display: flex;
    align-items: center;
    gap: 14px;
    transition: var(--transition);
}
.about-experience:hover {
    transform: scale(1.05);
}
.exp-num {
    font-family: var(--font-head);
    font-size: 2.6rem;
    font-weight: 900;
    line-height: 1;
}
.exp-text {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    text-align: left;
    line-height: 1.3;
    border-left: 2px solid var(--black);
    padding-left: 12px;
}
.about-dots {
    position: absolute;
    bottom: 30px;
    right: 0;
    width: 90px;
    height: 90px;
    background-image: radial-gradient(var(--yellow) 2px, transparent 2px);
    background-size: 14px 14px;
    z-index: 0;
    opacity: 0.7;
}

/* Text side */
.about-text .section-title {
    font-size: 40PX;
    margin-bottom: 18px;
    text-align: left;
}
.about-text .section-tag {
    align-self: flex-start;
}
.about-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.about-text .section-lead {
    text-align: left;
    margin-bottom: 26px;
}

/* Feature list */
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 24px;
    margin-bottom: 32px;
    width: 100%;
}
.about-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.af-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: var(--yellow);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(255, 57, 37, 0.35);
}
.about-features h5 {
    font-size: 20PX;
    margin-bottom: 2px;
    color: var(--black);
}
.about-features span {
    font-size: 16px;
    color: var(--grey);
    line-height: 1.5;
}

/* Bottom row - CTA + Call info */
.about-bottom {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    padding-top: 26px;
    border-top: 1px dashed var(--border);
    width: 100%;
}
.about-call {
    display: flex;
    align-items: center;
    gap: 14px;
}
.ac-icon {
    width: 48px;
    height: 48px;
    background: var(--black);
    color: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    animation: ringPulse 2s infinite;
}
@keyframes ringPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 57, 37, 0.6); }
    50% { box-shadow: 0 0 0 10px rgba(255, 57, 37, 0); }
}
.about-call span {
    display: block;
    font-size: 12px;
    color: var(--grey);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}
.about-call a {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--black);
}
.about-call a:hover { color: var(--yellow-dark); }

/* ===== Services ===== */
.services {
    background: var(--light-grey);
    position: relative;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}
.service-card::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 80px 80px 0;
    border-color: transparent var(--yellow) transparent transparent;
    z-index: 3;
    transition: var(--transition);
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.service-card:hover::after {
    border-width: 0 100px 100px 0;
}

.service-media {
    position: relative;
    background: var(--dark);
}
.service-media-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}
.service-media-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}
.service-card:hover .service-media-img img {
    transform: scale(1.1);
}
.service-media-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,10,10,0.1) 0%, rgba(10,10,10,0.6) 100%);
    z-index: 1;
}

.service-tag-num {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(10, 10, 10, 0.85);
    color: var(--yellow);
    padding: 6px 14px;
    border-radius: 4px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 17px;
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 2;
    backdrop-filter: blur(4px);
}

.service-content {
    padding: 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.service-card h3 {
    margin-bottom: 14px;
    font-size: 1.5rem;
}
.service-card p {
    color: var(--grey);
    margin-bottom: 20px;
    font-size: 19px;
    line-height: 1.7;
}

.service-cta {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 24px;
    background: var(--black);
    color: var(--yellow);
    border-radius: var(--radius);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: auto;
    align-self: flex-start;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.service-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--yellow);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    z-index: 0;
}
.service-cta span,
.service-cta i {
    position: relative;
    z-index: 1;
    transition: var(--transition);
}
.service-cta:hover {
    color: var(--black);
}
.service-cta:hover::before {
    transform: translateX(0);
}
.service-cta:hover i {
    transform: translateX(4px);
}

.service-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 18px;
    margin-bottom: 24px;
    padding: 18px 0;
    border-top: 1px dashed var(--border);
    border-bottom: 1px dashed var(--border);
}
.service-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--dark-grey);
    font-weight: 500;
}
.service-list i {
    color: var(--yellow-dark);
    font-size: 11px;
    width: 18px;
    height: 18px;
    background: var(--yellow-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ===== Why Us ===== */
.why-us {
    background: var(--black);
    background-image:
        linear-gradient(135deg, rgba(10,10,10,0.95), rgba(10,10,10,0.95)),
        url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h60v60H0z' fill='none'/%3E%3Cpath d='M30 0v60M0 30h60' stroke='%23222' stroke-width='1'/%3E%3C/svg%3E");
    color: var(--white);
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.why-card {
    background: var(--dark-grey);
    border: 1px solid var(--yellow);
    padding: 30px 22px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.why-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: var(--yellow);
    transition: var(--transition);
}
.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(255, 57, 37, 0.18);
}
.why-card:hover::after { width: 80%; }
.why-icon {
    width: 64px;
    height: 64px;
    background: var(--yellow);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 18px;
    transition: var(--transition);
}
.why-card:hover .why-icon {
    transform: rotateY(180deg);
}
.why-card h4 { color: var(--white); margin-bottom: 8px; font-size: 22px; }
.why-card p { color: #aaa; font-size: 17px; line-height: 1.6; }

/* ===== Features ===== */
.features { background: var(--white); }
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.feature-box {
    background: var(--light-grey);
    padding: 36px 30px;
    border-radius: var(--radius-lg);
    position: relative;
    transition: var(--transition);
    overflow: hidden;
    border: 1px solid var(--border);
}
.feature-num {
    position: absolute;
    top: 16px;
    right: 24px;
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 4rem;
    color: var(--border);
    line-height: 1;
    transition: var(--transition);
}
.feature-box:hover {
    background: var(--black);
    color: var(--white);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.feature-box:hover .feature-num { color: var(--yellow); }
.feature-box:hover h4 { color: var(--white); }
.feature-box:hover p { color: #ccc; }
.feature-box:hover .feature-icon {
    background: var(--yellow);
    color: var(--black);
}
.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--yellow);
    color: var(--black);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 18px;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}
.feature-box h4 { margin-bottom: 8px; }
.feature-box p { color: var(--grey); font-size: 14px; margin: 0; }

/* ===== Gallery ===== */
.gallery { background: var(--white); }

.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}
.filter-btn {
    padding: 10px 22px;
    background: var(--light-grey);
    color: var(--dark-grey);
    border: 2px solid transparent;
    border-radius: 50px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 17px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
}
.filter-btn:hover {
    background: var(--yellow-light);
    color: var(--black);
}
.filter-btn.active {
    background: var(--yellow);
    color: var(--black);
    border-color: var(--black);
    box-shadow: var(--shadow-yellow);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.gallery-item {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: var(--transition);
}
.gallery-item.hide {
    display: none;
}
.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}
.gallery-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.gallery-item:hover img,
.gallery-item:hover video {
    transform: scale(1.1);
}
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.4) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
.gallery-info {
    display: none;
}
.gallery-cat {
    display: inline-block;
    background: var(--yellow);
    color: var(--black);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}
.gallery-info h4 {
    color: var(--white);
    font-size: 1rem;
    margin: 0;
}
.gallery-zoom,
.gallery-play {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    background: var(--yellow);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transform: scale(0) rotate(-90deg);
    transition: var(--transition);
}
.gallery-item:hover .gallery-zoom,
.gallery-item:hover .gallery-play {
    transform: scale(1) rotate(0);
}
.gallery-zoom:hover,
.gallery-play:hover {
    background: var(--black);
    color: var(--yellow);
}

/* ===== Lightbox ===== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 30px;
}
.lightbox.show {
    display: flex;
    animation: lightboxFade 0.3s ease;
}
@keyframes lightboxFade {
    from { opacity: 0; }
    to { opacity: 1; }
}
.lightbox img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: var(--radius);
    box-shadow: 0 0 40px rgba(255, 57, 37,0.2);
    object-fit: contain;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: var(--yellow);
    color: var(--black);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 1;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--white);
    transform: scale(1.1);
}
.lightbox-close {
    top: 24px;
    right: 24px;
}
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-prev:hover { transform: translateY(-50%) scale(1.1); }
.lightbox-next:hover { transform: translateY(-50%) scale(1.1); }

/* ===== Testimonials ===== */
.testimonials {
    background: var(--light-grey);
    position: relative;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.testimonial-card {
    background: var(--white);
    padding: 36px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: var(--transition);
    border-top: 4px solid var(--yellow);
    box-sizing: border-box;
    min-width: 0;
}
.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.testi-quote {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 60px;
    color: var(--yellow-light);
    line-height: 1;
}
.testi-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
    color: var(--yellow);
    font-size: 14px;
}
.testi-text {
    color: var(--dark-grey);
    font-size: 17px;
    font-style: italic;
    margin-bottom: 24px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}
.testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid var(--border);
    padding-top: 18px;
}
.testi-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--yellow), var(--yellow-dark));
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 16px;
    flex-shrink: 0;
}
.testi-author h5 {
    margin-bottom: 2px;
    font-size: 22px;
}
.testi-author span {
    color: var(--grey);
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* ===== Testimonials Paged Slider ===== */
.testi-wrap {
    --testi-gap: 30px;
    --testi-per-page: 3;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 30px;
}
.testi-scroller {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    position: relative;
    padding: 14px 0;
}
.testi-scroller-track {
    display: flex;
    gap: var(--testi-gap);
    align-items: stretch;
    transform: translate3d(0, 0, 0);
    transition: transform 0.7s cubic-bezier(0.65, 0.05, 0.36, 1);
    will-change: transform;
}
.testi-scroller .testimonial-card {
    flex: 0 0 calc((100% - (var(--testi-per-page) - 1) * var(--testi-gap)) / var(--testi-per-page));
    display: flex;
    flex-direction: column;
}
.testi-scroller .testi-text {
    flex: 1;
}

.testi-arrow {
    flex: 0 0 auto;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md, 0 6px 16px rgba(0,0,0,0.12));
    color: var(--black);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    padding: 0;
}
.testi-arrow:hover {
    background: var(--yellow);
    color: var(--black);
    border-color: var(--yellow);
    box-shadow: 0 10px 24px rgba(0,0,0,0.18);
    transform: scale(1.05);
}
.testi-arrow:active { transform: scale(0.95); }

.testi-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
}
.testi-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: var(--border);
    cursor: pointer;
    padding: 0;
    transition: var(--transition);
}
.testi-dots button.active {
    background: var(--yellow);
    width: 28px;
    border-radius: 5px;
}
.testi-dots button:hover { background: var(--yellow-dark); }

@media (prefers-reduced-motion: reduce) {
    .testi-scroller-track { transition: none; }
}

/* ===== FAQ ===== */
.faq {
    background: var(--white);
    position: relative;
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.faq-item {
    background: var(--light-grey);
    border-radius: var(--radius-lg);
    border: 1.5px solid transparent;
    overflow: hidden;
    transition: var(--transition);
}
.faq-item:hover { border-color: var(--border); }
.faq-item.active {
    background: var(--white);
    border-color: var(--yellow);
    box-shadow: var(--shadow-md);
}
.faq-q {
    width: 100%;
    background: transparent;
    border: none;
    padding: 22px 26px;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 18px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size:21px;
    color: var(--black);
    transition: var(--transition);
}
.faq-q-num {
    flex-shrink: 0;
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--yellow-dark);
    letter-spacing: 1px;
    min-width: 28px;
}
.faq-q-text {
    flex: 1;
    line-height: 1.45;
}
.faq-q:hover { color: var(--yellow-dark); }
.faq-q i {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: var(--white);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: transform 0.35s ease, background 0.25s ease, color 0.25s ease;
    border: 1px solid var(--border);
}
.faq-item.active .faq-q i {
    background: var(--yellow);
    color: var(--black);
    transform: rotate(135deg);
    border-color: var(--yellow);
}
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s ease, padding 0.45s ease;
}
.faq-item.active .faq-a {
    max-height: 500px;
    padding: 0 26px 24px;
}
.faq-a p {
    color: var(--grey);
    font-size: 18px;
    line-height: 1.75;
    margin: 0;
    border-top: 1px dashed var(--border);
    padding-top: 18px;
    padding-left: 46px;
}

.faq-cta {
    margin: 56px 0 0;
    padding: 32px 36px;
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-grey) 100%);
    color: var(--white);
    border-radius: var(--radius-lg);
    border-left: 5px solid var(--yellow);
    display: flex;
    align-items: center;
    gap: 24px;
    box-shadow: var(--shadow-md);
}
.faq-cta-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: var(--yellow);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}
.faq-cta-text { flex: 1; }
.faq-cta-text h4 {
    color: var(--white);
    margin: 0 0 6px;
    font-size: 1.25rem;
}
.faq-cta-text p {
    color: #cbcbcb;
    margin: 0;
    font-size: 19px;
}
.faq-cta-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

/* ===== CTA Banner ===== */
.cta-banner {
    background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
    color: var(--black);
    padding: 60px 0;
}
.cta-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}
.cta-banner h2 { color: var(--black); margin-bottom: 6px; }
.cta-banner p { color: var(--dark-grey); font-weight: 500; margin: 0; }
.cta-banner-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* ===== Contact ===== */
.contact { background: var(--light-grey); }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 40px;
    margin-bottom: 40px;
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.info-card {
    display: flex;
    gap: 18px;
    padding: 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--yellow);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.info-card:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-md);
}
.info-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--yellow);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.info-card h5 { margin-bottom: 4px; font-size: 20px; }
.info-card p { color: var(--grey); margin: 0; font-size: 17px; line-height: 1.6; }
.info-card a:hover { color: var(--yellow-dark); }

.quick-contact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 6px;
}
.qc-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 8px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--white);
    transition: var(--transition);
}
.qc-call { background: var(--black); }
.qc-call:hover { background: var(--yellow); color: var(--black); }
.qc-wa { background: var(--whatsapp); }
.qc-wa:hover { background: var(--whatsapp-dark); }
.qc-mail { background: var(--dark-grey); }
.qc-mail:hover { background: var(--yellow); color: var(--black); }

.contact-form-wrap {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border-top: 5px solid var(--yellow);
}
.contact-form h3 { margin-bottom: 6px; }
.form-sub { color: var(--grey); margin-bottom: 24px; font-size: 18px; }
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group {
    margin-bottom: 16px;
}
.form-group label {
    display: block;
    font-weight: 600;
    font-size: 17px;
    color: var(--dark);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 17px;
    color: var(--dark-grey);
    background: var(--white);
    transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--yellow);
    box-shadow: 0 0 0 3px rgba(255, 57, 37,0.15);
}
.form-group textarea { resize: vertical; }

.form-message {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 500;
    display: none;
}
.form-message.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
.form-message.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.map-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 4px solid var(--white);
}
.map-wrap iframe { display: block; }

/* ===== Footer ===== */
.footer {
    background: var(--black);
    color: #b0b0b0;
    padding: 70px 0 0;
    border-top: 4px solid var(--yellow);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
    gap: 40px;
    padding-bottom: 50px;
}
.footer-col h5 {
    color: var(--white);
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 12px;
    font-family: var(--font-head);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.footer-col h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 3px;
    background: var(--yellow);
    border-radius: 2px;
}
.footer-desc {
    margin: 18px 0 22px;
    font-size: 17px;
    line-height: 1.8;
}
.social-icons {
    display: flex;
    gap: 10px;
}
.social-icons a {
    width: 38px;
    height: 38px;
    background: var(--yellow);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.social-icons a:hover {
    background: var(--dark-grey);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
    font-size: 18px;
}
.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.footer-links a i {
    font-size: 10px;
    color: var(--yellow);
    transition: var(--transition);
}
.footer-links a:hover {
    color: var(--yellow);
    padding-left: 4px;
}
.footer-contact li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    line-height: 1.6;
}
.footer-contact i {
    color: var(--yellow);
    margin-top: 4px;
    flex-shrink: 0;
}
.footer-contact a:hover { color: var(--yellow); }

.footer-bottom {
    border-top: 1px solid var(--dark-grey);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 18px;
}
.footer-bottom p { margin: 0; }
.footer-credit a {
    color: var(--yellow);
    font-weight: 600;
    transition: var(--transition);
}
.footer-credit a:hover { color: var(--yellow-light, var(--yellow)); text-decoration: underline; }
.footer-legal {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 14px;
}
.footer-legal li + li {
    position: relative;
    padding-left: 14px;
}
.footer-legal li + li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.25);
}
.footer-legal a {
    color: inherit;
    transition: var(--transition);
}
.footer-legal a:hover { color: var(--yellow); }

/* ===== Legal Modal (Privacy / Terms) ===== */
.legal-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.legal-modal.show {
    display: flex;
    animation: legalFadeIn 0.25s ease;
}
.legal-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    cursor: pointer;
}
.legal-modal-content {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    max-width: 760px;
    width: 100%;
    max-height: 88vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.45);
    border-top: 5px solid var(--yellow);
    animation: legalSlideUp 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.legal-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--light-grey);
    border: none;
    color: var(--black);
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 2;
}
.legal-modal-close:hover {
    background: var(--yellow);
    transform: rotate(90deg);
}
.legal-modal-header {
    padding: 32px 36px 18px;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}
.legal-modal-header .section-tag { margin-bottom: 12px; }
.legal-modal-header h2 {
    margin: 0 0 6px;
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
}
.legal-updated {
    color: var(--grey);
    font-size: 13px;
    margin: 0;
}
.legal-modal-body {
    padding: 26px 36px 36px;
    overflow-y: auto;
    color: var(--dark-grey);
    line-height: 1.75;
    font-size: 15px;
}
.legal-modal-body h4 {
    margin: 22px 0 8px;
    font-size: 1.05rem;
    color: var(--black);
}
.legal-modal-body h4:first-child { margin-top: 0; }
.legal-modal-body p { margin: 0 0 12px; }
.legal-modal-body ul {
    margin: 8px 0 14px;
    padding-left: 22px;
}
.legal-modal-body li {
    margin-bottom: 6px;
    color: var(--dark-grey);
}
.legal-modal-body a {
    color: var(--yellow-dark);
    font-weight: 600;
    text-decoration: underline;
}
.legal-modal-body a:hover { color: var(--yellow); }

.legal-modal-body::-webkit-scrollbar { width: 8px; }
.legal-modal-body::-webkit-scrollbar-track { background: var(--light-grey); }
.legal-modal-body::-webkit-scrollbar-thumb {
    background: var(--yellow);
    border-radius: 4px;
}

@keyframes legalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes legalSlideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

body.modal-open { overflow: hidden; }

@media (max-width: 600px) {
    .legal-modal { padding: 12px; }
    .legal-modal-header { padding: 24px 22px 14px; }
    .legal-modal-body { padding: 20px 22px 28px; font-size: 14px; }
}

/* ===== Floating Buttons ===== */
.float-btn {
    position: fixed;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    z-index: 999;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    transition: var(--transition);
    animation: pulse 2s infinite;
}
.float-wa {
    background: var(--whatsapp);
    bottom: 24px;
    right: 24px;
}
.float-call {
    background: var(--black);
    color: var(--yellow);
    bottom: 92px;
    right: 24px;
    animation-delay: 1s;
    font-size: 20px;
}
.float-btn:hover {
    transform: scale(1.1);
    color: var(--white);
}
.float-call:hover { color: var(--yellow); }
.float-tooltip {
    position: absolute;
    right: 70px;
    background: var(--black);
    color: var(--white);
    padding: 6px 14px;
    border-radius: var(--radius);
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}
.float-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: var(--black);
}
.float-btn:hover .float-tooltip {
    opacity: 1;
    right: 76px;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 6px 20px rgba(0,0,0,0.25); }
    50% { box-shadow: 0 6px 20px rgba(37,211,102,0.5); }
}

/* ===== Scroll To Top ===== */
.scroll-top {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 46px;
    height: 46px;
    background: var(--yellow);
    color: var(--black);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: var(--shadow-yellow);
}
.scroll-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.scroll-top:hover {
    background: var(--black);
    color: var(--yellow);
}

/* ===== AOS Lite (custom scroll animations) ===== */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
[data-aos="fade-right"] { transform: translateX(-30px); }
[data-aos="fade-left"] { transform: translateX(30px); }
[data-aos="zoom-in"] { transform: scale(0.9); }
[data-aos].in-view {
    opacity: 1;
    transform: translate(0,0) scale(1);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .header-cta { display: none; }
    .nav ul { gap: 2px; }
    .nav-link { padding: 10px 12px; font-size: 14px; }
    .about-grid { grid-template-columns: 1fr; gap: 60px; }
    .about-visual { max-width: 600px; margin: 0 auto; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { gap: 20px; }
    .service-content { padding: 26px 24px; }
    .service-card h3 { font-size: 1.3rem; }
    .why-grid { grid-template-columns: repeat(3, 1fr); }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr 1fr; }
    .testi-wrap { --testi-per-page: 2; }
    .faq-cta { flex-wrap: wrap; gap: 18px; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 768px) {
    section { padding: 60px 0; }
    .topbar-left, .topbar-right { font-size: 12px; gap: 14px; justify-content: center; }
    .topbar-inner { justify-content: center; }

    .header-inner { padding: 10px 16px; gap: 10px; }
    .logo-icon { height: 44px; }
    .logo-icon img { max-height: 44px; }
    .header-cta { display: none; }
    .menu-toggle { display: flex; margin-left: auto; }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        box-shadow: var(--shadow-lg);
        padding: 80px 24px 24px;
        transition: right 0.4s ease;
        z-index: 1001;
    }
    .nav.open { right: 0; }
    .nav ul { flex-direction: column; align-items: stretch; gap: 0; }
    .nav-link {
        display: block;
        padding: 14px 16px;
        border-bottom: 1px solid var(--border);
        font-size: 15px;
    }
    .nav-link::after { display: none; }
    .nav-link.active { background: var(--yellow); color: var(--black); }

    body.nav-open { overflow: hidden; }
    body.nav-open .header { z-index: 1002; }
    body.nav-open .menu-toggle { position: relative; z-index: 1003; }
    body.nav-open::after {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.5);
        z-index: 1000;
    }

    .hero { aspect-ratio: 2560 / 733; min-height: 0; padding: 0; }
    .hero-slide { object-fit: cover; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 24px; padding-top: 30px; }
    .stat-number { font-size: 1.8rem; }

    .features-grid,
    .why-grid,
    .testimonials-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    .testi-wrap {
        --testi-gap: 16px;
        --testi-per-page: 1;
        gap: 6px;
    }
    .testi-arrow { width: 36px; height: 36px; font-size: 12px; }
    .testimonial-card { padding: 26px 20px; }
    .testi-text { font-size: 0.95rem; word-wrap: break-word; overflow-wrap: break-word; }
    .testi-quote { top: 16px; right: 16px; font-size: 42px; }
    .faq-cta { flex-direction: column; align-items: flex-start; text-align: left; padding: 26px; margin-top: 40px; }
    .faq-cta-buttons { width: 100%; }
    .faq-cta-buttons .btn { flex: 1; justify-content: center; }
    .faq-q { padding: 18px 18px; gap: 12px; font-size: 0.95rem; }
    .faq-q-num { font-size: 0.85rem; min-width: 22px; }
    .faq-item.active .faq-a { padding: 0 18px 20px; }
    .faq-a p { padding-left: 0; }
    .service-content { padding: 24px 22px; }
    .service-list { grid-template-columns: 1fr; gap: 4px; }
    .service-card h3 { font-size: 1.25rem; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .gallery-info h4 { font-size: 0.85rem; }
    .filter-btn { padding: 8px 16px; font-size: 12px; }
    .lightbox-prev, .lightbox-next { width: 40px; height: 40px; font-size: 14px; }

    .mission-vision { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; gap: 30px; padding-bottom: 30px; }
    .footer { padding-bottom: 90px; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 10px; padding: 16px 0 0; }
    .footer-credit { font-size: 12px; line-height: 1.6; }
    .footer-legal { flex-wrap: wrap; justify-content: center; gap: 10px; font-size: 12px; }

    .cta-banner-inner { text-align: center; flex-direction: column; }
    .about-features { grid-template-columns: 1fr; gap: 14px; }
    .about-experience { padding: 14px 20px; gap: 10px; left: 0; bottom: -20px; }
    .exp-num { font-size: 1.9rem; }
    .exp-text { font-size: 10px; padding-left: 10px; }
    .about-visual { padding: 18px 18px 0 0; }
    .about-img-main { width: calc(100% - 18px); margin-top: 18px; }
    .about-visual::before { width: calc(100% - 36px); height: calc(100% - 36px); }
    .about-bottom { flex-direction: column; align-items: stretch; gap: 16px; }
    .about-bottom .btn { justify-content: center; }

    .form-row { grid-template-columns: 1fr; gap: 0; }

    .quick-contact { grid-template-columns: 1fr; }

    .info-card {
        gap: 14px;
        padding: 18px 16px;
        box-sizing: border-box;
        max-width: 100%;
    }
    .info-card > div:not(.info-icon) { min-width: 0; flex: 1; }
    .info-card h5 { font-size: 16px; }
    .info-card p { font-size: 14px; line-height: 1.55; word-wrap: break-word; overflow-wrap: anywhere; }
    .info-card a { word-wrap: break-word; overflow-wrap: anywhere; }
    .info-icon { width: 42px; height: 42px; min-width: 42px; flex: 0 0 42px; font-size: 16px; }

    .contact-form-wrap { padding: 28px 22px; }

    .float-btn { width: 50px; height: 50px; font-size: 20px; }
    .float-call { bottom: 84px; }
    .scroll-top { width: 40px; height: 40px; left: 16px; bottom: 16px; }

    .marquee-track { font-size: 12px; gap: 30px; }
}

@media (max-width: 480px) {
    .hero-cta { flex-direction: column; align-items: stretch; }
    .hero-cta .btn { width: 100%; }
    .topbar-left span:nth-child(1) { display: none; }
    .topbar-right a { display: none; }
    .social-mini { margin: 0 auto; }
    .hero-stats { grid-template-columns: 1fr 1fr; }
}


