:root {
    --primary: #3b82f6;
    --primary-dark: #1d4ed8;
    --secondary: #f472b6;
    --dark: #1f2937;
    --light: #f9fafb;
    --danger: #dc2626;
    --danger-dark: #b91c1c;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    position: relative;
}
.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
}
.logo span {
    color: var(--secondary);
}
.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}
.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s;
}
.nav-links a:hover {
    color: var(--primary);
}
.hamburger {
    display: none;
    font-size: 1.8rem;
    color: var(--dark);
    cursor: pointer;
    padding: 0.5rem;
}
.close-menu {
    display: none;
    font-size: 1.8rem;
    color: var(--dark);
    cursor: pointer;
    padding: 0.5rem;
    position: absolute;
    top: 1rem;
    right: 1rem;
}
.nav-links.active ~ .close-menu {
    display: block;
}
.nav-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}
.btn {
    background-color: var(--primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}
.btn:hover {
    background-color: var(--primary-dark);
}
.btn-success {
    background-color: #10b981;
}
.btn-success:hover {
    background-color: #059669;
}
.btn-danger {
    background-color: var(--danger);
}
.btn-danger:hover {
    background-color: var(--danger-dark);
}
.btn:disabled {
    background-color: #9ca3af;
    cursor: not-allowed;
}
.btn.loading::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid white;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 0.5rem;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}
.error {
    color: var(--danger);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}
.success {
    color: #10b981;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}
.form-container {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}
.form-group {
    margin-bottom: 1rem;
}
.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark);
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 5px;
    font-size: 1rem;
}
.form-group textarea {
    resize: vertical;
    min-height: 100px;
}
.actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.actions form {
    display: inline-flex;
    gap: 0.5rem;
}
.actions input,
.actions select {
    padding: 0.5rem;
    font-size: 0.9rem;
    border-radius: 5px;
    border: 1px solid #d1d5db;
}
.actions .btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)) center/cover;
    color: white;
    padding: 6rem 0;
    text-align: center;
}
.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}
.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}
.services {
    padding: 5rem 0;
    background-color: white;
}
.section-title {
    text-align: center;
    margin-bottom: 3rem;
}
.section-title h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
}
.section-title .underline {
    width: 100px;
    height: 4px;
    background-color: var(--primary);
    margin: 0 auto;
}
.services-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}
@supports (display: grid) {
    .services-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}
.service-category {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    transition: transform 0.3s;
    flex: 1 1 300px;
}
.service-category:hover {
    transform: translateY(-5px);
}
.service-category h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}
.service-category h3 svg {
    margin-right: 0.5rem;
}
.service-list {
    list-style: none;
}
.service-list li {
    padding: 0.5rem 0;
    border-bottom: 1px dashed #e5e7eb;
    display: flex;
    align-items: center;
}
.service-list li:before {
    content: "▶️";
    margin-right: 0.5rem;
    color: var(--primary);
}
.about {
    padding: 5rem 0;
    background-color: #f3f4f6;
}
.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}
@supports (display: grid) {
    .about-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}
.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    flex: 1 1 300px;
}
.about-text {
    flex: 1 1 300px;
}
.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}
.about-text p {
    margin-bottom: 1rem;
    color: #4b5563;
}
.gallery {
    padding: 5rem 0;
    background-color: white;
}
.gallery-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
@supports (display: grid) {
    .gallery-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}
.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    flex: 1 1 250px;
}
.gallery-item:hover {
    transform: scale(1.03);
}
.testimonials {
    padding: 5rem 0;
    background-color: #f3f4f6;
}
.testimonial-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}
@supports (display: grid) {
    .testimonial-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}
.testimonial {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    flex: 1 1 300px;
}
.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
    color: #4b5563;
}
.testimonial-author {
    font-weight: 600;
    color: var(--primary);
}
.contact {
    padding: 5rem 0;
    background-color: white;
}
.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}
@supports (display: grid) {
    .contact-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}
.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}
.contact-info p {
    margin-bottom: 1rem;
    color: #4b5563;
    display: flex;
    align-items: center;
}
.contact-info svg {
    margin-right: 0.5rem;
    color: var(--primary);
}
.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border-radius: 5px;
    border: 1px solid #d1d5db;
    font-size: 1rem;
}
.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}
.contact-form button {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}
.contact-form button:hover {
    background-color: var(--primary-dark);
}
.contact-form button:disabled {
    background-color: #9ca3af;
    cursor: not-allowed;
}
.booking-step {
    display: none;
}
.booking-step.active {
    display: block;
}
.step-indicator {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}
.step {
    display: flex;
    align-items: center;
    margin: 0 1rem;
}
.step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #e5e7eb;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-right: 0.5rem;
}
.step.active .step-number {
    background-color: var(--primary);
    color: white;
}
.step.completed .step-number {
    background-color: #10b981;
    color: white;
}
.booking-fee-notice {
    background-color: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: 5px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}
.booking-fee-notice h4 {
    color: #92400e;
    margin-bottom: 0.5rem;
}
.booking-fee-notice p {
    color: #92400e;
    margin: 0;
    font-size: 0.9rem;
}
.payment-summary {
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 5px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}
.payment-summary h4 {
    margin-bottom: 0.5rem;
    color: var(--dark);
}
.payment-summary .total {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
    border-top: 1px solid #e5e7eb;
    padding-top: 0.5rem;
    margin-top: 0.5rem;
}
#card-element {
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 5px;
    margin-bottom: 1rem;
}
.card-errors {
    color: var(--danger);
    font-size: 0.875rem;
    margin-top: 0.5rem;
}
.success-message {
    background-color: #d1fae5;
    border: 1px solid #10b981;
    border-radius: 5px;
    padding: 2rem;
    text-align: center;
    color: #065f46;
}
.success-message h3 {
    color: #065f46;
    margin-bottom: 1rem;
}
.metrics-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
    visibility: visible;
    opacity: 1;
}
@supports (display: grid) {
    .metrics-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}
.metric-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    min-height: 100px;
    flex: 1 1 250px;
}
.metric-card h3 {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}
.metric-card p {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary);
}
.charts-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}
@supports (display: grid) {
    .charts-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}
.chart-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    flex: 1 1 300px;
}
.chart-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}
.table-container {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
table {
    width: 100%;
    border-collapse: collapse;
}
th, td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}
th {
    background-color: var(--primary);
    color: white;
}
tr:last-child td {
    border-bottom: none;
}
a[href^="tel:"] {
    color: var(--primary);
    text-decoration: none;
}
a[href^="tel:"]:hover {
    text-decoration: underline;
}
footer {
    background-color: var(--dark);
    color: white;
    padding: 3rem 0;
}
.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}
@supports (display: grid) {
    .footer-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}
.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}
.footer-col h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary);
}
.footer-col ul {
    list-style: none;
}
.footer-col ul li {
    margin-bottom: 0.5rem;
}
.footer-col ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-col ul li a:hover {
    color: var(--primary);
}
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}
.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: background-color 0.3s;
}
.social-links a:hover {
    background-color: var(--primary);
}
.copyright {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #9ca3af;
}
@media (max-width: 1024px) {
    .nav-links {
        gap: 1rem;
    }
    .nav-buttons {
        gap: 0.5rem;
    }
    .btn {
        padding: 0.4rem 1rem;
        font-size: 0.9rem;
    }
}
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background-color: white;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        padding: 1rem 0;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        z-index: 99;
    }
    .nav-links.active {
        display: flex;
    }
    .nav-links a {
        padding: 0.75rem;
        text-align: center;
        font-size: 1.1rem;
        border-bottom: 1px solid #e5e7eb;
        width: 100%;
    }
    .nav-links a:last-child {
        border-bottom: none;
    }
    .nav-buttons {
        display: none;
        flex-direction: column;
        width: 100%;
        padding: 0 1rem;
    }
    .nav-buttons.active {
        display: flex;
    }
    .nav-buttons .btn {
        width: 100%;
        text-align: center;
        margin: 0.5rem 0;
        padding: 0.75rem;
        font-size: 1.1rem;
    }
    .hamburger {
        display: block;
        z-index: 100;
    }
    .container {
        padding: 0 0.5rem;
    }
    .about-content {
        flex-direction: column;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        font-size: 0.9rem;
    }
    .charts-container {
        flex-direction: column;
    }
    .table-container {
        overflow-x: auto;
    }
    .form-container {
        padding: 1rem;
    }
    .actions {
        flex-direction: column;
        align-items: flex-start;
    }
    .actions input,
    .actions select {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    .actions .btn {
        width: 100%;
    }
}
@media (max-width: 480px) {
    .logo {
        font-size: 1.5rem;
    }
    .hamburger, .close-menu {
        font-size: 1.5rem;
    }
    .nav-links a, .nav-buttons .btn {
        font-size: 1rem;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .metric-card p {
        font-size: 1.5rem;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 0.9rem;
    }
}
.cookie-banner {
            position: fixed;
            bottom: 0;
            width: 100%;
            background: #333;
            color: white;
            padding: 10px;
            text-align: center;
            display: <?php echo isset($_SESSION['cookie_consent']) ? 'none' : 'block'; ?>;
}
.cookie-banner button {
    margin: 0 10px;
    padding: 5px 15px;
    cursor: pointer;
}