/* ==================== Root Variables ==================== */
:root {
    --primary-black: #0b0b0b;
    --primary-yellow: #f5c400;
    --dark-gray: #1a1a1a;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

/* ==================== Reset & Base Styles ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--white);
    background-color: var(--primary-black);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==================== Navigation ==================== */
.navbar {
    background-color: var(--primary-black);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    border-bottom: 2px solid var(--primary-yellow);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-yellow);
    letter-spacing: 1px;
    text-decoration: none;
}

.nav-brand:hover {
    color: var(--primary-yellow);
}

.nav-logo {
    width: 45px;
    height: 40px;
    object-fit: cover;
    border-radius: 6px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-yellow);
}

.portal-link {
    background-color: var(--primary-yellow);
    color: var(--primary-black);
    padding: 0.5rem 1.2rem;
    border-radius: 4px;
    font-weight: 600;
}

.portal-link:hover {
    background-color: #e0b200;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-yellow);
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background-color: var(--dark-gray);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        gap: 0;
        padding: 2rem 0;
        border-bottom: 2px solid var(--primary-yellow);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 1rem 0;
    }
}

/* ==================== Hero Section ==================== */
.hero {
    background: linear-gradient(135deg, var(--primary-black) 0%, rgba(245, 196, 0, 0.1) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 3px solid var(--primary-yellow);
    pointer-events: none;
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
    line-height: 1.2;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: var(--white);
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==================== Buttons ==================== */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-yellow);
    color: var(--primary-black);
}

.btn-primary:hover {
    background-color: #e0b200;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 196, 0, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-yellow);
    border: 2px solid var(--primary-yellow);
}

.btn-secondary:hover {
    background-color: var(--primary-yellow);
    color: var(--primary-black);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-small {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
}

.btn-block {
    width: 100%;
    display: block;
}

/* ==================== Why Choose Us ==================== */
.why-choose-us {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--dark-gray) 100%);
}

.why-choose-us h2 {
    font-size: 2.5rem;
    color: var(--primary-yellow);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.benefit-item {
    background-color: var(--dark-gray);
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-yellow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background-color: rgba(245, 196, 0, 0.05);
    border-radius: 50%;
    transform: translate(30px, -30px);
}

.benefit-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(245, 196, 0, 0.2);
    border-left-color: var(--primary-yellow);
    background-color: rgba(245, 196, 0, 0.03);
}

.benefit-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-yellow);
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.benefit-item h3 {
    font-size: 1.4rem;
    color: var(--primary-yellow);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.benefit-item p {
    color: var(--white);
    line-height: 1.8;
    font-size: 1rem;
}

/* ==================== Featured Services ==================== */
.featured-services {
    padding: 80px 0;
    background-color: var(--dark-gray);
}

.featured-services h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-yellow);
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: var(--white);
    margin-bottom: 3rem;
    font-size: 1rem;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.featured-card {
    background-color: var(--primary-black);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid var(--primary-yellow);
}

.featured-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(245, 196, 0, 0.2);
    background-color: rgba(245, 196, 0, 0.05);
}

.featured-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.featured-card h3 {
    color: var(--primary-yellow);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.featured-card p {
    color: var(--white);
    margin-bottom: 1.5rem;
}

/* ==================== About Preview ==================== */
.about-preview {
    padding: 80px 0;
    background-color: var(--primary-black);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-preview h2 {
    font-size: 2.5rem;
    color: var(--primary-yellow);
    margin-bottom: 1rem;
}

.about-preview h3 {
    font-size: 1.5rem;
    color: var(--primary-yellow);
    margin-bottom: 1rem;
}

.about-text p {
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-features {
    margin: 2rem 0;
}

.feature-item {
    padding: 0.8rem 0;
    color: var(--white);
    font-weight: 500;
}

.about-image-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-image {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    border: 3px solid var(--primary-yellow);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-box {
    background-color: var(--dark-gray);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--primary-yellow);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-yellow);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--white);
    font-weight: 600;
}

/* ==================== CTA Section ==================== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--dark-gray) 100%);
    color: var(--white);
    text-align: center;
    border-top: 3px solid var(--primary-yellow);
    border-bottom: 3px solid var(--primary-yellow);
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-yellow);
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--white);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==================== Tuning Stages Home ==================== */
.tuning-stages-home {
    padding: 80px 0;
    background-color: var(--primary-black);
}

.tuning-stages-home h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-yellow);
    margin-bottom: 0.5rem;
}

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

.stage-card {
    background-color: var(--dark-gray);
    border-radius: 12px;
    padding: 2rem;
    border: 2px solid transparent;
    transition: var(--transition);
    position: relative;
}

.stage-card:hover {
    border-color: var(--primary-yellow);
    transform: translateY(-5px);
}

.stage-card.featured {
    border-color: var(--primary-yellow);
    box-shadow: 0 0 30px rgba(245, 196, 0, 0.2);
}

.stage-badge {
    background-color: var(--primary-yellow);
    color: var(--primary-black);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1rem;
}

.stage-card h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.stage-features {
    list-style: none;
    margin-bottom: 2rem;
}

.stage-features li {
    color: var(--white);
    padding: 0.5rem 0;
    font-size: 0.95rem;
}

.stage-price {
    color: var(--white);
    font-size: 1.2rem;
}

.stage-price span {
    color: var(--primary-yellow);
    font-size: 2rem;
    font-weight: 700;
}

.stages-cta {
    text-align: center;
    margin-top: 3rem;
}

.stages-cta p {
    color: var(--white);
    margin-bottom: 1rem;
}

/* ==================== Free Stats Section ==================== */
.free-stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--primary-black) 100%);
    border-top: 3px solid var(--primary-yellow);
}

.free-stats-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.free-stats-text h2 {
    font-size: 2.2rem;
    color: var(--primary-yellow);
    margin-bottom: 1.5rem;
}

.free-stats-text p {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.stats-benefits {
    list-style: none;
    margin: 1.5rem 0;
}

.stats-benefits li {
    color: var(--white);
    padding: 0.5rem 0;
    font-size: 1.05rem;
}

.dont-miss {
    color: var(--primary-yellow) !important;
    font-size: 1.2rem !important;
    margin-top: 1.5rem !important;
}

.stats-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

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

.btn-whatsapp:hover {
    background-color: #1da851;
}

.stats-img {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    border: 3px solid var(--primary-yellow);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.free-stats-image {
    display: flex;
    justify-content: center;
}

/* ==================== Add-ons Preview ==================== */
.addons-preview {
    padding: 80px 0;
    background-color: var(--primary-black);
}

.addons-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-yellow);
    margin-bottom: 0.5rem;
}

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

.addon-item {
    background-color: var(--dark-gray);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: var(--transition);
}

.addon-item:hover {
    border-color: var(--primary-yellow);
    transform: translateY(-3px);
}

.addon-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.addon-item h4 {
    color: var(--primary-yellow);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.addon-item p {
    color: var(--white);
    font-size: 0.85rem;
}

/* ==================== Motorbike Banner ==================== */
.motorbike-banner {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--primary-black) 100%);
    border-top: 3px solid var(--primary-yellow);
    border-bottom: 3px solid var(--primary-yellow);
}

.motorbike-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.motorbike-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.motorbike-text h2 {
    font-size: 2rem;
    color: var(--primary-yellow);
    margin-bottom: 1rem;
}

.motorbike-text p {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* ==================== Page Header ==================== */
.page-header {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--dark-gray) 100%);
    border-bottom: 3px solid var(--primary-yellow);
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-yellow);
}

.page-header p {
    font-size: 1.1rem;
    color: var(--white);
}

/* ==================== Services Detailed ==================== */
.services-detailed {
    padding: 60px 0;
    background-color: var(--primary-black);
}

.service-detail {
    margin-bottom: 4rem;
    background-color: var(--dark-gray);
    padding: 2rem;
    border-radius: 8px;
    border: 2px solid var(--primary-yellow);
}

.service-with-images {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    align-items: start;
}

.service-images {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: sticky;
    top: 100px;
}

.service-image {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid var(--primary-yellow);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-image:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(245, 196, 0, 0.3);
}

.service-content h2 {
    font-size: 2rem;
    color: var(--primary-yellow);
    margin-bottom: 0.5rem;
}

.service-content h3 {
    font-size: 1.3rem;
    color: var(--primary-yellow);
    margin-bottom: 1.5rem;
}

.service-content p {
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-content h4 {
    font-size: 1.1rem;
    color: var(--primary-yellow);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.service-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-list li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--white);
}

.service-list li:before {
    content: "✓";
    color: var(--primary-yellow);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* ==================== Vehicle Search Widget Section ==================== */
.vehicle-search-widget-section {
    padding: 80px 0;
    background-color: var(--primary-black);
}

.vehicle-search-widget-section h2 {
    font-size: 2.5rem;
    color: var(--primary-yellow);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-intro {
    text-align: center;
    color: var(--white);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.search-widget-container {
    background-color: var(--dark-gray);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(245, 196, 0, 0.1);
    border: 2px solid var(--primary-yellow);
}

.search-widget-container iframe {
    border-radius: 6px;
}

/* ==================== Tuning Stages ==================== */
.tuning-stages {
    padding: 80px 0;
    background-color: var(--dark-gray);
}

.tuning-stages h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-yellow);
    text-align: center;
}

.stages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stage-card {
    background-color: var(--primary-black);
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--primary-yellow);
    position: relative;
}

.stage-card.featured {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(245, 196, 0, 0.3);
    background-color: rgba(245, 196, 0, 0.05);
}

.stage-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: var(--primary-yellow);
    color: var(--primary-black);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.stage-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-yellow);
    margin: 1rem 0;
}

.stage-card h3 {
    color: var(--primary-yellow);
    margin-bottom: 0.5rem;
}

.stage-subtitle {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.stage-list {
    list-style: none;
    text-align: left;
    margin: 1.5rem 0;
}

.stage-list li {
    padding: 0.4rem 0;
    color: var(--white);
}

.stage-list li:before {
    content: "✓ ";
    color: var(--primary-yellow);
    font-weight: bold;
}

.stage-cta {
    margin-top: 2rem;
}

/* ==================== Vehicle Search ==================== */
.vehicle-search-section {
    padding: 80px 0;
    background-color: var(--primary-black);
}

.vehicle-search-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-yellow);
    text-align: center;
}

.vehicle-search-widget {
    margin: 2rem 0;
}

.vehicle-search-widget iframe {
    border: 2px solid var(--primary-yellow);
    border-radius: 8px;
}

.search-info {
    margin-top: 3rem;
    background-color: var(--dark-gray);
    padding: 2rem;
    border-radius: 8px;
    border: 2px solid var(--primary-yellow);
}

.search-info h3 {
    color: var(--primary-yellow);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.info-item {
    text-align: center;
}

.info-item strong {
    color: var(--primary-yellow);
    display: block;
    margin-bottom: 0.5rem;
}

.info-item p {
    color: var(--white);
    font-size: 0.9rem;
}

/* ==================== Performance Examples ==================== */
.performance-examples {
    padding: 80px 0;
    background-color: var(--dark-gray);
}

.performance-examples h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-yellow);
    text-align: center;
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.example-card {
    background-color: var(--primary-black);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    border-left: 4px solid var(--primary-yellow);
}

.example-card h3 {
    color: var(--primary-yellow);
    margin-bottom: 1.5rem;
}

.example-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem;
    background-color: var(--dark-gray);
    border-radius: 4px;
}

.stat .label {
    color: var(--white);
    font-weight: 600;
}

.stat .value {
    color: var(--primary-yellow);
    font-weight: 700;
    font-size: 1.1rem;
}

/* ==================== Care Plans ==================== */
.care-plans-page {
    padding: 60px 0;
    background-color: var(--primary-black);
}

.plans-intro h2 {
    font-size: 2rem;
    color: var(--primary-yellow);
    margin-bottom: 1rem;
    text-align: center;
}

.plans-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.plan-card-large {
    background-color: var(--dark-gray);
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    border-top: 4px solid var(--primary-yellow);
    position: relative;
}

.plan-card-large.featured {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(245, 196, 0, 0.3);
    background-color: rgba(245, 196, 0, 0.05);
}

.plan-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: var(--primary-yellow);
    color: var(--primary-black);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.plan-card-large h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--primary-yellow);
    margin-top: 1rem;
}

.plan-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-yellow);
    margin: 1rem 0;
}

.plan-price span {
    font-size: 0.8rem;
    color: var(--white);
}

.plan-features-large {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.plan-features-large li {
    padding: 0.6rem 0;
    color: var(--white);
    border-bottom: 1px solid rgba(245, 196, 0, 0.2);
}

.plan-features-large li:last-child {
    border-bottom: none;
}

.fleet-plan-large {
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--primary-black) 100%);
    color: var(--white);
    padding: 3rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    border: 2px solid var(--primary-yellow);
}

.fleet-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: center;
}

.fleet-plan-large h3 {
    color: var(--primary-yellow);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.fleet-plan-large p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--white);
}

/* ==================== Add-Ons ==================== */
.add-ons-section h2 {
    font-size: 2rem;
    color: var(--primary-yellow);
    margin-bottom: 1rem;
    text-align: center;
}

.add-ons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.add-on-card {
    background-color: var(--dark-gray);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    border: 2px solid var(--primary-yellow);
}

.add-on-card h4 {
    color: var(--primary-yellow);
    margin-bottom: 0.5rem;
}

.add-on-card .price {
    color: var(--primary-yellow);
    font-weight: 700;
    margin: 0.5rem 0;
}

.add-on-card p {
    color: var(--white);
    font-size: 0.9rem;
}

/* ==================== Contact Buttons Section ==================== */
.contact-buttons-section {
    text-align: center;
}

.contact-buttons-section h2 {
    font-size: 2rem;
    color: var(--primary-yellow);
    margin-bottom: 1rem;
}

.contact-intro {
    color: var(--white);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.contact-buttons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid var(--primary-yellow);
}

.contact-action-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(245, 196, 0, 0.3);
}

.call-btn {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.call-btn:hover {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
}

.text-btn {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.text-btn:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
}

.btn-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.btn-label {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.btn-number {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.email-fallback {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(245, 196, 0, 0.3);
}

.email-fallback p {
    color: var(--white);
    font-size: 1.1rem;
}

.email-fallback a {
    color: var(--primary-yellow);
    text-decoration: none;
    font-weight: 600;
}

.email-fallback a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .contact-buttons-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-action-btn {
        padding: 2rem 1.5rem;
    }
    
    .btn-icon {
        font-size: 2.5rem;
    }
    
    .btn-label {
        font-size: 1.2rem;
    }
}

/* ==================== Contact Page ==================== */
.contact-page {
    padding: 60px 0;
    background-color: var(--primary-black);
}

.contact-info-section h2 {
    font-size: 2rem;
    color: var(--primary-yellow);
    margin-bottom: 1rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.method {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background-color: var(--dark-gray);
    border-radius: 8px;
    border: 2px solid var(--primary-yellow);
}

.method h3 {
    color: var(--primary-yellow);
    margin-bottom: 0.5rem;
}

.method p {
    color: var(--white);
    margin: 0.3rem 0;
}

.contact-link {
    color: var(--primary-yellow);
    text-decoration: none;
    font-weight: 600;
}

.contact-link:hover {
    text-decoration: underline;
}

.quick-facts h3 {
    color: var(--primary-yellow);
    margin-bottom: 1rem;
}

.facts-list {
    list-style: none;
}

.facts-list li {
    padding: 0.5rem 0;
    color: var(--white);
}

.facts-list li:before {
    content: "✓ ";
    color: var(--primary-yellow);
    font-weight: bold;
    margin-right: 0.5rem;
}

.contact-form-section h2 {
    font-size: 2rem;
    color: var(--primary-yellow);
    margin-bottom: 1.5rem;
}

.contact-form-large {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background-color: var(--dark-gray);
    padding: 2rem;
    border-radius: 8px;
    border: 2px solid var(--primary-yellow);
}

.contact-form-large .form-group {
    display: flex;
    flex-direction: column;
}

.contact-form-large label {
    color: var(--primary-yellow);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-form-large input,
.contact-form-large textarea,
.contact-form-large select {
    padding: 0.75rem;
    border: 1px solid var(--primary-yellow);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    background-color: var(--primary-black);
    color: var(--white);
}

.contact-form-large input:focus,
.contact-form-large textarea:focus,
.contact-form-large select:focus {
    outline: none;
    border-color: var(--primary-yellow);
    box-shadow: 0 0 8px rgba(245, 196, 0, 0.3);
}

/* ==================== FAQ Section ==================== */
.faq-section {
    padding: 80px 0;
    background-color: var(--dark-gray);
}

.faq-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-yellow);
    text-align: center;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background-color: var(--primary-black);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--primary-yellow);
}

.faq-item h4 {
    color: var(--primary-yellow);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.faq-item p {
    color: var(--white);
    line-height: 1.8;
}

/* ==================== Location Section ==================== */
.location-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--dark-gray) 100%);
    color: var(--white);
    text-align: center;
    border-top: 3px solid var(--primary-yellow);
}

.location-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-yellow);
}

.location-section p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.location-info {
    background-color: var(--dark-gray);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
    border: 2px solid var(--primary-yellow);
}

.location-info p {
    margin: 0.8rem 0;
    color: var(--white);
}

.location-info em {
    color: var(--primary-yellow);
}

/* ==================== Subscribe Section ==================== */
.subscribe-section {
    padding: 60px 0;
    background-color: var(--primary-black);
}

.subscribe-section h2 {
    font-size: 2rem;
    color: var(--primary-yellow);
    margin-bottom: 2rem;
    text-align: center;
}

.subscribe-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-block {
    background-color: var(--dark-gray);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border: 2px solid var(--primary-yellow);
}

.info-block h4 {
    color: var(--primary-yellow);
    margin-bottom: 0.5rem;
}

.info-block p {
    color: var(--white);
}

.subscribe-cta {
    text-align: center;
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--primary-black) 100%);
    padding: 3rem;
    border-radius: 8px;
    border: 2px solid var(--primary-yellow);
}

.subscribe-cta h3 {
    color: var(--primary-yellow);
    margin-bottom: 1rem;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-btn {
    background-color: var(--primary-black);
    padding: 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    color: var(--white);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    border: 2px solid var(--primary-yellow);
}

.contact-btn:hover {
    background-color: var(--primary-yellow);
    color: var(--primary-black);
}

.contact-btn span {
    font-size: 0.9rem;
}

.contact-btn strong {
    font-size: 1.1rem;
}

/* ==================== Comparison Table ==================== */
.plans-comparison {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid var(--primary-yellow);
}

.plans-comparison h2 {
    font-size: 2rem;
    color: var(--primary-yellow);
    margin-bottom: 2rem;
    text-align: center;
}

.table-responsive {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--primary-black);
    border: 2px solid var(--primary-yellow);
    border-radius: 8px;
    overflow: hidden;
}

.comparison-table th {
    background-color: var(--dark-gray);
    color: var(--primary-yellow);
    padding: 1.5rem;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid var(--primary-yellow);
}

.comparison-table td {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(245, 196, 0, 0.1);
    color: var(--white);
}

.comparison-table tbody tr:hover {
    background-color: var(--dark-gray);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table strong {
    color: var(--primary-yellow);
}

/* ==================== Footer ==================== */
.footer {
    background-color: var(--primary-black);
    color: var(--white);
    padding: 60px 0 20px;
    border-top: 3px solid var(--primary-yellow);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section {
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(245, 196, 0, 0.2);
}

.footer-section h4 {
    color: var(--primary-yellow);
    margin-bottom: 1rem;
}

.footer-section p {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
    margin: 1rem 0;
}

.footer-section li {
    padding: 0.25rem 0;
}

.footer-section a {
    color: var(--primary-yellow);
    text-decoration: none;
}

.footer-section a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(245, 196, 0, 0.2);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* ==================== Responsive Design ==================== */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    /* Navigation Mobile */
    .nav-brand {
        font-size: 1rem;
        gap: 0.5rem;
    }

    .nav-logo {
        width: 35px;
        height: 30px;
    }

    .nav-brand span {
        font-size: 0.9rem;
    }

    /* Hero Section Mobile */
    .hero {
        min-height: auto;
        padding: 60px 15px;
    }

    .hero h1 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        line-height: 1.3;
    }

    .hero p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-buttons .btn {
        width: 100%;
        padding: 0.75rem;
        font-size: 0.9rem;
    }

    /* Page Header Mobile */
    .page-header {
        padding: 30px 15px;
    }

    .page-header h1 {
        font-size: 1.5rem;
    }

    .page-header p {
        font-size: 0.9rem;
    }

    /* Vehicle Search Mobile */
    .vehicle-search-widget-section {
        padding: 30px 0;
    }

    .vehicle-search-widget-section h2 {
        font-size: 1.4rem;
    }

    .section-intro {
        font-size: 0.85rem;
        padding: 0 10px;
    }

    .search-widget-container {
        padding: 10px;
        border-radius: 8px;
    }

    .search-widget-container iframe {
        height: 900px !important;
        border-radius: 8px;
    }

    /* Why Choose Us Mobile */
    .why-choose-us {
        padding: 40px 0;
    }

    .why-choose-us h2 {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .benefit-item {
        padding: 1rem;
    }

    .benefit-number {
        font-size: 1.5rem;
    }

    .benefit-item h3 {
        font-size: 1rem;
    }

    .benefit-item p {
        font-size: 0.85rem;
    }

    /* Featured Services Mobile */
    .featured-services {
        padding: 40px 0;
    }

    .featured-services h2 {
        font-size: 1.4rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .featured-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .featured-card {
        padding: 1rem;
    }

    .featured-card h3 {
        font-size: 1rem;
    }

    .featured-card p {
        font-size: 0.85rem;
    }

    .featured-icon {
        font-size: 2rem;
    }

    /* About Section Mobile */
    .about-preview {
        padding: 40px 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-preview h2 {
        font-size: 1.4rem;
    }

    .about-preview h3 {
        font-size: 1.1rem;
    }

    .about-text p {
        font-size: 0.9rem;
    }

    .feature-item {
        font-size: 0.9rem;
        padding: 0.5rem 0;
    }

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

    .stat-box {
        padding: 1rem;
    }

    .stat-number {
        font-size: 1.4rem;
    }

    /* Tuning Stages Mobile */
    .tuning-stages {
        padding: 60px 0;
    }

    .tuning-stages h2 {
        font-size: 1.8rem;
    }

    .stages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stage-card {
        padding: 2rem;
    }

    .stage-card.featured {
        transform: scale(1);
    }

    .stage-number {
        font-size: 2rem;
    }

    /* Care Plans Mobile */
    .plans-grid-large {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .plan-card-large {
        padding: 2rem;
    }

    .plan-card-large.featured {
        transform: scale(1);
    }

    .plan-card-large h3 {
        font-size: 1.5rem;
    }

    .plan-price {
        font-size: 1.8rem;
    }

    .fleet-content {
        grid-template-columns: 1fr;
    }

    /* FAQ Mobile */
    .faq-section {
        padding: 60px 0;
    }

    .faq-section h2 {
        font-size: 1.8rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .faq-item {
        padding: 1rem;
    }

    .faq-question {
        font-size: 1rem;
    }

    .faq-answer {
        font-size: 0.85rem;
    }

    /* Contact Mobile */
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-buttons-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .contact-action-btn {
        padding: 1rem;
    }

    .btn-icon {
        font-size: 2rem;
    }

    .btn-label {
        font-size: 1rem;
    }

    /* CTA Section Mobile */
    .cta-section {
        padding: 40px 0;
    }

    .cta-section h2 {
        font-size: 1.4rem;
    }

    .cta-section p {
        font-size: 0.9rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    /* Tuning Stages Home Mobile */
    .tuning-stages-home {
        padding: 40px 0;
    }

    .tuning-stages-home h2 {
        font-size: 1.4rem;
    }

    .stages-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stage-card {
        padding: 1rem;
    }

    .stage-card h3 {
        font-size: 1.1rem;
    }

    .stage-badge {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
    }

    .stage-features li {
        font-size: 0.85rem;
        padding: 0.3rem 0;
    }

    .stage-price {
        font-size: 1rem;
    }

    .stage-price span {
        font-size: 1.3rem;
    }

    .stages-cta p {
        font-size: 0.9rem;
    }

    /* Free Stats Mobile */
    .free-stats-section {
        padding: 40px 0;
    }

    .free-stats-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .free-stats-text h2 {
        font-size: 1.3rem;
    }

    .free-stats-text p {
        font-size: 0.9rem;
    }

    .stats-benefits li {
        font-size: 0.9rem;
    }

    .dont-miss {
        font-size: 1rem !important;
    }

    .stats-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }

    .stats-buttons .btn {
        width: 100%;
        padding: 0.75rem;
        font-size: 0.9rem;
    }

    .stats-img {
        max-width: 250px;
    }

    /* Addons Mobile */
    .addons-preview {
        padding: 40px 0;
    }

    .addons-preview h2 {
        font-size: 1.4rem;
    }

    .addons-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }

    .addon-item {
        padding: 0.75rem;
    }

    .addon-icon {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .addon-item h4 {
        font-size: 0.75rem;
    }

    .addon-item p {
        font-size: 0.65rem;
        display: none;
    }

    /* Motorbike Banner Mobile */
    .motorbike-banner {
        padding: 30px 0;
    }

    .motorbike-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .motorbike-text h2 {
        font-size: 1.3rem;
    }

    .motorbike-text p {
        font-size: 0.9rem;
    }

    .motorbike-img {
        max-height: 200px;
        object-fit: cover;
    }

    /* Footer Mobile */
    .footer {
        padding: 30px 0 15px;
    }

    .footer h3 {
        font-size: 1.1rem;
    }

    .footer h4 {
        font-size: 1rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-section {
        text-align: center;
    }

    .footer-section ul li {
        font-size: 0.9rem;
    }

    .footer-bottom {
        font-size: 0.8rem;
    }

    .footer-bottom p {
        font-size: 0.75rem;
    }

    /* Services Page Mobile */
    .services-detailed {
        padding: 40px 0;
    }

    .service-detail {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .service-with-images {
        grid-template-columns: 1fr;
    }

    .service-images {
        flex-direction: row;
        justify-content: center;
    }

    .service-image {
        max-width: 150px;
    }

    .about-image {
        max-width: 300px;
        margin: 0 auto;
    }

    .service-content h2 {
        font-size: 1.5rem;
    }

    /* Tables Mobile */
    .table-responsive {
        overflow-x: auto;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem;
        font-size: 0.85rem;
    }

    /* Performance Examples Mobile */
    .examples-grid {
        grid-template-columns: 1fr;
    }

    .example-card {
        padding: 1.5rem;
    }

    /* Add-ons Mobile */
    .add-ons-grid {
        grid-template-columns: 1fr;
    }

    /* Info Grid Mobile */
    .info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .nav-brand {
        font-size: 1rem;
    }

    .hero h1 {
        font-size: 1.6rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .page-header h1 {
        font-size: 1.4rem;
    }

    .vehicle-search-widget-section h2 {
        font-size: 1.4rem;
    }

    .search-widget-container {
        padding: 5px;
    }

    .search-widget-container iframe {
        height: 800px !important;
    }

    .featured-services h2,
    .tuning-stages h2,
    .cta-section h2,
    .why-choose-us h2 {
        font-size: 1.4rem;
    }

    .btn {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .btn-large {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .benefit-number {
        font-size: 1.8rem;
    }

    .benefit-item h3 {
        font-size: 1.1rem;
    }

    .stage-number {
        font-size: 1.8rem;
    }

    .plan-card-large h3 {
        font-size: 1.3rem;
    }

    .plan-price {
        font-size: 1.5rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

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

    .contact-action-btn {
        padding: 1.2rem;
    }

    .btn-icon {
        font-size: 2rem;
    }

    .btn-label {
        font-size: 1.1rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.5rem;
        font-size: 0.75rem;
    }

    /* New Sections 480px */
    .tuning-stages-home h2 {
        font-size: 1.4rem;
    }

    .stage-badge {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }

    .stage-features li {
        font-size: 0.85rem;
    }

    .free-stats-text h2 {
        font-size: 1.4rem;
    }

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

    .addon-icon {
        font-size: 1.5rem;
    }

    .motorbike-text h2 {
        font-size: 1.3rem;
    }
}

/* ==================== Location Pages ==================== */
.location-hero {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--dark-gray) 100%);
    padding: 5rem 0 4rem;
    text-align: center;
    border-bottom: 3px solid var(--primary-yellow);
}

.location-hero h1 {
    font-size: 2.5rem;
    color: var(--primary-yellow);
    margin-bottom: 0.5rem;
}

.location-tagline {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 1rem;
    opacity: 0.9;
}

.location-hero p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.location-hero .hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Location Services Section */
.location-services {
    padding: 4rem 0;
    background-color: var(--primary-black);
}

.location-services h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-yellow);
    margin-bottom: 0.5rem;
}

.location-services .section-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
}

.location-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.location-service-card {
    background: var(--dark-gray);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(245, 196, 0, 0.1);
}

.location-service-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-yellow);
    box-shadow: 0 10px 30px rgba(245, 196, 0, 0.1);
}

.location-service-card h3 {
    color: var(--primary-yellow);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.location-service-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.location-service-card .price {
    color: var(--primary-yellow);
    font-size: 1.1rem;
}

.location-service-card .price strong {
    font-size: 1.4rem;
}

/* Location Info / Coverage Section */
.location-info {
    padding: 4rem 0;
    background: var(--dark-gray);
}

.location-info h2 {
    text-align: center;
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 2rem;
}

.coverage-areas {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.area-tag {
    background: var(--primary-black);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(245, 196, 0, 0.3);
    transition: var(--transition);
}

.area-tag:hover {
    border-color: var(--primary-yellow);
    background: rgba(245, 196, 0, 0.1);
}

.postcodes {
    text-align: center;
    color: var(--primary-yellow);
    font-weight: 600;
    font-size: 1rem;
}

/* Location CTA Section */
.location-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #d4a800 100%);
    text-align: center;
}

.location-cta h2 {
    font-size: 2rem;
    color: var(--primary-black);
    margin-bottom: 0.5rem;
}

.location-cta p {
    color: var(--primary-black);
    opacity: 0.8;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-whatsapp {
    background-color: #25D366;
    color: var(--white);
    border: none;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
}

/* Other Locations Section */
.other-locations {
    padding: 3rem 0;
    background: var(--primary-black);
}

.other-locations h2 {
    text-align: center;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 2rem;
}

.locations-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.location-link {
    background: var(--dark-gray);
    color: var(--primary-yellow);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    border: 1px solid rgba(245, 196, 0, 0.2);
}

.location-link:hover {
    background: var(--primary-yellow);
    color: var(--primary-black);
}

/* Location Pages Responsive */
@media (max-width: 768px) {
    .location-hero {
        padding: 2.5rem 0;
    }

    .location-hero h1 {
        font-size: 1.75rem;
        line-height: 1.3;
        padding: 0 1rem;
    }

    .location-tagline {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .location-hero p {
        font-size: 0.95rem;
        padding: 0 1rem;
    }

    .location-hero .hero-buttons {
        padding: 0 1rem;
        flex-direction: column;
        align-items: stretch;
    }

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

    .location-services {
        padding: 2.5rem 0;
    }

    .location-services h2 {
        font-size: 1.6rem;
        padding: 0 1rem;
    }

    .location-services .section-subtitle {
        padding: 0 1rem;
        font-size: 0.95rem;
    }

    .location-services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem;
    }

    .location-service-card {
        padding: 1.5rem;
    }

    .location-service-card h3 {
        font-size: 1.1rem;
    }

    .location-service-card p {
        font-size: 0.9rem;
    }

    .location-info {
        padding: 2.5rem 0;
    }

    .location-info h2 {
        font-size: 1.5rem;
        padding: 0 1rem;
    }

    .location-info > .container > p {
        padding: 0 1rem;
        font-size: 0.95rem;
    }

    .coverage-areas {
        padding: 0 1rem;
    }

    .area-tag {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .postcodes {
        padding: 0 1rem;
        font-size: 0.95rem;
    }

    .location-cta {
        padding: 2.5rem 0;
    }

    .location-cta h2 {
        font-size: 1.6rem;
        padding: 0 1rem;
    }

    .location-cta p {
        padding: 0 1rem;
        font-size: 0.95rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
        padding: 0 1rem;
    }

    .btn-large {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }

    .other-locations {
        padding: 2.5rem 0;
    }

    .other-locations h2 {
        font-size: 1.4rem;
        padding: 0 1rem;
    }

    .locations-grid {
        padding: 0 1rem;
        gap: 0.75rem;
    }

    .location-link {
        flex: 1 1 calc(50% - 0.5rem);
        min-width: calc(50% - 0.5rem);
        text-align: center;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .location-hero h1 {
        font-size: 1.5rem;
    }

    .location-services-grid {
        grid-template-columns: 1fr;
    }

    .location-service-card {
        padding: 1.25rem;
    }

    .location-link {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}

/* ==================== Services Pricing Section ==================== */
.pricing-overview {
    padding: 4rem 0;
    background: var(--dark-gray);
}

.pricing-overview h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-yellow);
    margin-bottom: 0.5rem;
}

.pricing-overview .section-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
}

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

.pricing-card {
    background: var(--primary-black);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(245, 196, 0, 0.1);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-yellow);
    box-shadow: 0 10px 30px rgba(245, 196, 0, 0.1);
}

.pricing-card.featured {
    border: 2px solid var(--primary-yellow);
    transform: scale(1.02);
}

.pricing-card.featured:hover {
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-yellow);
    color: var(--primary-black);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-card h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.pricing-price {
    color: var(--primary-yellow);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.pricing-features li {
    color: rgba(255, 255, 255, 0.8);
    padding: 0.5rem 0;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* Areas We Cover Section */
.areas-cover {
    padding: 4rem 0;
    background: var(--primary-black);
}

.areas-cover h2 {
    text-align: center;
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.areas-cover .section-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

/* Pricing Responsive */
@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .pricing-overview {
        padding: 3rem 0;
    }

    .pricing-overview h2 {
        font-size: 1.6rem;
    }

    .pricing-card {
        padding: 1.5rem;
    }

    .pricing-price {
        font-size: 1.6rem;
    }

    .areas-cover {
        padding: 3rem 0;
    }
}

@media (max-width: 576px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        padding: 1.25rem;
    }

    .pricing-badge {
        font-size: 0.75rem;
        padding: 0.25rem 0.75rem;
    }
}

/* ==================== FAQ Sections ==================== */
.faq-section {
    padding: 4rem 0;
    background: var(--dark-gray);
}

.faq-section h2,
.faq-section-inline h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-yellow);
    margin-bottom: 0.5rem;
}

.faq-section .section-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
}

.faq-section-inline {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(245, 196, 0, 0.2);
}

.faq-section-inline h2 {
    margin-bottom: 2rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.faq-item {
    background: var(--primary-black);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(245, 196, 0, 0.1);
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary-yellow);
    box-shadow: 0 5px 20px rgba(245, 196, 0, 0.1);
}

.faq-item h3 {
    color: var(--primary-yellow);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==================== Testimonials ==================== */
.testimonials-section {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(245, 196, 0, 0.2);
}

.testimonials-section h2 {
    text-align: center;
    font-size: 1.8rem;
    color: var(--primary-yellow);
    margin-bottom: 2rem;
}

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

.testimonial-card {
    background: var(--primary-black);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(245, 196, 0, 0.1);
    text-align: center;
}

.testimonial-card .stars {
    color: var(--primary-yellow);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.testimonial-card .author {
    color: var(--primary-yellow);
    font-weight: 600;
    font-size: 0.9rem;
}

/* ==================== Trust Signals ==================== */
.trust-signals {
    padding: 3rem 0;
    background: var(--primary-black);
    border-top: 1px solid rgba(245, 196, 0, 0.2);
    border-bottom: 1px solid rgba(245, 196, 0, 0.2);
}

.trust-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.trust-item {
    text-align: center;
    padding: 1rem;
}

.trust-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.trust-item h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.trust-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

/* FAQ & Testimonials Responsive */
@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 3rem 0;
    }

    .faq-section h2 {
        font-size: 1.6rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-item {
        padding: 1.25rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .trust-grid {
        gap: 1rem;
    }

    .trust-item {
        flex: 0 0 45%;
    }
}

@media (max-width: 480px) {
    .faq-item h3 {
        font-size: 1rem;
    }

    .faq-item p {
        font-size: 0.9rem;
    }

    .trust-item {
        flex: 0 0 100%;
    }

    .trust-icon {
        font-size: 2rem;
    }
}

/* ==================== Why Care Plans Benefits ==================== */
.why-care-plans {
    padding: 4rem 0;
    background: var(--dark-gray);
}

.why-care-plans h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-yellow);
    margin-bottom: 0.5rem;
}

.why-care-plans .section-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
}

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

.benefit-card {
    background: var(--primary-black);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(245, 196, 0, 0.1);
    transition: var(--transition);
}

.benefit-card:hover {
    border-color: var(--primary-yellow);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(245, 196, 0, 0.1);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    color: var(--primary-yellow);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.5;
}

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

@media (max-width: 768px) {
    .why-care-plans {
        padding: 3rem 0;
    }

    .why-care-plans h2 {
        font-size: 1.6rem;
    }

    .benefit-card {
        padding: 1.5rem;
    }

    .benefit-icon {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefit-card {
        padding: 1.25rem;
    }
}

/* ==================== Homepage Locations Section ==================== */
.kent-locations-home {
    padding: 4rem 0;
    background: var(--dark-gray);
}

.kent-locations-home h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-yellow);
    margin-bottom: 0.5rem;
}

.kent-locations-home .section-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .kent-locations-home {
        padding: 3rem 0;
    }

    .kent-locations-home h2 {
        font-size: 1.5rem;
    }
}

/* ==================== Sticky Call Buttons ==================== */
.alert-message {
    position: fixed;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 1.2rem 2rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    z-index: 10000;
    max-width: 500px;
    text-align: center;
    font-weight: 600;
    transition: top 0.5s ease;
}

.alert-message.show {
    top: 80px;
}

.alert-success {
    background: #4CAF50;
    color: white;
}

.alert-error {
    background: #f44336;
    color: white;
}

.sticky-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9999;
}

.sticky-call,
.sticky-whatsapp {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.sticky-call {
    background: var(--primary-yellow);
    color: var(--primary-black);
}

.sticky-call:hover {
    background: #ffd700;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(245, 196, 0, 0.5);
}

.sticky-whatsapp {
    background: #25D366;
    color: white;
}

.sticky-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.sticky-icon {
    font-size: 1.3rem;
}

.sticky-text {
    font-size: 0.95rem;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 4px 30px rgba(245, 196, 0, 0.6);
    }
}

@media (max-width: 768px) {
    .sticky-buttons {
        bottom: 15px;
        right: 15px;
    }

    .sticky-call,
    .sticky-whatsapp {
        padding: 10px 16px;
    }

    .sticky-text {
        font-size: 0.85rem;
    }
}

/* ==================== Pricing Section ==================== */
.pricing-section {
    padding: 5rem 0;
    background: var(--dark-gray);
}

.pricing-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.pricing-section .section-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

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

.pricing-card {
    background: var(--primary-black);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    border: 2px solid rgba(245, 196, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card.featured {
    border-color: var(--primary-yellow);
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(245, 196, 0, 0.2);
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-yellow);
    box-shadow: 0 15px 40px rgba(245, 196, 0, 0.3);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark-gray);
    color: var(--primary-yellow);
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-badge.highlight {
    background: var(--primary-yellow);
    color: var(--primary-black);
}

.pricing-card h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
}

.price {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.price-amount {
    display: block;
    color: var(--primary-yellow);
    font-size: 2.5rem;
    font-weight: 700;
    margin-top: 0.5rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
}

.pricing-features li {
    color: rgba(255, 255, 255, 0.8);
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
}

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

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

    .pricing-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 3rem 0;
    }

    .pricing-section h2 {
        font-size: 1.8rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
    }
}

/* ==================== Quick Quote Form Section ==================== */
.quote-form-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    position: relative;
}

.quote-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(245, 196, 0, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.quote-form-wrapper {
    max-width: 850px;
    margin: 0 auto;
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.95) 0%, rgba(15, 15, 15, 0.98) 100%);
    border-radius: 24px;
    padding: 3.5rem;
    border: 1px solid rgba(245, 196, 0, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 100px rgba(245, 196, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.quote-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-yellow), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -50%; }
    100% { left: 150%; }
}

.quote-form-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.quote-form-header h2 {
    color: var(--white);
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff 0%, var(--primary-yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.quote-form-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.quote-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.quote-trust-header {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.trust-pill {
    background: linear-gradient(135deg, rgba(245, 196, 0, 0.15) 0%, rgba(245, 196, 0, 0.05) 100%);
    border: 1px solid rgba(245, 196, 0, 0.4);
    color: var(--primary-yellow);
    padding: 0.65rem 1.25rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(245, 196, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.trust-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 196, 0, 0.25);
    border-color: var(--primary-yellow);
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    font-size: 0.8rem;
    opacity: 0.9;
}

.field-hint {
    color: rgba(245, 196, 0, 0.6);
    font-size: 0.75rem;
    margin-top: 0.4rem;
    font-style: italic;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.06) 100%);
    border: 2px solid rgba(245, 196, 0, 0.2);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: rgba(245, 196, 0, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-yellow);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.12) 100%);
    box-shadow: 0 0 0 4px rgba(245, 196, 0, 0.15), inset 0 2px 4px rgba(0, 0, 0, 0.2), 0 8px 20px rgba(245, 196, 0, 0.1);
    transform: translateY(-1px);
}

.form-group input:invalid:not(:placeholder-shown),
.form-group select:invalid {
    border-color: rgba(255, 100, 100, 0.6);
    background: rgba(255, 50, 50, 0.05);
}

.form-group input:valid:not(:placeholder-shown),
.form-group select:valid {
    border-color: rgba(100, 255, 100, 0.4);
    background: rgba(100, 255, 100, 0.03);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group select {
    cursor: pointer;
    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='none' stroke='%23F5C400' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.2rem;
    padding-right: 3rem;
}

.form-group textarea {
    resize: vertical;
    font-family: inherit;
    min-height: 120px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
    font-weight: 400;
}

.form-actions {
    margin-top: 1rem;
    text-align: center;
}

.btn-submit {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #FFD700 100%) !important;
    border: none;
    padding: 1.2rem 2.5rem !important;
    font-size: 1.1rem !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 30px rgba(245, 196, 0, 0.3), 0 0 40px rgba(245, 196, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-submit:hover::before {
    width: 300px;
    height: 300px;
}

.btn-submit:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(245, 196, 0, 0.5), 0 0 60px rgba(245, 196, 0, 0.3);
}

.btn-submit:active {
    transform: translateY(-1px) scale(0.98);
}

.form-note {
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.phone-link,
.whatsapp-link {
    color: var(--primary-yellow);
    text-decoration: none;
    font-weight: 600;
}

.phone-link:hover,
.whatsapp-link:hover {
    text-decoration: underline;
}

.quote-guarantee {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(245, 196, 0, 0.2);
}

.guarantee-item {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(245, 196, 0, 0.08) 0%, rgba(245, 196, 0, 0.02) 100%);
    border: 1px solid rgba(245, 196, 0, 0.2);
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.guarantee-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245, 196, 0, 0.15);
    border-color: rgba(245, 196, 0, 0.4);
}

.guarantee-item strong {
    color: var(--primary-yellow);
    display: block;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.quote-trust {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-badge {
    color: var(--primary-yellow);
    font-size: 0.9rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .quote-form-section {
        padding: 3rem 0;
    }

    .quote-form-wrapper {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }

    .quote-form-header h2 {
        font-size: 1.8rem;
    }

    .quote-subtitle {
        font-size: 0.95rem;
    }

    .quote-trust-header {
        gap: 0.5rem;
    }

    .trust-pill {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

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

    .quote-trust {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .quote-guarantee {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .guarantee-item {
        font-size: 0.85rem;
        padding: 0.9rem;
    }
}
    }
}

/* ==================== Enhanced Hero Styles ==================== */
.hero-subtitle {
    font-size: 1.5rem;
    color: var(--primary-yellow);
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.btn-whatsapp:hover {
    background: #128C7E;
}

@media (max-width: 768px) {
    .hero-subtitle {
        font-size: 1.2rem;
    }

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

/* ==================== Modern Service Cards ==================== */
.modern-service-card {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.95) 0%, rgba(15, 15, 15, 0.98) 100%);
    border: 1px solid rgba(245, 196, 0, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.modern-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-yellow), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.modern-service-card:hover::before {
    opacity: 1;
}

.modern-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(245, 196, 0, 0.2), 0 0 60px rgba(245, 196, 0, 0.1);
    border-color: var(--primary-yellow);
}

.service-card-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.modern-service-card h3 {
    color: var(--white);
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-align: center;
}

.service-card-subtitle {
    color: var(--primary-yellow);
    font-size: 0.9rem;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-card-image {
    margin: 1.5rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.service-card-image img {
    transition: transform 0.4s ease;
}

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

.modern-service-card > p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-features-compact {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    flex-grow: 1;
}

.service-features-compact li {
    color: rgba(255, 255, 255, 0.85);
    padding: 0.6rem 0;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.service-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(245, 196, 0, 0.2);
}

.price-tag {
    color: var(--primary-yellow);
    font-size: 1.5rem;
    font-weight: 800;
}

.btn-small {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
}

/* Feature Box Styles */
.feature-box {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.8) 0%, rgba(15, 15, 15, 0.9) 100%);
    border: 1px solid rgba(245, 196, 0, 0.15);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    border-color: rgba(245, 196, 0, 0.4);
    box-shadow: 0 10px 30px rgba(245, 196, 0, 0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-box h3 {
    color: var(--primary-yellow);
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
}

.feature-box p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .modern-service-card {
        padding: 1.5rem;
    }

    .service-card-icon {
        font-size: 2.5rem;
    }

    .modern-service-card h3 {
        font-size: 1.5rem;
    }

    .service-card-footer {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-small {
        width: 100%;
    }

    .price-tag {
        font-size: 1.3rem;
    }
}
