/* =============================================
   GLOBAL & VARIABLES
   ============================================= */
:root {
    --bg: #FAF6F5;
    --text: #1A1A1A;
    --text-muted: #666;
    --red: #D91D1A;
    --card-bg: #fff;
    --btn-bg: #F5EAE9;
    --btn-hover: #EEDDDC;
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --font-h: 'Montserrat', sans-serif;
    --font-b: 'Inter', sans-serif;
    --radius: 12px;
    /* Fixed header: padding 14×2 + logo ~44px + border */
    --header-height: 74px;
}

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

html {
    scroll-behavior: smooth;
    background: var(--bg);
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: var(--font-b);
    background: transparent;
    color: var(--text);
    overflow-x: hidden;
    max-width: 100%;
    position: relative;
    padding-top: var(--header-height);
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        url('images/car-silhouette.png'),
        url('images/car-silhouette-rols.png'),
        url('images/car-silhouette-urus.png'),
        url('images/car-silhouette-urus.png'),
        url('images/car-silhouette-porsche.png'),
        url('images/car-silhouette.png'),
        url('images/car-silhouette-urus.png'),
        url('images/car-silhouette-rols.png'),
        url('images/car-silhouette-rols.png'),
        url('images/car-silhouette-porsche.png');
    background-repeat: no-repeat;
    background-size:
        500px auto,
        300px auto,
        220px auto,
        300px auto,
        400px auto,
        320px auto,
        450px auto,
        280px auto,
        320px auto,
        360px auto;
    background-position:
        -10% 15%,
        95% -5%,
        30% 65%,
        7% 55%,
        15% 90%,
        85% 85%,
        65% 105%,
        25% 40%,
        90% 20%,
        75% 45%;
    opacity: 0.08;
    pointer-events: none;
    z-index: -1;
}

@media (max-width: 768px) {
    body::before {
        background-image:
            url('images/car-silhouette.png'),
            url('images/car-silhouette-porsche.png');
        background-size:
            min(52vw, 200px) auto,
            min(48vw, 180px) auto;
        background-position:
            -8% 22%,
            108% 72%;
        opacity: 0.055;
    }
}

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

#cars,
#about,
#contact {
    scroll-margin-top: calc(var(--header-height) + 12px);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-h);
}

h1 {
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.2;
    word-break: break-word;
}

h2,
.section-title {
    font-size: clamp(24px, 3.5vw, 32px) !important;
    line-height: 1.3;
}


/* =============================================
   BUTTONS
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    border-radius: 30px;
    font-family: var(--font-h);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.25s ease;
    border: 1.5px solid transparent;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--btn-bg);
    color: var(--text);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: var(--btn-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: #fff;
    border: 1.5px solid #E0E0E0;
    color: var(--text-muted);
    box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
    background: var(--btn-bg);
    border-color: var(--btn-bg);
    color: var(--text);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.section-title {
    font-size: 22px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 10px;
    color: var(--text);
}

/* =============================================
   HEADER
   ============================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 200;
    background: rgba(250, 246, 245, 0.92);
    backdrop-filter: blur(10px);
    padding: 14px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

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

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-img {
    height: 44px;
    width: auto;
    object-fit: contain;
}

/* Nav */
.nav {
    display: flex;
    gap: 36px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.25s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: width 0.25s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text);
    font-weight: 600;
}

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

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

.mobile-menu-btn {
    display: none;
    /* hidden on big screens */
    font-size: 22px;
    background: none;
    border: none;
    color: var(--text);
    cursor: pointer;
    margin-left: 8px;
    padding: 4px;
}

.wishlist-btn {
    position: relative;
    background: none;
    border: none;
    font-size: 20px;
    color: var(--text);
    cursor: pointer;
    transition: color 0.2s;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.wishlist-btn:hover {
    color: var(--red);
}

.wishlist-count {
    position: absolute;
    top: -6px;
    right: -8px;
    background: var(--red);
    color: white;
    font-size: 10px;
    font-weight: 700;
    font-family: var(--font-h);
    border-radius: 50%;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3px;
}

/* Language Selector */
.lang-selector-wrapper {
    position: relative;
    user-select: none;
}

.lang-selector {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 500;
    font-family: var(--font-h);
    background: #F0E8EB;
    padding: 7px 14px 7px 10px;
    border-radius: 20px;
    cursor: pointer;
    transition: background 0.2s;
}

.lang-selector:hover {
    background: #E4D6DA;
}

.lang-selector img {
    width: 20px;
    height: 14px;
    border-radius: 3px;
    object-fit: cover;
}

.lang-arrow {
    font-size: 10px;
    color: var(--text-muted);
    transition: transform 0.2s;
}

.lang-selector.open .lang-arrow {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: white;
    border-radius: var(--radius);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    display: none;
    flex-direction: column;
    min-width: 150px;
    overflow: hidden;
    z-index: 300;
}

.lang-dropdown.show {
    display: flex;
}

.lang-option {
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.15s;
    font-family: var(--font-b);
}

.lang-option:hover {
    background: #FAF0F0;
}

.lang-option img {
    width: 20px;
    height: 14px;
    border-radius: 3px;
    object-fit: cover;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
    position: relative;
    overflow: hidden;
    padding: 40px 0 60px;
    background: transparent;
    scroll-margin-top: calc(var(--header-height) + 12px);
}

.hero::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-20%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(230, 170, 170, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.hero-inner {
    display: flex;
    align-items: center;
    gap: 0;
    position: relative;
    z-index: 1;
    min-height: 420px;
}

/* Left: logo big */
.hero-left {
    flex: 0 0 220px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo-big {
    width: 200px;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

/* Center: text */
.hero-content {
    flex: 1;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 18px;
    color: var(--text);
}

.hero-content p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 28px;
}

/* Right: Rolls Royce Image */
.hero-right {
    flex: 0 0 420px;
    position: relative;
    height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-right::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(217, 29, 26, 0.25) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
}

.hero-car-main {
    position: absolute;
    right: -80px;
    width: 650px;
    max-width: none;
    height: auto;
    object-fit: contain;
    z-index: 2;
    filter: drop-shadow(-10px 20px 30px rgba(0, 0, 0, 0.25));
}

/* =============================================
   FEATURES: WHY CHOOSE US
   ============================================= */
.features {
    padding: 80px 0 100px;
    position: relative;
    overflow: visible;
    background: transparent;
}

.features-grid {
    display: flex;
    justify-content: center;
    gap: 80px;
    text-align: center;
    margin-top: 50px;
}

.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-icon-box {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.icon-pink {
    background: #FDECEC;
}

.icon-blue {
    background: #E8EFFE;
}

.icon-green {
    background: #E8F8EE;
}

.feature-icon-img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.feature-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
}



/* =============================================
   SEARCH / FILTER SECTION
   ============================================= */
.search-section {
    padding: 50px 0 40px;
    position: relative;
    z-index: 10;
    background: transparent;
}

.search-container {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

/* Search Bar */
.search-bar {
    background: white;
    border-radius: 30px;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    margin-bottom: 22px;
}

.search-bar i {
    color: #AAA;
    font-size: 14px;
}

.search-bar input {
    border: none;
    outline: none;
    flex: 1;
    font-family: var(--font-b);
    font-size: 14px;
    color: var(--text);
    background: transparent;
}

.search-bar input::placeholder {
    color: #BBB;
}

/* Or divider */
.or-divider {
    text-align: center;
    margin-bottom: 22px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.or-divider::before,
.or-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #E4E4E4;
}

.or-divider span {
    color: #BBB;
    font-size: 12px;
    flex-shrink: 0;
}

/* Filter Grid */
.filter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 12px;
}

.filter-row2 {
    grid-template-columns: 1fr 2fr;
    justify-content: center;
    max-width: 580px;
    margin: 0 auto 12px;
}

.filter-box {
    background: white;
    border-radius: 10px;
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    transition: box-shadow 0.2s;
}

.filter-box:hover {
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.07);
}

.filter-label {
    font-size: 11px;
    color: #AAA;
}

.filter-select {
    border: none;
    outline: none;
    background: transparent;
    font-family: var(--font-h);
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
}

/* Custom Select UI (JS) */
.custom-sel-wrapper {
    position: relative;
    width: 100%;
    user-select: none;
}

.custom-sel-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2px 0 0 0;
    cursor: pointer;
}

.custom-sel-text {
    font-family: var(--font-h);
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.custom-sel-arrow {
    font-size: 10px;
    color: var(--text-muted);
    transition: transform 0.2s;
}

.custom-sel-wrapper.open .custom-sel-arrow {
    transform: rotate(180deg);
}

.custom-sel-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: -14px;
    right: -14px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.12);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s ease;
    max-height: 240px;
    overflow-y: auto;
    padding: 6px 0;
}

.custom-sel-wrapper.open .custom-sel-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.custom-sel-option {
    padding: 10px 16px;
    font-size: 13px;
    font-family: var(--font-h);
    font-weight: 500;
    color: var(--text);
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}

.custom-sel-option:hover {
    background: #FAF0F0;
    color: var(--red);
}

.custom-sel-option.selected {
    background: var(--btn-bg);
    color: var(--red);
    font-weight: 700;
}

/* End Custom Select UI */

/* Price range inside filter box */
.price-range-row {
    display: flex;
    gap: 12px;
}

.price-side {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.price-label {
    font-size: 11px;
    color: #AAA;
}

.price-select {
    font-size: 12px;
}

.search-action {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 28px;
}

.btn-search-submit {
    padding: 13px 64px;
    font-size: 14px;
}

.btn-search-reset {
    padding: 13px 40px;
    font-size: 14px;
}

/* Hide spin buttons for price number inputs */
input[type="number"].price-select::-webkit-inner-spin-button,
input[type="number"].price-select::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"].price-select {
    -moz-appearance: textfield;
    appearance: textfield;
}



/* =============================================
   CARS GRID
   ============================================= */
.cars-grid-section {
    padding: 30px 0 80px;
    position: relative;
    z-index: 5;
    background: transparent;
}

.cars-sort-bar {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 20px;
}

.sort-box-inline {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    width: auto;
}

.sort-box-inline .filter-label {
    margin-bottom: 0;
}

.cars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom: 36px;
}

.no-results {
    grid-column: 1/-1;
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
    font-size: 15px;
}

/* Car Card */
.car-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s, box-shadow 0.25s;
    position: relative;
}

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

.car-image-wrap {
    height: 180px;
    background: #5A5A5A;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: rgba(255, 255, 255, 0.25);
    font-size: 13px;
    font-family: var(--font-h);
    letter-spacing: 2px;
}

.car-image-wrap img.car-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

/* Heart / Favorite button on card */
.fav-btn {
    position: absolute;
    bottom: -15px;
    right: 18px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--text);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    transition: color 0.2s, transform 0.2s;
    z-index: 5;
}

.fav-btn:hover {
    transform: scale(1.1);
}

.fav-btn.liked {
    color: var(--red);
}

.fav-btn.liked i {
    font-weight: 900;
}

/* Featured badge on card */
.badge-featured {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--red);
    color: #fff;
    font-family: var(--font-h);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 6px;
    z-index: 4;
}

/* Placeholder image when car has no photo */
.car-photo--placeholder {
    object-fit: contain !important;
    padding: 20px;
    opacity: 0.35;
    filter: grayscale(1);
    background: #f5f5f5;
}

.car-details {
    padding: 24px 16px 16px;
    text-align: center;
}

.car-details h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
}

.car-price {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 14px;
}

.car-stats {
    display: flex;
    justify-content: space-around;
    border-top: 1px solid #F2F2F2;
    padding-top: 12px;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: #AAA;
}

.stat i {
    font-size: 14px;
    color: #CCC;
}

.show-more-container {
    text-align: center;
}



/* =============================================
   ABOUT US
   ============================================= */
.about-us {
    padding: 80px 0 80px;
    position: relative;
    z-index: 5;
    background: transparent;
}

.about-subtitle {
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text);
}

.about-content-block {
    position: relative;
    max-width: 860px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.90);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    padding: 50px 60px 50px 160px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    min-height: 340px;
}

/* Decorative pink circles behind */
.about-heart-bg {
    position: absolute;
    right: -60px;
    top: -60px;
    width: 400px;
    height: 400px;
    pointer-events: none;
    z-index: -1;
}

.heart-circle {
    position: absolute;
    border-radius: 50%;
    border: 30px solid rgba(230, 190, 190, 0.45);
}

.heart-circle-1 {
    width: 360px;
    height: 360px;
    top: 0;
    right: 0;
}

.heart-circle-2 {
    width: 260px;
    height: 260px;
    top: 50px;
    right: 50px;
    border-color: rgba(220, 160, 160, 0.3);
}

/* Logo circle */
.about-logo-circle {
    position: absolute;
    left: -90px;
    top: 30px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-logo-img {
    width: 140px;
    height: 140px;
    object-fit: contain;
}

/* About text */
.about-text-box {
    text-align: left;
}

.about-text-top {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.9;
    display: block;
    margin-bottom: 20px;
}

.about-text-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 2.1;
}

.about-text-desc strong {
    color: var(--text);
    font-weight: 600;
}

/* Philosophy strip between sections */
.philosophy-strip {
    padding: 40px 0;
    background: transparent;
    position: relative;
    z-index: 5;
}

/* Philosophy quote — minimalist */
.about-philosophy-quote {
    margin: 0 auto;
    max-width: 680px;
    text-align: center;
    font-size: 17px;
    font-style: italic;
    font-weight: 300;
    color: #555;
    line-height: 1.8;
    border: none;
    padding: 0;
    position: relative;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.about-philosophy-quote.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   CONTACT
   ============================================= */
.contact {
    padding: 60px 0 100px;
    background: transparent;
    position: relative;
    z-index: 5;
}

.contact-card {
    background: linear-gradient(135deg, #FFFFFF 0%, var(--btn-hover) 100%);
    border-radius: 10px;
    padding: 45px 50px 40px;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
    min-height: 200px;
}

.contact-block-left,
.contact-block-right {
    position: relative;
    z-index: 1;
}

/* Three-column contact layout */
.contact-col {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

.contact-col-left {
    flex: 0 0 230px;
    min-width: 180px;
}

.contact-col-center {
    flex: 1 1 auto;
    justify-content: flex-start;
    padding: 50px 20px 8px 90px;
}

.contact-col-right {
    flex: 0 0 320px;
    min-width: 280px;
    align-items: flex-start;
    justify-content: space-between;
}

.contact-title {
    font-size: 26px;
    font-weight: 900;
    color: #222;
    margin-bottom: 25px;
}

.contact-person-wrapper {
    position: relative;
    margin-bottom: 45px;
}

.contact-person-name {
    font-weight: 800;
    font-size: 15px;
    font-family: var(--font-h);
    color: #222;
    margin-left: 20px;
}

.contact-line {
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 280px;
    height: 3px;
    background: var(--red);
    opacity: 0.15;
    border-radius: 2px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 35px;
    padding-left: 10px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 13px;
    font-weight: 500;
    color: #333;
}

.contact-item span {
    overflow-wrap: anywhere;
}

.contact-item-address {
    align-items: flex-start;
    margin-left: 40px;
    margin-top: 10px;
}

.contact-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    color: #444;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.contact-block-right {
    display: flex;
    flex-direction: column;
    width: 48%;
    align-items: flex-end;
    justify-content: space-between;
}

.contact-logo-wrapper {
    margin-top: auto;
    margin-bottom: 0;
    margin-left: 35px;
}

.contact-logo-img {
    height: 170px;
    width: auto;
    object-fit: contain;
}

/* Address clickable link */
.contact-address-link {
    color: #333;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.7;
    transition: color 0.2s;
}

.contact-address-link:hover {
    color: var(--red);
}

.contact-phone-section {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    align-self: flex-start;
    margin-top: 30px;
    margin-bottom: auto;
    max-width: 100%;
    white-space: nowrap;
}

.phone-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 2px;
}

.phone-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
    font-family: var(--font-h);
    color: #333;
}

.phone-number {
    width: auto;
    text-align: left;
    display: inline-block;
    font-variant-numeric: tabular-nums;
}

.phone-row .flag-circle {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.contact-bottom-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    flex-wrap: nowrap;
    position: relative;
    left: -40px;
}

.appreciate-text {
    font-family: var(--font-h);
    font-weight: 800;
    font-size: 14px;
    color: var(--text);
    white-space: nowrap;
}

.social-row {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white !important;
    font-size: 14px;
    text-decoration: none;
    transition: transform 0.2s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.social-icon:hover {
    transform: scale(1.1);
}

.social-ig {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-fb {
    background: #1877F2;
}

.social-tg {
    background: #0088cc;
}



/* Decorative circles inside contact card */
.contact-deco-circle {
    position: absolute;
    border-radius: 50%;
    border: 40px solid rgba(200, 160, 160, 0.25);
    pointer-events: none;
}

.contact-deco-1 {
    width: 300px;
    height: 300px;
    bottom: -120px;
    left: -80px;
}

.contact-deco-2 {
    width: 200px;
    height: 200px;
    bottom: -60px;
    left: 60px;
    border-color: rgba(200, 150, 150, 0.2);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1200px) {
    .container {
        padding: 0 24px;
    }

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

@media (max-width: 1024px) {
    .hero-right {
        flex: 0 0 320px;
    }

    .hero-car-red {
        width: 280px;
    }

    .hero-car-black {
        width: 260px;
        right: -10px;
    }


    .features-grid {
        gap: 50px;
    }
}

@media (max-width: 900px) {
    .cars-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .hero-inner {
        flex-wrap: wrap;
    }

    .hero-left {
        flex: 0 0 120px;
    }

    .hero-logo-big {
        width: 120px;
    }

    .hero-content {
        padding: 0 20px;
    }

    .hero-right {
        display: none;
    }

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

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

    .about-content-block {
        padding: 40px 30px 40px 40px;
    }

    .about-logo-circle {
        position: relative;
        left: 0;
        top: 0;
        margin: 0 auto 20px;
    }

    .about-text-box {
        text-align: center;
    }

    /* Decorative rings overlap text on narrow screens */
    .about-heart-bg {
        display: none;
    }

    .about-content-block {
        overflow: hidden;
    }

    .contact-card {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
        padding: 28px 22px;
    }

    .contact-col {
        flex: 0 0 auto;
        width: 100%;
        max-width: 100%;
    }

    .contact-col-right {
        align-items: flex-start;
    }

    .contact-logo-wrapper {
        margin-bottom: 14px;
    }

    .contact-title {
        margin-bottom: 16px;
    }

    .contact-person-wrapper {
        margin-bottom: 22px;
    }

    .contact-col-center {
        padding: 0;
        justify-content: flex-start;
    }

    .contact-col-right {
        padding-right: 0;
    }

    .contact-logo-wrapper {
        margin-left: 0;
        margin-top: 0;
        margin-bottom: 10px;
    }

    .contact-logo-img {
        height: 150px;
    }

    .contact-item-address {
        margin-left: 0;
        margin-top: 0;
    }

    .contact-info-list {
        gap: 20px;
        padding-left: 0;
    }

    .contact-phone-section {
        margin-top: 0;
        margin-bottom: 0;
        width: 100%;
        white-space: normal;
    }

    .contact-line {
        width: min(260px, 100%);
        max-width: 100%;
    }

    .contact-bottom-wrapper {
        flex-wrap: wrap;
        gap: 12px;
        margin-top: 40px;
        left: 0;
    }

    .phone-number {
        width: auto;
        flex: 1 1 8em;
        min-width: 0;
    }

    .phone-row {
        width: 100%;
        flex-wrap: wrap;
        gap: 8px;
    }

    .contact-col-right {
        align-items: flex-start;
    }

    .filter-row2 {
        grid-template-columns: 1fr 1fr;
        max-width: 100%;
    }

    /* Mobile Menu Additions */
    .mobile-menu-btn {
        display: block;
    }

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        gap: 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        border-top: 1px solid var(--border);
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-link {
        padding: 16px 20px;
        font-size: 16px;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-link::after {
        display: none;
        /* disable underline on mobile */
    }

    .nav-link:hover,
    .nav-link.active {
        background: #faf4f4;
    }
}

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

    .header-inner {
        flex-wrap: wrap;
        gap: 12px;
    }

    .header-actions {
        gap: 12px;
    }

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

    .hero-content h1 {
        font-size: 28px;
    }

    .features-grid {
        flex-direction: column;
        align-items: center;
        gap: 36px;
    }

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

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

    .filter-row2 {
        grid-template-columns: 1fr;
    }

    .contact-card {
        padding: 22px 16px;
        gap: 16px;
    }

    .contact-person-wrapper {
        margin-bottom: 16px;
    }

    .contact-info-list {
        gap: 14px;
    }

    .contact-item {
        align-items: flex-start;
        gap: 12px;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }

    .contact-logo-img {
        height: 64px;
    }

    .contact-bottom-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    /* Override nav flex gap that existed before */
    .nav.open {
        gap: 0;
    }

    .lang-dropdown {
        right: 0;
        left: auto;
        max-width: min(280px, calc(100vw - 24px));
    }
}

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