/* ========================================
   CSS CUSTOM PROPERTIES (COLORS)
   ======================================== */
:root {
    /* Primary Colors - Custom Blue */
    --primary-color: #4080a3;
    --primary-dark: #336682;
    --primary-light: #5a9bc4;
    --primary-lighter: #7db6d5;
    
    /* Secondary Colors - Sophisticated Neutral */
    --secondary-color: #64748b;
    --secondary-light: #94a3b8;
    --secondary-lighter: #cbd5e1;
    
    /* Background Colors - Clean, Modern */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --bg-hero: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    --bg-about: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    --bg-booking: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    --bg-footer: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    
    /* Text Colors - High Contrast, Professional */
    --text-primary: #0f172a;
    --text-secondary: #334155;
    --text-tertiary: #64748b;
    --text-light: #94a3b8;
    --text-white: #ffffff;
    
    /* Border Colors - Subtle, Modern */
    --border-light: #e2e8f0;
    --border-medium: #cbd5e1;
    --border-dark: #4080a3;
    
    /* Status Colors - Modern, Accessible */
    --success-color: #059669;
    --success-dark: #047857;
    --error-color: #dc2626;
    --warning-color: #d97706;
    --info-color: #4080a3;
    
    /* Cookie Colors - Professional Theme */
    --cookie-bg: linear-gradient(135deg, #4080a3, #336682);
    --cookie-accept: #4080a3;
    --cookie-accept-hover: #336682;
    --cookie-essential: #d97706;
    --cookie-essential-hover: #b45309;
    --cookie-cancel: #dc2626;
    --cookie-cancel-hover: #da190b;
    
    /* Shadow Colors */
    --shadow-light: rgba(0, 0, 0, 0.05);
    --shadow-medium: rgba(0, 0, 0, 0.1);
    --shadow-dark: rgba(0, 0, 0, 0.15);
    --shadow-primary: rgba(114, 148, 116, 0.3);
    --shadow-success: rgba(72, 187, 120, 0.3);
    
    /* Link Colors */
    --link-color: #8B5A3C;
    --link-hover: #6B4423;
    --link-visited: #A67C52;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Cookie Consent Styles */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--cookie-bg);
    color: var(--text-primary);
    padding: 20px;
    box-shadow: 0 -4px 20px var(--shadow-medium);
    z-index: 1000;
    font-family: 'Poppins', sans-serif;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-text h4 {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 600;
}

.cookie-text p {
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.cookie-text a {
    color: var(--text-primary);
    text-decoration: underline;
    font-weight: 500;
}

.cookie-text a:hover {
    color: #F0F8F0;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-buttons button {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

/* Consolidated Button Styles */
.btn-accept,
.btn-essential,
.btn-settings,
.btn-save,
.btn-cancel,
.btn-primary,
.btn-secondary {
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid;
}

.btn-accept,
.btn-primary {
    background: var(--primary-color);
    color: var(--text-white);
    border-color: var(--primary-color);
}

.btn-primary,
a.btn-primary {
    color: var(--text-white) !important;
}

.btn-primary a,
a.btn-primary {
    color: var(--text-white) !important;
}

.btn-accept:hover,
.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    text-decoration: none;
    color: var(--text-white) !important;
}

.btn-essential,
.btn-secondary {
    background: var(--text-white);
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-essential:hover,
.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--text-white);
    border-color: var(--primary-color);
    text-decoration: none;
}

.btn-settings {
    background: transparent;
    color: var(--text-white);
    border-color: var(--text-white);
}

.btn-settings:hover {
    background: var(--text-white);
    color: var(--primary-color);
    text-decoration: none;
}

.btn-save {
    background: var(--primary-color);
    color: var(--text-white);
    border-color: var(--primary-color);
    margin-right: 10px;
}

.btn-save:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    text-decoration: none;
}

.btn-cancel {
    background: var(--text-white);
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-cancel:hover {
    background: var(--primary-color);
    color: var(--text-white);
    border-color: var(--primary-color);
    text-decoration: none;
}

/* Cookie Settings Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    padding: 20px;
}

/* Bonus Psicologo Modal */
.bonus-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1002;
    padding: 20px;
}

.bonus-modal-content {
    background: var(--bg-primary);
    border-radius: 12px;
    padding: 24px;
    width: 100%;
    max-width: 520px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    position: relative;
}

.bonus-modal-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.bonus-modal-header i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.bonus-modal-content h3 {
    margin: 0;
    font-weight: 400;
    color: var(--text-primary);
}

.bonus-modal-content p {
    color: var(--text-secondary);
    margin: 0 0 16px 0;
}

.bonus-modal-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.bonus-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    color: var(--text-tertiary);
    font-size: 1.1rem;
    cursor: pointer;
}

@media (max-width: 480px) {
    .bonus-modal-actions {
        flex-direction: column;
        align-items: stretch;
    }
}

.modal-content {
    background: white;
    border-radius: 12px;
    padding: 30px;
    max-width: 500px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.modal-content h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 600;
}

.cookie-option {
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #f9f9f9;
}

.cookie-option label {
    display: block;
    cursor: pointer;
}

.cookie-option input[type="checkbox"] {
    margin-right: 10px;
    transform: scale(1.2);
}

.cookie-option strong {
    color: #333;
    font-size: 16px;
    display: block;
    margin-bottom: 5px;
}

.cookie-option p {
    color: #666;
    font-size: 14px;
    margin: 0;
    line-height: 1.4;
}


/* Form Row Styles */
.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

/* Booking Layout */
.booking-container {
    display: flex;
    gap: 2rem;
    align-items: stretch; /* Make both sections same height */
}

.booking-main {
    flex: 2;
    min-width: 0; /* Allows flex item to shrink below content size */
}

.booking-info {
    flex: 1;
    min-width: 300px;
    background: var(--bg-primary);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px var(--shadow-light);
}

/* Calendly Widget Styles */
.calendly-inline-widget {
    border-radius: 8px;
    overflow: hidden;
    /* Removed background and box-shadow - let it be transparent */
}

/* Contact Form Section */
.contact-form-section {
    background: var(--bg-secondary);
    padding: 4rem 0;
}

.contact-form-container {
    background: var(--bg-primary);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px var(--shadow-light);
    max-width: 800px;
    margin: 0 auto;
}

/* Contact Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

/* Consolidated Form Group Styles */
.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row .form-group {
    margin-bottom: 0;
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    flex-shrink: 0;
}

.checkbox-label a {
    color: var(--primary-color);
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* Cookie Message for Calendly */
.cookie-message {
    background: var(--bg-primary);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    margin: 2rem 0;
}

.cookie-message p {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin: 0 0 1rem 0;
}

.cookie-message button {
    margin: 0.5rem;
}

@media (max-width: 480px) {
    .cookie-message button {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
}

/* Responsive Design for Booking Section */
@media (max-width: 768px) {
    .booking-container {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .booking-main {
        flex: none;
    }
    
    .booking-info {
        flex: none;
        min-width: auto;
    }
    
    .contact-form-container {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .checkbox-group {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* Responsive Design for Cookie Consent */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    .cookie-buttons button {
        flex: 1;
        min-width: 120px;
    }
    
    .modal-content {
        margin: 20px;
        padding: 20px;
    }
}

html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Firefox scrollbar */
html {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--bg-secondary);
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
}

/* Link Styles */
a {
    color: var(--link-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--link-hover);
    text-decoration: underline;
}

a:visited {
    color: var(--link-visited);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

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


/* Hamburger Menu */
.hamburger {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    gap: 4px;
    z-index: 1000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hamburger:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.05);
}

.bar {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Navigation Menu */
.mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav.active {
    left: 0;
}

.mobile-nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

.mobile-nav-item {
    margin: 1.5rem 0;
}

.mobile-nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    display: block;
    padding: 1rem 2rem;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}


.mobile-nav-link:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
    background: rgba(64, 128, 163, 0.1);
}

/* Hero Section */
.hero {
    padding: 0;
    background: var(--bg-hero);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-image: url('images/IMG_9943.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    animation: fadeInUp 1s ease-out;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.hero-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    flex: 1;
}

.hero-content {
    max-width: 560px;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 300;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    line-height: 1.1;
    font-family: 'Source Sans Pro', sans-serif;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: slideInLeft 1.2s ease-out 0.3s both;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--text-white);
    font-weight: 500;
    margin-bottom: 0.5rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    animation: slideInLeft 1.2s ease-out 0.5s both;
    font-family: 'Source Sans Pro', sans-serif;
}

.hero-tagline {
    font-size: 1.6rem;
    color: var(--text-white);
    font-weight: 400;
    margin-bottom: 1.5rem;
    font-style: italic;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    animation: slideInLeft 1.2s ease-out 0.7s both;
    font-family: 'Source Sans Pro', sans-serif;
}

.hero-description {
    font-size: 1.1rem;
    color: #2c2c2c;
    margin-bottom: 2rem;
    line-height: 1.7;
    text-shadow: none;
    animation: slideInLeft 1.2s ease-out 0.9s both;
}

.hero-logos {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
    animation: fadeInUp 1.2s ease-out 1s both;
}

.logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 120px;
}

.logo-item i {
    font-size: 2rem;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    transition: transform 0.3s ease, color 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.logo-item span {
    font-size: 0.9rem;
    color: var(--text-white);
    font-weight: 500;
    line-height: 1.3;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.logo-item:hover i {
    transform: scale(1.1);
    color: var(--primary-light);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    animation: slideInLeft 1.2s ease-out 1.1s both;
}

/* Base Button Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    min-width: 200px;
}

.btn-secondary {
    min-width: 200px;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-photo {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    box-shadow: 0 20px 40px rgba(44, 90, 160, 0.3);
    border: 4px solid white;
    transition: transform 0.3s ease;
    animation: slideInRight 1.2s ease-out 0.5s both;
}

.hero-photo:hover {
    transform: scale(1.05);
    animation: float 2s ease-in-out infinite;
}

/* Read More Button Styles */
.read-more-btn {
    background: var(--primary-color);
    color: var(--text-white);
    border: 2px solid var(--primary-color);
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 1.5rem 0;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
}

.read-more-btn:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    text-decoration: none;
}

.read-more-btn:active {
    transform: translateY(0);
}

.read-more-btn i {
    transition: transform 0.3s ease;
}

/* Center only the read more button */
.about-text {
    text-align: left;
}

.read-more-btn {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
}

.about-expanded {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Desktop Hero Enhancements */
@media (min-width: 1024px) {
    .hero {
        padding: 0;
        min-height: 90vh;
    }
    
    .hero-container {
        max-width: 1200px;
        gap: 4rem;
    }
    
    .hero-content {
        max-width: 600px;
    }
    
    .hero-content h1 {
        font-size: 4.5rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-tagline {
        font-size: 1.4rem;
        margin-bottom: 2rem;
    }
    
    .hero-description {
        font-size: 1.2rem;
        margin-bottom: 2.5rem;
        line-height: 1.8;
    }
    
    .hero-buttons {
        gap: 1.5rem;
    }
    
    .btn {
        padding: 15px 35px;
        font-size: 1.1rem;
    }
    
    .hero-photo {
        width: 350px;
        height: 350px;
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.02em;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 1px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 80px 0;
    background: var(--bg-about);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-photo {
    width: 100%;
    max-width: 280px;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 20px 40px var(--shadow-medium);
    transition: transform 0.3s ease;
}

.about-photo:hover {
    transform: scale(1.02);
}

.about-text h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    letter-spacing: -0.01em;
    position: relative;
    padding-left: 20px;
}

.about-text h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 30px;
    background: linear-gradient(180deg, var(--primary-color), var(--primary-light));
    border-radius: 2px;
}

.about-title {
    font-size: 1.2rem;
    color: var(--text-tertiary);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.credentials {
    margin-top: 2rem;
}

.credential {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.credential i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.credential h4 {
    color: var(--text-primary);
    font-weight: 400;
    margin-bottom: 0.3rem;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.01em;
}

.credential p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
}

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

.credential-list li {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.5;
}

.credential-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.about-image {
    display: flex;
    justify-content: center;
}

.about-placeholder {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 3rem;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: var(--bg-primary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    animation: fadeInUp 0.8s ease-out;
}

.service-card:nth-child(1) {
    animation-delay: 0.1s;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.3s;
}

.service-card:nth-child(4) {
    animation-delay: 0.4s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px var(--shadow-medium);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.01em;
    position: relative;
    padding-bottom: 8px;
}

.service-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 1px;
    background: var(--primary-color);
    border-radius: 1px;
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
}

.service-features li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Booking Section */
.booking {
    padding: 80px 0;
    background: var(--bg-booking);
}

.booking-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.booking-form {
    background: var(--bg-tertiary);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-medium);
}


/* Modern Select Dropdown */
.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23729474' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
    cursor: pointer;
    position: relative;
}

.form-group select:hover {
    border-color: var(--primary-light);
    background-color: var(--bg-secondary);
}

.form-group select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(114, 148, 116, 0.1);
    background-color: var(--bg-primary);
}

.form-group select option {
    padding: 12px 16px;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    border: none;
}

.form-group select option:hover {
    background-color: var(--bg-secondary);
}

.form-group select option:checked {
    background-color: var(--primary-color);
    color: var(--text-primary);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.2rem;
}

.checkbox-group label {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.btn-full {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
}

.booking-info {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 2rem;
    border-radius: 12px;
}

.booking-info h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 300;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.01em;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.info-item i {
    color: var(--text-white);
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.info-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.01em;
    color: var(--text-white);
}

.info-item p {
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.9;
    color: var(--text-white);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--bg-primary);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.contact-item h3 {
    color: var(--text-primary);
    font-weight: 400;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.01em;
}

.contact-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-map {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-map iframe {
    width: 100%;
    height: 300px;
    border-radius: 12px;
    box-shadow: 0 4px 12px var(--shadow-medium);
    transition: transform 0.3s ease;
}

.contact-map iframe:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--shadow-dark);
}

/* Footer */
.footer {
    background: var(--bg-footer);
    color: var(--text-primary);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.01em;
}

.footer-section p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid var(--border-dark);
    padding-top: 1rem;
    text-align: center;
    color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 3.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
    }

    .hero-logos {
        gap: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .logo-item {
        min-width: 100px;
    }
    
    .logo-item i {
        font-size: 1.8rem;
    }
    
    .logo-item span {
        font-size: 0.8rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .booking-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .hero-photo {
        width: 250px;
        height: 250px;
    }

    .about-placeholder {
        font-size: 2rem;
    }
    
    .about-photo {
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 0;
    }

    .hero-content h1 {
        font-size: 2.6rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-tagline {
        font-size: 1rem;
    }
    
    .hero-photo {
        width: 200px;
        height: 200px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .service-card,
    .booking-form,
    .booking-info {
        padding: 1.5rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .about-photo {
        max-width: 150px;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}


/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .footer {
        padding: 2rem 0 1rem;
    }
}

/* Loading State */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid var(--info-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Success Message */
.success-message {
    display: none;
    background: linear-gradient(135deg, var(--success-color), var(--success-dark));
    color: var(--text-primary);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 500;
    box-shadow: 0 4px 12px var(--shadow-success);
    animation: slideInDown 0.5s ease;
}


/* Form Loading State */
.booking-form.loading {
    position: relative;
    pointer-events: none;
}

.booking-form.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(45, 55, 72, 0.6);
    border-radius: 12px;
    z-index: 10;
}

.booking-form.loading .btn-primary {
    background: #a0a0a0;
    cursor: not-allowed;
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    z-index: 10000;
    max-width: 300px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.notification-success {
    background: var(--success-color);
}

.notification-error {
    background: var(--error-color);
}

.notification-warning {
    background: var(--warning-color);
}

.notification-info {
    background: var(--primary-color);
}

/* Mobile Notification */
@media (max-width: 768px) {
    .notification {
        right: 10px;
        left: 10px;
        max-width: none;
    }
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}
