/* Variables globales */
:root {
    --primary-color: #5e2ca5;
    --secondary-color: #f8d948;
    --dark-bg: #2a1758;
    --light-bg: #f5f5f7;
    --text-light: #ffffff;
    --text-dark: #333333;
    --transition: all 0.3s ease;
}

/* Reset et styles de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--light-bg);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Header et Navigation */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: var(--dark-bg);
    color: var(--text-light);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    object-fit: cover;
}

nav ul {
    display: flex;
    gap: 2rem;
}

nav a {
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition);
}

nav a:hover {
    color: var(--secondary-color);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

nav a:hover::after {
    width: 100%;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
}

.btn-primary, .btn-outline {
    padding: 0.7rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--dark-bg);
    border: none;
}

.btn-outline {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-outline:hover {
    background-color: var(--text-light);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

/* Section Hero */
.hero {
    display: flex;
    align-items: center;
    min-height: 80vh;
    padding: 2rem 5%;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--primary-color) 100%);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('apimages/search-image-e89f56cc786af.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
}

.hero-content {
    flex: 1;
    z-index: 1;
    padding-right: 2rem;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.highlight {
    color: var(--secondary-color);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-image {
    flex: 1;
    z-index: 1;
    display: flex;
    justify-content: center;
}

.hero-image img {
    max-width: 90%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Section Portfolio */
.portfolio {
    padding: 4rem 5%;
    background-color: white;
}

.portfolio-container {
    display: flex;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    background-color: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.portfolio-image {
    position: relative;
    flex: 0 0 40%;
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.portfolio-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
    border-radius: 15px 15px 0 0;
}

.portfolio-image:hover img {
    transform: scale(1.05);
}

.portfolio-consultation-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    padding: 0.7rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    font-size: 0.9rem;
}

.portfolio-consultation-btn:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.portfolio-content {
    flex: 1;
    padding: 2rem;
}

.profile-info-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 0 auto;
    margin-top: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    max-width: 90%;
    border-top: 4px solid var(--primary-color);
    text-align: center;
}

.portfolio-badge {
    display: inline-flex;
    align-items: center;
    background-color: rgba(94, 44, 165, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    margin-bottom: 1.5rem;
}

.badge-icon {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

.badge-text {
    color: var(--primary-color);
    font-weight: 600;
    margin-right: 0.5rem;
}

.badge-subtitle {
    color: var(--text-dark);
    font-size: 0.8rem;
    opacity: 0.7;
}

.portfolio-name {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
    text-align: center;
}

.portfolio-title {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 0.5rem;
    opacity: 0.8;
    text-align: center;
}

.availability-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.8rem;
}

.availability-dot {
    width: 10px;
    height: 10px;
    background-color: #4CAF50;
    border-radius: 50%;
    margin-right: 8px;
    animation: blink 1.5s infinite;
}

.availability-text {
    font-size: 0.9rem;
    color: #4CAF50;
    font-weight: 500;
}

@keyframes blink {
    0% { opacity: 0.4; }
    50% { opacity: 1; }
    100% { opacity: 0.4; }
}

.fade-in {
    animation: fadeIn 1s ease-in-out;
}

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

.slide-in-left {
    animation: slideInLeft 1.2s ease-out forwards;
}

.slide-in-right {
    animation: slideInRight 1.2s ease-out forwards;
}

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

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

.pulse {
    animation: pulse 0.8s ease-in-out;
}

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

.portfolio-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 0.7rem 1.8rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 0.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(94, 44, 165, 0.2);
    text-align: center;
    min-width: 160px;
}

.portfolio-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(94, 44, 165, 0.3);
}

.portfolio-features {
    margin-bottom: 2rem;
}

.portfolio-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.feature-highlight {
    transform: translateX(10px);
    background-color: rgba(94, 44, 165, 0.05);
    border-radius: 5px;
    padding: 5px;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: rgba(94, 44, 165, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    margin-right: 1rem;
    font-size: 0.8rem;
}

.feature-text {
    color: var(--text-dark);
    font-size: 1rem;
}

.portfolio-quote {
    background-color: rgba(94, 44, 165, 0.05);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    border-radius: 0 10px 10px 0;
    transition: all 0.5s ease;
}

.quote-glow {
    box-shadow: 0 0 15px rgba(94, 44, 165, 0.3);
    background-color: rgba(94, 44, 165, 0.1);
}

.portfolio-quote p {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.quote-author {
    display: block;
    text-align: right;
    font-weight: 600;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .portfolio-container {
        flex-direction: column;
    }
    
    .portfolio-image {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .profile-info-container {
        max-width: 85%;
        margin-top: 0.5rem;
    }
    
    .portfolio-consultation-btn {
        top: 10px;
        right: 10px;
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .pricing-container {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-card {
        width: 100%;
        max-width: 350px;
        margin-bottom: 1.5rem;
    }
    
    .pricing-card.popular {
        transform: scale(1);
        order: -1;
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }
}

/* Section Services */
.services {
    padding: 5rem 5%;
    text-align: center;
    background-color: var(--light-bg);
}

/* Section Pricing */
.pricing {
    padding: 5rem 5%;
    text-align: center;
    background-color: white;
}

.pricing h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.pricing-subtitle {
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-dark);
    font-size: 1.1rem;
    opacity: 0.8;
}

.pricing-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    width: 320px;
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.pricing-card.popular {
    border: 2px solid var(--secondary-color);
    transform: scale(1.05);
    z-index: 1;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-tag {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--secondary-color);
    color: var(--dark-bg);
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: bold;
    border-bottom-left-radius: 10px;
}

.pricing-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.price span {
    font-size: 1rem;
    font-weight: normal;
    opacity: 0.7;
}

.pricing-features {
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.pricing-features i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.btn-pricing {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
    margin-top: auto;
    border: 2px solid var(--primary-color);
}

.btn-pricing:hover {
    background-color: transparent;
    color: var(--primary-color);
    transform: translateY(-3px);
}

.services h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.services-subtitle {
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-dark);
    font-size: 1.1rem;
    opacity: 0.8;
}

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

.service-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--secondary-color);
    color: var(--dark-bg);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 2;
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h3 {
    padding: 1.5rem 1rem 0.2rem;
    color: var(--primary-color);
    margin-bottom: 0;
}

.service-price {
    color: var(--text-dark);
    font-size: 0.9rem;
    opacity: 0.7;
    display: block;
    padding: 0 1rem;
    margin-bottom: 0.8rem;
}

.service-card p {
    padding: 0 1rem 1rem;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.service-features {
    padding: 0 1rem 1rem;
    text-align: left;
}

.service-features li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.service-features li i {
    color: #4CAF50;
    margin-right: 0.5rem;
    font-size: 0.8rem;
}

.btn-service {
    background-color: var(--primary-color);
    color: white;
    padding: 0.8rem;
    text-align: center;
    border-radius: 5px;
    margin: 0 1rem 1.5rem;
    font-weight: 600;
    transition: var(--transition);
    display: block;
}

.btn-service:hover {
    background-color: var(--dark-bg);
    transform: translateY(-3px);
}

/* Section Avis Clients */
.reviews {
    padding: 5rem 5%;
    background-color: var(--light-bg);
    color: var(--text-dark);
    text-align: center;
}

.reviews h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.reviews-subtitle {
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-dark);
    font-size: 1.1rem;
    opacity: 0.8;
}

.reviews-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-dark);
    opacity: 0.7;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.review-card {
    background-color: white;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: left;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.reviewer-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
}

.reviewer-info h4 {
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.stars {
    color: #FFD700;
    font-size: 0.9rem;
}

.review-text {
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.5;
    flex-grow: 1;
}

.review-location {
    font-size: 0.8rem;
    color: var(--primary-color);
    opacity: 0.8;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Icônes de vérification */
.review-location::after {
    content: '✓';
    display: inline-block;
    color: #4CAF50;
    margin-left: 0.5rem;
}

@media (max-width: 768px) {
    .reviews-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer */
footer {
    background-color: var(--dark-bg);
    color: var(--text-light);
    padding: 3rem 5% 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.footer-logo p {
    font-size: 1.2rem;
    font-weight: bold;
}

.footer-links h4, .footer-contact h4 {
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.footer-contact p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--secondary-color);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

/* Modal de réservation */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease-out;
}

.modal-content {
    background-color: white;
    margin: 2% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideIn 0.3s ease-out;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e0e0e0;
    background-color: #f8f9fa;
    border-radius: 15px 15px 0 0;
}

.modal-header h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.close {
    color: #aaa;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.close:hover {
    color: var(--primary-color);
}

.service-summary {
    padding: 1.5rem 2rem;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
}

.service-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.service-info span {
    font-weight: 500;
}

.service-info span:last-child {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.2rem;
}

.booking-form {
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(94, 44, 165, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

.date-input,
.time-select {
    position: relative;
}

.date-input i,
.time-select i {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    pointer-events: none;
}

.consultation-types {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 0.5rem;
}

.consultation-option {
    display: flex;
    align-items: center;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: white;
}

.consultation-option:hover {
    border-color: var(--primary-color);
    background-color: rgba(94, 44, 165, 0.05);
}

.consultation-option.active {
    border-color: var(--primary-color);
    background-color: rgba(94, 44, 165, 0.1);
}

.option-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 8px;
    margin-right: 1rem;
    font-size: 1.1rem;
}

.option-content h4 {
    margin: 0 0 0.2rem 0;
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 600;
}

.option-content p {
    margin: 0;
    font-size: 0.8rem;
    color: #666;
}

.char-counter {
    text-align: right;
    font-size: 0.8rem;
    color: #666;
    margin-top: 0.5rem;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e0e0e0;
}

.btn-cancel,
.btn-confirm {
    flex: 1;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

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

.btn-cancel:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
}

.btn-confirm {
    background-color: var(--primary-color);
    color: white;
}

.btn-confirm:hover {
    background-color: var(--dark-bg);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(94, 44, 165, 0.3);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }

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

@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 1rem;
    }

    .logo {
        margin-bottom: 1rem;
    }

    nav ul {
        gap: 1rem;
        margin: 1rem 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
    
    /* Modal responsive */
    .modal-content {
        width: 95%;
        margin: 5% auto;
        max-height: 95vh;
    }
    
    .modal-header {
        padding: 1rem 1.5rem;
    }
    
    .modal-header h2 {
        font-size: 1.3rem;
    }
    
    .service-summary {
        padding: 1rem 1.5rem;
    }
    
    .service-info {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .booking-form {
        padding: 1.5rem;
    }
    
    .consultation-types {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .btn-cancel,
    .btn-confirm {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary, .btn-outline {
        width: 100%;
        text-align: center;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
}