* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #000000;
    background: #eeeeee;
}

.header {
    background: #000000;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    color: #ddc9b4;
    font-size: 22px;
    font-weight: bold;
}

.nav {
    display: flex;
    gap: 25px;
    align-items: center;
    flex-wrap: wrap;
}

.nav a {
    color: #eeeeee;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 16px;
}

.nav a:hover {
    color: #ddc9b4;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ddc9b4;
    transition: 0.3s;
}

.hero {
    min-height: 500px;
    max-height: 600px;
    height: 80vh;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.70), rgba(221, 201, 180, 0.5)),
        url('../images/fac88a34-ca15-425d-b64a-b47fab6060f8_xl.jpeg');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 40px 20px;
}

.hero h1 {
    font-size: clamp(24px, 6vw, 56px);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: clamp(12px, 3vw, 20px);
    max-width: 700px;
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-primary {
    background: #000000;
    color: #eeeeee;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background: #ddc9b4;
    color: #000000;
}

.btn-secondary {
    background: transparent;
    color: #eeeeee;
    padding: 12px 30px;
    border: 2px solid #ddc9b4;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: #ddc9b4;
    color: #000000;
}

.section {
    padding: 60px 20px;
    scroll-margin-top: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.about {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    background: #eeeeee;
}

.about-image {
    width: 100%;
    height: 400px;
    background: url("../images/_DSC6943.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 10px;
}

.about-text h2 {
    font-size: clamp(24px, 5vw, 42px);
    margin-bottom: 20px;
    color: #000000;
}

.about-text p {
    font-size: clamp(12px, 2.5vw, 18px);
    line-height: 1.8;
    color: #000000;
}

.services {
    background: white;
}

.services h2 {
    font-size: clamp(24px, 5vw, 42px);
    text-align: center;
    margin-bottom: 40px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.service-card {
    background: white;
    border: 1px solid #000000;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s;
}

.service-card:hover {
    background: #ddc9b4;
    transform: translateY(-5px);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: #ddc9b4;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-card h3 {
    font-size: clamp(14px, 3vw, 22px);
    margin-bottom: 15px;
}

.service-card p {
    font-size: clamp(12px, 2vw, 16px);
    line-height: 1.6;
    color: #000000;
}

.locations {
    background: #000000;
    color: #eeeeee;
    margin-top: 40px;
}

.locations h2 {
    font-size: clamp(24px, 5vw, 42px);
    text-align: center;
    margin-bottom: 40px;
    color: #eeeeee;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.location-card {
    background: #000000;
    border: 2px solid #ddc9b4;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    text-decoration: none;
    display: block;
    transition: all 0.3s;
}

.location-card:hover:not(.disabled) {
    transform: translateY(-5px);
    border-color: #eeeeee;
    box-shadow: 0 5px 20px rgba(221, 201, 180, 0.3);
    cursor: pointer;
}

.location-card.disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.location-card.disabled:hover {
    transform: none;
}

.location-pin {
    width: 50px;
    height: 50px;
    background: #ddc9b4;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.location-card h3 {
    font-size: clamp(16px, 3vw, 24px);
    margin-bottom: 10px;
    color: #ddc9b4;
}

.location-card p {
    color: white;
}

.gallery {
    background: #eeeeee;
}

.gallery h2 {
    font-size: clamp(24px, 5vw, 42px);
    text-align: center;
    margin-bottom: 40px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.consultation {
    background: #000000;
    color: #eeeeee;
    text-align: center;
}

.consultation h2 {
    font-size: clamp(24px, 5vw, 42px);
    margin-bottom: 20px;
}

.consultation p {
    font-size: clamp(12px, 2.5vw, 18px);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.footer {
    background: #000000;
    color: #eeeeee;
    padding: 40px 20px;
    text-align: center;
    margin-top: 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 30px;
    text-align: left;
}

.footer-section h3 {
    color: #ddc9b4;
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-section a {
    display: block;
    color: #eeeeee;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
    font-size: 16px;
}

.footer-section a:hover {
    color: #ddc9b4;
}

.footer-bottom {
    border-top: 1px solid #b7b7b7;
    padding-top: 20px;
    margin-top: 20px;
    font-size: 16px;
}

.book-btn-link {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 8px;
    background-color: #ddc9b4;
    color: black !important;
    text-decoration: none;
    transition: background-color 0.3s ease;
    cursor: pointer;
    font-size: 16px;
}

/* Dialog Styles */
.dialog-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.dialog-overlay.active {
    display: flex;
}

.dialog-content {
    background: white;
    border-radius: 15px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.dialog-header {
    background: #000000;
    color: #ddc9b4;
    padding: 20px;
    border-radius: 15px 15px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dialog-header h2 {
    font-size: clamp(16px, 4vw, 28px);
    margin: 0;
}

.close-btn {
    background: none;
    border: none;
    color: #ddc9b4;
    font-size: 30px;
    cursor: pointer;
    transition: transform 0.2s;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-btn:hover {
    transform: scale(1.2);
}

.dialog-body {
    padding: 30px 20px;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #000000;
    font-size: 14px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #b7b7b7;
    border-radius: 5px;
    font-size: 16px;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #ddc9b4;
}

.submit-btn {
    width: 100%;
    background: #000000;
    color: #eeeeee;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #ddc9b4;
    color: #000000;
}

.whatsapp-btn {
    width: 100%;
    background: transparent;
    color: #000000;
    padding: 15px;
    border: 2px solid #000000;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 15px;
}

.whatsapp-btn:hover {
    background: #000000;
    color: #eeeeee;
}

/* Tablet breakpoint */
@media (min-width: 768px) {
    .about {
        grid-template-columns: 1fr 1fr;
    }

    .about-image {
        height: 500px;
    }

    .section {
        padding: 80px 40px;
    }

    .dialog-body {
        padding: 40px 30px;
    }
}

/* Mobile breakpoint */
@media (max-width: 767px) {
    .header {
        padding: 15px 20px;
    }

    .logo {
        font-size: 18px;
    }

    .nav {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: #000000;
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }

    .nav.active {
        display: flex;
    }

    .nav a {
        font-size: 16px;
        width: 100%;
        text-align: center;
        padding: 10px;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        min-height: 400px;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .location-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        height: 250px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-section {
        text-align: center;
    }

    .footer-section a {
        font-size: 14px;
    }

    .footer-bottom {
        font-size: 14px;
    }

    .cta-buttons {
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .dialog-content {
        margin: 10px;
    }

    .form-group input,
    .form-group select {
        font-size: 14px;
    }
}
