* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #2563EB;
    --dark-red: #1D4ED8;
    --light-red: #60A5FA;
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --text-dark: #1E293B;
    --text-light: #64748B;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

#particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 50%, #e0efff 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    padding: 0.8rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.6rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-red);
    font-family: 'Outfit', 'Inter', sans-serif;
    letter-spacing: -0.5px;
    text-decoration: none;
}

.logo img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-links a:hover {
    color: var(--primary-red);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-login {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    background: var(--primary-red);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-red);
}

.btn-login:hover {
    background: transparent;
    color: var(--primary-red);
    transform: translateY(-2px);
}

.btn-login i {
    font-size: 0.85rem;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-red);
}
    
.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-red);
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-red);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/WhatsApp Image 2025-12-13 at 23.12.49_f643ec1b.jpg') center center / cover no-repeat;
    opacity: 0.30;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: -1rem;
    animation: fadeInUp 0.8s ease;
    letter-spacing: -1.5px;
    text-transform: uppercase;
    font-family: 'Outfit', 'Inter', sans-serif;
    white-space: nowrap;
    margin-left: -50px;
}

.hero-subtitle {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary-red);
    color: var(--white);
    border-color: var(--primary-red);
}

.btn-primary:hover {
    background: var(--dark-red);
    border-color: var(--dark-red);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--primary-red);
    border-color: var(--primary-red);
}

.btn-outline:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

/* Section Styles */
section {
    padding: 5rem 0;
}

/* Promo Banner Section */
.promo-banner {
    background: url('images/bg2.png') center center / cover no-repeat;
    padding: 0;
    margin: 0;
    min-height: 350px;
    display: flex;
    align-items: center;
}

.promo-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5rem;
}

.promo-text {
    flex: 0.9;
    color: var(--white);
    padding-left: 2rem;
}

.promo-text h2 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-family: 'Outfit', 'Inter', sans-serif;
    letter-spacing: -1px;
}

.promo-text p {
    font-size: 1.3rem;
    opacity: 0.95;
    line-height: 1.6;
    font-weight: 500;
    letter-spacing: 0.2px;
}

.promo-image {
    flex: 1.1;
    max-width: 700px;
    margin-right: -50px;
}

.promo-image img {
    width: 200%;
    height: auto;
    display: block;
    margin-left: -140px;
}

/* Section Styles */
section {
    padding: 5rem 0;
}

/* Features Highlight Section */
.features-highlight {
    background: var(--white);
    padding: 5rem 0;
}

.services .container {
    max-width: 1600px;
    padding: 0 5rem;
}

.features-highlight-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 0;
    width: 100%;
}

.feature-highlight-card {
    background: var(--white);
    padding: 3rem 3rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #F0F0F0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.feature-highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.1);
    border-color: var(--primary-red);
}

.feature-highlight-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-highlight-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-highlight-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.4;
    font-family: 'Inter', sans-serif;
}

.feature-highlight-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* Services Image Grid */
.services-image-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.service-image-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-image-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.15);
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-image-card:hover .service-image img {
    transform: scale(1.1);
}

.service-info {
    padding: 1.5rem;
}

.service-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-family: 'Outfit', 'Inter', sans-serif;
}

.service-info p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Booking Feature Section */
.booking-feature {
    background: url('images/korter.png') center center / cover no-repeat;
    padding: 6rem 0;
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
}

.booking-feature .container {
    position: relative;
    z-index: 1;
    max-width: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
}

.booking-content {
    display: block;
    padding-left: 8%;
}

.booking-text {
    max-width: 550px;
    text-align: left;
}

.booking-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-family: 'Outfit', 'Inter', sans-serif;
}

.booking-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.booking-benefits {
    list-style: none;
    margin-bottom: 2rem;
}

.booking-benefits li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 0.8rem;
}

.booking-benefits li i {
    color: var(--light-red);
    font-size: 1.2rem;
}

.booking-spacer {
    flex: 1;
}

.booking-image {
    flex: 1;
    max-width: 500px;
}

.booking-image img {
    width: 100%;
    height: auto;
    display: block;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Services Section */
.services {
    background: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-red);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-red), var(--light-red));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: var(--primary-red);
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    background: var(--primary-red);
    color: var(--white);
    transform: scale(1.1);
}

.feature-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.feature-item p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Contact Section */
.contact {
    background: var(--light-gray);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--white);
    flex-shrink: 0;
}

.contact-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.contact-map {
    background: var(--white);
    padding: 1rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    min-height: 500px;
    height: 100%;
}

.contact-map iframe {
    width: 100%;
    min-height: 480px;
    height: 100%;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #E9ECEF;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
}

.form-group textarea {
    resize: vertical;
}

/* Reviews Section */
.reviews {
    background: var(--white);
    padding: 5rem 0;
}

.review-form-container {
    margin-bottom: 4rem;
    text-align: center;
}

.review-form-wrapper {
    max-width: 700px;
    margin: 2rem auto 0;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    display: none;
}

.review-form-wrapper.show {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.review-form {
    text-align: left;
}

.review-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.review-form .form-group {
    margin-bottom: 1.5rem;
}

.review-form label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.review-form .required {
    color: var(--primary-red);
}

.review-form input[type="text"],
.review-form input[type="email"],
.review-form textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 2px solid #E9ECEF;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.review-form input[type="text"]:focus,
.review-form input[type="email"]:focus,
.review-form textarea:focus {
    outline: none;
    border-color: var(--primary-red);
}

.review-form textarea {
    resize: vertical;
}

.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 0.3rem;
}

.star-rating input {
    display: none;
}

.star-rating label {
    cursor: pointer;
    font-size: 2rem;
    color: #E0E0E0;
    transition: all 0.2s ease;
    margin-bottom: 0;
}

.star-rating label:hover,
.star-rating label:hover ~ label {
    color: #FFB800;
    transform: scale(1.1);
}

.star-rating input:checked ~ label {
    color: #FFB800;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.form-actions .btn {
    flex: 1;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.review-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.15);
    border-color: var(--primary-red);
}

.review-card.hidden-review {
    display: none;
}

.review-card.show {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.reviewer-info {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-red), var(--light-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.reviewer-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.review-rating {
    display: flex;
    gap: 0.2rem;
}

.review-rating i {
    color: #FFB800;
    font-size: 0.9rem;
}

.review-date {
    font-size: 0.85rem;
    color: var(--text-light);
}

.review-text {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.95rem;
}

.reviews-action {
    text-align: center;
}

.reviews-action .btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

#toggleReviews i {
    transition: transform 0.3s ease;
}

#toggleReviews.active i {
    transform: rotate(180deg);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
    color: var(--white);
    padding: 4rem 0 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-column h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-family: 'Outfit', 'Inter', sans-serif;
}

.footer-about .footer-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.footer-about .footer-logo img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.footer-about .footer-logo span {
    font-size: 1.5rem;
    font-weight: 800;
    font-family: 'Outfit', 'Inter', sans-serif;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 0.8rem;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.footer-social a:hover {
    background: var(--primary-red);
    transform: translateY(-5px);
    border-color: var(--primary-red);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--light-red);
    transform: translateX(5px);
}

.footer-links a::before {
    content: '›';
    margin-right: 0.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-links a:hover::before {
    opacity: 1;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-contact i {
    color: var(--light-red);
    font-size: 1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.footer-bottom {
    text-align: center;
    padding: 2rem 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-bottom i.fa-heart {
    color: #EF4444;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.1); }
    50% { transform: scale(1); }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
    }

    .nav-right {
        display: none;
    }



    .menu-toggle {
        display: block;
    }

    .hero {
        padding-top: 80px;
        min-height: 100vh;
    }

    .hero-decoration {
        left: 50%;
        transform: translate(-50%, -50%);
        max-width: 300px;
        opacity: 0.15;
    }

    .hero .container {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .hero-content {
        padding: 0 1rem;
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .hero-title {
        font-size: 2rem;
        white-space: nowrap;
        margin: auto 0.3rem auto;
        line-height: 1.2;
        letter-spacing: -1px;
        text-align: center;
        display: inline-block;
    }

    .hero-subtitle {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        padding: 0 1rem;
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
    }

    .promo-banner {
        padding: 2rem 0;
    }

    .promo-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .promo-text {
        padding-left: 0;
        flex: none;
    }

    .promo-text h2 {
        font-size: 2rem;
        line-height: 1.3;
    }

    .promo-text p {
        font-size: 1rem;
    }

    .promo-image {
        margin-right: 0;
        max-width: 100%;
        margin-left: 0;
        flex: none;
    }

    @media (min-width: 769px) {
        .promo-image {
            margin-left: -120px;
            flex: 1.1;
            max-width: 700px;
        }
    }

    .features-highlight {
        padding: 3rem 0;
    }

    .features-highlight-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-highlight-card {
        padding: 2rem 1.5rem;
    }

    .feature-highlight-icon {
        width: 100px;
        height: 100px;
    }

    .feature-highlight-card h3 {
        font-size: 1.1rem;
    }

    .feature-highlight-card p {
        font-size: 0.9rem;
    }

    .booking-feature {
        padding: 3rem 0;
        background: #2561e8 !important;
        background-image: none !important;
    }

    .booking-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 0 1.5rem;
    }

    .booking-text {
        max-width: 100%;
        text-align: center;
    }

    .booking-text h2 {
        font-size: 2rem;
    }

    .booking-text p {
        font-size: 1rem;
    }

    .booking-benefits {
        text-align: left;
        display: inline-block;
        margin: 0 auto 2rem;
    }

    .booking-benefits li {
        font-size: 0.95rem;
    }

    .booking-text .btn {
        width: auto;
        display: inline-flex;
        padding: 1rem 2.5rem;
        margin: 0 auto;
        background: var(--white);
        color: #2561e8;
        border: 2px solid var(--white);
    }

    .booking-text .btn:hover {
        background: transparent;
        color: var(--white);
        border-color: var(--white);
    }

    .booking-image {
        max-width: 300px;
        margin: 0 auto;
    }

    .services-image-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 0.6rem;
    }

    .service-image-card {
        max-width: 100%;
        margin: 0 auto;
    }

    .service-image {
        height: 250px;
    }

    .service-info {
        padding: 1.2rem;
    }

    .service-info h3 {
        font-size: 1.1rem;
    }

    .service-info p {
        font-size: 0.85rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .review-form .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .review-form-wrapper {
        padding: 1.5rem;
    }

    .form-actions {
        flex-direction: column;
    }

    .form-actions .btn {
        width: 100%;
    }

    .review-card {
        padding: 1.5rem;
    }

    .reviewer-avatar {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .reviewer-name {
        font-size: 1rem;
    }

    .review-text {
        font-size: 0.9rem;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding-bottom: 2rem;
    }

    .footer-about {
        text-align: center;
    }

    .footer-about .footer-logo {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-column h3 {
        font-size: 1.1rem;
    }

    .footer-contact li {
        font-size: 0.85rem;
    }

    .footer-bottom {
        font-size: 0.85rem;
        padding: 1.5rem 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 2rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .footer-about .footer-logo span {
        font-size: 1.3rem;
    }

    .footer-description {
        font-size: 0.9rem;
    }
}
