/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --sea-blue: #0ea5e9;
    --sand-beige: #fef3c7;
    --palm-green: #22c55e;
    --coral-orange: #f97316;
    --sunset-pink: #ec4899;
    --blue-600: #2563eb;
    --blue-700: #1d4ed8;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-900: #111827;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
    color: var(--gray-900);
    background: linear-gradient(to bottom right, #f0f9ff, #dbeafe);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: var(--sea-blue);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0284c7;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.animate-bounce {
    animation: bounce 2s infinite;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.3s;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    transition: color 0.3s;
}

.navbar.scrolled .logo-text {
    color: var(--blue-600);
}

.nav-links-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
}

.nav-links-desktop a {
    font-weight: 500;
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.navbar.scrolled .nav-links-desktop a {
    color: var(--gray-700);
}

.nav-links-desktop a:hover {
    color: var(--blue-500);
}

.nav-phone-desktop {
    display: none;
    align-items: center;
}

.phone-link {
    display: flex;
    align-items: center;
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.navbar.scrolled .phone-link {
    color: var(--gray-700);
}

.phone-icon {
    width: 20px;
    height: 20px;
    margin-right: 0.5rem;
}

.nav-cta-desktop {
    display: none;
}

.btn-book-now {
    background: var(--blue-600);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-book-now:hover {
    background: var(--blue-700);
    transform: scale(1.05);
}

.nav-mobile-toggle {
    display: block;
}

.mobile-menu-btn {
    padding: 0.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--white);
    transition: color 0.3s;
}

.navbar.scrolled .mobile-menu-btn {
    color: var(--gray-700);
}

.menu-icon,
.close-icon {
    width: 24px;
    height: 24px;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    z-index: 40;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-top: 1px solid var(--gray-200);
}

.mobile-menu.active {
    display: block;
}

.mobile-menu-content {
    padding: 1.5rem;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-link {
    display: block;
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-100);
    transition: color 0.3s;
}

.mobile-link:hover {
    color: var(--blue-600);
}

.mobile-menu-phone {
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
    margin-top: 1rem;
}

.mobile-phone-link {
    display: flex;
    align-items: center;
    color: var(--gray-700);
    text-decoration: none;
    padding: 0.5rem 0;
    transition: color 0.3s;
}

.mobile-phone-link:hover {
    color: var(--blue-600);
}

.mobile-menu-cta {
    padding-top: 1rem;
    margin-top: 1rem;
}

.btn-book-now-mobile {
    width: 100%;
    background: var(--blue-600);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-book-now-mobile:hover {
    background: var(--blue-700);
    transform: scale(1.05);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.hero-text-container {
    text-align: center;
    color: var(--white);
    padding: 1rem;
    max-width: 1024px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    animation: fadeIn 0.8s ease-out;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 512px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeIn 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
    animation: fadeIn 0.8s ease-out 0.4s forwards;
    opacity: 0;
}

.btn-hero {
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-size: 1.125rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--white);
    color: var(--blue-600);
}

.btn-primary:hover {
    background: var(--gray-100);
    transform: scale(1.05);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--blue-600);
    transform: scale(1.05);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    animation: fadeIn 0.8s ease-out 0.4s forwards;
    opacity: 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Slider Controls */
.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 0.5rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 9999px;
    border: none;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.75);
}

.slider-dot.active {
    background: var(--white);
    transform: scale(1.25);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    color: var(--white);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: color 0.3s;
    padding: 0.5rem;
}

.slider-arrow:hover {
    color: #bfdbfe;
}

.slider-arrow svg {
    width: 32px;
    height: 32px;
}

.slider-arrow-left {
    left: 1rem;
}

.slider-arrow-right {
    right: 1rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    color: var(--white);
    animation: bounce 2s infinite;
}

.scroll-indicator svg {
    width: 24px;
    height: 24px;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background: var(--white);
}

.service-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.service-card {
    background: var(--white);
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.5s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.service-card-image {
    height: 192px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 1rem;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-card-content {
    padding: 1.5rem;
    background: var(--white);
}

.service-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.service-card-description {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.service-feature-item {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: var(--gray-600);
}

.check-icon {
    width: 16px;
    height: 16px;
    color: var(--palm-green);
    margin-right: 0.5rem;
    flex-shrink: 0;
}

.service-card-pricing {
    border-top: 1px solid var(--gray-200);
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-price {
    display: flex;
    flex-direction: column;
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 700;
}

.price-period {
    color: var(--gray-500);
    font-size: 0.875rem;
}

.btn-book {
    background: var(--blue-600);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-book:hover {
    background: var(--blue-700);
    transform: scale(1.05);
}

.additional-services {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 4rem;
}

.service-feature {
    text-align: center;
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: 0.75rem;
    transition: all 0.3s;
}

.service-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--blue-100);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    color: var(--blue-600);
}

.service-feature h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.service-feature p {
    color: var(--gray-600);
    font-size: 0.875rem;
}

/* Booking Section */
.booking-section {
    padding: 5rem 0;
    background: var(--gray-50);
}

.booking-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.booking-card {
    background: var(--white);
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.5s;
}

.booking-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.booking-card-image {
    height: 192px;
    overflow: hidden;
}

.booking-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.booking-card-content {
    padding: 1.5rem;
}

.booking-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.booking-card-buttons {
    display: flex;
    gap: 0.75rem;
}

.btn-call {
    flex: 1;
    background: var(--coral-orange);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-call:hover {
    background: #ea580c;
    transform: scale(1.05);
}

.btn-whatsapp {
    flex: 1;
    background: #15803d;
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-whatsapp:hover {
    background: #166534;
    transform: scale(1.05);
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--gray-600);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding-top: 1.5rem;
}

.about-stat {
    text-align: center;
}

.stat-value {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.about-stat:nth-child(1) .stat-value {
    color: var(--blue-600);
}

.about-stat:nth-child(2) .stat-value {
    color: var(--palm-green);
}

.about-stat:nth-child(3) .stat-value {
    color: var(--coral-orange);
}

.about-stat:nth-child(4) .stat-value {
    color: #9333ea;
}

.stat-desc {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.about-card {
    position: relative;
}

.about-card-content {
    background: linear-gradient(to bottom right, var(--blue-600), #1d4ed8);
    border-radius: 1rem;
    padding: 2rem;
    color: var(--white);
}

.about-icon {
    width: 96px;
    height: 96px;
    margin: 0 auto 1.5rem;
    opacity: 0.8;
    display: block;
}

.about-card-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}

.about-features {
    list-style: none;
    text-align: left;
}

.about-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.about-features svg {
    width: 20px;
    height: 20px;
    margin-right: 0.75rem;
    color: #4ade80;
    flex-shrink: 0;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: var(--gray-50);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.testimonial-stars {
    display: flex;
    margin-bottom: 1rem;
}

.star {
    color: #fbbf24;
    font-size: 1.25rem;
}

.testimonial-text {
    color: var(--gray-600);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-weight: 600;
}

.testimonial-author:nth-child(1) .testimonial-avatar {
    background: var(--blue-100);
    color: var(--blue-600);
}

.author-name {
    font-weight: 600;
    color: var(--gray-900);
}

.author-location {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: var(--gray-50);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

.contact-info > p {
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-item:nth-child(1) .contact-icon {
    background: var(--blue-100);
    color: var(--blue-600);
}

.contact-item:nth-child(2) .contact-icon {
    background: var(--palm-green);
    color: #15803d;
}

.contact-item:nth-child(3) .contact-icon {
    background: #fed7aa;
    color: var(--coral-orange);
}

.contact-item:nth-child(4) .contact-icon {
    background: #e9d5ff;
    color: #9333ea;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-label {
    font-weight: 600;
    color: var(--gray-900);
}

.contact-value {
    color: var(--gray-600);
}

.contact-form-container {
    background: var(--white);
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

.contact-form-container h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: 0.5rem;
    transition: all 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue-500);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
}

.btn-submit {
    width: 100%;
    background: var(--blue-600);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: var(--blue-700);
    transform: scale(1.05);
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 50;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.floating-btn {
    width: 56px;
    height: 56px;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.floating-btn:hover {
    transform: scale(1.1);
}

.floating-btn svg {
    width: 24px;
    height: 24px;
}

.floating-btn-call {
    background: #dc2626;
    color: var(--white);
}

.floating-btn-call:hover {
    background: #b91c1c;
}

.floating-btn-whatsapp {
    background: #25d366;
    color: var(--white);
}

.floating-btn-whatsapp:hover {
    background: #128c7e;
}

/* Footer */
.footer {
    background: linear-gradient(to bottom right, var(--blue-600), #1e40af);
    color: var(--white);
    padding: 2rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-col h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-col p {
    color: #bfdbfe;
    margin-bottom: 0.5rem;
}

.footer-col ul {
    list-style: none;
    color: #bfdbfe;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social a {
    color: #bfdbfe;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: var(--white);
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    border-top: 1px solid #3b82f6;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: #bfdbfe;
    font-size: 0.875rem;
}

/* Responsive Design */
@media (min-width: 640px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: row;
    }
    
    .service-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .booking-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .additional-services {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: row;
        text-align: left;
    }
}

@media (min-width: 768px) {
    .nav-links-desktop {
        display: flex;
    }
    
    .nav-phone-desktop {
        display: flex;
    }
    
    .nav-cta-desktop {
        display: block;
    }
    
    .nav-mobile-toggle {
        display: none;
    }
    
    .service-cards-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .booking-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .additional-services {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .about-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .contact-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
    
    .nav-container {
        padding: 0 2rem;
    }
    
    .container {
        padding: 0 2rem;
    }
}

/* Utility Classes */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

