/* ===================================
   CSS RESET & BASE STYLES
   =================================== */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    overflow-x: clip !important;
    overflow-y: scroll !important;
}

body {
    font-family: 'Bricolage Grotesque', sans-serif;
    line-height: 1.6;
    color: var(--secondary);
    background-color: var(--white);
    overflow-x: clip !important;
    overflow-y: visible !important;
    margin: 0;
    padding: 0;
    min-height: 100%;
    width: 100%;
    position: relative;
}

section {
    scroll-margin-top: 150px;
}

/* ===================================
   CSS VARIABLES - DESIGN SYSTEM
   =================================== */

:root {
    /* Primary Colors */
    --primary: #F7571E;
    --primary-dark: #C94A1A;
    --primary-light: #F03F00;

    /* Secondary Colors */
    --secondary: #191819;
    --secondary-dark: #0F1A2E;

    /* Neutral Colors */
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #2F3237;
    --gray-700: #646464;
    --gray-800: #1F2937;
    --gray-900: #111827;

    /* Functional Colors */
    --success: #28A745;
    --warning: #FFC107;
    --error: #DC3545;
    --info: #17A2B8;

    /* Spacing Scale */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    --spacing-4xl: 6rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --radius-full: 50%;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);

    /* Typography */
    --font-heading: 'Bricolage Grotesque', sans-serif;
    --font-body: 'Bricolage Grotesque', sans-serif;

    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-base: 300ms ease-in-out;
    --transition-slow: 500ms ease-in-out;

    /* Z-index Scale */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
}

/* ===================================
   TYPOGRAPHY
   =================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--secondary);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
}

h4 {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
}

p {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    line-height: 1.7;
}

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

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

/* ===================================
   UTILITY CLASSES
   =================================== */

.container {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 0 120px;
    box-sizing: border-box;
}

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

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: var(--spacing-lg);
    color: var(--secondary);
}

.section-title-center {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: var(--spacing-lg);
    color: var(--secondary);
    text-align: center;
}

.section-title-white {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: var(--spacing-lg);
    color: var(--white);
        font-weight: 500;
}

.section-subtitle-center {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--gray-600);
    text-align: center;
    margin: 0 auto var(--spacing-3xl);
    font-weight: 300;
    max-width: 1250px;
}

.section-text {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: var(--spacing-lg);
        font-weight: 300;
}

.section-text-center {
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    line-height: 1.7;
    color: var(--gray-700);
    text-align: center;
    margin: 0 auto;
}

.section-text-white {
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-lg);
}

/* ===================================
   BUTTONS
   =================================== */

.btn {
    display: inline-block;
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: 1rem;
    font-weight: 500;
    font-family: var(--font-body);
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
    text-align: center;
    line-height: 1.5;
}

.btn-primary {
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(232, 90, 36, 0.3);
    border-radius: 100px;
    text-transform: uppercase;
}



.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 90, 36, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-outline {
    background: transparent;
    color: #000;
    border: 2px solid #000;
    border-radius: 100px;
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

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

.btn-white:hover {
    background: var(--off-white);
}

.btn-lg {
    padding: var(--spacing-lg) var(--spacing-3xl);
    font-size: 1.1rem;
}

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

.btn-loader {
    display: none;
}

button[type="submit"]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ===================================
   HEADER
   =================================== */

.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: var(--z-fixed);
    padding: 60px 0 10px 0;
    background: transparent;
}

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

.nav-wrapper-pill {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.50);
    backdrop-filter: blur(17px);
    padding: 0.5rem 0.5rem 0.5rem 2rem;
    border-radius: 50px;
    gap: var(--spacing-xl);
}

.logo a {
    text-decoration: none;
    display: block;
}

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

.logo-image {
    height: 60px;
    width: auto;
    display: block;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 2px;
    line-height: 1;
}

.logo-tagline {
    font-family: var(--font-body);
    font-size: 0.5rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: -5px;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: var(--spacing-2xl);
    list-style: none;
}

.nav-link {
    color: var(--white);
    font-weight: 300;
    font-size: 0.9rem;
    position: relative;
    transition: var(--transition-base);
    letter-spacing: 0.5px;
}

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

.btn-header {
    padding: 0.75rem 1.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #000;
}

.btn-header i {
    font-size: 0.8em;
    margin-left: 2px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-sm);
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
    transition: var(--transition-base);
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    box-shadow: var(--shadow-xl);
    z-index: var(--z-modal);
    transition: var(--transition-base);
    overflow-y: auto;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-content {
    padding: var(--spacing-3xl) var(--spacing-xl);
}

.mobile-nav-close {
    position: absolute;
    top: var(--spacing-lg);
    right: var(--spacing-lg);
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--secondary);
}

.mobile-nav-list {
    list-style: none;
    margin-bottom: var(--spacing-xl);
}

.mobile-nav-list li {
    margin-bottom: var(--spacing-lg);
}

.mobile-nav-link {
    display: block;
    color: var(--secondary);
    font-weight: 500;
    font-size: 1.1rem;
}

.btn-mobile {
    width: 100%;
}

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

.hero {
    position: relative;
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-4xl) 0;
    overflow: hidden;
    margin: 0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/banner.jpg') center/cover no-repeat;
    z-index: -1;
}

/* Retina display support */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-bg {
        background: url('../images/banner-ratina.jpg') center/cover no-repeat;
    }
}

.hero-content {
    text-align: center;
    max-width: 1250px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-family: var(--font-body);
    color: var(--white);
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: var(--spacing-lg);
    line-height: 1.2;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.orange-text {
    color: var(--primary);
    font-weight: 600;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-2xl);
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    line-height: 1.6;
}

.hero-title .orange-text {
    color: var(--primary);
    font-weight: 500;
    display: block;
    margin-top: 5px;
}

.btn-hero {
    letter-spacing: 1px;
    padding: 1rem 3rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    background: #FF5722;
    box-shadow: 0 4px 15px rgba(232, 90, 36, 0.3);
    color: var(--white);
    border: none;
    cursor: pointer;
}

.btn-hero:hover {
    transform: translateY(-2px);
    background: #E64A19;
    box-shadow: 0 6px 20px rgba(232, 90, 36, 0.4);
}

.btn-hero:active {
    transform: translateY(0);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: var(--spacing-3xl);
    margin-top: var(--spacing-4xl);
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--white);
    font-size: 0.95rem;
}

.badge i {
    color: var(--warning);
    font-size: 1.3rem;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.mouse-icon {
    width: 45px;
    height: 80px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.mouse-wheel {
    width: 45px;
    height: 80px;
    pointer-events: none;
}

/* Mobile SVG size - smaller for mobile devices */
@media (max-width: 768px) {
    .mouse-icon {
        width: 30px;
        height: 55px;
    }

    .mouse-wheel {
        width: 30px;
        height: 55px;
    }

    .scroll-indicator {
        bottom: 30px;
    }
}

.mouse-wheel rect {
    stroke: rgba(255, 255, 255, 0.8);
}

.mouse-wheel .arrow-path {
    stroke: rgba(255, 255, 255, 0.9);
    animation: scroll-animation 2.5s linear infinite;
}

@keyframes scroll-animation {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    15% {
        opacity: 1;
        transform: translateY(-5px);
    }

    50% {
        opacity: 1;
        transform: translateY(10px);
    }

    85% {
        opacity: 1;
        transform: translateY(20px);
    }

    100% {
        opacity: 0;
        transform: translateY(25px);
    }
}

/* ===================================
   TRUST BADGES SECTION
   =================================== */

.trust-badges-section {
    padding: var(--spacing-4xl) 0;
    background: #F2F2F2;
    position: relative;
    z-index: 1;
}

.trust-badges-carousel-wrapper {
    width: 100%;
    overflow: hidden;
}

.trust-badges-slider {
    width: 100%;
    overflow: hidden;
}

.trust-badges-container {
    display: flex;
    align-items: center;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Desktop grid layout - above 768px */
@media (min-width: 769px) {
    .trust-badges-slider {
        overflow: visible !important;
    }

    .trust-badges-slider .swiper-wrapper {
        display: grid !important;
        grid-template-columns: repeat(5, 1fr);
        gap: var(--spacing-3xl);
        align-items: center;
        transform: none !important;
    }

    .trust-badge-item {
        width: 100% !important;
    }

    /* Hide duplicate badges on desktop */
    .trust-badge-duplicate {
        display: none !important;
    }
}

.badge-image {
    max-width: 100%;
    height: auto;
    max-height: 120px;
    object-fit: contain;
    transition: transform var(--transition-base);
}

.badge-image:hover {
    transform: scale(1.05);
}

/* ===================================
   WHY RENTALS SECTION
   =================================== */

.why-rentals {
    padding: var(--spacing-3xl) 0;
    background: #F8FCFF;
    position: relative;
    z-index: 1;
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-4xl);
    align-items: center;
}

.why-rentals .two-column {
    align-items: flex-start;
    gap: var(--spacing-3xl);
}

.why-rentals .column-image {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
}

.why-rentals .image-card {
    width: 100%;
            box-shadow: none;
}

.cta-group {
    display: flex;
    gap: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
    flex-wrap: wrap;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-2xl);
}

.feature-card {
    border: 1px solid #EFEFEF;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: #0D2A45;
    color: var(--white);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: var(--spacing-lg);
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-sm);
}

.feature-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
}

.image-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

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

.image-stat {
    position: absolute;
    bottom: var(--spacing-xl);
    right: var(--spacing-xl);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: var(--spacing-xl) var(--spacing-lg);
    border-radius: 16px;
    text-align: left;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    max-width: 280px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.image-stat::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 10px;
    font-size: 3rem;
    color: var(--primary);
    font-family: Georgia, serif;
    line-height: 1;
    opacity: 0.3;
}

.stat-value {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    color: var(--secondary);
    line-height: 1.6;
    position: relative;
}

/* ===================================
   INTRO SECTION
   =================================== */

.intro-section {
    padding: var(--spacing-4xl) 0;
    position: relative;
    z-index: 1;
}

.intro-content {
    max-width: 1250px;
    margin: 0 auto;
    text-align: center;
}

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

.cta-dark {
    position: relative;
    padding: var(--spacing-4xl) 0;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
    z-index: 1;
}

/* Video Background */
.video-poster {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.video-background {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    will-change: opacity;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.video-background.loaded {
    opacity: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.cta-dark .container {
    position: relative;
    z-index: 2;
}

/* Layout for Why Us Section */
.why-us-wrapper-blur {
    background: rgba(0, 0, 0, 0.60);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.why-us-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

.column-content {
    padding-right: var(--spacing-xl);
}

.column-form {
    display: flex;
    align-items: center;
}

.stats-row {
    display: flex;
    gap: var(--spacing-3xl);
    margin: var(--spacing-3xl) 0;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    min-width: 150px;
}

.stat-number {
    display: block;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: var(--spacing-sm);
}

/* Stats Grid for Why Us Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
    margin: var(--spacing-3xl) 0;
}

.stats-grid-vertical {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
}

.stat-box {
    border: 1px solid #E17100;
    border-radius: 12px;
    padding: 15px 20px;
    position: relative;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    max-width: 450px;
}

.stat-box:hover {
    border-color: var(--primary);
    background: rgba(0, 0, 0, 0.5);
    transform: translateX(5px);
}

.stat-divider {
    width: 1px;
    height: 20px;
    background: var(--primary);
    border-radius: 2px;
    flex-shrink: 0;
}

.stat-label-white {
    display: block;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.4;
}

.stars-bg {
    background: rgba(247, 87, 30, 0.15);
    padding: 2px 8px;
    border-radius: 4px;
    display: inline-block;
}

/* Form Card White */
.form-card-white {
    background: var(--white);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.contact-form-compact {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.form-label {
    display: block;
    font-size: 0.9rem;
    color: var(--secondary);
    margin-bottom: 6px;
    font-weight: 500;
}

.required {
    color: var(--primary);
}

.phone-input-group {
    display: flex;
    gap: var(--spacing-sm);
}

.phone-code {
    flex: 0 0 120px;
}

.phone-number {
    flex: 1;
}

.btn-next {
    margin-top: 0;
    font-weight: 600;
    letter-spacing: 1px;
}

.form-privacy-text {
    text-align: center;
    font-size: 0.8rem;
    color: var(--gray-600);
    margin-top: var(--spacing-sm);
    line-height: 1.4;
}

.privacy-link {
    color: var(--secondary);
    text-decoration: underline;
    transition: var(--transition-base);
}

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

.column-form .form-input {
    background: var(--white);
    border: 1px solid var(--gray-300);
    color: var(--secondary);
}

.column-form .form-input:focus {
    border-color: var(--primary);
}

.phone-mockup {
    background: var(--gray-800);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-xl);
}

.phone-mockup img {
    border-radius: var(--radius-md);
    width: 100%;
}

.align-center {
    align-items: center;
}

/* ===================================
   WHY PVH SECTION
   =================================== */

.why-pvh {
    padding: var(--spacing-4xl) 0;
    background: var(--white);
    position: relative;
    z-index: 1;
}

.features-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

.feature-box {
    background: #F8FCFF;
    padding: 24px;
    border-color: #EFEFEF;
    border-radius: var(--radius-lg);
    text-align: left;
    transition: var(--transition-base);
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon-lg {
    width: 56px;
    height: 56px;
    background: #0D2A45;
    color: var(--white);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 1rem 0;
}

.feature-box h3 {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-md);
        font-weight: 400;
}

.feature-box p {
    color: var(--gray-600);
    font-size: 0.95rem;
}

.platforms-section {
    width: 100%;
    padding: 60px 0;
    background: #F5F5F5;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.platforms-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 100px;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 0 120px;
    min-height: 120px;
}

.platforms-text {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    max-width: 500px;
    line-height: 1.25;
    text-align: left;
    flex-shrink: 0;
}

.platforms-carousel-wrapper {
    flex: 1;
    overflow: hidden;
    max-width: 100%;
    min-width: 0;
}

.platforms-slider {
    width: 100%;
    overflow: visible;
    padding: 20px 0;
}

.platforms-logos {
    display: flex;
    align-items: center;
}

.platform-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    width: 100%;
}

.platform-item img {
    height: 60px;
    width: auto;
    max-width: 180px;
    opacity: 1;
    transition: var(--transition-base);
    object-fit: contain;
}

.platform-item img:hover {
    transform: scale(1.05);
}

/* Legacy selector for compatibility */
.platforms-logos img {
    height: 60px;
    width: auto;
    max-width: 180px;
    opacity: 1;
    transition: var(--transition-base);
    object-fit: contain;
}

.platforms-logos img:hover {
    transform: scale(1.05);
}

/* ===================================
   COMPARISON SECTION
   =================================== */

.comparison-section {
    padding: var(--spacing-4xl) 0;
    background: #FAFAFA;
    position: relative;
    z-index: 1;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: var(--spacing-2xl);
    align-items: stretch;
    margin-top: var(--spacing-3xl);
}

.comparison-card {
    background: var(--white);
    padding: var(--spacing-2xl);
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: relative;
    display: flex;
    flex-direction: column;
}

.comparison-card-left {
    background: #EEE;
    border: 1px solid #E8E8E8;
}

.comparison-card-right {
        background: var(--white);
    border: 1px solid #F6551B;
}

.comparison-title {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: var(--spacing-2xl);
    color: #161C2D;
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--spacing-2xl) 0;
    flex-grow: 1;
}

.comparison-list li {
    padding: var(--spacing-md) 0;
    display: flex;
    align-items: start;
    gap: var(--spacing-md);
    font-size: 1rem;
    line-height: 1.6;
    color: #2d2d2d;
}

.comparison-card-left .comparison-list li i {
    color: #888;
    font-size: 0.9rem;
    margin-top: 4px;
    flex-shrink: 0;
}

.comparison-card-right .comparison-list li i {
    color: #E8734E;
    font-size: 0.9rem;
    margin-top: 4px;
    flex-shrink: 0;
}

.comparison-example {
    margin-top: auto;
}

.example-label {
    font-size: 0.9rem;
    color: #161C2D;
    margin-bottom: var(--spacing-md);
    font-weight: 600;
}

.comparison-income {
    background: #888;
    padding: var(--spacing-lg) var(--spacing-xl);
    border-radius: 12px;
    text-align: center;
    position: relative;
}

.comparison-income p {
    color: var(--white);
    font-size: 0.9rem;
    margin: 0 0 var(--spacing-sm) 0;
}

.comparison-income h4 {
    color: var(--white);
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0;
}

.comparison-income-highlight {
    background: linear-gradient(180deg, #F7571E 0%, #F03F00 100%);
}

.income-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #1a1a1a;
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.income-badge img {
    height: 14px;
    max-width: 22px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
}

.vs-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 65px;
}

.vs-divider span {
    background: var(--white);
    padding: var(--spacing-lg) var(--spacing-xl);
    border-radius: var(--radius-full);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 2px solid #E5E5E5;
}

/* ===================================
   FORM CARD
   =================================== */

.form-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: var(--spacing-3xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    color: var(--white);
}

.form-title {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--white);
    text-align: center;
}

.form-subtitle {
    font-size: 0.95rem;
    margin-bottom: var(--spacing-xl);
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.form-group {
    width: 100%;
}

.form-input {
    width: 100%;
    padding: var(--spacing-md);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: var(--font-body);
    background: rgba(255, 255, 255, 0.95);
    transition: var(--transition-base);
}

.form-input:focus {
    outline: none;
    border-color: var(--white);
    background: var(--white);
}

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

.form-input::placeholder {
    color: var(--gray-500);
}

select.form-input {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B7280' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */

.testimonials {
    padding: var(--spacing-4xl) 0;
    background: #FAFAFA;
    position: relative;
    z-index: 1;
}

.testimonials-layout {
    display: flex;
    gap: 80px;
    align-items: center;
}

.testimonials-heading {
    flex: 0 0 350px;
    position: sticky;
    top: 100px;
}

.testimonials-heading h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    color: #1a1a1a;
    margin: 0;
}

.testimonials-slider-wrapper {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.testimonials-slider {
    width: 100%;
    padding: 0 0 60px 0;
    overflow: visible;
}

.testimonial-card {
    background: #F5F5F5;
    padding: var(--spacing-xl);
    border-radius: 24px;
    height: auto;
    min-height: 240px;
    display: flex;
    flex-direction: column;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--spacing-sm);
}

.testimonial-name {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    color: #1a1a1a;
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    font-size: 1rem;
}

.testimonial-rating i {
    color: #E17100;
}

.testimonial-location {
    font-size: 1rem;
    color: #1a1a1a;
    margin: 0 0 var(--spacing-lg) 0;
    font-weight: 400;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #1a1a1a;
    margin: 0;
    font-weight: 400;
}

.testimonials-slider .swiper-pagination {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: left;
}

.testimonials-slider .swiper-pagination-bullet {
    background: #D9D9D9;
    opacity: 1;
    width: 12px;
    height: 12px;
    margin: 0 6px;
}

.testimonials-slider .swiper-pagination-bullet-active {
    background: #E17100;
}

/* ===================================
   RESULTS SECTION
   =================================== */

.results-section {
    padding: var(--spacing-4xl) 0;
    background: #0D2A45;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.results-section .section-title-white {
    margin-bottom: var(--spacing-3xl);
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
}

.two-column.align-center {
    align-items: center;
}

.column-content {
    display: flex;
    flex-direction: column;
}

.column-image {
    position: relative;
}

.section-title-white {
    font-size: clamp(2rem, 4.5vw, 3rem);
    color: var(--white);
    margin-bottom: var(--spacing-xl);
    line-height: 1.15;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.section-text-white {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
    font-size: 1.05rem;
}

.checkpoints {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-2xl);
    margin-top: var(--spacing-xl);
}

.checkpoint {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.checkpoint i {
    width: 25px;
    height: 25px;
    min-width: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: var(--radius-full);
    color: var(--white);
    font-size: 0.8rem;
    flex-shrink: 0;
}

.checkpoint span {
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 400;
}

.results-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.btn-orange {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 0.875rem 2rem !important;
    font-size: 0.875rem !important;
    border-radius: 50px !important;
    display: inline-block;
    width: auto;
    max-width: fit-content;
}

.btn-orange:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(232, 90, 36, 0.4);
}

/* ===================================
   FAQ SECTION
   =================================== */

.faq-section {
    padding: var(--spacing-4xl) 0;
    background: var(--off-white);
    position: relative;
    z-index: 1;
}

.faq-section .section-title-center {
    margin-bottom: var(--spacing-3xl);
}

.faq-container {
    max-width: 100%;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-xl) var(--spacing-2xl);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary);
    transition: var(--transition-base);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question i {
    font-size: 1rem;
    color: var(--primary);
    transition: var(--transition-base);
    flex-shrink: 0;
    margin-left: var(--spacing-lg);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer p {
    padding: 0 var(--spacing-2xl) var(--spacing-xl);
    color: var(--gray-700);
    line-height: 1.7;
    font-size: 1rem;
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    position: relative;
    padding: var(--spacing-4xl) 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
}

.footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/footer.jpg') left center/cover no-repeat;
    z-index: 0;
}

.footer .container {
    position: relative;
    z-index: 1;
    width: 100%;
}

.footer-mobile-image {
    display: none;
}

.footer-layout {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.footer-form-card {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.footer-form-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.footer-form-subtitle {
    font-size: 0.95rem;
    color: var(--gray-700);
    margin-bottom: var(--spacing-lg);
    line-height: 1.5;
    font-weight: 300;
}

.footer-contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.footer-contact-form .form-group {
    width: 100%;
}

.footer-contact-form .form-label {
    display: block;
    font-size: 0.9rem;
    color: var(--secondary);
    margin-bottom: 6px;
    font-weight: 500;
}

.footer-contact-form .form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-family: var(--font-body);
    background: var(--white);
    transition: var(--transition-base);
}

.footer-contact-form .form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(247, 87, 30, 0.1);
}

.footer-contact-form .form-textarea {
    resize: vertical;
    min-height: 70px;
}

.footer-contact-form .phone-input-group {
    display: flex;
    gap: var(--spacing-sm);
}

.footer-contact-form .phone-code {
    flex: 0 0 120px;
}

.footer-contact-form .phone-number {
    flex: 1;
}

.btn-footer-submit {
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0;
}

.btn-footer-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(247, 87, 30, 0.4);
}

.footer-contact-form .form-privacy-text {
    text-align: center;
    font-size: 0.8rem;
    color: var(--gray-600);
    margin-top: var(--spacing-sm);
    line-height: 1.4;
}

.footer-contact-form .privacy-link {
    color: var(--secondary);
    text-decoration: underline;
    transition: var(--transition-base);
}

.footer-contact-form .privacy-link:hover {
    color: var(--primary);
}

/* ===================================
   COPYRIGHT BAR
   =================================== */

.copyright-bar {
    background: #1F2937;
    padding: 20px 0;
    text-align: center;
}

.copyright-bar p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
    font-weight: 300;
}

/* ===================================
   MODAL
   =================================== */

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: var(--z-modal);
    align-items: center;
    justify-content: center;
    animation: modalFadeIn 0.3s ease-out;
}

.modal.active {
    display: flex;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
}

.modal-content {
    background: var(--white);
    padding: var(--spacing-3xl);
    border-radius: var(--radius-xl);
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: var(--shadow-xl);
    z-index: 2;
}

.modal-content-large {
    background: #F5F5F5;
    padding: var(--spacing-xl);
    border-radius: 20px;
    max-width: 900px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 2;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlideUp 0.4s ease-out;
}

.modal-close {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--white);
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray-600);
    transition: var(--transition-base);
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.modal-close:hover {
    color: var(--primary);
}

.modal-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.modal-title {
    font-size: 26px;
    font-weight: 500;
    color: var(--secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.modal-subtitle {
    font-size: 15px;
    color: var(--gray-600);
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 300;
}

.property-form {
    background: var(--white);
    padding: var(--spacing-2xl);
    border-radius: 16px;
    position: relative;
}

.form-step {
    display: none;
    animation: fadeInSlide 0.4s ease-out;
}

.form-step.active {
    display: block;
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.form-group-modal {
    width: 100%;
}

.form-label-modal {
    display: block;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--secondary);
    margin-bottom: 6px;
}

.form-input-modal {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #E5E5E5;
    border-radius: 12px;
    font-size: 0.95rem;
    font-family: var(--font-body);
    background: var(--white);
    transition: var(--transition-base);
    color: var(--secondary);
}

select.form-input-modal {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B7280' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-input-modal::placeholder {
    color: #BDBDBD;
    font-weight: 300;
}

.form-input-modal:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(247, 87, 30, 0.1);
}

.phone-code-modal {
    flex: 0 0 140px;
    padding-right: 0.75rem;
}

.phone-number-modal {
    flex: 1;
}

.modal-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: var(--spacing-lg);
    padding-top: 0;
}

.form-step[data-step="2"] .modal-footer {
    justify-content: flex-end;
    gap: var(--spacing-lg);
}

.form-privacy-text-modal {
    font-size: 0.8rem;
    color: var(--gray-600);
    max-width: 400px;
    line-height: 1.4;
    margin: 0;
}

.btn-next-modal {
    padding: 0.875rem 3rem;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 50px;
    text-transform: uppercase;
    flex-shrink: 0;
}

.btn-back-modal {
    padding: 0.875rem 2.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 50px;
    text-transform: uppercase;
    flex-shrink: 0;
    background: transparent;
    border: 2px solid var(--gray-300);
    color: var(--secondary);
}

.btn-back-modal:hover {
    background: var(--gray-100);
    border-color: var(--gray-400);
}

/* ===================================
   SCROLL ANIMATIONS
   =================================== */

.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal:not(.visible) {
    opacity: 0;
    transform: translateY(30px);
}

.reveal.active,
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

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

/* Large Desktop (1550px and above) */
@media (min-width: 1550px) {
    .why-rentals .image-card {
        max-width: 700px;
                box-shadow: none;
    }
}

/* Desktop Small (1200px and below) */
@media (max-width: 1200px) {
    .container {
        padding: 0 80px;
    }

    .platforms-container {
        padding: 0 80px;
        gap: 80px;
    }

    .two-column {
        gap: var(--spacing-2xl);
    }

    .why-rentals .two-column {
        gap: var(--spacing-2xl);
    }

    .why-rentals .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-md);
    }

    .why-rentals .feature-card {
        padding: var(--spacing-md);
    }

    .image-stat {
        bottom: var(--spacing-lg);
        right: var(--spacing-lg);
        padding: var(--spacing-lg);
        max-width: 240px;
    }

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

/* Laptop Medium (1100px and below) */
@media (max-width: 1100px) {
    .container {
        padding: 0 70px;
    }

    .why-rentals .two-column {
        gap: var(--spacing-xl);
    }

    .why-rentals .features-grid {
        gap: var(--spacing-md);
    }

    .why-rentals .feature-card {
        padding: var(--spacing-md);
    }

    .why-rentals .feature-card h3 {
        font-size: 1rem;
    }

    .why-rentals .feature-card p {
        font-size: 0.85rem;
    }
}

/* Tablet Landscape (1024px and below) */
@media (max-width: 1024px) {
    .container {
        padding: 0 60px;
    }

    /* Keep grid layout on tablet landscape */
    .trust-badges-slider .swiper-wrapper {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-xl);
        align-items: center;
        transform: none !important;
    }

    .trust-badge-item {
        width: 100% !important;
    }

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

    .two-column {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-xl);
    }

    .two-column .column-content {
        padding-right: 0;
    }

    .features-grid {
        gap: var(--spacing-lg);
    }

    .feature-card {
        padding: var(--spacing-lg);
    }

    .comparison-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .vs-divider {
        display: none;
    }

    .footer-layout {
        justify-content: center;
        padding: var(--spacing-3xl) 0;
    }

    .footer-form-card {
        max-width: 100%;
    }

    .platforms-container {
        gap: var(--spacing-2xl);
        padding: 0 60px;
    }

    .platforms-text {
        font-size: 1.75rem;
        max-width: 350px;
    }

    .platform-item {
        height: 70px;
    }

    .platform-item img,
    .platforms-logos img {
        height: 50px;
        max-width: 150px;
    }

    .testimonials-layout {
        gap: 60px;
    }

    .testimonials-heading {
        flex: 0 0 300px;
    }

    .testimonials-heading h2 {
        font-size: 2rem;
    }
}

/* Laptop (1400px and below) - Added for better testimonial responsiveness */
@media (max-width: 1400px) {
    .testimonials-layout {
        gap: 60px;
    }

    .testimonials-heading {
        flex: 0 0 320px;
    }

    .testimonials-heading h2 {
        font-size: 2.2rem;
    }

    .testimonial-card {
        padding: var(--spacing-lg);
        min-height: 220px;
    }

    .testimonial-name {
        font-size: 1.3rem;
    }

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

/* Laptop Small (1200px and below) - Improved testimonial layout */
@media (max-width: 1200px) {
    .testimonials-layout {
        gap: 50px;
    }

    .testimonials-heading {
        flex: 0 0 280px;
    }

    .testimonials-heading h2 {
        font-size: 2rem;
    }

    .testimonial-card {
        padding: var(--spacing-lg);
        min-height: 200px;
    }

    .testimonial-name {
        font-size: 1.3rem;
    }
}

/* Intermediate Tablet (900px and below) */
@media (max-width: 900px) {
    .container {
        padding: 0 50px;
    }
    .header-content {
         justify-content: center;
    }

    .logo-image {
        height: 50px;
    }

    .badge-image {
        max-height: 65px;
    }

    .trust-badges-container {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .section-title, .section-title-center, .section-title-white {
        text-align: center;
    }

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

    .trust-badges-section {
        padding: 25px 0px;
    }

    .platforms-container {
        flex-direction: column;
        gap: var(--spacing-2xl);
        padding: 0 50px;
    }

    .platforms-text {
        font-size: 1.5rem;
        text-align: center;
        max-width: 100%;
    }

    .why-us-layout {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }

    .why-rentals .two-column {
        grid-template-columns: 1fr;
        gap: var(--spacing-3xl);
    }

    .why-rentals .column-image {
        order: -1;
    }

    .why-rentals .image-card {
        max-width: 500px;
        margin: 0 auto;
                box-shadow: none;
    }

    .why-rentals .features-grid {
        grid-template-columns: 1fr 1fr;
    }
    .vs-divider {
        display: block !important;
        padding: 15px 0;
        text-align: center;
        margin: 0 auto;
    }

    /* Testimonials stack on tablet */
    .testimonials-layout {
        flex-direction: column;
        gap: var(--spacing-2xl);
    }

    .testimonials-heading {
        flex: 1;
        position: static;
        text-align: center;
    }
}

/* Tablet Portrait (768px and below) */
@media (max-width: 768px) {
    .container {
        padding: 0 40px;
    }

    .hero-bg {
        background: url('../images/banner-mob.jpg') center/cover no-repeat;
    }

    /* Show as static grid (no carousel) on tablet portrait and below */
    .trust-badges-slider {
        overflow: visible !important;
    }

    .hero-title {
        font-size: 2rem;
    }

    .trust-badges-slider .swiper-wrapper {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: var(--spacing-xl);
        transform: none !important;
    }

    .trust-badge-item,
    .trust-badges-slider .swiper-slide {
        width: 100% !important;
        margin: 0 !important;
    }

    /* Hide duplicate badges now that carousel is disabled */
    .trust-badge-duplicate {
        display: none !important;
    }

    .mobile-toggle {
        display: flex;
    }

    .logo-image {
        height: 50px;
    }

    .nav-wrapper-pill {
        display: none;
    }

    .nav,
    .btn-header {
        display: none;
    }

    .two-column {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }

    .column-image {
        order: -1;
    }

    .why-rentals .two-column {
        gap: var(--spacing-3xl);
    }

    .why-rentals .image-card {
        max-width: 450px;
                box-shadow: none;
    }

    .features-grid {
        grid-template-columns: 1fr !important;
    }

    .features-grid-3 {
        grid-template-columns: 1fr;
    }

    .trust-badges {
        gap: var(--spacing-xl);
    }

    .stats-row {
        flex-direction: column;
        gap: var(--spacing-xl);
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .stats-grid-vertical {
        gap: var(--spacing-md);
    }

    .why-us-wrapper-blur {
        padding: var(--spacing-xl);
    }

    .why-us-layout {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .column-content {
        padding-right: 0;
    }

    .stat-box {
        max-width: 100%;
    }

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

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

    .inline-form {
        flex-direction: column;
    }

    .form-input-inline {
        width: 100%;
    }

    .footer {
        padding: var(--spacing-3xl) 0;
    }

    .footer-layout {
        justify-content: center;
        padding: var(--spacing-xl) 0;
    }

    .footer-form-card {
        padding: var(--spacing-2xl);
        max-width: 100%;
    }

    /* Mobile footer starts transitioning on tablet */
    @media (max-width: 600px) {
        .footer {
            background: #f8f9fa;
            padding: 0;
        }
        .faq-section {
            padding: var(--spacing-2xl) 0 !important;
        }

        .footer-bg {
            display: none;
        }

        .footer-mobile-image {
            display: block;
            width: 100%;
            margin-bottom: var(--spacing-2xl);
        }

        .footer-mobile-image img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: var(--radius-xl);
        }

        .footer .container {
            padding-top: var(--spacing-md);
            padding-bottom: var(--spacing-2xl);
        }
    }

    .platforms-container {
        flex-direction: column;
        gap: var(--spacing-2xl);
        padding: 0 var(--spacing-xl);
    }

    .platforms-text {
        font-size: 1.75rem;
        text-align: center;
        max-width: 100%;
    }

    .platforms-carousel-wrapper {
        width: 100%;
    }

    .platform-item {
        height: 60px;
    }

    .platform-item img,
    .platforms-logos img {
        height: 45px;
        max-width: 140px;
    }

    .testimonials-slider-wrapper {
        width: 100%;
    }

    .hero {
        min-height: 80vh;
        height: auto;
    }

    .form-card-white {
        padding: var(--spacing-xl);
    }

    .why-us-wrapper-blur {
        padding: var(--spacing-lg);
    }

    /* Modal Responsive - Tablet */
    .modal-content-large {
        padding: var(--spacing-lg);
        max-width: 95%;
    }

    .modal-close {
        top: -5px;
        right: -5px;
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
    }

    .property-form {
        padding: var(--spacing-xl);
    }

    .form-row {
        gap: var(--spacing-md);
    }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
    :root {
        font-size: 14px;
    }

    .container {
        padding: 0 20px;
    }

    /* Tighten spacing on smaller mobile grid */
    .trust-badges-slider .swiper-wrapper {
        gap: var(--spacing-lg);
    }

    /* Hide the last badge on mobile */
    .trust-badges-container .trust-badge-item:last-of-type {
        display: none !important;
    }

    .badge-image {
        max-height: 50px;
    }

    .logo-image {
        height: 45px;
    }

    .hero {
        padding: var(--spacing-3xl) 0;
        min-height: 70vh;
        height: auto;
    }

    .section-title,
    .section-title-center,
    .section-title-white {
        font-size: 1.75rem;
    }

    .header {
        padding: 40px 0 10px 0;
    }

    .header-content {
        flex-wrap: wrap;
    }

    .mobile-toggle {
        background: var(--white);
        border-radius: 8px;
        padding: 10px;
    }

    .mobile-toggle span {
        background: var(--secondary);
    }

    .feature-card,
    .feature-box,
    .comparison-card,
    .form-card {
        padding: var(--spacing-xl);
    }

    .trust-badges {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .platforms-section {
        padding: var(--spacing-3xl) 0;
    }

    .platforms-container {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-xl);
        padding: 0 var(--spacing-lg);
    }

    .platforms-text {
        font-size: 1.5rem;
        text-align: center;
        max-width: 100%;
    }

    .platforms-carousel-wrapper {
        width: 100%;
    }

    .platform-item {
        height: 50px;
    }

    .platform-item img,
    .platforms-logos img {
        height: 40px;
        max-width: 120px;
    }

    .testimonials-heading h2 {
        font-size: 1.75rem;
    }

    .testimonial-card {
        padding: var(--spacing-lg);
        min-height: 240px;
    }

    .testimonial-name {
        font-size: 1.3rem;
    }

    .testimonial-rating {
        font-size: 1rem;
    }

    .testimonial-location {
        font-size: 0.95rem;
        margin-bottom: var(--spacing-md);
    }

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

    /* Modal Responsive */
    .modal-content-large {
        padding: var(--spacing-xl) var(--spacing-md) var(--spacing-md);
        width: 95%;
        max-height: 95vh;
    }

    .modal-close {
        top: -13px;
        right: -5px;
        width: 36px;
        height: 36px;
        font-size: 1.3rem;
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid rgba(0, 0, 0, 0.1);
    }

    .modal-header {
        padding-top: var(--spacing-md);
    }

    .property-form {
        padding: var(--spacing-lg);
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
        margin-bottom: var(--spacing-sm);
    }

    .modal-title {
        font-size: 22px;
    }

    .modal-subtitle {
        font-size: 14px;
    }

    .modal-footer {
        flex-direction: column-reverse;
        gap: var(--spacing-lg);
        align-items: stretch;
    }

    .form-privacy-text-modal {
        max-width: 100%;
        text-align: center;
    }

    .btn-next-modal {
        width: 100%;
        padding: 1rem 2rem;
    }

    .modal-title {
        font-size: 1.5rem;
    }

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

    .btn-back-modal {
        padding: 1rem 2rem;
    }

    .form-step[data-step="2"] .modal-footer {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer {
        background: #f8f9fa;
        padding: 0;
    }

    .footer-bg {
        display: none;
    }

    .footer-mobile-image {
        display: block;
        width: 100%;
        margin-bottom: var(--spacing-2xl);
    }

    .footer-mobile-image img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: var(--radius-xl);
    }

    .footer .container {
        padding-top: var(--spacing-md);
        padding-bottom: var(--spacing-3xl);
    }

    .footer-form-card {
        padding: var(--spacing-xl);
    }

    .footer-contact-form {
        gap: var(--spacing-md);
    }
}

/* ===================================
   UTILITIES & HELPERS
   =================================== */

.text-muted {
    opacity: 0.5;
}

.hidden {
    display: none !important;
}

.visible {
    display: block !important;
}

/* Print styles */
@media print {

    .header,
    .mobile-nav,
    .btn,
    .modal,
    .footer {
        display: none;
    }
}

/* ===================================
   INTERNATIONAL PHONE INPUT FIXES
   =================================== */

/* Fix for modal overflow when country dropdown opens */
.modal-content-large {
    overflow: visible !important;
}

.property-form {
    overflow: visible !important;
}

/* Ensure country dropdown appears above modal */
.iti--container {
    z-index: 10000 !important;
}

/* Fix dropdown positioning in modal */
.modal .iti__country-list {
    z-index: 10000 !important;
    position: fixed !important;
}

/* Prevent scrollbar when dropdown is open */
.modal-content-large:has(.iti__country-list:not(.iti__hide)) {
    overflow: visible !important;
}

/* Prevent horizontal scroll from intl-tel-input */
.iti {
    max-width: 100%;
    overflow-x: clip;
    overflow-y: visible;
}

/* Style adjustments for phone input in modal */
.phone-input-group .iti {
    width: 100%;
}

.phone-input-group .iti input {
    width: 100%;
}

/* Ensure phone input styling matches form inputs */
.iti input,
.iti input[type=text],
.iti input[type=tel] {
    height: 100%;
    font-family: inherit;
    font-size: inherit;
}

/* Fix padding for all phone inputs with separate dial code */
.iti--separate-dial-code input,
.iti--separate-dial-code input[type=text],
.iti--separate-dial-code input[type=tel] {
    padding-left: 100px !important;
}

/* Modal phone input specific styling */
.form-input-modal.phone-number-modal {
    padding-left: 100px !important;
}

/* Regular form phone inputs */
.form-input.phone-number {
    padding-left: 100px !important;
}

/* Footer form phone input */
.footer-contact-form .phone-number {
    padding-left: 100px !important;
}

/* Ensure placeholder doesn't overlap with country code */
.iti--separate-dial-code input::placeholder,
.iti--separate-dial-code input[type=text]::placeholder,
.iti--separate-dial-code input[type=tel]::placeholder {
    opacity: 0.5;
}

/* Adjust dial code width to prevent overlap */
.iti__selected-dial-code {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--secondary);
    margin-left: 4px;
}

/* Fix selected flag container width and background */
.iti__selected-flag {
    background-color: rgba(0, 0, 0, 0.02) !important;
    padding: 0 8px 0 8px !important;
    border-right: 1px solid #e0e0e0;
}

/* Ensure flag is visible */
.iti__flag {
    display: inline-block !important;
    width: 20px !important;
    height: 15px !important;
    box-shadow: 0px 0px 1px 0px #888;
    background-image: url('../js/country_code/img/flags.png') !important;
    background-repeat: no-repeat;
    background-position: 20px 0;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .iti__flag {
        background-image: url('../js/country_code/img/flags@2x.png') !important;
        background-size: 5652px 15px;
    }
}

/* Reduce flag container width */
.iti--separate-dial-code .iti__flag-container {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
}

/* Adjust input padding to match flag container */
.iti--separate-dial-code .iti__selected-flag {
    display: flex;
    align-items: center;
    height: 100%;
}

/* Ensure dropdown doesn't cause layout shift */
.iti__country-list {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) !important;
    border-radius: 4px;
    margin-top: 2px;
}

/* Better mobile experience for country dropdown */
@media (max-width: 768px) {
    .iti-mobile .iti__country-list {
        max-height: 80vh !important;
    }

    .modal.iti-mobile .iti--container {
        top: 50px;
        bottom: 50px;
        left: 20px;
        right: 20px;
    }
}

/* ===================================
   STICKY BOTTOM BUTTON
   =================================== */

.sticky-bottom-btn {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 18px 60px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 50px;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 8px 24px rgba(247, 87, 30, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    white-space: nowrap;
}

.sticky-bottom-btn.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.sticky-bottom-btn:hover {
    background: var(--primary-dark);
    box-shadow: 0 12px 32px rgba(247, 87, 30, 0.5);
    transform: translateX(-50%) translateY(-2px);
}

.sticky-bottom-btn:active {
    transform: translateX(-50%) translateY(0);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .sticky-bottom-btn {
        bottom: 20px;
        padding: 16px 40px;
        font-size: 16px;
        border-radius: 40px;
    }
}

@media (max-width: 480px) {
    .sticky-bottom-btn {
        bottom: 15px;
        padding: 14px 32px;
        font-size: 14px;
        letter-spacing: 0.3px;
    }
}
