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

:root {
    --primary-color: #202600;
    --secondary-color: #8FBD9D;
    --accent-color: #DAA520;
    --cta-color: #FFC905;
    --tertiary-color: #000000;
    --light-bg: #f5f5f5;
    --border-color: #e5e5e5;
    --text-dark: #202600;
    --text-light: #666666;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
    font-size: 106.25%; /* 17px baseline */
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.018rem;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.029rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }

p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
}

a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

.container {
    max-width: 64.706rem;
    margin: 0 auto;
    padding: 0 2.353rem;
}

main {
    min-height: calc(100vh - 11.765rem);
    display: flex;
    flex-direction: column;
}

.slideshow-container {
    margin-top: -0.059rem;
    border-top: none;
}

/* HEADER */
.main-header {
    background-color: var(--primary-color);
    border-bottom: 0.059rem solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 64.706rem;
    margin: 0 auto;
    padding: 0 2.353rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 5.294rem;
}

.logo-section a {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 0;
}

.logo-text {
    display: none;
}

.logo-img {
    height: 4.118rem;
    width: auto;
    max-width: 18.235rem;
    object-fit: contain;
}

.logo h1 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin: 0;
    font-weight: 600;
    letter-spacing: 0.059rem;
}

.logo .tagline {
    font-size: 0.65rem;
    color: var(--text-light);
    margin: 0;
    font-style: italic;
    font-weight: 400;
    letter-spacing: 0.029rem;
}

.main-nav {
    display: flex;
    align-items: center;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 0.294rem;
}

.menu-toggle span {
    width: 1.471rem;
    height: 0.118rem;
    background-color: var(--white);
    border-radius: 0.059rem;
    transition: all 0.3s ease;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 2.941rem;
    align-items: center;
}

.nav-link {
    font-weight: 400;
    font-size: 0.95rem;
    text-transform: capitalize;
    color: var(--white);
    transition: color 0.3s ease;
    position: relative;
    letter-spacing: 0.018rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -0.471rem;
    left: 0;
    width: 0;
    height: 0.059rem;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

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

.nav-link.active {
    color: var(--secondary-color);
}

.nav-link.cta-button {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 0.471rem 0.941rem;
    border-radius: 0.176rem;
    border: 0.059rem solid var(--secondary-color);
    transition: all 0.3s ease;
    font-weight: 600;
}

.nav-link.cta-button:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

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

/* HERO BANNER */
.hero-banner {
    padding: 0;
    display: flex;
    align-items: stretch;
}

.hero-banner-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    width: 100%;
}

.hero-banner-text {
    padding: 4.706rem 3.529rem;
    background-color: var(--white);
}

.hero-banner-text h1 {
    font-size: 3.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.176rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2.353rem;
    line-height: 1.6;
    font-weight: 400;
}

.hero-banner-image {
    height: 100%;
    min-height: 29.412rem;
    overflow: hidden;
}

.hero-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* HERO SECTIONS */
.hero-section {
    min-height: 32.353rem;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 47.059rem;
    padding: 0 2.353rem;
}

.hero-content h1 {
    color: var(--white);
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 0.882rem;
    letter-spacing: 0.059rem;
}

.hero-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    margin-bottom: 0;
    font-weight: 300;
    letter-spacing: 0.029rem;
}

.cta-buttons {
    display: flex;
    gap: 1.176rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.765rem;
}

.btn {
    display: inline-block;
    padding: 0.706rem 2.059rem;
    border-radius: 0;
    font-weight: 400;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.059rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--cta-color);
    color: var(--primary-color);
    border: 0.059rem solid var(--cta-color);
    font-weight: 600;
}

.btn-primary:hover {
    background-color: #FFB700;
    color: var(--primary-color);
    transform: none;
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 0.059rem solid var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--text-dark);
    transform: none;
}

/* SECTION SPACING */
section {
    padding: 5.882rem 0;
    margin-bottom: 0;
}

section.slideshow-container {
    padding: 0;
}

section.light-bg {
    background-color: var(--light-bg);
    border-top: 0.059rem solid #e0e6eb;
    border-bottom: 0.059rem solid #e0e6eb;
}

.section-title {
    text-align: center;
    margin-bottom: 4.706rem;
    position: relative;
}

.section-title::before {
    content: '';
    position: absolute;
    top: -2.353rem;
    left: 50%;
    transform: translateX(-50%);
    width: 3.529rem;
    height: 0.235rem;
    background-color: var(--secondary-color);
    border-radius: 0.118rem;
}

.section-title h2 {
    margin-bottom: 1.176rem;
    letter-spacing: 0.029rem;
    font-size: 2.8rem;
    font-weight: 600;
}

.section-title p {
    font-size: 1.1em;
    max-width: 35.294rem;
    margin: 0 auto;
    font-weight: 300;
    color: var(--text-light);
}

/* FULL-WIDTH SECTIONS */
.full-width-section {
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
}

.full-width-section.reversed {
    direction: rtl;
}

.full-width-section.reversed > * {
    direction: ltr;
}

.full-width-image {
    height: 100%;
    min-height: 32.353rem;
    overflow: hidden;
}

.full-width-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.full-width-content {
    padding: 5.882rem 4.706rem;
    background-color: #f9fafb;
    display: flex;
    align-items: center;
}

.content-wrapper {
    width: 100%;
}

.content-wrapper h2 {
    font-size: 2.6rem;
    font-weight: 600;
    margin-bottom: 1.471rem;
    color: var(--text-dark);
}

.lead-text {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 1.471rem;
    line-height: 1.7;
}

/* IMAGE TEXT SECTIONS */
.image-text-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.706rem;
    align-items: center;
    margin: 4.706rem 0;
}

.image-text-section.reversed {
    grid-template-columns: 1fr 1fr;
}

.image-text-section.reversed .image-box {
    order: 2;
}

.image-text-section.reversed .content-box {
    order: 1;
}

.image-box {
    width: 100%;
}

.image-box img {
    width: 100%;
    height: auto;
    display: block;
}

.content-box h2 {
    font-size: 2.4rem;
    margin-bottom: 1.471rem;
    font-weight: 600;
    letter-spacing: 0.029rem;
    color: var(--text-dark);
}

.content-box h3 {
    font-size: 1.6rem;
    margin-top: 2.353rem;
    margin-bottom: 1.176rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.content-box p {
    line-height: 1.9;
    margin-bottom: 1.176rem;
    font-size: 1.05rem;
}

/* SERVICES SECTION */
.services-section {
    padding: 5.882rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4.706rem;
    position: relative;
}

.section-header::before {
    content: '';
    position: absolute;
    top: -2.353rem;
    left: 50%;
    transform: translateX(-50%);
    width: 3.529rem;
    height: 0.235rem;
    background-color: var(--secondary-color);
    border-radius: 0.118rem;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 1.176rem;
}

.section-header p {
    font-size: 1.1em;
    max-width: 35.294rem;
    margin: 0 auto;
    font-weight: 300;
    color: var(--text-light);
}

/* SERVICES SHOWCASE */
.services-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(19.412rem, 1fr));
    gap: 2.059rem;
    margin-bottom: 3.529rem;
}

.service-card {
    text-align: center;
    padding: 2.941rem 2.353rem;
    background-color: var(--white);
    border-radius: 0.176rem;
    box-shadow: 0 0.118rem 0.471rem rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 0.294rem solid var(--secondary-color);
    position: relative;
}

.service-card:hover {
    box-shadow: 0 0.706rem 1.882rem rgba(0, 0, 0, 0.15);
    transform: translateY(-0.471rem);
}

.service-icon-wrapper {
    margin-bottom: 1.471rem;
}

.service-card .icon {
    font-size: 3em;
    color: var(--secondary-color);
    display: block;
}

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.882rem;
    font-weight: 600;
    color: var(--text-dark);
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.471rem;
}

.service-link {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    display: inline-block;
}

.service-link:hover {
    color: var(--accent-dark);
}

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

/* PREMIUM SERVICE CARDS */
.services-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    gap: 1.765rem;
    margin-bottom: 3.529rem;
}

.service-card-premium {
    background: linear-gradient(135deg, var(--white) 0%, #fafbfc 100%);
    border-radius: 0.471rem;
    overflow: hidden;
    box-shadow: 0 0.235rem 0.882rem rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 0.059rem solid rgba(44, 95, 124, 0.1);
    position: relative;
}

.service-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0.235rem;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-light));
}

.service-card-premium:hover {
    box-shadow: 0 0.941rem 2.353rem rgba(44, 95, 124, 0.18);
    transform: translateY(-0.706rem);
    border-color: rgba(44, 95, 124, 0.2);
}

.service-card-top {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-light) 100%);
    padding: 2.353rem 1.765rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 8.235rem;
}

.service-icon-large {
    font-size: 3.2rem;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.95;
}

.service-card-content {
    padding: 2.059rem 1.765rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-card-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.882rem;
    color: var(--text-dark);
    font-weight: 700;
}

.service-card-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0;
    flex-grow: 1;
}

.service-card-footer {
    margin-top: 1.471rem;
    padding-top: 1.176rem;
    border-top: 0.059rem solid rgba(44, 95, 124, 0.1);
}

.service-card-link {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.471rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.service-card-link:hover {
    color: var(--accent-dark);
    gap: 0.706rem;
}

.service-card-link i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.service-card-premium:hover .service-card-link i {
    transform: translateX(0.176rem);
}

/* STAT CARDS */
.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(16.471rem, 1fr));
    gap: 2.353rem;
}

.stat-card {
    text-align: center;
    padding: 2.941rem 2.353rem;
    background-color: var(--white);
    border-radius: 0.176rem;
    box-shadow: 0 0.118rem 0.471rem rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 0.294rem solid var(--secondary-color);
}

.stat-card:hover {
    box-shadow: 0 0.706rem 1.882rem rgba(0, 0, 0, 0.15);
    transform: translateY(-0.471rem);
}

.stat-number {
    font-size: 3.5em;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.882rem;
    line-height: 1;
}

.stat-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.882rem;
    font-weight: 600;
    color: var(--text-dark);
}

.stat-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* TEAM CARDS */
.team-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(19.412rem, 1fr));
    gap: 2.353rem;
}

.team-card {
    text-align: center;
    padding: 2.941rem 2.353rem;
    background-color: var(--white);
    border-radius: 0.176rem;
    box-shadow: 0 0.118rem 0.471rem rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 0.294rem solid var(--secondary-color);
}

.team-card:hover {
    box-shadow: 0 0.706rem 1.882rem rgba(0, 0, 0, 0.15);
    transform: translateY(-0.471rem);
}

.team-icon {
    width: 5.882rem;
    height: 5.882rem;
    background-color: var(--light-bg);
    border-radius: 50%;
    margin: 0 auto 1.471rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5em;
    color: var(--secondary-color);
}

.team-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.882rem;
    font-weight: 600;
    color: var(--text-dark);
}

.team-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* SERVICES GRID - ENHANCED */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(18.824rem, 1fr));
    gap: 2.353rem;
    margin-top: 4.706rem;
}

.service-item {
    text-align: center;
    padding: 2.941rem 2.353rem;
    background-color: var(--white);
    border-radius: 0.118rem;
    box-shadow: 0 0.118rem 0.471rem rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 0.235rem solid var(--secondary-color);
}

.service-item:hover {
    box-shadow: 0 0.471rem 1.412rem rgba(0, 0, 0, 0.12);
    transform: translateY(-0.235rem);
}

.service-item .icon {
    font-size: 2.8em;
    color: var(--secondary-color);
    margin-bottom: 1.176rem;
    display: block;
    opacity: 1;
}

.service-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.882rem;
    font-weight: 600;
    letter-spacing: 0.018rem;
    color: var(--text-dark);
}

.service-item p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* BENEFIT LIST */
.benefit-list {
    list-style: none;
    margin: 1.765rem 0;
    text-align: left;
}

.benefit-list li {
    padding: 0.824rem 0 0.824rem 2.647rem;
    margin-bottom: 0.941rem;
    color: var(--text-light);
    font-size: 0.98rem;
    position: relative;
}

.benefit-list li i {
    position: absolute;
    left: 0;
    top: 0.941rem;
    color: var(--secondary-color);
    font-size: 1.2rem;
    width: 1.765rem;
    text-align: center;
}

.benefit-list li:last-child {
    margin-bottom: 0;
}

/* TESTIMONIALS */
.testimonials-section {
    background-color: var(--white);
    padding: 5.882rem 0;
}

/* TESTIMONIALS SHOWCASE */
.testimonials-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    gap: 2.353rem;
}

.testimonial-card {
    background-color: var(--light-bg);
    padding: 2.941rem 2.353rem;
    border-radius: 0.176rem;
    box-shadow: 0 0.118rem 0.471rem rgba(0, 0, 0, 0.05);
    border-left: 0.294rem solid var(--secondary-color);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    box-shadow: 0 0.471rem 1.176rem rgba(0, 0, 0, 0.1);
    transform: translateY(-0.235rem);
}

.testimonial-quote-icon {
    font-size: 2.5em;
    color: var(--secondary-color);
    opacity: 0.3;
    margin-bottom: 0.882rem;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: auto;
    color: var(--text-dark);
    font-size: 0.98rem;
    line-height: 1.8;
}

.testimonial-footer {
    margin-top: 1.765rem;
    padding-top: 1.471rem;
    border-top: 0.059rem solid #ddd;
}

.testimonial-author {
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 0.98rem;
    margin-bottom: 0.294rem;
}

.testimonial-role {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 400;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(17.647rem, 1fr));
    gap: 3.529rem;
    margin-top: 4.706rem;
}

/* ENHANCED TESTIMONIALS */
.testimonials-grid-enhanced {
    display: flex;
    gap: 1.765rem;
    margin-top: 3.529rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 0.882rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.testimonials-grid-enhanced::-webkit-scrollbar {
    display: none;
}

.testimonial-card-enhanced {
    flex: 0 0 calc(33.333% - 1.176rem);
    min-width: 21.176rem;
    background: linear-gradient(135deg, var(--white) 0%, #fafbfc 100%);
    border-radius: 0.706rem;
    padding: 2.353rem;
    box-shadow: 0 0.235rem 1.176rem rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
    border: 0.059rem solid rgba(44, 95, 124, 0.1);
    position: relative;
    overflow: hidden;
}

.testimonial-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 5.882rem;
    height: 5.882rem;
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--secondary-color) 100%);
    opacity: 0.08;
    border-radius: 50%;
    transform: translate(1.765rem, -1.765rem);
}

.testimonial-card-enhanced:hover {
    box-shadow: 0 0.941rem 2.824rem rgba(44, 95, 124, 0.18);
    transform: translateY(-0.706rem);
    border-color: rgba(44, 95, 124, 0.2);
}

.testimonial-header-enhanced {
    display: flex;
    align-items: center;
    gap: 1.059rem;
    margin-bottom: 1.471rem;
    position: relative;
    z-index: 1;
}

.testimonial-avatar {
    width: 3.529rem;
    height: 3.529rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 0.235rem 0.882rem rgba(44, 95, 124, 0.3);
}

.testimonial-meta h4 {
    font-size: 1.1rem;
    margin: 0 0 0.294rem 0;
    color: var(--text-dark);
    font-weight: 700;
}

.testimonial-meta p {
    font-size: 0.85rem;
    color: var(--secondary-color);
    margin: 0;
    font-weight: 600;
    letter-spacing: 0.029rem;
}

.testimonial-rating {
    display: flex;
    gap: 0.294rem;
    margin-bottom: 1.176rem;
    position: relative;
    z-index: 1;
}

.testimonial-rating i {
    color: #ffc107;
    font-size: 0.95rem;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
    margin: 0 0 1.471rem 0;
    font-style: italic;
    position: relative;
    z-index: 1;
    padding-left: 1.176rem;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    left: 0;
    font-size: 2.5rem;
    color: var(--accent-light);
    opacity: 0.3;
    line-height: 1;
}

.testimonial-highlight {
    display: flex;
    align-items: center;
    gap: 0.588rem;
    padding: 0.706rem 0.882rem;
    background-color: rgba(44, 95, 124, 0.05);
    border-radius: 0.353rem;
    border-left: 0.176rem solid var(--secondary-color);
    font-size: 0.9rem;
    color: var(--accent-dark);
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.testimonial-highlight i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

/* FINAL CTA SECTION */
.final-cta-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-light) 100%);
    padding: 5.882rem 0;
}

.final-cta-content {
    text-align: center;
    max-width: 41.176rem;
    margin: 0 auto;
    color: var(--white);
}

.final-cta-content h2 {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 1.471rem;
    color: var(--white);
}

.final-cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.353rem;
    font-weight: 400;
}

.final-cta-section .btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 0.118rem solid var(--white);
}

.final-cta-section .btn-secondary:hover {
    background-color: var(--white);
    color: var(--secondary-color);
}

/* CONTACT SECTION */
.contact-section {
    padding: 5.882rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.529rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 2.353rem;
    color: var(--text-dark);
}

.info-block {
    margin-bottom: 2.353rem;
}

.info-block h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.706rem;
    color: var(--secondary-color);
}

.contact-link {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--accent-dark);
}

.office-hours {
    background-color: var(--light-bg);
    padding: 1.765rem;
    border-radius: 0.176rem;
    border-left: 0.235rem solid var(--secondary-color);
    margin-top: 1.765rem;
}

.office-hours h3 {
    color: var(--secondary-color);
    margin-bottom: 0.882rem;
}

.office-hours p {
    margin-bottom: 0.471rem;
    font-size: 0.95rem;
}

.contact-form-wrapper h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 1.765rem;
    color: var(--text-dark);
}

/* LOCATION SECTION */
.location-section {
    padding: 5.882rem 0;
}

.location-section h2 {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 2.941rem;
    color: var(--text-dark);
}

.map-wrapper {
    border-radius: 0.176rem;
    overflow: hidden;
    box-shadow: 0 0.235rem 0.706rem rgba(0, 0, 0, 0.1);
}

/* FAQ GRID */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(19.412rem, 1fr));
    gap: 2.353rem;
}

.faq-card {
    padding: 2.353rem;
    background-color: var(--white);
    border-radius: 0.176rem;
    box-shadow: 0 0.118rem 0.471rem rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 0.235rem solid var(--secondary-color);
}

.faq-card:hover {
    box-shadow: 0 0.471rem 1.176rem rgba(0, 0, 0, 0.12);
    transform: translateY(-0.235rem);
}

.faq-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.882rem;
}

.faq-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0;
}

/* FORM */
.contact-form {
    max-width: 100%;
}

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

label {
    display: block;
    margin-bottom: 0.706rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
    width: 100%;
    padding: 0.824rem 0.882rem;
    border: 0.059rem solid #ddd;
    border-radius: 0.118rem;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background-color: var(--white);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.176rem rgba(44, 95, 124, 0.1);
}

textarea {
    resize: vertical;
    min-height: 7.059rem;
}

.checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.882rem;
    margin-top: 0.706rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    font-weight: 400;
    cursor: pointer;
    font-size: 0.9rem;
}

input[type="checkbox"],
input[type="radio"] {
    margin-right: 0.471rem;
    margin-top: 0.118rem;
}

.form-submit {
    width: 100%;
    margin-top: 1.176rem;
}

/* LOCATION MAP */
.map-section {
    width: 100%;
    margin: 4.706rem 0;
    border-radius: 0.118rem;
    overflow: hidden;
    box-shadow: 0 0.118rem 0.471rem rgba(0, 0, 0, 0.08);
}

.map-section iframe {
    width: 100%;
    height: 28.235rem;
    border: none;
}

.map-info {
    background: linear-gradient(135deg, var(--light-bg) 0%, #f0f4f7 100%);
    padding: 2.941rem;
    margin-top: 2.941rem;
    border-radius: 0.118rem;
    border-left: 0.235rem solid var(--secondary-color);
    box-shadow: 0 0.118rem 0.471rem rgba(0, 0, 0, 0.05);
}

.map-info h3 {
    margin-bottom: 0.882rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.map-info p {
    margin-bottom: 0.882rem;
    font-size: 0.95rem;
}

/* FOOTER */
footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 5.882rem 0 1.765rem;
    margin-top: 0;
    border-top: 0.059rem solid #333333;
}

.footer-content {
    max-width: 64.706rem;
    margin: 0 auto;
    padding: 0 2.353rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3.529rem;
    margin-bottom: 2.941rem;
}

.footer-about p {
    color: #cccccc;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.882rem;
}

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 1.471rem;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.059rem;
    position: relative;
    padding-bottom: 0.882rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 1.765rem;
    height: 0.118rem;
    background-color: var(--secondary-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.706rem;
}

.footer-section a {
    color: #cccccc;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-light);
}

.footer-contact p {
    margin-bottom: 0.706rem;
    color: #cccccc;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 0.706rem;
    margin-top: 1.176rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.353rem;
    height: 2.353rem;
    background-color: #333333;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    color: #ffffff;
}

.social-links a:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-0.118rem);
    box-shadow: 0 0.235rem 0.706rem rgba(44, 95, 124, 0.2);
}

.footer-bottom {
    border-top: 0.059rem solid #333333;
    padding-top: 1.765rem;
    text-align: center;
    color: #999999;
    max-width: 64.706rem;
    margin: 0 auto;
    padding: 1.765rem 2.353rem 0;
    font-size: 0.85rem;
}

.footer-bottom p {
    margin-bottom: 0.471rem;
    color: #999999;
}

.footer-bottom a {
    color: #90caf9;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* FLOATING CTA BUTTONS */
.floating-cta {
    position: fixed;
    right: 1.765rem;
    bottom: 1.765rem;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 0.706rem;
}

.floating-btn {
    width: 3.529rem;
    height: 3.529rem;
    border-radius: 50%;
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4em;
    box-shadow: 0 0.235rem 0.941rem rgba(44, 95, 124, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
}

.floating-btn:hover {
    background-color: var(--accent-light);
    transform: scale(1.1);
    box-shadow: 0 0.471rem 1.412rem rgba(44, 95, 124, 0.4);
}

.floating-tooltip {
    position: absolute;
    right: 4.118rem;
    background-color: var(--text-dark);
    color: var(--white);
    padding: 0.471rem 0.706rem;
    border-radius: 0;
    font-size: 0.8em;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.floating-btn:hover .floating-tooltip {
    opacity: 1;
}

/* SLIDESHOW */
.slideshow-container {
    position: relative;
    width: 100%;
    background-color: var(--white);
    overflow: hidden;
}

.slide {
    display: none;
    position: relative;
    width: 100%;
    height: 38.235rem;
    background-size: cover;
    background-position: center;
    animation: slideshow-fade 0.8s;
}

.slide.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes slideshow-fade {
    from { opacity: 0; }
    to { opacity: 1; }
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 50rem;
    padding: 0 2.353rem;
    animation: slideContentFade 0.8s;
}

@keyframes slideContentFade {
    from { 
        opacity: 0;
        transform: translateY(1.176rem);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-content h1,
.slide-content h2 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 1.471rem;
    font-weight: 700;
    letter-spacing: -0.029rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.slide-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.353rem;
    font-weight: 300;
    line-height: 1.6;
}

.slideshow-controls {
    position: absolute;
    bottom: 2.059rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.882rem;
    z-index: 10;
}

.slide-dot {
    width: 0.706rem;
    height: 0.706rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 0.118rem solid transparent;
}

.slide-dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.15);
}

.slide-dot.active {
    background-color: var(--accent-light);
    border-color: rgba(255, 255, 255, 0.6);
}

.slideshow-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2.941rem;
    height: 2.941rem;
    border: none;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    z-index: 10;
    border-radius: 0.176rem;
}

.slideshow-nav:hover {
    background-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-50%) scale(1.1);
}

.slideshow-nav.prev {
    left: 1.471rem;
}

.slideshow-nav.next {
    right: 1.471rem;
}

/* RESPONSIVE */
@media (max-width: 45.176rem) {
    .header-container {
        height: 3.529rem;
        padding: 0 1.176rem;
    }

    .container {
        padding: 0 1.176rem;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 3.529rem;
        left: 0;
        right: 0;
        background-color: var(--accent-dark);
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-bottom: 0.059rem solid var(--border-color);
        box-shadow: 0 0.235rem 0.706rem rgba(0, 0, 0, 0.08);
    }

    .nav-menu.active {
        max-height: 35.294rem;
    }

    .nav-link {
        display: block;
        padding: 0.941rem 1.176rem;
        width: 100%;
        text-align: left;
        border-bottom: 0.059rem solid rgba(255, 255, 255, 0.1);
        transition: background-color 0.2s ease;
        color: var(--white);
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .nav-link:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }

    .nav-link.active {
        color: var(--secondary-color);
    }

    .logo h1 {
        font-size: 1.1rem;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }

    /* HERO BANNER MOBILE */
    .hero-banner {
        display: grid;
    }

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

    .hero-banner-text {
        padding: 3.529rem 1.765rem;
        order: 2;
    }

    .hero-banner-text h1 {
        font-size: 2.2rem;
        margin-bottom: 0.882rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.765rem;
    }

    .hero-banner-image {
        min-height: 17.647rem;
        order: 1;
    }

    /* FULL WIDTH SECTIONS MOBILE */
    .full-width-section {
        grid-template-columns: 1fr;
    }

    .full-width-section.reversed {
        direction: ltr;
    }

    .full-width-image {
        min-height: 17.647rem;
        order: 1;
    }

    .full-width-content {
        padding: 2.941rem 1.765rem;
        order: 2;
    }

    .content-wrapper h2 {
        font-size: 2rem;
        margin-bottom: 1.176rem;
    }

    .lead-text {
        font-size: 1rem;
    }

    /* SERVICES MOBILE */
    .services-showcase {
        grid-template-columns: 1fr;
        gap: 1.471rem;
    }

    .service-card {
        padding: 2.353rem 1.765rem;
    }

    /* TESTIMONIALS MOBILE */
    .testimonials-showcase {
        grid-template-columns: 1fr;
        gap: 1.765rem;
    }

    .testimonial-card {
        padding: 2.353rem 1.765rem;
    }

    .image-text-section {
        grid-template-columns: 1fr;
        gap: 2.353rem;
    }

    .image-text-section.reversed .image-box,
    .image-text-section.reversed .content-box {
        order: initial;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    section {
        padding: 3.529rem 0;
    }

    section.slideshow-container {
        padding: 0;
    }

    .floating-cta {
        right: 0.882rem;
        bottom: 0.882rem;
        gap: 0.588rem;
    }

    .floating-btn {
        width: 2.941rem;
        height: 2.941rem;
        font-size: 1.1em;
    }

    .floating-tooltip {
        display: none;
    }

    .checkbox-group {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.765rem;
    }

    .slide {
        height: 23.529rem;
    }

    .slide-content h1,
    .slide-content h2 {
        font-size: 1.8rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.3;
        hyphens: auto;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .services-grid {
        gap: 2.353rem;
    }

    .testimonials-grid {
        gap: 2.353rem;
    }

    .section-title {
        margin-bottom: 3.529rem;
    }

    .section-title::before {
        top: -1.765rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .section-header {
        margin-bottom: 3.529rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .service-item {
        padding: 2.353rem 1.765rem;
    }

    .hero-section {
        min-height: 23.529rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .content-box h3 {
        font-size: 1.4rem;
    }

    .final-cta-content h2 {
        font-size: 2rem;
    }

    .final-cta-content p {
        font-size: 1rem;
    }

    /* CONTACT RESPONSIVE */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.353rem;
    }

    .contact-info h2,
    .contact-form-wrapper h2 {
        font-size: 2rem;
    }

    .location-section h2 {
        font-size: 2rem;
    }

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

    .impact-stats {
        grid-template-columns: 1fr;
        gap: 1.765rem;
    }

    .stat-number {
        font-size: 2.5em;
    }

    .team-showcase {
        grid-template-columns: 1fr;
    }
}

.floating-contacts {
    position: fixed;
    bottom: 1.765rem;
    right: 1.765rem;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 0.882rem;
}

.floating-btn {
    width: 3.235rem;
    height: 3.235rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.412rem;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0.235rem 0.706rem rgba(0, 0, 0, 0.15);
    border: none;
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0.353rem 1.176rem rgba(0, 0, 0, 0.2);
}

.call-btn {
    background: linear-gradient(135deg, #0d7377 0%, #0a5f66 100%);
}

.call-btn:hover {
    background: linear-gradient(135deg, #0a5f66 0%, #084754 100%);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25d366 0%, #20ba5a 100%);
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #20ba5a 0%, #1fa84f 100%);
}

.email-btn {
    background: linear-gradient(135deg, #FF6B6B 0%, #EE5A52 100%);
    color: white;
}

.email-btn:hover {
    background: linear-gradient(135deg, #E85444 0%, #D64835 100%);
    color: white;
}

@media (max-width: 45.176rem) {
    header {
        padding: 0 !important;
    }

    #mobileMenuBtn {
        display: flex !important;
    }

    #mobileNav {
        display: none;
        position: absolute;
        top: 4.706rem;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        border-bottom: 0.059rem solid #e5e5e5;
        padding: 0;
        max-height: 29.412rem;
        overflow-y: auto;
        z-index: 999;
    }

    #mobileNav a {
        padding: 0.176rem 0.706rem;
        border-bottom: 0.059rem solid #f0f0f0;
        width: 100%;
        display: block;
        font-size: 0.765rem;
        white-space: normal;
        line-height: 1.4;
    }

    #mobileNav form {
        padding: 0.176rem 0.706rem;
        border-bottom: 0.059rem solid #f0f0f0;
        width: 100%;
        flex-direction: column;
        display: flex;
        gap: 0.176rem;
        margin: 0;
    }

    #mobileNav input {
        width: 100%;
        font-size: 0.706rem;
        padding: 0.294rem 0.471rem;
        border: 0.059rem solid #e5e5e5;
        border-radius: 0.235rem;
        box-sizing: border-box;
    }

    #mobileNav button {
        width: 100%;
        font-size: 0.706rem;
        padding: 0.294rem 0.471rem;
        background: #FFC905;
        color: #0d0c01;
        border: none;
        border-radius: 0.235rem;
        cursor: pointer;
        font-weight: 600;
    }

    [style*="grid-template-columns: 1fr 1fr"],
    [style*="grid-template-columns: 2fr 1fr"],
    [style*="grid-template-columns: 1fr 2fr"] {
        grid-template-columns: 1fr !important;
    }

    [style*="grid-template-columns: repeat(4"],
    [style*="grid-template-columns: repeat(3"],
    [style*="grid-template-columns: repeat(2"] {
        grid-template-columns: 1fr !important;
    }

    [style*="grid-template-columns: repeat"] {
        grid-template-columns: 1fr !important;
    }

    tr[style*="display: grid"][style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }

    tr[style*="grid-template-columns: 1fr 3.529rem 1fr 1fr 4.118rem"] {
        grid-template-columns: 1fr 2.941rem !important;
        padding: 0.706rem 0 1.176rem 0 !important;
    }

    tr[style*="grid-template-columns: 1fr 3.529rem 1fr 1fr 4.118rem"] > td:nth-child(3),
    tr[style*="grid-template-columns: 1fr 3.529rem 1fr 1fr 4.118rem"] > td:nth-child(4) {
        display: none !important;
    }

    #cartContainer table tfoot tr td {
        display: block !important;
        text-align: right !important;
        padding: 1.176rem 0 !important;
    }

    #cartContainer table thead {
        display: none !important;
    }

    #cartContainer table tbody tr {
        display: grid !important;
        grid-template-columns: 1fr 2.941rem !important;
        gap: 0.588rem !important;
        padding: 0.941rem 0 !important;
    }

    #cartContainer table tbody tr td:nth-child(3),
    #cartContainer table tbody tr td:nth-child(4) {
        display: none !important;
    }

    #cartContainer table tbody tr td:last-child {
        grid-column: 1 / -1 !important;
    }

    div[style*="grid-template-columns: repeat(4, 1fr)"] {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.471rem !important;
    }

    div[style*="grid-template-columns: repeat(4, 1fr)"] img {
        height: 5.882rem !important;
    }

    div[style*="display: grid"][style*="grid-template-columns: 2fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 1.765rem !important;
    }

    #map {
        height: 23.529rem !important;
        border-radius: 0.471rem !important;
    }

    #dealersList {
        max-height: 29.412rem !important;
        overflow-y: auto !important;
    }

    table {
        font-size: 0.765rem !important;
        width: 100% !important;
    }

    table th,
    table td {
        padding: 0.471rem !important;
    }

    table th {
        font-size: 0.706rem !important;
    }

    input[type="number"] {
        width: 2.941rem !important;
    }

    [style*="gap: 3.529rem"] {
        gap: 1.765rem !important;
    }

    [style*="gap: 4.706rem"] {
        gap: 1.765rem !important;
    }

    [style*="padding: 5.882rem 2.353rem"] {
        padding: 3.529rem 1.176rem !important;
    }

    [style*="padding: 4.706rem 2.353rem"] {
        padding: 3.529rem 1.176rem !important;
    }

    [style*="padding: 2.941rem 2.353rem"] {
        padding: 2.353rem 1.176rem !important;
    }

    [style*="padding: 3.529rem 1.765rem"] {
        padding: 2.353rem 1.176rem !important;
    }

    [style*="max-width: 70.588rem"],
    [style*="max-width: 64.706rem"],
    [style*="max-width: 58.824rem"],
    [style*="max-width: 47.059rem"] {
        padding: 0 1.176rem !important;
    }

    h1[style*="font-size: 2.824rem"] {
        font-size: 2.118rem !important;
        line-height: 1.2 !important;
    }

    h1[style*="font-size: 3"],
    h1[style*="font-size: 4"] {
        font-size: 1.882rem !important;
        line-height: 1.2 !important;
    }

    h2[style*="font-size: 2.118rem"],
    h2[style*="font-size: 1.882rem"] {
        font-size: 1.765rem !important;
        line-height: 1.2 !important;
    }

    h3[style*="font-size: 2.118rem"],
    h3[style*="font-size: 1.882rem"] {
        font-size: 1.529rem !important;
        line-height: 1.3 !important;
    }

    h3[style*="font-size: 2"] {
        font-size: 1.412rem !important;
    }

    h4[style*="font-size: 1.1rem"],
    h4[style*="font-size: 1.059rem"] {
        font-size: 1.176rem !important;
    }

    p[style*="font-size: 1.1rem"],
    p[style*="font-size: 1.059rem"] {
        font-size: 1.059rem !important;
    }

    p[style*="font-size: 0.941rem"] {
        font-size: 0.941rem !important;
    }

    [style*="min-height: 23.529rem"] {
        min-height: 14.706rem !important;
    }

    [style*="min-height: 32.353rem"] {
        min-height: 17.647rem !important;
    }

    [style*="height: 29.412rem"] {
        height: 17.647rem !important;
    }

    [style*="display: grid"][style*="gap: 3.529rem"],
    [style*="display: grid"][style*="gap: 4.706rem"] {
        gap: 1.765rem !important;
    }

    [style*="display: flex"][style*="gap: 2.353rem"] {
        gap: 1.176rem !important;
        flex-direction: column !important;
    }

    [style*="order: 2"] {
        order: 2 !important;
    }

    [style*="order: 1"] {
        order: 1 !important;
    }

    [style*="grid-template-columns: 1fr 1.3fr"],
    [style*="grid-template-columns: 1.3fr 1fr"],
    [style*="grid-template-columns: 1.1fr 0.9fr"],
    [style*="grid-template-columns: 0.9fr 1.1fr"],
    [style*="grid-template-columns: 1.2fr 1fr"],
    [style*="grid-template-columns: repeat(2"],
    [style*="grid-template-columns: repeat(3"] {
        grid-template-columns: 1fr !important;
    }

    [style*="min-height: 17.647rem"] {
        min-height: 11.765rem !important;
    }

    [style*="border-right: 0.176rem solid"] {
        border-right: none !important;
        border-bottom: 0.176rem solid #999 !important;
    }

    [style*="right: -7.059rem"] {
        display: none !important;
    }

    [style*="padding: 2.941rem"][style*="background:"] {
        padding: 1.765rem 1.176rem !important;
    }

    [style*="padding: 4.706rem 2.353rem 4.706rem 0"] {
        padding: 2.941rem 1.176rem !important;
    }

    [style*="max-width: 26.471rem"] {
        margin-left: 0 !important;
        padding: 0 1.176rem !important;
    }

    [style*="right:"][style*="-7.059rem"] {
        display: none !important;
    }

    .floating-contacts {
        bottom: 1.176rem;
        right: 1.176rem;
    }

    .floating-btn {
        width: 2.941rem;
        height: 2.941rem;
        font-size: 1.176rem;
    }

    li[style*="padding: 0.471rem 0"] {
        font-size: 0.765rem !important;
    }

    h4[style*="font-size: 0.941rem"] {
        font-size: 1rem !important;
    }

    h4[style*="font-size: 1.059rem"] {
        font-size: 1.059rem !important;
    }

    [style*="margin: 1.765rem 0"] {
        margin: 1.176rem 0 !important;
    }

    [style*="width: 4.706rem"][style*="height: 4.706rem"] {
        width: 3.529rem !important;
        height: 3.529rem !important;
    }

    /* Tablet and Mobile Title Font Size Adjustments */
    div[style*="background: #1a4d3e"] h3,
    div[style*="background: #8fbd9d"] h3,
    div[style*="background: #6b8e7f"] h3 {
        font-size: 2.8rem !important;
    }

    h4[style*="font-size: 1.235rem"] {
        font-size: 2.2rem !important;
    }

    h4[style*="font-size: 1.176rem"] {
        font-size: 2.0rem !important;
    }
}

@media (max-width: 28.235rem) {
    #mobileNav {
        max-height: 23.529rem !important;
    }

    #mobileNav a {
        font-size: 1rem !important;
        padding: 0.235rem 0.588rem !important;
        line-height: 1.5 !important;
    }

    #mobileNav form {
        padding: 0.235rem 0.588rem !important;
        gap: 0.235rem !important;
    }
    
    #mobileNav input {
        font-size: 0.941rem !important;
        padding: 0.353rem 0.353rem !important;
        width: 100% !important;
    }
    
    #mobileNav button {
        font-size: 0.941rem !important;
        padding: 0.353rem 0.353rem !important;
        width: 100% !important;
    }

    #map {
        height: 20.588rem !important;
    }

    #dealersList {
        max-height: 23.529rem !important;
        overflow-y: auto !important;
    }

    div[style*="grid-template-columns: 2fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 1.176rem !important;
    }

    div[style*="display: flex"][style*="gap: 0.588rem"]:not(#galleryContainer) {
        flex-wrap: wrap !important;
    }
    
    #galleryContainer {
        flex-wrap: nowrap !important;
    }

    h1[style*="font-size: 2.824rem"],
    h1[style*="font-size: 2.118rem"] {
        font-size: 1.882rem !important;
        line-height: 1.2 !important;
    }

    h2[style*="font-size: 2.118rem"],
    h2[style*="font-size: 1.882rem"] {
        font-size: 1.647rem !important;
        line-height: 1.2 !important;
    }

    h3[style*="font-size: 2.118rem"],
    h3[style*="font-size: 1.882rem"] {
        font-size: 1.412rem !important;
    }

    p[style*="font-size: 1.059rem"] {
        font-size: 1.176rem !important;
    }

    p[style*="font-size: 0.941rem"] {
        font-size: 1.059rem !important;
    }

    h4[style*="font-size: 1.1rem"],
    h4[style*="font-size: 1.059rem"] {
        font-size: 1.176rem !important;
    }

    [style*="padding: 3.529rem 1.176rem"],
    [style*="padding: 5.882rem 2.353rem"] {
        padding: 2.353rem 0.882rem !important;
    }

    [style*="gap: 3.529rem"],
    [style*="gap: 4.706rem"] {
        gap: 1.176rem !important;
    }

    [style*="height: 29.412rem"],
    [style*="height: 17.647rem"] {
        height: 14.706rem !important;
    }
    
    section {
        padding: 1.765rem 0.882rem !important;
    }
    
    div[style*="grid-template-columns: repeat(2, 1fr)"],
    div[style*="grid-template-columns: 1.2fr 1fr"],
    div[style*="grid-template-columns: 1fr 1.3fr"],
    div[style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: 1fr !important;
        gap: 1.176rem !important;
    }
    
    div[style*="grid-template-columns: 1.2fr 1fr"] > div:first-child {
        display: none !important;
    }
    
    #galleryContainer {
        gap: 0.588rem !important;
    }
    
    #prevBtn,
    #nextBtn {
        width: 2.059rem !important;
        height: 2.059rem !important;
        font-size: 0.941rem !important;
    }
    
    div[style*="padding: 2.941rem 2.353rem"],
    div[style*="padding: 3.529rem 2.353rem"],
    div[style*="padding: 2.353rem 1.765rem"] {
        padding: 1.176rem 0.882rem !important;
    }
    

    
    div[style*="grid-template-columns: 1.1fr 0.9fr"],
    div[style*="grid-template-columns: 0.9fr 1.1fr"] {
        grid-template-columns: 1fr !important;
        gap: 1.176rem !important;
    }
    
    div[style*="grid-template-columns: 1.1fr 0.9fr"] > div[style*="height: auto; min-height: 17.647rem"],
    div[style*="grid-template-columns: 0.9fr 1.1fr"] > div[style*="height: auto; min-height: 17.647rem"] {
        display: block !important;
        height: 11.765rem !important;
    }
    
    div[style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: 1fr !important;
        gap: 1.176rem !important;
    }

    /* Mobile Title Font Size Adjustments */
    div[style*="background: #1a4d3e"] h3,
    div[style*="background: #8fbd9d"] h3,
    div[style*="background: #6b8e7f"] h3 {
        font-size: 2.8rem !important;
    }

    h4[style*="font-size: 1.235rem"] {
        font-size: 2.2rem !important;
    }

    h4[style*="font-size: 1.176rem"] {
        font-size: 2.0rem !important;
    }

    div[style*="padding: 2.941rem"] {
        padding: 1.765rem !important;
    }

    div[style*="padding: 2.353rem"] {
        padding: 1.471rem !important;
    }
}

@media (min-width: 45.235rem) {
    #mobileNav {
        display: flex !important;
        position: relative !important;
        top: auto !important;
        gap: 1.765rem !important;
        flex-direction: row !important;
        border-bottom: none !important;
        max-height: none !important;
        overflow-y: visible !important;
        padding: 0 !important;
        background: transparent !important;
        align-items: center !important;
    }
    
    #mobileNav a {
        padding: 0 !important;
        border-bottom: none !important;
        width: auto !important;
        display: inline !important;
        font-size: 1rem !important;
        white-space: nowrap !important;
    }
    
    #mobileNav form {
        padding: 0 !important;
        border-bottom: none !important;
        width: auto !important;
        flex-direction: row !important;
        margin: 0 !important;
        display: flex !important;
        gap: 0 !important;
    }
    
    #mobileNav input {
        width: 8.235rem !important;
        margin-bottom: 0 !important;
        border-radius: 0.235rem 0 0 0.235rem !important;
    }
    
    #mobileNav button {
        width: auto !important;
        border-radius: 0 0.235rem 0.235rem 0 !important;
    }
}
