@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&amp;family=JetBrains+Mono:wght@400;500;700&amp;display=swap');
:root {
    /* Color Palette */
    --color-primary: #2c5ead;
    --color-secondary: #8D99AE;
    --color-accent: #EF233C;
    --color-red: #D90429;
    --color-dark: #2B2D42;
    --color-light-bg: #EDF2F4;
    --color-black: #000000;
    --color-dark-grey: #222222;
    --color-grey: #666666;
    --color-light-grey: #f4f8fc;
    --color-white: #ffffff;
    /* Fonts */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    /* Speeds */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.25s ease;
    /* Shadows */
    --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.02);
    --shadow-medium: 0 10px 30px rgba(44, 94, 173, 0.06);
    --shadow-hover: 0 20px 40px rgba(44, 94, 173, 0.12);
    /* Borders */
    --border-light: 1px solid rgba(0, 0, 0, 0.06);
    --border-thin: 1px solid rgba(0, 0, 0, 0.06);
}

/* Reset Styles */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--color-white);
    color: var(--color-black);
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    background-color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
    overflow-wrap: break-word;
    word-wrap: break-word;
    -webkit-font-smoothing: antialiased;
    overscroll-behavior-x: none;
}

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

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

button,
input,
select,
textarea {
    font-family: inherit;
}

/* Typographical System */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--color-black);
}

.mono-label {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-primary);
    display: inline-block;
    margin-bottom: 0.75rem;
}

.slide .mono-label {
    color: var(--color-accent);
    background: rgba(75, 184, 250, 0.12);
    border: 1px solid rgba(75, 184, 250, 0.3);
    padding: 0.3rem 0.9rem;
    border-radius: 2rem;
}

/* Layout Utilities */

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

/* Alternating Section Structure */

.section {
    padding: 7rem 0;
}

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

.section-light {
    background-color: var(--color-dark);
}

.section-light .section-title,
.section-light .section-header-right p,
.section-light .mono-label {
    color: var(--color-white);
}

.section-light .feature-row * {
    color: var(--color-white);
}

.section-light .feature-row p {
    color: var(--color-light-bg) !important;
}

/* Red Section */

.section-red {
    background-color: var(--color-red);
}

.section-red .section-title,
.section-red .section-header-right p,
.section-red .mono-label {
    color: var(--color-white);
}

.section-header {
    margin-bottom: 4.5rem;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    align-items: flex-end;
}

.section-header-left {
    grid-column: span 7;
}

.section-header-right {
    grid-column: span 5;
    text-align: right;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 900;
    letter-spacing: -0.04em;
}

/* Badges */

.badge-blue {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(44, 94, 173, 0.08);
    border: 1px solid rgba(44, 94, 173, 0.12);
    color: var(--color-primary);
    padding: 0.4rem 1.1rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.badge-pulse {
    width: 7px;
    height: 7px;
    background-color: var(--color-primary);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
    100% {
        transform: scale(0.95);
        opacity: 0.5;
    }
}

/* Header & Navigation (Borderless) */

header {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
    transition: var(--transition-fast);
}

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

.logo-link {
    display: flex;
    align-items: center;
}

.logo-svg {
    height: 48px;
    width: 300px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

nav a {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    position: relative;
    padding: 0.5rem 0;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: var(--transition-fast);
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

/* Hamburger Toggler */

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 110;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-black);
    position: absolute;
    transition: var(--transition-fast);
}

.menu-toggle span:nth-child(1) {
    top: 0;
}

.menu-toggle span:nth-child(2) {
    top: 9px;
}

.menu-toggle span:nth-child(3) {
    top: 18px;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Image Slider Component */

.slider-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slider-wrapper {
    display: flex;
    width: 300%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide {
    width: 33.333%;
    height: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.15) 100%);
}

.slide-content {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 8rem;
    z-index: 2;
}

.slide-inner {
    max-width: 750px;
}

.slide-title {
    font-size: 4.5rem;
    line-height: 1.0;
    font-weight: 900;
    margin-bottom: 1.25rem;
    letter-spacing: -0.04em;
    color: #ffffff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.slide-title span {
    color: var(--color-accent);
}

.slide-text {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 580px;
    line-height: 1.65;
}

/* Slider Controls */

.slider-controls {
    position: absolute;
    bottom: 2.5rem;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: none;
    z-index: 10;
}

.slider-nav {
    display: flex;
    gap: 0.75rem;
    pointer-events: auto;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(8px);
    color: var(--color-white);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.slider-btn:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
    transform: scale(1.08);
}

.slider-indicators {
    display: flex;
    gap: 0.6rem;
    pointer-events: auto;
}

.indicator {
    width: 28px;
    height: 3px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: var(--transition-fast);
}

.indicator.active {
    background: var(--color-accent);
    width: 52px;
}

/* Hero Overview Segment */

.hero-overview {
    padding: 6.5rem 0;
}

.hero-overview-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 3.5rem;
    align-items: center;
}

.hero-overview-left {
    grid-column: span 7;
}

.hero-overview-right {
    grid-column: span 5;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Button UI */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-align: center;
}

.btn-black {
    background-color: var(--color-black);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-black:hover {
    background-color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(44, 94, 173, 0.25);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-black);
    border: 2px solid var(--color-black);
    padding: 0.85rem 2.35rem;
    /* adjust padding for border weight */
}

.btn-outline:hover {
    background-color: var(--color-black);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.btn-whatsapp {
    background-color: #25D366;
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.15);
}

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

/* Clean Services Card Layout */

.grid-layout {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.75rem;
}

.card {
    padding: 3rem;
    border: none;
    border-radius: 12px;
    background-color: var(--color-white);
    box-shadow: var(--shadow-subtle);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-6px);
}

.span-4 {
    grid-column: span 4;
}

.span-6 {
    grid-column: span 6;
}

.span-8 {
    grid-column: span 8;
}

.span-12 {
    grid-column: span 12;
}

/* Service Checklist System */

.card-checklist {
    list-style: none;
    margin: 1.25rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.card-checklist li {
    font-size: 0.75rem;
    font-weight: 700;
    background-color: rgba(44, 94, 173, 0.05);
    padding: 0.3rem 0.75rem;
    color: var(--color-primary);
    border-radius: 4px;
}

.service-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

#services .card {
    position: relative;
    overflow: hidden;
    padding: 0 3rem 3rem;
}

#services .service-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 220px;
    object-fit: cover;
    margin: 0;
    border-radius: 12px 12px 0 0;
}

#services .card>div:first-child {
    padding-top: 220px;
}

.service-img {
    height: 220px;
    object-fit: cover;
    display: block;
}

.card-title {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
    padding-top: 25px;
}

.card-description {
    color: var(--color-grey);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.card-link {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-black);
    margin-top: 1rem;
}

.card-link i {
    transition: var(--transition-fast);
    color: var(--color-primary);
}

.card:hover .card-link i {
    transform: translateX(6px);
}

/* Why Choose Us Split */

.why-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 3.5rem;
    align-items: center;
}

.why-left {
    grid-column: span 7;
}

.why-right {
    grid-column: span 5;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-row {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.feature-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(44, 94, 173, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: var(--color-primary);
    flex-shrink: 0;
}

/* Big Promo Box */

.promo-box {
    border: none;
    border-radius: 16px;
    background-color: var(--color-red);
    color: var(--color-white);
    padding: 3rem;
    text-align: center;
    box-shadow: var(--shadow-medium);
}

.promo-price {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    margin: 1rem 0;
    letter-spacing: -0.04em;
}

/* Process Timeline (New Segment) */

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.process-step {
    background-color: var(--color-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-subtle);
    position: relative;
    transition: var(--transition-smooth);
}

.process-step:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-4px);
}

.process-num {
    font-family: var(--font-mono);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-light);
    line-height: 1;
    margin-bottom: 1rem;
}

.process-title {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.process-desc {
    font-size: 0.9rem;
    color: var(--color-grey);
}

/* Common Problems Grid (New Segment) */

.problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.problem-card {
    background-color: var(--color-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-subtle);
    transition: var(--transition-smooth);
}

.problem-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.problem-icon {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 1.25rem;
}

.problem-title {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.problem-desc {
    font-size: 0.95rem;
    color: var(--color-grey);
}

/* Testimonials Grid (New Segment) */

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.testimonial-card {
    background-color: var(--color-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-subtle);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.quote-icon {
    font-size: 1.75rem;
    color: rgba(44, 94, 173, 0.15);
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--color-dark-grey);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.testimonial-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-top: var(--border-light);
    padding-top: 1rem;
}

.client-initial {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--color-light);
    color: var(--color-primary);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.client-name {
    font-weight: 700;
    font-size: 0.9rem;
}

.client-location {
    font-size: 0.75rem;
    color: var(--color-grey);
}

/* FAQs Segment (New Segment) */

.faq-list {
    max-width: 850px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--color-white);
    border-radius: 12px;
    box-shadow: var(--shadow-subtle);
    margin-bottom: 1.25rem;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-trigger {
    width: 100%;
    padding: 1.75rem 2rem;
    background: none;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.15rem;
    font-weight: 750;
    color: var(--color-black);
}

.faq-trigger i {
    color: var(--color-primary);
    transition: transform 0.3s ease;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 2rem;
    transition: all 0.35s ease;
    color: var(--color-grey);
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-item.active .faq-trigger i {
    transform: rotate(180deg);
}

.faq-item.active .faq-content {
    max-height: 250px;
    padding-bottom: 1.75rem;
}

/* Brands We Repair Grid */

.brands-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.25rem;
    margin-top: 3rem;
}

.brand-item {
    padding: 2rem;
    text-align: center;
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: -0.02em;
    background-color: var(--color-white);
    border-radius: 8px;
    box-shadow: var(--shadow-subtle);
    color: var(--color-black);
    transition: var(--transition-fast);
}

.brand-item:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    transform: scale(1.03);
}

/* Contact Grid Coordinate Block */

.contact-details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.contact-card {
    padding: 3rem;
    border-radius: 12px;
    background-color: var(--color-white);
    box-shadow: var(--shadow-subtle);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.contact-card i {
    color: var(--color-primary);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.contact-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.contact-card p,
.contact-card a {
    color: var(--color-grey);
    font-size: 1rem;
}

/* Map Location Row */

.location-row {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.75rem;
    margin-top: 3rem;
}

.location-info {
    grid-column: span 5;
    padding: 3.5rem;
    border-radius: 12px;
    background-color: var(--color-white);
    box-shadow: var(--shadow-subtle);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.map-frame {
    grid-column: span 7;
    height: 480px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Footer Section */

footer {
    background-color: var(--color-dark-grey);
    padding: 5rem 0 3.5rem 0;
}

.footer-top-promo {
    border-radius: 16px;
    background-color: #2c5ead;
    color: var(--color-white);
    padding: 4rem;
    text-align: center;
    margin-bottom: 4.5rem;
    box-shadow: 0 10px 30px rgba(44, 94, 173, 0.15);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2.5rem;
    margin-bottom: 3.5rem;
    text-align: left;
}

.footer-info {
    grid-column: span 5;
    text-align: left;
}

.footer-nav {
    grid-column: span 3;
}

.footer-services {
    grid-column: span 4;
}

.footer-title {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--color-white);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--color-primary);
    padding-left: 5px;
}

.footer-bottom {
    border-top: var(--border-light);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--color-white);
}

/* Floating Actions */

.floating-btn {
    position: fixed;
    bottom: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--color-white);
    border: 2px solid var(--color-grey);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    z-index: 99;
    transition: var(--transition-smooth);
}

.floating-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(44, 94, 173, 0.2);
}

.floating-btn i {
    font-size: 1.5rem;
}

.floating-left {
    left: 2rem;
    color: var(--color-primary);
}

.floating-right {
    right: 2rem;
    color: #25D366;
}

/* Modal Toggles */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(5px);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-container {
    background-color: var(--color-white);
    border-radius: 16px;
    width: 90%;
    max-width: 550px;
    padding: 3rem;
    position: relative;
    transform: translateY(30px);
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.modal-overlay.active .modal-container {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--color-black);
    transition: var(--transition-fast);
}

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

.modal-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.modal-subtitle {
    color: var(--color-grey);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

/* Forms */

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1.15rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    font-size: 1rem;
    background-color: var(--color-white);
    transition: var(--transition-fast);
}

.form-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 3px 3px 0px rgba(44, 94, 173, 0.08);
}

textarea.form-input {
    min-height: 110px;
    resize: vertical;
}

/* Page Specific layouts */

.page-title-section {
    padding: 6.5rem 0 3.5rem 0;
    border-bottom: var(--border-light);
}

.page-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    letter-spacing: -0.04em;
}

.page-intro {
    font-size: 1.25rem;
    max-width: 750px;
    color: var(--color-grey);
}

.declaration-content {
    padding: 5rem 0;
}

.declaration-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 3.5rem;
}

.declaration-body {
    grid-column: span 8;
}

.declaration-sidebar {
    grid-column: span 4;
    border-radius: 12px;
    padding: 2.5rem;
    height: fit-content;
    background-color: var(--color-light-grey);
}

.declaration-body h2 {
    font-size: 1.75rem;
    margin: 2.5rem 0 1rem 0;
}

.declaration-body h2:first-child {
    margin-top: 0;
}

.declaration-body p {
    margin-bottom: 1.5rem;
    color: var(--color-dark-grey);
}

.declaration-body ul {
    list-style: square;
    padding-left: 2rem;
    margin-bottom: 1.5rem;
    color: var(--color-dark-grey);
}

.declaration-body li {
    margin-bottom: 0.5rem;
}

/* Contact Page Layouts */

.contact-page-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
    margin-bottom: 5rem;
}

.contact-page-form {
    grid-column: span 7;
    padding: 4rem;
    background-color: var(--color-white);
    border-radius: 12px;
    box-shadow: var(--shadow-subtle);
}

.contact-page-info {
    grid-column: span 5;
    padding: 4rem;
    background-color: var(--color-light-grey);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.map-placeholder {
    border-radius: 8px;
    height: 250px;
    background-color: var(--color-white);
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
}

.map-placeholder i {
    color: var(--color-primary);
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Animations */

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

.fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

/* Responsive Media Queries */

@media (max-width: 1200px) {
    .brands-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .slider-container {
        height: 480px;
    }
    .slide-title {
        font-size: 2.75rem;
    }
    .hero-overview-left {
        grid-column: span 12;
    }
    .hero-overview-right {
        grid-column: span 12;
    }
    .why-left {
        grid-column: span 12;
    }
    .why-right {
        grid-column: span 12;
    }
    .span-4,
    .span-6,
    .span-8 {
        grid-column: span 6;
    }
    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .location-info {
        grid-column: span 12;
    }
    .map-frame {
        grid-column: span 12;
        height: 350px;
    }
    .contact-details-grid {
        grid-template-columns: 1fr;
    }
    .footer-info {
        grid-column: span 12;
        margin-bottom: 2rem;
    }
    .footer-nav {
        grid-column: span 6;
    }
    .footer-services {
        grid-column: span 6;
    }
    .declaration-body {
        grid-column: span 12;
    }
    .declaration-sidebar {
        grid-column: span 12;
    }
    .contact-page-grid {
        grid-template-columns: 1fr;
    }
    .contact-page-form {
        grid-column: span 12;
    }
    .contact-page-info {
        grid-column: span 12;
    }
}

@media (max-width: 768px) {
    :root {
        --color-primary: #D90429;
        --color-accent: #EF233C;
    }
    header {
        height: 80px;
    }
    .nav-wrapper {
        height: 80px;
    }
    .menu-toggle {
        display: block;
    }
    nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100vw;
        height: calc(100vh - 80px);
        background-color: var(--color-white);
        z-index: 99;
        padding: 3rem 2.5rem;
        border-top: 1px solid var(--color-light-grey);
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        overflow-y: auto;
    }
    nav.active {
        transform: translateX(0);
    }
    nav ul {
        flex-direction: column;
        gap: 2rem;
    }
    nav a {
        font-size: 1.5rem;
        font-weight: 800;
    }
    .section {
        padding: 4rem 0;
    }
    .container {
        padding: 0 1.25rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .slider-container {
        height: 420px;
    }
    .slide-title {
        font-size: 2.25rem;
    }
    .slide-text {
        font-size: 1.05rem;
    }
    .slider-controls {
        bottom: 1.5rem;
    }
    .slider-nav {
        display: none;
    }
    .hero-overview-grid {
        gap: 2rem;
    }
    .hero-overview-left h2 {
        font-size: 2rem !important;
    }
    .hero-overview-left>div:first-of-type {
        flex-wrap: wrap;
        gap: 1.25rem;
    }
    .hero-overview-left [style*="font-size: 1.8rem"] {
        font-size: 1.3rem !important;
    }
    .hero-overview-left p[style*="font-size: 1.1rem"] {
        font-size: 1rem !important;
    }
    .promo-box {
        padding: 2rem 1.5rem;
    }
    .promo-price {
        font-size: 3.5rem;
    }
    .section-header-left,
    .section-header-right {
        grid-column: span 12;
        text-align: left;
    }
    .section-header-right {
        margin-top: 1rem;
    }
    .why-grid {
        gap: 2rem;
    }
    .feature-row {
        gap: 1rem;
    }
    .why-right .card {
        padding: 2rem !important;
    }
    .why-right li[style*="display: flex"] {
        flex-wrap: wrap;
        gap: 0.25rem;
    }
    .process-grid {
        grid-template-columns: 1fr;
    }
    .problems-grid {
        grid-template-columns: 1fr;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .brand-item {
        padding: 1.5rem;
        font-size: 1rem;
    }
    .span-4,
    .span-6,
    .span-8 {
        grid-column: span 12;
    }
    .faq-trigger {
        padding: 1.25rem;
        font-size: 1rem;
    }
    .faq-content {
        padding: 0 1.25rem;
    }
    .contact-card {
        padding: 2rem;
    }
    .location-info {
        padding: 2rem;
    }
    .map-frame {
        height: 280px;
    }
    .footer-nav {
        grid-column: span 12;
        margin-bottom: 1.5rem;
    }
    .footer-services {
        grid-column: span 12;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .footer-top-promo {
        padding: 2.5rem 1.5rem;
    }
    .footer-top-promo h3 {
        font-size: 1.5rem !important;
    }
    .floating-btn {
        bottom: 1.5rem;
        width: 50px;
        height: 50px;
    }
    .floating-left {
        left: 1.5rem;
    }
    .floating-right {
        right: 1.5rem;
    }
    .btn {
        padding: 0.85rem 1.5rem;
        font-size: 0.85rem;
    }
    .modal-container {
        padding: 2rem;
    }
    .page-title-section {
        padding: 4rem 0 2rem;
    }
    .page-title {
        font-size: 2.25rem;
    }
    .contact-page-form,
    .contact-page-info {
        padding: 2rem;
    }
    .declaration-sidebar {
        padding: 1.5rem;
    }
}

.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 85px;
    left: 20px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}

.btn-whatsapp-pulse {
    background: #e63839;
    color: white;
    position: fixed;
    bottom: 85px;
    right: 20px;
    font-size: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 0;
    height: 0;
    padding: 28px;
    text-decoration: none;
    border-radius: 50%;
    animation-name: pulse;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
    z-index: 999;
    transform: rotate(180deg);
}

.hero {
    height: 90vh;
    background: url('../images/vb2.webp') center/cover;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .65);
}

.hero-content {
    position: relative;
    color: #fff;
    z-index: 2;
}

.hero h1 {
    font-size: 60px;
    margin-bottom: 20px;
    color: #fff;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    background: #EF233C;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
}

.services {
    padding: 80px 8%;
    text-align: center;
}

.services h2 {
    font-size: 38px;
    margin-bottom: 50px;
    color: #003366;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.card {
    background: #fff;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, .08);
    transition: .4s;
}

.card:hover {
    transform: translateY(-10px);
}

.card i {
    font-size: 50px;
    color: #EF233C;
    margin-bottom: 20px;
}

.card h3 {
    margin-bottom: 15px;
}

.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 80px 8%;
    align-items: center;
}

.about img {
    width: 100%;
    border-radius: 15px;
}

.about h2 {
    font-size: 40px;
    color: #003366;
    margin-bottom: 20px;
}

.about ul {
    margin-top: 20px;
}

.about li {
    padding: 10px 0;
    list-style: none;
}

.counter {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #003366;
    color: #fff;
    padding: 70px 5%;
    text-align: center;
}

.counter h2 {
    font-size: 45px;
    color: #EF233C;
}

.contact {
    padding: 80px 8%;
    text-align: center;
}

.contact h2 {
    margin-bottom: 40px;
    color: #003366;
}

form {
    max-width: 600px;
    margin: auto;
}

input,
textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

button {
    background: #EF233C;
    border: none;
    padding: 15px 40px;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    border-radius: 30px;
}

footer {
    background: #003366;
    color: #fff;
    padding: 25px;
    text-align: center;
}

@media(max-width:768px) {
    .container {
        flex-direction: column;
    }
    nav {
        margin: 15px 0;
    }
    .hero h1 {
        font-size: 35px;
    }
    .about {
        grid-template-columns: 1fr;
    }
    .counter {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

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

.services-section {
    background: #f9fbfd;
    padding: 90px 0;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-box {
    background: #fff;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: .4s;
    border-top: 5px solid #EF233C;
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .15);
}

.service-box h3 {
    color: #003366;
    margin-bottom: 15px;
    font-size: 24px;
}

.service-box p {
    color: #666;
}

.footer-oll-now {
    bottom: 0px;
    color: #fff !important;
    font-size: 22px !important;
    cursor: pointer;
    display: inline-block;
    font-size: 30px;
    font-weight: normal;
    line-height: 56px;
    width: 100%;
    position: fixed;
    z-index: 999;
    text-align: center;
    background-color: #2c5ead;
}

@media(max-width:480px) {
    button.menu-toggle {
        display: none;
    }
    .container.nav-wrapper {
        flex-direction: row;
    }
}

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

.cata-hero-section {
    min-height: 650px;
    background: url('../images/banner-3.webp') center center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Overlay */

.cata-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient( 90deg, rgba(0, 0, 0, .85), rgba(0, 0, 0, .45));
}

/* Container */

.cata-hero-section .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    position: relative;
    z-index: 2;
}

/* Main Wrapper */

.cata-hero-wrapper {
    display: block;
    align-items: center;
}

/* Content */

.cata-hero-content {
    color: #fff;
}

/* Badge */

.cata-badge {
    display: inline-block;
    background: #d62828;
    color: #fff;
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: .5px;
}

/* Heading */

.cata-hero-content h1 {
    font-size: 58px;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 25px;
    color: #fff;
}

/* Paragraph */

.cata-hero-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #f1f1f1;
    max-width: 650px;
    margin-bottom: 35px;
}

/* Buttons */

.cata-hero-btns {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.primary-btn {
    display: inline-block;
    background: #d62828;
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: .3s;
}

.primary-btn:hover {
    background: #b51f1f;
    transform: translateY(-4px);
}

.secondary-btn {
    display: inline-block;
    border: 2px solid #fff;
    color: #fff;
    padding: 13px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: .3s;
}

.secondary-btn:hover {
    background: #fff;
    color: #111;
}

/* Highlights */

.cata-highlights {
    display: flex;
    gap: 35px;
}

.cata-highlights div {
    padding-right: 35px;
    border-right: 1px solid rgba(255, 255, 255, .4);
}

.cata-highlights div:last-child {
    border: none;
}

.cata-highlights h3 {
    font-size: 38px;
    color: #fff;
    margin-bottom: 5px;
}

.cata-highlights p {
    font-size: 15px;
    color: #ddd;
    margin: 0;
}

/* Hero Image */

.cata-hero-image {
    text-align: center;
}

.cata-hero-image img {
    width: 100%;
    max-width: 500px;
    animation: cataMove 4s ease-in-out infinite;
    filter: drop-shadow(0 25px 35px rgba(0, 0, 0, .5));
}

/* Floating Animation */

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

/*====================================================
TABLET RESPONSIVE
====================================================*/

@media(max-width:992px) {
    .cata-hero-section {
        min-height: auto;
        padding: 150px 0 90px;
    }
    .cata-hero-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .cata-hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
    .cata-hero-btns {
        justify-content: center;
    }
    .cata-highlights {
        justify-content: center;
    }
    .cata-hero-image {
        display: none;
    }
    .cata-hero-content h1 {
        font-size: 45px;
    }
}

/*====================================================
MOBILE RESPONSIVE
====================================================*/

@media(max-width:600px) {
    .cata-hero-content h1 {
        font-size: 34px;
        line-height: 1.3;
    }
    .cata-hero-content p {
        font-size: 15px;
    }
    .cata-hero-btns {
        flex-direction: column;
        align-items: center;
    }
    .primary-btn,
    .secondary-btn {
        width: 220px;
    }
    .cata-highlights {
        gap: 15px;
    }
    .cata-highlights div {
        padding-right: 15px;
    }
    .cata-highlights h3 {
        font-size: 26px;
    }
    .cata-highlights p {
        font-size: 12px;
    }
}

/* HERO COUNTER */

.cata-small-counter {
    display: flex;
    gap: 35px;
    margin-top: 50px;
}

.cata-small-counter div {
    border-right: 1px solid rgba(255, 255, 255, .3);
    padding-right: 30px;
}

.cata-small-counter h3 {
    font-size: 35px;
    color: #fff;
}

.cata-small-counter p {
    font-size: 15px;
    margin: 0;
    color: #ddd;
}

/* HERO IMAGE */

.cata-hero-image img {
    width: 100%;
    max-width: 520px;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, .5));
    animation: cataFloat 4s infinite ease-in-out;
}

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

/*================================================
ABOUT SECTION
================================================*/

.cata-about-section {
    padding: 100px 0;
    background: rgb(248, 248, 248);
}

.cata-section-heading {
    text-align: center;
    margin-bottom: 60px;
}

.cata-section-heading span {
    color: #d62828;
    font-weight: 600;
    text-transform: uppercase;
}

.cata-section-heading h2 {
    font-size: 42px;
    margin: 15px 0;
}

.cata-section-heading p {
    color: #666;
    max-width: 700px;
    margin: auto;
}

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

.cata-about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .12);
}

.cata-about-content h3 {
    font-size: 34px;
    margin-bottom: 20px;
}

.cata-about-content p {
    color: #666;
    line-height: 1.9;
    margin-bottom: 20px;
}

/* ABOUT LIST */

.cata-about-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
}

.cata-about-list div {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    font-weight: 500;
}

.cata-about-list i {
    color: #d62828;
    margin-right: 10px;
}

/*================================================
RESPONSIVE
================================================*/

@media(max-width:992px) {
    .cata-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .cata-hero-content h1 {
        font-size: 45px;
    }
    .cata-hero-image {
        display: none;
    }
    .cata-btn-group {
        justify-content: center;
    }
    .cata-small-counter {
        justify-content: center;
    }
    .cata-about-grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width:600px) {
    .cata-hero-section {
        min-height: auto;
        padding: 60px 0 40px;
    }
    .cata-hero-content h1 {
        font-size: 34px;
    }
    .cata-hero-content p {
        font-size: 16px;
    }
    .cata-btn-group {
        flex-direction: column;
    }
    .cata-small-counter {
        gap: 15px;
    }
    .cata-small-counter div {
        padding-right: 15px;
    }
    .cata-small-counter h3 {
        font-size: 25px;
    }
    .cata-about-list {
        grid-template-columns: 1fr;
    }
    .cata-section-heading h2 {
        font-size: 30px;
    }
}

/*================================================
CATA WHY CHOOSE SECTION
================================================*/

.cata-why-section {
    padding: 100px 0;
    background: #f8f8f8;
}

.cata-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.cata-why-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .08);
    transition: .35s;
    position: relative;
    overflow: hidden;
}

.cata-why-card:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    background: #d62828;
    left: 0;
    top: 0;
    transform: scaleX(0);
    transition: .35s;
}

.cata-why-card:hover:before {
    transform: scaleX(1);
}

.cata-why-card:hover {
    transform: translateY(-12px);
}

.cata-why-card i {
    width: 80px;
    height: 80px;
    line-height: 80px;
    background: #fff0f0;
    color: #d62828;
    border-radius: 50%;
    font-size: 35px;
    margin-bottom: 25px;
    transition: .3s;
}

.cata-why-card:hover i {
    background: #d62828;
    color: #fff;
}

.cata-why-card h3 {
    font-size: 23px;
    margin-bottom: 15px;
}

.cata-why-card p {
    color: #666;
    line-height: 1.8;
}

/*================================================
CATA SERVICES SECTION
================================================*/

.cata-services-section {
    padding: 100px 0;
    background: #fff;
}

.cata-service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.cata-service-card {
    padding: 35px 30px;
    background: #fff;
    border-radius: 18px;
    border: 1px solid #eee;
    transition: .35s;
    text-align: center;
}

.cata-service-card:hover {
    background: #d62828;
    transform: translateY(-10px);
    color: #fff;
    box-shadow: 0 20px 40px rgba(214, 40, 40, .25);
}

.cata-service-card i {
    font-size: 45px;
    color: #d62828;
    margin-bottom: 25px;
    transition: .3s;
}

.cata-service-card:hover i {
    color: #fff;
}

.cata-service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.cata-service-card p {
    color: #666;
    line-height: 1.8;
}

.cata-service-card:hover p {
    color: #fff;
}

/*================================================
COMMON PROBLEMS
================================================*/

.cata-problem-section {
    padding: 100px 0;
    background: #f7f7f7;
}

.cata-problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.cata-problem-card {
    background: #fff;
    padding: 35px;
    border-radius: 16px;
    text-align: center;
    transition: .35s;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .07);
}

.cata-problem-card:hover {
    transform: translateY(-8px);
    border-bottom: 4px solid #d62828;
}

.cata-problem-card i {
    font-size: 45px;
    color: #d62828;
    margin-bottom: 20px;
}

.cata-problem-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.cata-problem-card p {
    color: #666;
    line-height: 1.7;
}

/*================================================
SECTION HEADING COMMON
================================================*/

.cata-section-heading {
    margin-bottom: 60px;
}

.cata-section-heading span {
    display: inline-block;
    color: #d62828;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.cata-section-heading h2 {
    font-size: 42px;
    color: #222;
    margin-bottom: 15px;
}

.cata-section-heading p {
    color: #666;
    max-width: 750px;
}

/*================================================
RESPONSIVE DESIGN
================================================*/

@media(max-width:992px) {
    .cata-why-grid,
    .cata-service-grid,
    .cata-problem-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:768px) {
    .cata-why-grid,
    .cata-service-grid,
    .cata-problem-grid {
        grid-template-columns: 1fr;
    }
    .cata-section-heading h2 {
        font-size: 30px;
    }
    .cata-why-card,
    .cata-service-card,
    .cata-problem-card {
        padding: 30px 20px;
    }
    .cata-hero-content img {
        margin: 0 auto;
    }
}

.cata-hero-content h1 span {
    color: var(--color-accent);
}

/*=========================================
CONTACT SECTION
=========================================*/

.contact-section {
    padding: 80px 0;
    background: #f7f8fc;
}

.contact-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.contact-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: #222;
    margin-bottom: 50px;
    position: relative;
}

.contact-title::after {
    content: "";
    width: 80px;
    height: 4px;
    background: #d62828;
    display: block;
    margin: 15px auto 0;
    border-radius: 10px;
}

.contact-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

/*=========================================
FORM LAYOUT
=========================================*/

.space-y-6 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.space-y-6>div:last-child,
.space-y-6>div:nth-last-child(2),
.space-y-6>div:nth-last-child(3) {
    grid-column: 1/-1;
}

/*=========================================
LABEL
=========================================*/

.contact-form label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

/*=========================================
INPUTS & SELECT
=========================================*/

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 15px 18px;
    border: 2px solid #ddd;
    border-radius: 12px;
    outline: none;
    background: #fff;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    transition: .3s;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #d62828;
    box-shadow: 0 0 0 4px rgba(214, 40, 40, .12);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999;
}

/*=========================================
BUTTON
=========================================*/

.contact-form button {
    width: 100%;
    padding: 17px;
    border: none;
    border-radius: 12px;
    background: #EF233C;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: .35s;
}

.contact-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(214, 40, 40, .25);
}

/*=========================================
HOVER EFFECT
=========================================*/

.contact-form {
    transition: .35s;
}

.contact-form:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:991px) {
    .contact-title {
        font-size: 34px;
    }
    .space-y-6 {
        grid-template-columns: 1fr;
    }
    .space-y-6>div {
        grid-column: 1/-1;
    }
    .contact-form {
        padding: 30px;
    }
}

@media(max-width:768px) {
    .contact-section {
        padding: 60px 0;
    }
    .contact-title {
        font-size: 28px;
    }
    .contact-form {
        padding: 25px;
    }
    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        padding: 14px;
        font-size: 14px;
    }
    .contact-form button {
        font-size: 16px;
        padding: 15px;
    }
}

/*=========================================
CTA SECTION
=========================================*/

.cata-cta-section {
    padding: 90px 0;
    background: rgb(0, 51, 102);
}

.cata-cta-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    background: #2c5ead;
    ;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 20px;
    padding: 60px;
}

.cata-cta-content {
    flex: 1;
}

.cata-cta-badge {
    display: inline-block;
    background: #fff;
    color: #d62828;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 20px;
}

.cata-cta-content h2 {
    color: #fff;
    font-size: 42px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.cata-cta-content p {
    color: #f5f5f5;
    font-size: 17px;
    line-height: 1.8;
    max-width: 700px;
}

.cata-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cata-call-btn,
.cata-whatsapp-btn {
    display: inline-block;
    min-width: 230px;
    text-align: center;
    padding: 16px 35px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 600;
    transition: .35s;
}

.cata-call-btn {
    background: #fff;
    color: #d62828;
}

.cata-call-btn:hover {
    transform: translateY(-5px);
    background: #f4f4f4;
}

.cata-whatsapp-btn {
    background: #25D366;
    color: #fff;
}

.cata-whatsapp-btn:hover {
    background: #1ebc59;
    transform: translateY(-5px);
}

.cata-call-btn i,
.cata-whatsapp-btn i {
    margin-right: 10px;
}

/*=========================
Responsive
=========================*/

@media(max-width:992px) {
    .cata-cta-wrapper {
        flex-direction: column;
        text-align: center;
        padding: 40px;
    }
    .cata-cta-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media(max-width:768px) {
    .cata-cta-content h2 {
        font-size: 30px;
    }
    .cata-cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    .cata-call-btn,
    .cata-whatsapp-btn {
        width: 100%;
    }
}

/*==================================
MODELS SECTION
==================================*/

.cata-model-section {
    padding: 100px 0;
    background: #fff;
}

.cata-model-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.cata-model-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: .35s;
}

.cata-model-card:hover {
    transform: translateY(-8px);
}

.cata-model-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: .35s;
}

.cata-model-card:hover img {
    transform: scale(1.05);
}

.cata-model-card h3 {
    padding: 20px;
    font-size: 20px;
    color: #222;
}

@media(max-width:992px) {
    .cata-model-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:768px) {
    .cata-model-grid {
        grid-template-columns: 1fr;
    }
}

.c-logo img {
    width: 200px;
}

a.logo-link img {
    width: 150px;
}