/* Page edge decorative images */
.edge-decorations {
    position: fixed;
    pointer-events: none;
    inset: 0;
    z-index: 0;
}

.edge-decor {
    position: absolute;
    width: clamp(120px, 14vw, 220px);
    filter: drop-shadow(0 10px 25px rgba(0,0,0,0.12));
    opacity: 0.9;
}

.edge-left { left: -40px; top: 18vh; }
.edge-right { right: -40px; bottom: 12vh; }

@media (max-width: 992px) {
    .edge-decorations { display: none; }
}

/* Disable title-level decor to keep only edge images */
.title-decor { display: none; }
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Sage-green palette from screenshots */
    --primary-color: #6f8f75;
    --primary-dark: #5e7d64;
    --secondary-color: #2c2c2c;
    --accent-color: #8aa58f;
    --text-color: #333333;
    --light-text: #666666;
    --bg-light: #f8f8f8;
    --bg-white: #ffffff;
    --hero-bg: #e5e0d3; /* beige hero background */
    --border-color: #e0e0e0;
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.hero-main-title {
    font-family: 'Playfair Display', serif;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--secondary-color);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.8rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 14px 35px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-white);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 20px rgba(111, 143, 117, 0.30);
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(111, 143, 117, 0.40);
}

.btn-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-link:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.btn-link i {
    transition: var(--transition);
}

.btn-link:hover i {
    transform: translateX(3px);
}

/* Header and Navigation */
.main-header {
    background-color: var(--bg-white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    transition: var(--transition);
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 5px 0;
    transition: var(--transition);
}

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

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    background-color: var(--hero-bg);
    padding: 100px 0;
    position: relative;
    overflow: visible;
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
}

/* Hero decorative floating images */
.hero-decorations {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.decor-item {
    position: absolute;
    width: clamp(120px, 14vw, 220px);
    filter: drop-shadow(0 10px 25px rgba(0,0,0,0.12));
    animation: floatY 8s ease-in-out infinite;
    will-change: transform;
}

.decor-left { left: -2vw; top: 8vh; animation-delay: 0.2s; }
.decor-right { right: -2vw; bottom: 6vh; animation-delay: 0.6s; }

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

@media (max-width: 992px) {
    .hero-decorations { display: none; }
}

.hero-layout {
    display: grid;
    grid-template-columns: minmax(320px, 560px) 1fr;
    gap: 4rem;
    align-items: center;
    justify-content: start;
}

.hero-content-wrapper {
    animation: fadeIn 1s ease-out;
    position: relative;
    z-index: 2;
}

.hero-content {
    padding-right: 2rem;
    max-width: 560px;
    position: relative;
}

/* Decorative images near the title */
.title-decor {
    position: absolute;
    left: -70px;
    top: 30px;
    width: 60px;
    height: 120px;
    pointer-events: none;
}

.title-decor-1,
.title-decor-2 {
    position: absolute;
    width: 60px;
    filter: drop-shadow(0 6px 14px rgba(0,0,0,0.12));
}

.title-decor-1 { left: 0; top: 0; transform: rotate(-8deg); }
.title-decor-2 { left: 10px; top: 60px; transform: rotate(12deg); }

@media (max-width: 1200px) {
    .title-decor { left: -50px; }
}

@media (max-width: 992px) {
    .title-decor { display: none; }
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 400;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: slideInUp 0.8s ease-out 0.2s both;
}

.hero-main-title {
    font-size: 3.8rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    animation: slideInUp 0.8s ease-out 0.4s both;
}

.hero-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--light-text);
    margin-bottom: 2rem;
    animation: slideInUp 0.8s ease-out 0.6s both;
}

.hero-booking-form-inline {
    background: var(--primary-color);
    padding: 1rem;
    border-radius: 14px;
    margin-top: 2.5rem;
    animation: slideInUp 0.8s ease-out 0.8s both;
    box-shadow: 0 8px 24px rgba(0,0,0,0.10);
}

.hero-booking-form-inline h3 { display: none; }

.booking-form-inline {
    display: flex;
    flex-direction: column;
}

.booking-form-inline .form-row {
    display: grid;
    grid-template-columns: 1.2fr 1.2fr 1fr auto;
    gap: 0.75rem;
    align-items: center;
}

.booking-form-inline .form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
}

.booking-form-inline .form-group input {
    width: 100%;
    height: 56px;
    padding: 0 16px;
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: #ffffff;
}

.booking-form-inline .form-group input[type="date"] {
    position: relative;
}

.booking-form-inline .form-group input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 0.7;
}

.booking-form-inline .form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

.booking-form-inline .btn-primary {
    white-space: nowrap;
    height: 56px;
    padding: 0 26px;
    border-radius: 10px;
    background: var(--primary-dark);
}

.hero-image-wrapper {
    animation: fadeIn 1s ease-out 0.5s both;
    position: absolute;
    right: 3vw;
    bottom: -6vh;
    width: 45vw;
    pointer-events: none;
    z-index: 0;
}

.hero-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: right center;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    max-height: 70vh;
}

/* Sections */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeIn 0.8s ease-out;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.section-header h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 400;
    margin-top: 1.5rem;
}

.section-description {
    max-width: 800px;
    margin: 2rem auto 0;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Services Section */
.services-section {
    background: linear-gradient(to bottom, var(--bg-white) 0%, var(--bg-light) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    animation: fadeIn 1s ease-out;
}

.service-card {
    background: var(--bg-white);
    padding: 2.5rem;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

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

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* About Section */
.about-section {
    background-color: var(--bg-white);
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.about-text h2 {
    font-size: 3rem;
}

.about-text h3 {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.about-text > p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

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

.stat-item {
    padding: 2rem;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    border-radius: 15px;
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.stat-item h4 {
    color: var(--secondary-color);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-item p {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

/* Pricing Section */
.pricing-section {
    background: linear-gradient(to bottom, var(--bg-light) 0%, var(--bg-white) 100%);
}

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

.pricing-card {
    background: var(--bg-white);
    padding: 2.5rem;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: var(--transition);
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 35px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
}

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

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1;
}

/* Procedures Section */
.procedures-section {
    background-color: var(--bg-white);
}

.procedures-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.procedure-card {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    padding: 2.5rem;
    border-radius: 15px;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.procedure-card:hover {
    background: var(--bg-white);
    box-shadow: 0 10px 35px rgba(0,0,0,0.12);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.procedure-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Working Hours Section */
.hours-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.hours-item {
    background: var(--bg-white);
    padding: 2rem;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.hours-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.hours-item h4 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

/* Masterclass Section */
.masterclass-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-white);
    text-align: center;
    position: relative;
}

/* Generic video background wrapper for sections */
.section-video-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}
.section-video-bg .bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.1) saturate(1.05);
}
.section-video-bg .video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}

.facial-section .masterclass-content { position: relative; z-index: 1; }

.masterclass-content h2 {
    color: var(--bg-white);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.masterclass-content p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
}

.masterclass-section .btn-primary {
    background: var(--bg-white);
    color: var(--primary-color);
}

.masterclass-section .btn-primary:hover {
    background: var(--bg-light);
}

/* Blog Section */
.blog-preview-section,
.blog-page-content {
    background-color: var(--bg-white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.blog-card {
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.blog-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: var(--bg-light);
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: var(--light-text);
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-meta i {
    color: var(--primary-color);
}

.blog-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.4rem;
}

.blog-card h3 a {
    color: var(--secondary-color);
    transition: var(--transition);
}

.blog-card h3 a:hover {
    color: var(--primary-color);
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(to bottom, var(--bg-light) 0%, var(--bg-white) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: var(--transition);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 5rem;
    color: var(--primary-color);
    opacity: 0.2;
    font-family: serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0,0,0,0.12);
}

.testimonial-content {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-color);
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.7;
}

.testimonial-author h4 {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a1a1a 100%);
    color: var(--bg-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1522338242992-e1a55eea0c3f?w=1920&q=80') center/cover;
    opacity: 0.1;
}

.newsletter-content {
    position: relative;
    z-index: 2;
}

.newsletter-content h2 {
    color: var(--bg-white);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.newsletter-form-group {
    display: flex;
    max-width: 550px;
    margin: 0 auto;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 5px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.newsletter-form-group input {
    flex: 1;
    padding: 15px 25px;
    border: none;
    background: transparent;
    border-radius: 50px;
    font-size: 1rem;
    color: var(--bg-white);
    outline: none;
}

.newsletter-form-group input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form-group button {
    padding: 15px 35px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.newsletter-form-group button:hover {
    background-color: var(--primary-dark);
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.4);
}

#newsletter-message {
    margin-top: 1.5rem;
    min-height: 24px;
    font-weight: 600;
}

/* Footer */
.main-footer {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a1a1a 100%);
    color: rgba(255, 255, 255, 0.8);
    padding: 70px 0 30px;
}

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

.footer-section h3 {
    color: var(--bg-white);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

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

.footer-section ul li {
    margin-bottom: 0.75rem;
    transition: var(--transition);
}

.footer-section ul li:hover {
    transform: translateX(5px);
}

.footer-section ul li i {
    margin-right: 0.75rem;
    color: var(--primary-color);
    width: 20px;
}

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

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

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

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 5px 15px rgba(212, 165, 116, 0.4);
}

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

/* Page Header */
.page-header {
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.15) 0%, rgba(255, 255, 255, 1) 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.page-header h1 {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--primary-color);
}

/* Contact Page */
.contact-page-content {
    background-color: var(--bg-white);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-form-wrapper h2,
.contact-info h2 {
    margin-bottom: 2rem;
    font-size: 2.2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--bg-white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(156, 204, 101, 0.1);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 10px;
    transition: var(--transition);
}

.contact-item:hover {
    background: var(--bg-white);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transform: translateX(5px);
}

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

.contact-item h4 {
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.working-hours-box {
    background: linear-gradient(135deg, var(--bg-light), var(--bg-white));
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.working-hours-box h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.working-hours-box ul {
    list-style: none;
}

.working-hours-box ul li {
    padding: 0.75rem 0;
    border-bottom: 1px dashed var(--border-color);
    display: flex;
    justify-content: space-between;
}

.working-hours-box ul li:last-child {
    border-bottom: none;
}

/* Alerts */
.alert {
    padding: 1rem 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border-left: 4px solid;
    animation: slideInUp 0.5s ease-out;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border-color: #28a745;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border-color: #dc3545;
}

/* Gallery Page */
.gallery-page-content {
    background-color: var(--bg-white);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 25px;
    background-color: var(--bg-light);
    color: var(--text-color);
    border-radius: 25px;
    font-weight: 500;
    transition: var(--transition);
    border: 2px solid transparent;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 1;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.gallery-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.gallery-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.placeholder-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-light), var(--bg-white));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-text);
    font-size: 3rem;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(212, 165, 116, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-image-wrapper img {
    transform: scale(1.15);
}

.gallery-overlay h4 {
    color: var(--bg-white);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.gallery-lightbox {
    font-size: 2.5rem;
    color: var(--bg-white);
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.2);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.gallery-lightbox:hover {
    background: var(--bg-white);
    color: var(--primary-color);
    transform: scale(1.1) rotate(5deg);
}

/* Services Page */
.services-page-content {
    background-color: var(--bg-white);
}

.service-card-large {
    background: linear-gradient(135deg, var(--bg-light), var(--bg-white));
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.service-card-large:hover {
    background: var(--bg-white);
    box-shadow: 0 10px 35px rgba(0,0,0,0.12);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.pricing-table {
    margin-top: 3rem;
    overflow-x: auto;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.pricing-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-white);
}

.pricing-table thead {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.pricing-table th,
.pricing-table td {
    padding: 1.5rem;
    text-align: left;
}

.pricing-table tbody tr {
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.pricing-table tbody tr:hover {
    background-color: var(--bg-light);
    transform: scale(1.01);
}

.price-cell {
    font-weight: 700;
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Blog Single */
.blog-single-content {
    background-color: var(--bg-white);
}

.blog-post {
    max-width: 850px;
    margin: 0 auto;
}

.blog-post-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    color: var(--light-text);
    font-size: 0.95rem;
}

.blog-post-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-post-meta i {
    color: var(--primary-color);
}

.blog-post-image {
    width: 100%;
    height: 450px;
    margin-bottom: 2.5rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0,0,0,0.1);
}

.blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-post-content {
    line-height: 1.9;
    font-size: 1.1rem;
    color: var(--text-color);
}

.related-posts {
    margin-top: 5rem;
    padding-top: 4rem;
    border-top: 2px solid var(--border-color);
}

.related-posts h2 {
    margin-bottom: 2.5rem;
    text-align: center;
}

/* Blog Page */
.blog-layout {
    max-width: 1100px;
    margin: 0 auto;
}

.blog-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.page-btn {
    padding: 12px 18px;
    background-color: var(--bg-light);
    color: var(--text-color);
    border-radius: 10px;
    font-weight: 500;
    transition: var(--transition);
    border: 2px solid transparent;
}

.page-btn:hover,
.page-btn.active {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.page-dots {
    padding: 12px 8px;
    color: var(--light-text);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.no-items {
    text-align: center;
    padding: 4rem;
    color: var(--light-text);
    font-size: 1.1rem;
}

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

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    h1 { font-size: 3rem; }
    h2 { font-size: 2.5rem; }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: var(--bg-white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 0;
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-menu a {
        display: block;
        padding: 1rem 0;
    }
    
    .navbar {
        position: relative;
    }
    
    .nav-toggle {
        display: block;
        font-size: 1.5rem;
        cursor: pointer;
        color: var(--secondary-color);
    }
    
    .hero-section {
        padding: 60px 0;
        min-height: auto;
        display: block;
    }
    
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-content {
        text-align: left;
        padding-right: 0;
        padding-bottom: 2rem;
    }
    
    .hero-main-title {
        font-size: 2.5rem;
    }
    
    .booking-form-inline .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hero-image-wrapper {
        position: static;
        right: auto;
        bottom: auto;
        width: auto;
        pointer-events: none;
    }
    
    .hero-image {
        height: auto;
        max-height: 45vh;
    }
    
    .hero-booking-form-inline {
        padding: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-main-title {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form-group {
        flex-direction: column;
        border-radius: 10px;
    }
    
    .newsletter-form-group input,
    .newsletter-form-group button {
        border-radius: 10px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid,
    .pricing-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
}
