/* CSS Variables for consistent theming */
:root {
    --primary-color: #a08a6a;
    --primary-dark: #8a765a;
    --accent-color: #d4af37;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #fafafa;
    --bg-section: #f5f5f5;
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 5px 20px rgba(0, 0, 0, 0.12);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

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

/* Animations */
@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);
    }
}

.animate-on-scroll {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
    box-shadow: var(--shadow-light);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    background: var(--primary-dark);
}

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

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

/* Header */
header {
    background: white;
    padding: 20px 0;
    box-shadow: var(--shadow-light);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

header.scrolled {
    padding: 15px 0;
    box-shadow: var(--shadow-medium);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin: 0;
}

.logo p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
    font-weight: 300;
}

/* Navigation */
nav ul {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}

nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

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

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

nav .btn {
    margin-left: 20px;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero offer styling - subtle */
.hero-offer-subtle {
    color: var(--accent-color) !important;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 20px;
    padding: 12px 20px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
    backdrop-filter: blur(5px);
}

/* Services improvements */
.availability-notice-subtle {
    text-align: center;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 1rem;
    margin-bottom: 30px;
    padding: 12px;
    background: rgba(160, 138, 106, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(160, 138, 106, 0.2);
}

.service-item.popular {
    position: relative;
    border: 2px solid var(--accent-color);
    transform: scale(1.02);
}

.service-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(45deg, #FF6B35, #F7931E);
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 2px 10px rgba(255, 107, 53, 0.3);
}

.guarantee {
    color: #28a745;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 10px;
    padding: 8px;
    background: rgba(40, 167, 69, 0.1);
    border-radius: 5px;
    text-align: center;
}

/* Hero Section */
#hero {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                url('office/big/IMG_8730.jpeg') no-repeat center center/cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    margin-top: 80px;
    position: relative;
}

#hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--bg-light));
}

#hero h2 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

#hero p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.2s both;
}

/* Hero buttons container */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-buttons .btn {
    min-width: 200px;
}

.hero-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.hero-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--accent-color);
    color: var(--accent-color);
}

/* About Section */
#about {
    padding: 80px 0;
    background: white;
}

#about h3 {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

#about h3::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-color);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

.about-image img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Course Section */
.course-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.course-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    pointer-events: none;
}

.course-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.course-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent-color);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-medium);
    animation: pulse 2s infinite;
}

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

.course-section h3 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.course-section h4 {
    color: var(--accent-color);
    font-size: 1.4rem;
    margin-bottom: 40px;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.course-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.highlight-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.highlight-item i {
    color: var(--accent-color);
    font-size: 1.5rem;
    min-width: 24px;
}

.highlight-item span {
    font-size: 1rem;
    font-weight: 500;
}

.course-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
    text-align: left;
}

.course-column {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.course-column h5 {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.course-column ul {
    list-style: none;
    padding: 0;
}

.course-column li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.course-column li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.course-cta {
    text-align: center;
}

.course-motto {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.course-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.course-btn {
    min-width: 250px;
    font-size: 1.1rem;
    padding: 16px 32px;
    position: relative;
    overflow: hidden;
}

.course-btn.btn-secondary {
    background: var(--accent-color);
    color: white;
    border: 2px solid var(--accent-color);
}

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

.course-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments for course section */
@media (max-width: 768px) {
    .course-section h3 {
        font-size: 2rem;
    }
    
    .course-section h4 {
        font-size: 1.2rem;
    }
    
    .course-highlights {
        grid-template-columns: 1fr;
    }
    
    .course-details {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .course-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .course-btn {
        min-width: 280px;
    }
    
    .highlight-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .course-section {
        padding: 60px 0;
    }
    
    .course-section h3 {
        font-size: 1.8rem;
    }
    
    .course-btn {
        min-width: 100%;
        font-size: 1rem;
    }
}

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

#services h3 {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

#services h3::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-color);
}

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

.service-item {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--accent-color);
    transform: translateX(-100%);
    transition: transform 0.3s;
}

.service-item:hover::before {
    transform: translateX(0);
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.service-item h4 {
    color: var(--text-dark);
    margin-bottom: 15px;
}

.service-item .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-item .duration {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.service-item .description {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Lazy loading styles */
.lazy-bg {
    background-color: #f5f5f5;
    background-image: linear-gradient(45deg, #f0f0f0 25%, transparent 25%), linear-gradient(-45deg, #f0f0f0 25%, transparent 25%), linear-gradient(45deg, transparent 75%, #f0f0f0 75%), linear-gradient(-45deg, transparent 75%, #f0f0f0 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    transition: background-image 0.3s ease;
}

.lazy-bg.loaded {
    background-image: none;
}

/* Gallery Section */
#gallery, #studio {
    padding: 80px 0;
    background: white;
}

#gallery h3, #studio h3 {
    margin-bottom: 50px;
    position: relative;
}

#gallery h3::after, #studio h3::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-grid a {
    display: block;
    height: 250px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.gallery-grid a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    transition: var(--transition);
}

.gallery-grid a:hover::before {
    background: rgba(212, 175, 55, 0.2);
}

.gallery-grid a:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-hover);
}

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

#contact h3 {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

#contact h3::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-color);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow-light);
}

.contact-info h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info i {
    color: var(--accent-color);
    width: 20px;
}

.social-links {
    margin-top: 30px;
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--bg-section);
    border-radius: 50%;
    color: var(--primary-color);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-3px);
}

.map-container {
    margin-top: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.booking-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow-light);
    text-align: center;
}

.booking-card h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.booking-card p {
    margin-bottom: 30px;
}

.booking-card .btn {
    width: 100%;
    font-size: 1.2rem;
    padding: 18px;
}

/* Footer */
footer {
    background: var(--text-dark);
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h4 {
    color: var(--accent-color);
    margin-bottom: 20px;
}

.footer-section p, .footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Modal Improvements */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    margin: auto;
    padding: 20px;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.modal img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 5px;
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    padding: 10px 15px;
    transition: var(--transition);
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-nav:hover {
    background: rgba(0, 0, 0, 0.4);
    color: white;
}

.modal-prev { left: 10px; }
.modal-next { right: 10px; }

@media (max-width: 768px) {
    .modal-nav {
        font-size: 1.5rem;
        width: 40px;
        height: 40px;
        padding: 8px;
        background: rgba(0, 0, 0, 0.15);
    }
    
    .modal-prev { left: 5px; }
    .modal-next { right: 5px; }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 3rem;
    color: white;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

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

@media (max-width: 768px) {
    .modal-close {
        position: fixed;
        top: auto;
        bottom: 30px;
        right: 30px;
        font-size: 2.5rem;
        background: rgba(0, 0, 0, 0.5);
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: 1;
    }
}

/* Reviews Section */
#reviews {
    padding: 80px 0;
    background: var(--bg-section);
}

#reviews h3 {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

#reviews h3::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-color);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.reviews-stats {
    text-align: center;
    color: #28a745;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 40px;
    padding: 15px;
    background: rgba(40, 167, 69, 0.1);
    border-radius: 10px;
    border: 2px solid rgba(40, 167, 69, 0.2);
}

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

.review-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    position: relative;
}

.review-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.review-item::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--accent-color);
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.review-header {
    margin-bottom: 20px;
}

.review-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.review-rating {
    color: var(--accent-color);
}

.review-item p {
    font-style: italic;
    line-height: 1.6;
    color: var(--text-light);
}

/* FAQ Section */
#faq {
    padding: 80px 0;
    background: white;
}

#faq h3 {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

#faq h3::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-color);
}

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

.faq-item {
    background: var(--bg-section);
    padding: 30px;
    border-radius: 10px;
    transition: var(--transition);
}

.faq-item:hover {
    background: white;
    box-shadow: var(--shadow-light);
}

.faq-item h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-item h4 i {
    color: var(--accent-color);
}

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

/* Hero Features */
.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.hero-feature i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

/* About text improvements */
.about-text ul {
    list-style: none;
    padding: 0;
}

.about-text li {
    padding: 8px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.about-text li i {
    color: var(--accent-color);
    margin-top: 4px;
    font-size: 0.9rem;
}

/* Booking note styling */
.booking-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 20px;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.5rem; }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        transition: left 0.3s;
        box-shadow: var(--shadow-medium);
    }
    
    nav.active {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
        padding: 40px 20px;
        gap: 20px;
    }
    
    nav .btn {
        margin-left: 0;
        width: 100%;
    }
    
    #hero {
        min-height: 80vh;
    }
    
    #hero h2 {
        font-size: 2.5rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .gallery-grid a {
        height: 200px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hero-buttons .btn {
        min-width: 280px;
    }
}

@media (max-width: 480px) {
    .container {
        width: 95%;
        padding: 0 10px;
    }
    
    #hero h2 {
        font-size: 2rem;
    }
    
    #hero p {
        font-size: 1.1rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    
    section {
        padding: 60px 0;
    }
}

/* Loading Animation */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loader-inner {
    width: 60px;
    height: 60px;
    border: 3px solid var(--bg-section);
    border-top-color: var(--accent-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Scroll to Top Button - Hidden on mobile devices */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent-color) !important;
    color: white !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-medium);
    z-index: 999;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-3px);
}

/* Hide scroll to top button on mobile devices */
@media (max-width: 768px) {
    .scroll-to-top {
        display: none !important;
    }
}

/* Hide any other scroll to top buttons */
[class*="scroll-top"]:not(.scroll-to-top),
[class*="scrolltop"]:not(.scroll-to-top),
[class*="back-to-top"]:not(.scroll-to-top),
[class*="backtotop"]:not(.scroll-to-top) {
    display: none !important;
}
