/* ==========================================
   INDIAN AUTO'S CAR CARE — STYLES
   ========================================== */

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

:root {
    /* Brand colors — sampled from IACC logo */
    --red: #e30613;          /* vibrant logo red */
    --red-dark: #b30410;     /* deeper red for hovers / shadows */
    --red-light: #ff2233;    /* highlight red */
    --black: #0d0d0d;        /* deep matte black from logo */
    --dark-grey: #1c1c1c;    /* dark surface */
    --grey: #2a2a2a;         /* divider grey */
    --silver: #c8ccd0;       /* metallic silver from wrench/gear */
    --silver-dark: #8a8e93;  /* darker metallic accent */
    --light-grey: #f4f5f7;   /* soft section background */
    --white: #ffffff;
    --text: #2b2b2b;
    --text-light: #6a6a6a;
    --whatsapp: #25d366;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.18);
    --shadow-red: 0 10px 28px rgba(227, 6, 19, 0.28);
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    width: 100%;
    overflow-x: clip;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
    width: 100%;
    max-width: 100vw;
    overflow-x: clip;
    position: relative;
}

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

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

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

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

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 34px;
    font-size: 20px;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
    letter-spacing: 0.3px;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--red);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--red-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(227, 6, 19, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

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

.btn-whatsapp {
    background: var(--whatsapp);
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #1ebe57;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

.btn-light {
    background: var(--white);
    color: var(--black);
}

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

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ---------- SECTION HEADERS ---------- */
section {
    padding: 90px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    background: rgba(227, 6, 19, 0.1);
    color: var(--red);
    padding: 7px 20px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.section-tag.light {
    background: rgba(255, 255, 255, 0.1);
    color: var(--red);
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 46px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 18px;
    line-height: 1.2;
}

.section-title.light {
    color: var(--white);
}

.section-lead {
    font-size: 20px;
    color: var(--text-light);
    line-height: 1.7;
}

.section-lead.light {
    color: rgba(255, 255, 255, 0.7);
}

/* ---------- TOPBAR ---------- */
.topbar {
    background: var(--black);
    color: var(--white);
    padding: 11px 0;
    font-size: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.topbar-left {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.topbar-left span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.topbar-left i {
    color: var(--red);
}

.topbar-left a:hover {
    color: var(--red);
}

.topbar-right {
    display: flex;
    gap: 12px;
}

.topbar-right a {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    font-size: 21px;
}

.topbar-right a:hover {
    background: var(--red);
    transform: translateY(-2px);
}

/* ---------- HEADER ---------- */
.header {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.98);
    padding: 6px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    margin-right: 32px;
}

.logo-img {
    height: 70px;
    width: auto;
    max-width: 240px;
    display: block;
    transition: var(--transition);
}

.logo:hover .logo-img {
    transform: scale(1.04);
}

.header.scrolled .logo-img {
    height: 60px;
}

.logo-box {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: var(--red);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(227, 6, 19, 0.4);
    position: relative;
    overflow: hidden;
}

.logo-box::before {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -20px;
    right: -20px;
}

.logo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -1px;
    position: relative;
}

.logo-text .dot {
    color: var(--black);
}

.logo-info h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: 0.3px;
}

.logo-info p {
    font-size: 13px;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    margin-top: 2px;
}

/* Navigation */
.nav-list {
    display: flex;
    gap: 2px;
    align-items: center;
}

.nav-link {
    display: block;
    padding: 10px 14px;
    color: var(--white);
    font-size: 19px;
    font-weight: 500;
    position: relative;
    transition: var(--transition);
    border-radius: 8px;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover,
.nav-link.active {
    color: var(--red);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 25px;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    margin-left: 32px;
}

.btn-call,
.btn-wa {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 18px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 600;
    color: var(--white);
    transition: var(--transition);
    white-space: nowrap;
}

.btn-call {
    background: var(--red);
}

.btn-call:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(227, 6, 19, 0.4);
}

.btn-wa {
    background: var(--whatsapp);
}

.btn-wa:hover {
    background: #1ebe57;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

/* Hamburger toggle button */
.hamburger {
    display: none;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    padding: 0;
    background: var(--red);
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(227, 6, 19, 0.5);
    z-index: 1001;
    position: relative;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
}

.hamburger:hover {
    background: var(--red-dark);
    box-shadow: 0 8px 22px rgba(227, 6, 19, 0.6);
}

.hamburger-lines {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    justify-content: center;
}

.hamburger-lines span {
    display: block;
    width: 22px;
    height: 2.5px;
    background: var(--white);
    border-radius: 3px;
    transition: transform 0.35s ease, opacity 0.25s ease;
    transform-origin: center;
}

.hamburger-close {
    position: absolute;
    color: var(--white);
    font-size: 20px;
    opacity: 0;
    transform: rotate(-90deg) scale(0.6);
    transition: opacity 0.3s ease, transform 0.35s ease;
}

.hamburger.active {
    background: var(--black);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.18);
}

.hamburger.active .hamburger-lines span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
    opacity: 0;
}

.hamburger.active .hamburger-lines span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active .hamburger-lines span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
    opacity: 0;
}

.hamburger.active .hamburger-close {
    opacity: 1;
    transform: rotate(0) scale(1);
}

/* ---------- HERO ---------- */
.hero {
    position: relative;
    height: calc(100vh - 90px);
    min-height: 600px;
    max-height: 800px;
    overflow: hidden;
    color: var(--white);
    display: flex;
    align-items: center;
}

.hero-slider {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    transform: scale(1.05);
}

.hero-slide.active {
    opacity: 1;
    animation: kenBurns 8s ease-in-out infinite alternate;
}

@keyframes kenBurns {
    0% { transform: scale(1.05); }
    100% { transform: scale(1.15); }
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-subtitle {
    color: var(--red);
    font-size: 17px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 18px;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 70px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 22px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-title span {
    color: var(--red);
}

.hero-desc {
    font-size: 20px;
    max-width: 640px;
    margin-bottom: 38px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-dots {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.hero-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
}

.hero-dots .dot.active {
    background: var(--red);
    width: 35px;
    border-radius: 6px;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    z-index: 3;
    animation: bounce 2s infinite;
}

.hero-scroll:hover {
    background: var(--red);
    border-color: var(--red);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translate(-50%, 0); }
    40% { transform: translate(-50%, -10px); }
    60% { transform: translate(-50%, -5px); }
}

/* ---------- HIGHLIGHTS ---------- */
.highlights {
    padding: 80px 0;
    background: linear-gradient(180deg, #fafafa 0%, #f0f0f0 100%);
    margin-top: -1px;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.highlight-card {
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    padding: 36px 28px;
    border-radius: 18px;
    transition: var(--transition);
    box-shadow: 0 15px 40px rgba(227, 6, 19, 0.22);
    position: relative;
    overflow: hidden;
    isolation: isolate;
    border: 1px solid rgba(255, 255, 255, 0.06);
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.highlight-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 55px rgba(227, 6, 19, 0.4);
}

.highlight-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    transition: var(--transition);
    position: relative;
}

.highlight-icon::after {
    content: '';
    position: absolute;
    inset: -6px;
    border: 1.5px dashed rgba(255, 255, 255, 0.4);
    border-radius: 22px;
    opacity: 1;
    transition: var(--transition);
}

.highlight-card:hover .highlight-icon {
    background: rgba(255, 255, 255, 0.28);
    transform: rotate(-8deg);
}

.highlight-card:hover .highlight-icon::after {
    transform: rotate(8deg);
}

.highlight-icon i {
    font-size: 32px;
    color: var(--white);
    transition: var(--transition);
}

.highlight-card:hover .highlight-icon i {
    transform: rotate(8deg);
}

.highlight-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 23px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    transition: var(--transition);
    position: relative;
}

.highlight-card h4::after {
    content: '';
    display: block;
    width: 36px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    margin-top: 12px;
    transition: var(--transition);
}

.highlight-card:hover h4::after {
    width: 50px;
}

.highlight-card p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.7;
    transition: var(--transition);
    margin-bottom: 18px;
}

.highlight-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    color: var(--red);
    font-size: 14px;
    transition: var(--transition);
}

.highlight-card:hover .highlight-arrow {
    transform: translateX(6px);
}

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

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.about-experience {
    position: absolute;
    bottom: -30px;
    right: -20px;
    background: var(--red);
    color: var(--white);
    padding: 28px 32px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 15px 40px rgba(227, 6, 19, 0.4);
}

.about-experience .years {
    font-family: 'Poppins', sans-serif;
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
}

.about-experience p {
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content .section-title {
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.8;
    font-size: 20px;
}

.about-features {
    margin: 30px 0;
    display: grid;
    gap: 20px;
}

.feature {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.feature i {
    width: 54px;
    height: 54px;
    min-width: 54px;
    background: rgba(227, 6, 19, 0.1);
    color: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.feature h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
}

.feature p {
    font-size: 18px;
    margin: 0;
}

/* ---------- SERVICES ---------- */
.services {
    background: var(--light-grey);
}

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

.service-card {
    background: var(--white);
    border-radius: 18px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(227, 6, 19, 0.18);
}

.service-image {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}

.service-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.55) 100%);
    transition: var(--transition);
    z-index: 1;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: var(--red);
    color: var(--white);
    padding: 7px 16px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    box-shadow: 0 6px 16px rgba(227, 6, 19, 0.35);
    transition: var(--transition);
}

.service-card:hover .service-badge {
    background: var(--black);
    transform: translateY(-3px);
}

.service-body {
    padding: 28px 28px 32px;
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--red);
    transition: width 0.4s ease;
}

.service-card:hover .service-body::before {
    width: 100%;
}

.service-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 23px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 14px;
}

.service-card p {
    color: var(--text-light);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 22px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.5;
    white-space: nowrap;
}

.service-features li i {
    color: var(--red);
    font-size: 15px;
    flex-shrink: 0;
}

.service-link {
    color: var(--red);
    font-weight: 600;
    font-size: 19px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    margin-top: auto;
    align-self: flex-start;
    padding-top: 16px;
}

.service-link:hover {
    gap: 14px;
    color: var(--red-dark);
}

/* ---------- GALLERY ---------- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(227, 6, 19, 0.85), rgba(0, 0, 0, 0.75));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    color: var(--white);
    font-size: 28px;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* ---------- WHY CHOOSE US ---------- */
.why-choose {
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-grey) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.why-choose::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(227, 6, 19, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    top: -200px;
    right: -200px;
}

.why-choose::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(227, 6, 19, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -150px;
    left: -150px;
}

.why-choose .container {
    position: relative;
    z-index: 1;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
}

.why-card:hover {
    background: rgba(227, 6, 19, 0.1);
    border-color: var(--red);
    transform: translateY(-6px);
}

.why-card i {
    font-size: 46px;
    color: var(--red);
    margin-bottom: 20px;
}

.why-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 12px;
}

.why-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
}

.why-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 40px;
    background: rgba(227, 6, 19, 0.1);
    border: 1px solid rgba(227, 6, 19, 0.2);
    border-radius: 20px;
    text-align: center;
}

.stat {
    color: var(--white);
}

.stat .counter {
    font-family: 'Poppins', sans-serif;
    font-size: 52px;
    font-weight: 800;
    color: var(--red);
    line-height: 1;
}

.stat p {
    font-size: 14px;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* ---------- CTA STRIP ---------- */
.cta-strip {
    padding: 60px 0;
    background: var(--red);
    background-image: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
}

.cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cta-inner h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 34px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.cta-inner p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 21px;
}

.cta-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials .container {
    position: relative;
}

.testimonial-swiper {
    padding: 30px 4px 70px;
}

.testimonial-swiper .swiper-wrapper {
    align-items: stretch;
}

.testimonial-swiper .swiper-slide {
    height: auto;
    display: flex;
}

.testimonial-card {
    background: var(--white);
    padding: 44px 36px 36px;
    border-radius: 18px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.07);
    width: 100%;
    height: auto;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    isolation: isolate;
    display: flex;
    flex-direction: column;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--red), var(--red-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.45s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(227, 6, 19, 0.18);
    border-color: transparent;
}

.testimonial-card:hover::after {
    transform: scaleX(1);
}

.stars {
    color: #ffb800;
    margin-bottom: 22px;
    font-size: 18px;
    display: inline-flex;
    gap: 4px;
    background: rgba(255, 184, 0, 0.1);
    padding: 6px 14px;
    border-radius: 30px;
}

.stars i {
    margin: 0;
}

.quote {
    color: var(--text);
    font-size: 18px;
    line-height: 1.85;
    margin-bottom: 28px;
    font-style: normal;
    position: relative;
    padding: 0;
    font-weight: 400;
    quotes: "\201C" "\201D";
}

.quote::before {
    content: open-quote;
    color: var(--red);
    font-family: 'Georgia', serif;
    font-size: 28px;
    font-weight: 700;
    margin-right: 4px;
    vertical-align: -10px;
    line-height: 0;
}

.quote::after {
    content: close-quote;
    color: var(--red);
    font-family: 'Georgia', serif;
    font-size: 28px;
    font-weight: 700;
    margin-left: 4px;
    vertical-align: -10px;
    line-height: 0;
}

.author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 22px;
    border-top: 1px dashed rgba(227, 6, 19, 0.2);
    position: relative;
    margin-top: auto;
}

.author-avatar {
    flex: 0 0 58px;
    width: 58px;
    height: 58px;
    min-width: 58px;
    max-width: 58px;
    aspect-ratio: 1 / 1;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    border: 3px solid var(--white);
    outline: 2px solid rgba(227, 6, 19, 0.25);
    outline-offset: 0;
    transition: var(--transition);
}

.testimonial-card:hover .author-avatar {
    outline-color: var(--red);
    transform: scale(1.05);
}

.author > div {
    flex: 1;
}

.author h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 2px;
}

.author p {
    font-size: 15px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 6px;
}

.author p::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--red);
    border-radius: 50%;
}

.swiper-pagination-bullet-active {
    background: var(--red) !important;
}

.testi-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    margin-top: 10px;
}

.testi-controls .swiper-pagination {
    position: static;
    width: auto;
    display: inline-flex;
    gap: 6px;
}

.testi-controls .swiper-button-prev,
.testi-controls .swiper-button-next {
    position: static;
    margin: 0;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--red);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(227, 6, 19, 0.3);
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    top: auto;
}

.testi-controls .swiper-button-prev::after,
.testi-controls .swiper-button-next::after {
    font-family: 'swiper-icons';
    font-size: 16px !important;
    font-weight: 700;
    color: var(--white);
    transition: var(--transition);
}

.testi-controls .swiper-button-prev:hover,
.testi-controls .swiper-button-next:hover {
    background: var(--red-dark);
    box-shadow: 0 12px 28px rgba(227, 6, 19, 0.5);
    transform: translateY(-3px);
}

.testi-controls .swiper-button-prev.swiper-button-disabled,
.testi-controls .swiper-button-next.swiper-button-disabled {
    opacity: 0.35;
    pointer-events: none;
}

/* ---------- FAQ ---------- */
.faq {
    background: var(--light-grey);
}

.faq-list {
    max-width: 100%;
    margin: 0 auto;
    display: grid;
    gap: 14px;
    padding: 0 20px;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.faq-question {
    width: 100%;
    padding: 24px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--black);
    text-align: left;
    transition: var(--transition);
}

.faq-question i {
    color: var(--red);
    transition: var(--transition);
    font-size: 15px;
}

.faq-item.active .faq-question {
    background: rgba(227, 6, 19, 0.04);
    color: var(--red);
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding: 0 28px 24px;
    color: var(--text-light);
    line-height: 1.75;
    font-size: 18px;
}

/* ---------- CONTACT ---------- */

/* Quick contact action cards row */
.quick-contact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.quick-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 24px 26px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    isolation: isolate;
    color: var(--text);
}

.quick-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    z-index: -1;
    transform: translateY(100%);
    transition: transform 0.45s ease;
}

.quick-card.quick-wa::before {
    background: linear-gradient(135deg, var(--whatsapp), #1ebe57);
}

.quick-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(227, 6, 19, 0.2);
    color: var(--white);
    border-color: transparent;
}

.quick-card.quick-wa:hover {
    box-shadow: 0 20px 40px rgba(37, 211, 102, 0.3);
}

.quick-card:hover::before {
    transform: translateY(0);
}

.quick-icon {
    flex: 0 0 60px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: var(--white);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: var(--transition);
}

.quick-card.quick-wa .quick-icon {
    background: linear-gradient(135deg, var(--whatsapp), #1ebe57);
}

.quick-card:hover .quick-icon {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(-8deg);
}

.quick-text {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.quick-text span {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-light);
    font-weight: 600;
    transition: var(--transition);
}

.quick-text strong {
    font-size: 17px;
    color: var(--black);
    font-weight: 700;
    word-break: break-word;
    transition: var(--transition);
}

.quick-card:hover .quick-text span,
.quick-card:hover .quick-text strong {
    color: var(--white);
}

.quick-card:hover .quick-text span {
    color: rgba(255, 255, 255, 0.85);
}

.quick-arrow {
    color: var(--red);
    font-size: 16px;
    transition: var(--transition);
    flex-shrink: 0;
}

.quick-card.quick-wa .quick-arrow {
    color: var(--whatsapp);
}

.quick-card:hover .quick-arrow {
    color: var(--white);
    transform: translateX(4px);
}

/* Main contact grid: form + info */
.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

/* Form panel */
.contact-form-wrap {
    background: var(--white);
    padding: 44px 40px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.contact-form-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--red), var(--red-dark), var(--red));
}

.form-header {
    margin-bottom: 30px;
}

.form-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(227, 6, 19, 0.1);
    color: var(--red);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 17px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 14px;
}

.form-header h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
}

.form-header p {
    color: var(--text-light);
    font-size: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-group {
    position: relative;
    margin-bottom: 14px;
}

.form-group label {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 16px;
    pointer-events: none;
    transition: var(--transition);
    z-index: 1;
}

.form-group-textarea label {
    top: 22px;
    transform: none;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 18px 16px 48px;
    border: 1.5px solid #e8e8e8;
    border-radius: 12px;
    font-family: inherit;
    font-size: 19px;
    color: var(--text);
    background: #fafafa;
    transition: var(--transition);
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23e10600'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 22px;
    padding-right: 42px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--red);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(227, 6, 19, 0.08);
}

.form-group:focus-within label {
    color: var(--red);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    padding-top: 16px;
}

.form-message {
    margin-top: 16px;
    padding: 14px;
    border-radius: 10px;
    font-size: 15px;
    text-align: center;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.form-message.error {
    display: block;
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.3);
}

/* Dark info panel */
.contact-info-panel {
    background: linear-gradient(160deg, var(--black) 0%, var(--dark-grey) 100%);
    color: var(--white);
    padding: 44px 36px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.contact-info-panel::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(227, 6, 19, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact-info-panel::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(227, 6, 19, 0.18) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.info-panel-header {
    position: relative;
    margin-bottom: 30px;
}

.info-tag {
    display: inline-block;
    background: rgba(227, 6, 19, 0.2);
    color: var(--red);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
}

.info-panel-header h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.info-panel-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    line-height: 1.7;
}

.info-list {
    list-style: none;
    position: relative;
    margin: 0 0 30px;
    padding: 0;
}

.info-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.info-list li:last-child {
    border-bottom: none;
}

.info-list-icon {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    background: rgba(227, 6, 19, 0.15);
    border: 1px solid rgba(227, 6, 19, 0.3);
    color: var(--red);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
}

.info-list h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-list p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.6;
    margin: 0;
}

.info-list a {
    color: rgba(255, 255, 255, 0.78);
    transition: var(--transition);
}

.info-list a:hover {
    color: var(--red);
}

.info-social {
    position: relative;
    padding-top: 22px;
    border-top: 1px dashed rgba(255, 255, 255, 0.15);
}

.info-social > span {
    display: block;
    font-size: 17px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
}

.info-social-icons {
    display: flex;
    gap: 10px;
}

.info-social-icons a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    transition: var(--transition);
}

.info-social-icons a:hover {
    background: var(--red);
    border-color: var(--red);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(227, 6, 19, 0.4);
}

/* Map with floating overlay */
.map-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.map-wrap iframe {
    display: block;
    filter: grayscale(0.15);
    transition: filter 0.4s ease;
}

.map-wrap:hover iframe {
    filter: grayscale(0);
}

.map-overlay {
    position: absolute;
    top: 24px;
    left: 24px;
    background: var(--white);
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.18);
    z-index: 2;
    max-width: calc(100% - 48px);
}

.map-overlay > i {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.map-overlay h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 2px;
}

.map-overlay p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}

.map-direction {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red);
    color: var(--white);
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-left: 10px;
    transition: var(--transition);
    white-space: nowrap;
}

.map-direction:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(227, 6, 19, 0.4);
}

/* ---------- FOOTER ---------- */
.footer {
    background: var(--black);
    color: rgba(255, 255, 255, 0.7);
    padding: 70px 0 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--red), var(--red-dark), var(--red));
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 22px;
}

.footer-logo-img {
    height: 80px;
    width: auto;
    max-width: 220px;
    display: block;
    transition: var(--transition);
}

.footer-logo:hover .footer-logo-img {
    transform: translateY(-3px);
}

.footer-logo .logo-info h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
}

.footer-logo .logo-info p {
    font-size: 13px;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    margin-top: 2px;
}

.footer-about {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 22px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 15px;
    box-shadow: 0 4px 12px rgba(227, 6, 19, 0.35);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--red-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(227, 6, 19, 0.55);
}

.footer-col h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 23px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--red);
    border-radius: 3px;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
    font-size: 18px;
    line-height: 1.75;
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.footer-links a i {
    color: var(--red);
    font-size: 11px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-contact li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.footer-contact i {
    color: var(--red);
    margin-top: 5px;
    font-size: 15px;
    min-width: 15px;
}

.footer-contact a:hover {
    color: var(--white);
}

.footer-bottom {
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 18px;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom .credit {
    color: var(--red);
    font-weight: 600;
    transition: var(--transition);
}

.footer-bottom .credit:hover {
    color: var(--white);
    text-decoration: underline;
}

.footer-bottom-links {
    display: flex;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-bottom-links li {
    position: relative;
    padding: 0 16px;
}

.footer-bottom-links li:first-child {
    padding-left: 0;
}

.footer-bottom-links li:last-child {
    padding-right: 0;
}

.footer-bottom-links li + li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 14px;
    width: 1px;
    background: rgb(255 255 255);
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 19px;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--red);
}

/* ==========================================
   ICON ANIMATIONS
   ========================================== */

/* Continuous idle animations */
@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-6px); }
}

@keyframes iconBob {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-3px); }
}

@keyframes iconSpin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

@keyframes iconPulseSoft {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%      { transform: scale(1.08); opacity: 0.85; }
}

@keyframes iconRing {
    0%   { transform: rotate(0); }
    20%  { transform: rotate(-12deg); }
    40%  { transform: rotate(10deg); }
    60%  { transform: rotate(-6deg); }
    80%  { transform: rotate(4deg); }
    100% { transform: rotate(0); }
}

@keyframes iconWobble {
    0%, 100% { transform: rotate(0); }
    25%      { transform: rotate(-8deg); }
    75%      { transform: rotate(8deg); }
}

@keyframes iconHeartbeat {
    0%, 28%, 70%, 100% { transform: scale(1); }
    14%, 42%           { transform: scale(1.18); }
}

@keyframes iconShake {
    0%, 100%            { transform: translateX(0); }
    20%, 60%            { transform: translateX(-4px); }
    40%, 80%            { transform: translateX(4px); }
}

/* Topbar — phone rings, envelope bobs */
.topbar-left i.fa-phone {
    animation: iconRing 2.8s ease-in-out infinite;
    transform-origin: center;
}

.topbar-left i.fa-envelope {
    animation: iconBob 2.5s ease-in-out infinite;
}

.topbar-left i.fa-clock {
    animation: iconSpin 30s linear infinite;
}

/* Highlight cards — icon floats softly */
.highlight-icon i {
    animation: iconFloat 3.5s ease-in-out infinite;
}

/* Why-choose-us cards — continuous idle animation, varied per card */
.why-card i {
    display: inline-block;
    transition: var(--transition);
    animation: iconFloat 3.5s ease-in-out infinite;
    transform-origin: center;
}

.why-card:nth-child(1) i { animation: iconBob 3s ease-in-out infinite; }
.why-card:nth-child(2) i { animation: iconHeartbeat 2.4s ease-in-out infinite; }
.why-card:nth-child(3) i { animation: iconPulseSoft 2.6s ease-in-out infinite; }
.why-card:nth-child(4) i { animation: iconShake 2.8s ease-in-out infinite; }
.why-card:nth-child(5) i { animation: iconWobble 2.6s ease-in-out infinite; }
.why-card:nth-child(6) i { animation: iconFloat 3s ease-in-out infinite; }
.why-card:nth-child(7) i { animation: iconHeartbeat 2.2s ease-in-out infinite; }
.why-card:nth-child(8) i { animation: iconRing 3s ease-in-out infinite; }

.why-card:hover i {
    animation: iconWobble 0.6s ease-in-out !important;
}

/* Feature icons (About section) */
.feature:hover i {
    animation: iconHeartbeat 1s ease-in-out;
}

/* Service badge — subtle pulse on card hover */
.service-card:hover .service-badge {
    animation: iconPulseSoft 1.2s ease-in-out infinite;
}

/* Service link arrow */
.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover i {
    animation: iconShake 0.5s ease-in-out;
}

/* Quick contact cards */
.quick-card .quick-icon i {
    transition: var(--transition);
}

.quick-card:hover .quick-icon i {
    animation: iconWobble 0.6s ease-in-out;
}

.quick-arrow {
    animation: iconBob 2.2s ease-in-out infinite;
}

/* Contact info panel icons */
.info-list li:hover .info-list-icon i {
    animation: iconRing 0.7s ease-in-out;
}

/* Form label icons bounce on focus */
.form-group:focus-within label i {
    animation: iconBob 0.6s ease-in-out;
}

/* Hero scroll arrow keeps existing bounce — add chevron pulse */
.hero-scroll i {
    animation: iconBob 1.5s ease-in-out infinite;
}

/* Back-to-top arrow */
.back-to-top:hover i {
    animation: iconBob 0.6s ease-in-out;
}

/* Floating WhatsApp + Call — keep pulse, add icon wobble on hover */
.float-whatsapp:hover i,
.float-call:hover i {
    animation: iconWobble 0.6s ease-in-out;
}

/* Hero CTA buttons icons */
.hero-buttons .btn:hover i {
    animation: iconBob 0.5s ease-in-out;
}

/* Footer chevron arrows shift forward on hover (already), add icon */
.footer-links a:hover i {
    animation: iconShake 0.5s ease-in-out;
}

.footer-contact li:hover i {
    animation: iconHeartbeat 0.9s ease-in-out;
}

/* Social icons everywhere — subtle scale on hover */
.topbar-right a:hover i,
.contact-social a:hover i,
.info-social-icons a:hover i,
.footer-social a:hover i {
    animation: iconHeartbeat 0.8s ease-in-out;
}

/* FAQ + icon on opening */
.faq-item.active .faq-question i {
    animation: iconWobble 0.5s ease-in-out;
}

/* Stars in testimonials sparkle on hover */
.testimonial-card:hover .stars i:nth-child(1) { animation: iconBob 0.6s ease-in-out 0s; }
.testimonial-card:hover .stars i:nth-child(2) { animation: iconBob 0.6s ease-in-out 0.08s; }
.testimonial-card:hover .stars i:nth-child(3) { animation: iconBob 0.6s ease-in-out 0.16s; }
.testimonial-card:hover .stars i:nth-child(4) { animation: iconBob 0.6s ease-in-out 0.24s; }
.testimonial-card:hover .stars i:nth-child(5) { animation: iconBob 0.6s ease-in-out 0.32s; }

/* Map overlay marker icon — gentle bounce */
.map-overlay > i {
    animation: iconBob 2s ease-in-out infinite;
}

.map-direction:hover i {
    animation: iconShake 0.5s ease-in-out;
}

/* Modal icon */
.modal.is-open .modal-icon {
    animation: iconHeartbeat 1.2s ease-in-out;
}

/* Section tag icons (form badge) */
.form-badge i {
    animation: iconBob 2.2s ease-in-out infinite;
}

/* Respect users who prefer no motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ---------- POLICY MODAL ---------- */
.modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.modal.is-open {
    display: flex;
    animation: modalFade 0.25s ease;
}

@keyframes modalFade {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.72);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.modal-dialog {
    position: relative;
    background: var(--white);
    width: 100%;
    max-width: 720px;
    max-height: 90vh;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: modalSlide 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalSlide {
    from { opacity: 0; transform: translateY(30px) scale(0.96); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 26px 34px;
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-grey) 100%);
    color: var(--white);
    position: relative;
}

.modal-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--red), var(--red-dark));
}

.modal-icon {
    width: 48px;
    height: 48px;
    background: var(--red);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--white);
    flex-shrink: 0;
}

.modal-header h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin: 0;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--red);
    transform: rotate(90deg);
}

.modal-body {
    padding: 30px 34px;
    overflow-y: auto;
    flex: 1;
    color: var(--text);
    font-size: 15px;
    line-height: 1.75;
}

.modal-body p {
    margin-bottom: 14px;
}

.modal-body h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--black);
    margin: 22px 0 10px;
    padding-bottom: 6px;
    border-bottom: 2px solid rgba(227, 6, 19, 0.15);
}

.modal-body ul {
    list-style: none;
    margin: 0 0 14px;
    padding: 0;
}

.modal-body ul li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 8px;
}

.modal-body ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--red);
    position: absolute;
    left: 0;
    top: 1px;
    font-size: 12px;
}

.modal-body a {
    color: var(--red);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: rgba(227, 6, 19, 0.3);
    text-underline-offset: 2px;
}

.modal-body a:hover {
    text-decoration-color: var(--red);
}

.modal-body::-webkit-scrollbar {
    width: 8px;
}

.modal-body::-webkit-scrollbar-track {
    background: #f5f5f5;
}

.modal-body::-webkit-scrollbar-thumb {
    background: rgba(227, 6, 19, 0.4);
    border-radius: 4px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: var(--red);
}

.modal-footer {
    padding: 18px 34px 24px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: flex-end;
}

body.modal-open {
    overflow: hidden;
}

/* Modal mobile responsive */
@media (max-width: 768px) {
    .modal { padding: 14px; align-items: flex-end; }
    .modal-dialog {
        max-width: 100%;
        max-height: 88vh;
        border-radius: 18px 18px 0 0;
        animation: modalSlideUp 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }
    @keyframes modalSlideUp {
        from { opacity: 0; transform: translateY(60px); }
        to { opacity: 1; transform: translateY(0); }
    }
}

@media (max-width: 640px) {
    .modal { padding: 0; }
    .modal-dialog {
        max-height: 100vh;
        height: 100vh;
        border-radius: 0;
        animation: modalFade 0.3s ease;
    }
    .modal-header {
        padding: 18px 56px 18px 18px;
        gap: 12px;
    }
    .modal-header h3 { font-size: 17px; }
    .modal-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
        border-radius: 10px;
    }
    .modal-close {
        top: 14px;
        right: 14px;
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    .modal-body {
        padding: 22px 18px;
        font-size: 14.5px;
        line-height: 1.7;
        -webkit-overflow-scrolling: touch;
    }
    .modal-body p { margin-bottom: 12px; }
    .modal-body h4 {
        font-size: 15.5px;
        margin: 18px 0 8px;
        padding-bottom: 5px;
    }
    .modal-body ul li {
        font-size: 14px;
        padding-left: 20px;
        margin-bottom: 7px;
    }
    .modal-footer {
        padding: 14px 18px calc(14px + env(safe-area-inset-bottom));
    }
    .modal-footer .btn {
        width: 100%;
        font-size: 15px;
        padding: 13px 24px;
    }
}

@media (max-width: 360px) {
    .modal-header { padding: 16px 50px 16px 14px; gap: 10px; }
    .modal-header h3 { font-size: 16px; }
    .modal-icon { width: 36px; height: 36px; font-size: 14px; }
    .modal-body { padding: 18px 14px; font-size: 14px; }
    .modal-body h4 { font-size: 15px; }
    .modal-footer { padding: 12px 14px calc(12px + env(safe-area-inset-bottom)); }
}

/* ---------- MOBILE BOTTOM ACTION BAR ---------- */
.mobile-action-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 998;
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-grey) 100%);
    border-top: 2px solid var(--red);
    box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.35);
    padding-bottom: env(safe-area-inset-bottom, 0);
}

.mobile-action-bar::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1px;
    height: 26px;
    background: rgba(255, 255, 255, 0.18);
}

.mab-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 12px;
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    transition: background 0.25s ease;
    text-decoration: none;
}

.mab-btn:active {
    background: rgba(255, 255, 255, 0.05);
}

.mab-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
    transition: var(--transition);
}

.mab-whatsapp .mab-icon {
    color: var(--whatsapp);
    border-color: rgba(37, 211, 102, 0.5);
    background: rgba(37, 211, 102, 0.12);
}

.mab-call .mab-icon {
    color: var(--red);
    border-color: rgba(227, 6, 19, 0.5);
    background: rgba(227, 6, 19, 0.15);
}

.mab-whatsapp:active .mab-icon {
    background: var(--whatsapp);
    color: var(--white);
}

.mab-call:active .mab-icon {
    background: var(--red);
    color: var(--white);
}

.mab-label {
    letter-spacing: 0.3px;
}

/* Show the bar on mobile + adjust other floating elements */
@media (max-width: 640px) {
    .mobile-action-bar { display: flex; }

    /* Hide the round floating buttons since the bar takes over */
    .float-whatsapp,
    .float-call { display: none !important; }

    /* Push back-to-top above the bar */
    .back-to-top { bottom: 80px; }

    /* Add bottom padding to body so the bar doesn't cover content */
    body { padding-bottom: 64px; }
}

@media (max-width: 400px) {
    .mab-btn { font-size: 14px; padding: 12px 10px; gap: 8px; }
    .mab-icon { width: 30px; height: 30px; font-size: 13px; }
}

/* ---------- FLOATING BUTTONS ---------- */
.float-whatsapp,
.float-call {
    position: fixed;
    right: 24px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    z-index: 999;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.float-whatsapp {
    background: var(--whatsapp);
    bottom: 24px;
}

.float-call {
    background: var(--red);
    bottom: 96px;
    font-size: 24px;
}

.float-whatsapp:hover,
.float-call:hover {
    transform: scale(1.1);
    animation: none;
}

@keyframes pulse {
    0% { box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25), 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25), 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25), 0 0 0 0 rgba(37, 211, 102, 0); }
}

.float-call {
    animation: pulseRed 2s infinite;
}

@keyframes pulseRed {
    0% { box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25), 0 0 0 0 rgba(227, 6, 19, 0.5); }
    70% { box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25), 0 0 0 15px rgba(227, 6, 19, 0); }
    100% { box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25), 0 0 0 0 rgba(227, 6, 19, 0); }
}

.back-to-top {
    position: fixed;
    left: 24px;
    bottom: 24px;
    width: 46px;
    height: 46px;
    background: var(--black);
    color: var(--white);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    transition: var(--transition);
    font-size: 16px;
}

.back-to-top.visible {
    display: flex;
}

.back-to-top:hover {
    background: var(--red);
    transform: translateY(-4px);
}

/* ==========================================
   RESPONSIVE — TABLET
   ========================================== */
@media (max-width: 1280px) {
    .nav-link {
        padding: 10px 10px;
        font-size: 14px;
    }

    .btn-call span,
    .btn-wa span {
        display: none;
    }

    .btn-call,
    .btn-wa {
        width: 42px;
        height: 42px;
        padding: 0;
        justify-content: center;
        font-size: 15px;
    }
}

@media (max-width: 1100px) {
    .hero-title { font-size: 58px; }
}

@media (max-width: 980px) {
    section { padding: 70px 0; }
    .section-title { font-size: 38px; }
    .section-lead { font-size: 17px; }

    .topbar .container { justify-content: center; }
    .d-none-mobile { display: none; }

    .hamburger { display: flex; }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        max-width: 85vw;
        height: 100vh;
        background: var(--black);
        padding: 100px 30px 30px;
        transition: right 0.4s ease;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
        overflow-y: auto;
    }

    .nav.active { right: 0; }

    .nav-list {
        flex-direction: column;
        gap: 4px;
    }

    .nav-link {
        padding: 14px 20px;
        font-size: 17px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 0;
    }

    .nav-link::after { display: none; }

    .nav-link:hover,
    .nav-link.active {
        background: rgba(227, 6, 19, 0.1);
        padding-left: 26px;
    }

    .hero-title { font-size: 48px; }
    .hero-desc { font-size: 18px; }

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

    .highlight-card { aspect-ratio: auto; }

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

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .about-image img { height: 400px; }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .why-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 30px 20px;
    }
}

/* ==========================================
   RESPONSIVE — MOBILE
   ========================================== */
@media (max-width: 640px) {
    .container { padding: 0 18px; }
    section { padding: 60px 0; }
    body { font-size: 16px; }

    .topbar {
        font-size: 13px;
        padding: 9px 0;
    }

    .topbar-left {
        gap: 14px;
        justify-content: center;
    }

    .header-actions .btn-call,
    .header-actions .btn-wa {
        display: none;
    }

    .logo-img { height: 54px; max-width: 200px; }
    .header.scrolled .logo-img { height: 48px; }
    .footer-logo-img { height: 72px; max-width: 220px; }
    .logo { margin-right: 0; }
    .header-actions { margin-left: 0; }

    .hero {
        height: auto;
        min-height: 600px;
        padding: 80px 0 100px;
    }

    .hero-subtitle {
        font-size: 14px;
        letter-spacing: 2px;
    }

    .hero-title { font-size: 38px; }
    .hero-desc { font-size: 16px; }

    .hero-buttons {
        gap: 10px;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        max-width: 320px;
    }

    .btn {
        padding: 13px 24px;
        font-size: 14.5px;
    }

    .hero-buttons .btn {
        width: 100%;
        min-width: 0;
        justify-content: center;
    }

    .section-title { font-size: 30px; }
    .section-lead { font-size: 16px; }
    .section-header { margin-bottom: 40px; }

    .highlight-grid,
    .services-grid,
    .why-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid { grid-template-columns: repeat(2, 1fr); }

    .form-row { grid-template-columns: 1fr; }
    .contact-form-wrap,
    .contact-info-panel { padding: 30px 22px; }
    .form-header h3,
    .info-panel-header h3 { font-size: 24px; }
    .map-overlay {
        flex-wrap: wrap;
        top: 16px;
        left: 16px;
        right: 16px;
        max-width: none;
    }
    .map-direction {
        margin-left: 0;
        margin-top: 6px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

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

    .about-experience {
        right: 16px;
        bottom: -20px;
        padding: 20px 22px;
    }

    .about-experience .years { font-size: 38px; }
    .about-experience p { font-size: 12px; }

    .cta-inner {
        text-align: center;
        flex-direction: column;
    }

    .cta-inner h3 { font-size: 26px; }

    .why-stats {
        grid-template-columns: 1fr 1fr;
    }

    .stat .counter { font-size: 38px; }

    .float-whatsapp,
    .float-call {
        width: 54px;
        height: 54px;
        font-size: 24px;
        right: 16px;
    }

    .float-whatsapp { bottom: 16px; }
    .float-call { bottom: 80px; }
    .back-to-top { left: 16px; bottom: 16px; }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        font-size: 12.5px;
        padding: 16px 0;
    }
    .footer-bottom p { font-size: 12.5px; line-height: 1.6; margin: 0; }
    .footer-bottom .credit { font-size: 12.5px; }
    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0;
    }
    .footer-bottom-links li { padding: 0 10px; }
    .footer-bottom-links a { font-size: 12px; }
    .footer-bottom-links li + li::before { height: 11px; }
}

@media (max-width: 400px) {
    .footer-bottom { font-size: 11.5px; padding: 14px 0; }
    .footer-bottom p { font-size: 11.5px; }
    .footer-bottom .credit { font-size: 11.5px; }
    .footer-bottom-links li { padding: 0 8px; }
    .footer-bottom-links a { font-size: 11px; }
    .footer-bottom-links li + li::before { height: 10px; }


    .hero-title { font-size: 32px; }
    .section-title { font-size: 26px; }
    .gallery-grid { grid-template-columns: 1fr; }
}
