/* ===== CSS Variables ===== */
:root {
    --primary: #2745DF;
    --primary-dark: #1a2f8f;
    --primary-light: #4a63e8;
    --secondary: #0a1628;
    --white: #ffffff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #4d4d4d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    --gold: #c9a227;
    --success: #28a745;
    --shadow: 0 10px 40px rgba(39, 69, 223, 0.15);
    --shadow-lg: 0 25px 60px rgba(39, 69, 223, 0.2);
    --radius: 12px;
    --radius-lg: 24px;
    --radius-full: 100px;
    --transition: all 0.3s ease;
    --font: 'Outfit', sans-serif;
    --font-desc: 'Saira', sans-serif;
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input {
    font-family: inherit;
    border: none;
    outline: none;
}

/* ===== Utilities ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: var(--transition);
    cursor: pointer;
}

.btn--primary {
    background: var(--primary);
    color: var(--white);
}

.btn--primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn--white {
    background: var(--white);
    color: var(--primary);
}

.btn--white:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
}

.btn--small {
    padding: 10px 24px;
    font-size: 14px;
    background: var(--white);
    color: var(--primary);
}

.btn--full {
    width: 100%;
}

.section__title {
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
    margin-bottom: 20px;
}

.section__title--white {
    color: var(--white);
}

.section__title--center {
    text-align: center;
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.header__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-img--footer {
    height: 80px;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
}

.logo-icon--white {
    background: var(--white);
    color: var(--primary);
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
}

.logo-text--white {
    color: var(--white);
}

.nav__list {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav__link {
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-700);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav__link:hover::after,
.nav__link.active::after {
    width: 100%;
}

.nav__link:hover,
.nav__link.active {
    color: var(--primary);
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 15px;
}







.nav__toggle,
.nav__close {
    display: none;
    font-size: 24px;
    color: var(--gray-800);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    padding-top: 100px;
    display: flex;
    flex-direction: column;
}

.hero__background {
    position: absolute;
    inset: 0;
    background: url('img/RR_IMG_3.webp') center/cover no-repeat fixed;
    z-index: -1;
    filter: brightness(1.05) saturate(1.2) sepia(15%) hue-rotate(-10deg);
}



.hero__container {
    position: relative;
    flex: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 30px;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: flex-start;
}

.hero__content {
    max-width: 700px;
    margin-right: auto;
    margin-left: 0;
    background: rgba(255, 255, 255, 0.88);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-lg);

}

.hero__tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 15px;
}

.hero__title {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    color: var(--gray-900);
    margin-bottom: 20px;
}

.hero__title-logo {
    height: 100px;
    width: auto;
    object-fit: contain;
}

.hero__price-btn {

    display: inline-flex;
    flex-direction: row;
    align-items: baseline;
    padding: 8px 30px;
    background: rgba(39, 69, 223, 0.12);
    color: var(--primary);
    border-radius: 50px;
    margin-bottom: 20px;
    transition: var(--transition);
    gap: 5px;
}

.hero__price-btn .price-label {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero__price-btn .price-value {
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
}

.hero__price-btn .price-suffix {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.hero__price-btn:hover {
    transform: translateY(-2px);
    background: rgba(39, 69, 223, 0.2);
}

.hero__description {
    font-family: var(--font-desc);
    font-size: 16px;
    color: var(--gray-600);
    margin-bottom: 25px;
    max-width: 450px;
}

/* ===== About Section ===== */
.about {
    padding: 100px 30px;
    background: var(--gray-100);
}

.about__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about__image {
    position: relative;
}

.about__slider {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.about__slide.active {
    opacity: 1;
}

.about__slider-nav {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.about-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.about-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}


.about__quality-seal {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
}

.quality-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.about__text {
    font-family: var(--font-desc);
    font-size: 17px;
    color: var(--gray-600);
    margin-bottom: 30px;
    line-height: 1.8;
}

/* About Stats */
.about__stats {
    max-width: 1500px;
    margin: 60px auto 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: nowrap;
}

.stat {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.stat:hover {
    transform: translateY(-5px);
}

.stat__icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
}

.stat__content {
    display: flex;
    flex-direction: column;
}

.stat__number {
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-900);
}

.stat__label {
    font-size: 14px;
    color: var(--gray-500);
}

/* ===== Models Section ===== */
.models {
    padding: 100px 30px;
    background: var(--white);
}

.models__container {
    max-width: 1200px;
    margin: 0 auto;
}

.models__content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.models__gallery {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.models__main-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.models__img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: var(--transition);
}

.models__thumbnails {
    display: flex;
    gap: 10px;
}

.thumbnail {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--radius);
    cursor: pointer;
    opacity: 0.6;
    transition: var(--transition);
    border: 3px solid transparent;
}

.thumbnail:hover,
.thumbnail.active {
    opacity: 1;
    border-color: var(--primary);
}

.models__info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.models__specs-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
}

.models__features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.models__features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--gray-700);
}

.models__features li i {
    color: var(--primary);
    font-size: 14px;
}

.models__price {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    padding: 30px;
    border-radius: var(--radius-lg);
    text-align: center;
}

.models__price-label {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 5px;
}

.models__price-value {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
}

/* ===== Credits Section ===== */
.credits {
    padding: 100px 30px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.credits__container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.credits__tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.credits__logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    margin: 50px 0;
}

.credit-logo {
    width: 140px;
    height: auto;
    background: transparent;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-shadow: none;
    transition: var(--transition);
    gap: 10px;
}

.credit-logo:hover {
    transform: scale(1.1);
}

.credit-logo img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    transition: var(--transition);
}

.credit-logo:hover img {
    transform: scale(1.1);
}

.credit-logo__name {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin: 0;
}

.credits__logos--banks {
    margin-top: 0;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.credit-logo--bank {
    width: 140px;
}

.credit-logo--bank i {
    font-size: 36px;
    color: rgba(255, 255, 255, 0.85);
}

.credits__text {
    font-family: var(--font-desc);
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ===== Location Section ===== */
.location {
    padding: 100px 30px;
    background: var(--white);
}

.location__container {
    max-width: 1200px;
    margin: 0 auto;
}

.location__content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    margin-top: 50px;
    align-items: center;
}

.location__map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.location__text {
    font-family: var(--font-desc);
    font-size: 17px;
    color: var(--gray-600);
    margin-bottom: 20px;
    line-height: 1.8;
}

.location__text strong {
    color: var(--primary);
}

/* ===== Testimonials Section ===== */
.testimonials {
    padding: 100px 30px;
    background: var(--gray-100);
}

.testimonials__container {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials__subtitle {
    text-align: center;
    font-size: 16px;
    color: var(--gray-500);
    margin-bottom: 50px;
}

.testimonials__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.testimonials__carousel {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 500px;
}

.testimonials__carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.testimonials__carousel-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.testimonials__carousel-img.active {
    opacity: 1;
}

.testimonials__carousel-nav {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.testimonials__carousel-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.testimonials__carousel-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.testimonials__cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.testimonial__stars {
    display: flex;
    gap: 5px;
    color: #ffc107;
    margin-bottom: 15px;
}

.testimonial__text {
    font-family: var(--font-desc);
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial__author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial__avatar {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    overflow: hidden;
}

.testimonial__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial__name {
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-800);
    display: block;
}

.testimonial__role {
    font-size: 13px;
    color: var(--gray-500);
}

/* ===== Contact Section ===== */
.contact {
    padding: 100px 30px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.contact__container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.contact__subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form__group input {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius);
    color: var(--white);
    font-size: 15px;
    transition: var(--transition);
}

.form__group input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form__group input:focus {
    background: rgba(255, 255, 255, 0.25);
    border-color: var(--white);
}

.contact__image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.contact__image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

/* ===== CTA Banner ===== */
.cta-banner {
    background: var(--primary);
    padding: 20px 30px;
}

.cta-banner__container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.cta-banner__icon {
    font-size: 24px;
    color: var(--white);
}

.cta-banner__text {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
}

/* ===== Footer ===== */
.footer {
    background: var(--secondary);
    padding: 80px 30px 0;
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
    gap: 40px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer__description {
    font-family: var(--font-desc);
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer__social {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer__title {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}

.footer__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--gray-400);
}

.footer__list li i {
    color: var(--primary);
    margin-top: 3px;
}

.footer__list a:hover {
    color: var(--primary);
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 60px;
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: var(--gray-500);
}

.footer__powered strong {
    color: var(--primary);
}

.footer__legal {
    display: flex;
    gap: 30px;
}

.footer__legal a:hover {
    color: var(--primary);
}

/* ===== WhatsApp Float ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 32px;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {

    .about__container,
    .models__content,
    .location__content,
    .contact__container {
        grid-template-columns: 1fr;
    }

    .testimonials__layout {
        grid-template-columns: 1fr;
    }

    .testimonials__carousel {
        height: 400px;
    }

    .footer__container {
        grid-template-columns: repeat(2, 1fr);
    }

    .about__stats {
        flex-wrap: wrap;
        max-width: 800px;
    }

    .stat {
        flex: 1 1 calc(33% - 20px);
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--white);
        padding: 80px 30px;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
    }

    .header__nav.active {
        right: 0;
    }

    .nav__list {
        flex-direction: column;
        gap: 25px;
    }

    .nav__close {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
    }

    .nav__toggle {
        display: block;
    }

    .phone-btn span {
        display: none;
    }

    .phone-btn {
        padding: 10px 14px;
    }

    .hero__background {
        background-attachment: scroll;
        background-size: contain;
        background-position: top center;
        background-color: var(--gray-100);
    }

    .hero {
        min-height: auto;
    }

    .hero__container {
        padding: 30px 15px;
    }

    .hero__title {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }

    .hero__title-logo {
        height: 80px;
    }

    .about__stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        max-width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
    }

    .stat {
        width: 100%;
        padding: 15px;
        justify-content: flex-start;
    }

    .stat:last-child {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
    }

    .stat__icon {
        flex-shrink: 0;
    }

    .testimonials__carousel {
        height: 300px;
    }

    .footer__container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer__brand,
    .footer__links,
    .footer__contact,
    .footer__newsletter {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer__logo {
        justify-content: center;
    }

    .footer__list {
        align-items: center;
    }

    .footer__list li {
        justify-content: center;
    }

    .footer__social {
        justify-content: center;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer__legal {
        flex-direction: column;
        gap: 10px;
    }

    .form__row {
        grid-template-columns: 1fr;
    }

    .cta-banner__container {
        flex-direction: column;
        text-align: center;
    }

    .hero__content {
        padding: 25px 20px;
        margin: 0 15px;
        max-width: calc(100% - 30px);
    }

    section {
        overflow-x: hidden;
        max-width: 100vw;
    }

    .hero__description {
        text-align: center;
        max-width: 100%;
    }

    .hero__cta {
        width: 100%;
        justify-content: center;
    }

    .hero__price-btn {
        justify-content: center;
    }

    .section__title {
        font-size: 28px;
    }

    .about__text {
        text-align: center;
    }

    .about__content {
        text-align: center;
    }

    .about__content .btn {
        width: 100%;
    }

    .models__thumbnails {
        flex-wrap: wrap;
        justify-content: center;
    }

    .thumbnail {
        width: 60px;
        height: 45px;
    }

    .credits__logos {
        gap: 25px;
    }

    .credit-logo {
        width: 100px;
    }

    .credit-logo img {
        max-height: 60px;
    }

    .location__info {
        text-align: center;
    }

    .location__info .btn {
        width: 100%;
    }

    .testimonial-card {
        padding: 20px;
    }

    .contact__image {
        display: none;
    }
}