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

:root {
    --primary: #e489ae;
    --secondary: #fdf1f1;
    --white: #ffffff;
    --dark: #333333;
    --text: #555555;
    --light-gray: #f8f8f8;
    --accent: #d6769a;
}

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

.navbar {
    background: var(--white);
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

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

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

.logo span {
    color: var(--dark);
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-buttons {
    display: flex;
    gap: 15px;
}

.btn-login {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    padding: 10px 20px;
    transition: color 0.3s;
}

.btn-login:hover {
    color: var(--primary);
}

.btn-nav {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 25px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(228, 137, 174, 0.4);
}

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

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--dark);
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background: var(--white);
    z-index: 2000;
    transition: right 0.3s ease;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
}

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

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
}

.mobile-menu-overlay.active {
    display: block;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.mobile-menu-logo {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.1rem;
}

.mobile-menu-close {
    font-size: 2rem;
    color: var(--dark);
    cursor: pointer;
    line-height: 1;
}

.mobile-menu-links {
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.mobile-menu-links a {
    padding: 14px 0;
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid #f5f5f5;
    transition: color 0.3s;
}

.mobile-menu-links a:hover {
    color: var(--primary);
}

.mobile-menu-buttons {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-mobile-login {
    padding: 14px;
    text-align: center;
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--primary);
    border-radius: 25px;
    transition: all 0.3s;
}

.btn-mobile-login:hover {
    background: var(--secondary);
}

.btn-mobile-signup {
    padding: 14px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s;
}

.btn-mobile-signup:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(228, 137, 174, 0.4);
}

.hero {
    background: linear-gradient(135deg, rgba(42, 26, 46, 0.72) 0%, rgba(26, 10, 30, 0.57) 50%, rgba(45, 31, 61, 0.63) 100%), url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23e489ae" fill-opacity="0.08" d="M0,160L48,165.3C96,171,192,181,288,186.7C384,192,480,192,576,170.7C672,149,768,107,864,101.3C960,96,1056,128,1152,149.3C1248,171,1344,181,1392,186.7L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(228, 137, 174, 0.15) 0%, transparent 70%);
}

.hero-content {
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--white) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 50px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.8;
}

.hero-search {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.search-row {
    display: flex;
    gap: 15px;
    align-items: flex-end;
}

.search-field {
    flex: 1;
}

.search-field label {
    display: block;
    font-size: 0.85rem;
    color: var(--text);
    margin-bottom: 8px;
    font-weight: 500;
}

.search-field select {
    width: 100%;
    padding: 14px 15px;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 1rem;
    color: var(--dark);
    background: var(--white);
    cursor: pointer;
    transition: border-color 0.3s;
}

.search-field select:focus {
    outline: none;
    border-color: var(--primary);
}

.btn-search {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    padding: 16px 35px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: transform 0.3s, box-shadow 0.3s;
    height: fit-content;
}

.btn-search:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(228, 137, 174, 0.4);
}

.hero-cta-mobile {
    display: none;
}

.trusted-section {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--white) 100%);
    padding: 40px 0;
    border-bottom: 1px solid rgba(228, 137, 174, 0.15);
}

.trusted-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.trusted-label {
    color: var(--text);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.7;
}

.trusted-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    padding: 10px 0;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.logo-item:hover {
    opacity: 1;
    transform: scale(1.05);
}

.logo-item img {
    height: 36px;
    width: auto;
    max-width: 140px;
    filter: grayscale(60%);
    transition: filter 0.3s ease;
    object-fit: contain;
}

.logo-item:hover img {
    filter: grayscale(0%);
}

.logo-text {
    color: #666;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
}

.intro-section {
    background: var(--white);
    padding: 50px 0;
    text-align: center;
    border-bottom: 1px solid rgba(228, 137, 174, 0.15);
}

.intro-section h1 {
    color: var(--dark);
    font-size: 2.4rem;
    margin-bottom: 20px;
    font-weight: 600;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.intro-section p {
    color: var(--text);
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 950px;
    margin: 0 auto 30px;
    padding: 0 20px;
}

.intro-section .btn-cta {
    display: inline-block;
    padding: 14px 40px;
}

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

.header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.header h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.95;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--white);
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    border: 2px solid var(--white);
}

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

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    margin: 15px auto 0;
}

.hero-bg {
    background: linear-gradient(135deg, rgba(228, 137, 174, 0.1) 0%, rgba(214, 118, 154, 0.1) 100%);
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.two-col-reverse {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.three-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 15px;
    height: 400px;
}

.three-images .img-large {
    grid-row: span 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.three-images .img-small {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.three-images .img-small img.tall {
    width: 100%;
    height: calc(50% - 7.5px);
    object-fit: cover;
    border-radius: 15px;
}

.content-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(228, 137, 174, 0.15);
}

.app-img {
    height: auto;
    max-height: 500px;
    object-fit: contain;
    background: transparent;
    box-shadow: none;
}

.app-buttons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #1a1a1a;
    color: #fff;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
}

.app-btn:hover {
    background: #333;
    transform: translateY(-2px);
}

.app-btn svg {
    flex-shrink: 0;
}

.app-btn-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.app-btn-label {
    font-size: 0.7rem;
    opacity: 0.8;
}

.app-btn-title {
    font-size: 1rem;
    font-weight: 600;
}

.img-placeholder {
    background: linear-gradient(135deg, var(--secondary) 0%, #fce4ec 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.9rem;
    text-align: center;
    padding: 20px;
    min-height: 200px;
}

.img-placeholder.large {
    min-height: 400px;
}

.img-placeholder.tall {
    min-height: 400px;
}

.card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(228, 137, 174, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(228, 137, 174, 0.25);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 1.8rem;
}

.card h3 {
    color: var(--dark);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.card p {
    color: var(--text);
    line-height: 1.7;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 40px rgba(228, 137, 174, 0.12);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.3;
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.testimonial-avatar .avatar-initials {
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.testimonial-info h4 {
    color: var(--dark);
    font-size: 1rem;
}

.testimonial-info span {
    color: var(--primary);
    font-size: 0.85rem;
}

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

.cities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.city-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 5px 25px rgba(228, 137, 174, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.city-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(228, 137, 174, 0.25);
}

.city-image {
    height: 180px;
    background-size: cover;
    background-position: center;
    background-color: var(--secondary);
}

.city-content {
    padding: 20px;
    text-align: center;
}

.city-content h3,
.city-content h4 {
    color: #000;
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.city-content p {
    color: #333;
    font-size: 0.9rem;
    margin: 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 15px;
    padding: 25px 30px;
    box-shadow: 0 5px 25px rgba(228, 137, 174, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 30px rgba(228, 137, 174, 0.18);
}

.faq-item h4 {
    color: var(--dark);
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item h4::after {
    content: '+';
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 300;
}

.faq-item p {
    color: var(--text);
    line-height: 1.7;
    display: none;
}

.faq-item.active p {
    display: block;
}

.faq-item.active h4::after {
    content: '-';
}

.list-section {
    background: var(--light-gray);
}

.list-section ul {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
}

.list-section ul li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(228, 137, 174, 0.2);
    display: flex;
    align-items: center;
    gap: 15px;
}

.list-section ul li::before {
    content: '✓';
    color: var(--primary);
    font-weight: 700;
    font-size: 1.2rem;
}

.content-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.content-list li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(228, 137, 174, 0.2);
}

.content-list li:last-child {
    border-bottom: none;
}

.content-list strong {
    color: var(--dark);
    font-size: 1.05rem;
    display: block;
    margin-bottom: 8px;
}

.content-list p {
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.safety-item {
    text-align: center;
    padding: 30px;
}

.safety-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary) 0%, #fce4ec 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary);
    font-size: 2rem;
}

.safety-item h4 {
    color: var(--dark);
    margin-bottom: 10px;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: 200px;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.15rem;
    max-width: 850px;
    margin: 0 auto 30px;
    opacity: 0.95;
    line-height: 1.7;
}

.btn-cta {
    display: inline-block;
    padding: 18px 50px;
    background-color: var(--white);
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 30px;
    transition: all 0.3s ease;
    border: 2px solid var(--white);
}

.btn-cta:hover {
    background-color: transparent;
    color: var(--white);
}

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(228, 137, 174, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(228, 137, 174, 0.5);
}

.footer {
    background: var(--dark);
    color: var(--white);
    padding: 50px 0 30px;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-cities {
    margin-bottom: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-cities-label {
    color: var(--white);
    font-size: 0.85rem;
    opacity: 0.7;
    display: block;
    margin-bottom: 12px;
}

.footer-cities-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 20px;
}

.footer-cities-list a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.85rem;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-cities-list a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer p {
    opacity: 0.6;
    font-size: 0.9rem;
}

.footer-brand {
    color: var(--white);
    text-decoration: none;
    opacity: 1;
}

.footer-brand:hover {
    text-decoration: underline;
}

@media (max-width: 992px) {
    .two-col, .two-col-reverse {
        grid-template-columns: 1fr;
    }

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

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

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

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

    .nav-links {
        display: none;
    }

    .nav-buttons {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

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

    .hero-stats {
        gap: 30px;
    }

    .search-row {
        flex-wrap: wrap;
    }

    .search-field {
        flex: 1 1 45%;
    }
}

@media (max-width: 768px) {
    .header h1 {
        font-size: 1.8rem;
    }

    .intro-section {
        padding: 40px 0;
    }

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

    .intro-section p {
        font-size: 0.95rem;
        padding: 0 15px;
    }

    .section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 1.4rem;
        margin-bottom: 30px;
    }

    .cards-grid, .testimonials-grid, .cities-grid, .safety-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .two-col, .two-col-reverse {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .three-images {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        height: auto;
    }

    .three-images .img-large {
        grid-row: span 1;
        height: 220px;
    }

    .three-images .img-small img.tall {
        height: 180px;
    }

    .content-img {
        height: 280px;
    }

    .card {
        padding: 30px 20px;
    }

    .card h3 {
        font-size: 1.15rem;
    }

    .card p {
        font-size: 0.95rem;
    }

    .testimonial-card {
        padding: 25px;
    }

    .faq-item {
        padding: 20px;
    }

    .faq-item h4 {
        font-size: 1rem;
    }

    .city-card {
        padding: 0;
    }

    .city-image {
        height: 120px;
    }

    .city-content {
        padding: 15px;
    }

    .cta-section {
        padding: 60px 0;
    }

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

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

    .btn-cta {
        padding: 15px 35px;
        font-size: 1rem;
    }

    .hero {
        padding: 80px 0 50px;
        min-height: auto;
    }

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

    .hero p {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 35px;
    }

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

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

    .hero-search {
        padding: 20px 15px;
    }

    .search-row {
        flex-direction: column;
        gap: 12px;
    }

    .search-field {
        flex: 1 1 100%;
    }

    .search-field label {
        font-size: 0.8rem;
        margin-bottom: 5px;
    }

    .search-field select {
        padding: 12px 10px;
        font-size: 0.95rem;
    }

    .btn-search {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
    }

    .trusted-section {
        padding: 20px 0;
    }

    .trusted-section .container {
        flex-direction: column;
        gap: 15px;
    }

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

    .trusted-logos {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .logo-item {
        font-size: 0.75rem;
    }

    .hero {
        padding: 70px 0 40px;
        min-height: auto;
    }

    .hero::before {
        background-size: 300% 100%;
    }

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

    .hero h1 {
        font-size: 1.6rem;
        margin-bottom: 15px;
        line-height: 1.3;
    }

    .hero p {
        font-size: 0.9rem;
        margin-bottom: 25px;
        line-height: 1.6;
        padding: 0 10px;
    }

    .hero-stats {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
        margin-bottom: 30px;
        flex-wrap: wrap;
    }

    .stat {
        flex: 0 0 auto;
        min-width: 90px;
    }

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

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

    .hero-search {
        display: none;
    }

    .hero-cta-mobile {
        display: block;
        padding: 0 20px;
        margin-top: 25px;
    }

    .btn-mobile-cta {
        display: inline-block;
        width: 100%;
        padding: 16px 30px;
        background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
        color: var(--white);
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        border-radius: 30px;
        text-align: center;
        box-shadow: 0 8px 25px rgba(228, 137, 174, 0.4);
    }

    .trusted-section {
        padding: 25px 0;
    }

    .trusted-section .container {
        flex-direction: column;
        gap: 15px;
    }

    .trusted-label {
        font-size: 0.75rem;
    }

    .trusted-logos {
        flex-wrap: wrap;
        justify-content: center;
        gap: 25px;
    }

    .logo-item img {
        height: 28px;
    }

    .footer {
        padding: 40px 0 20px;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 20px;
    }

    .footer-cities {
        margin-bottom: 20px;
    }

    .footer-cities-list {
        gap: 6px 15px;
    }

    .footer-cities-list a {
        font-size: 0.8rem;
    }

    .footer p {
        font-size: 0.85rem;
    }

    .content h3 {
        font-size: 1.2rem;
    }

    .content p {
        font-size: 0.95rem;
    }

    .list-section ul li {
        font-size: 0.95rem;
        padding: 12px 0;
    }

    .safety-item {
        padding: 20px 15px;
    }

    .safety-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .back-to-top {
        right: 20px;
        bottom: 20px;
        width: 44px;
        height: 44px;
    }
}