/* ===================================
   Redesigned Pages - Flowing, Seamless Design
   Non-Template, Organic UI/UX
   =================================== */

/* ==================
   ABOUT PAGE
   ================== */

.about-page {
    background: linear-gradient(180deg, var(--color-off-white) 0%, var(--color-white) 50%, var(--color-light) 100%);
}

/* About Hero Section */
.about-hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10rem 2rem 6rem;
    position: relative;
    overflow: hidden;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at top right,
        rgba(143, 168, 138, 0.15) 0%,
        transparent 50%
    ),
    radial-gradient(
        ellipse at bottom left,
        rgba(90, 115, 85, 0.1) 0%,
        transparent 50%
    );
    animation: breathe 8s ease-in-out infinite;
}

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

.about-hero-content {
    max-width: 1200px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.profile-section {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 6rem;
    align-items: center;
}

.profile-image-wrapper {
    position: relative;
    aspect-ratio: 3/4;
    animation: fadeInLeft 1s ease-out;
}

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

.profile-glow {
    position: absolute;
    inset: -30px;
    background: radial-gradient(circle, rgba(143, 168, 138, 0.2) 0%, transparent 70%);
    border-radius: 40% 60% 60% 40% / 60% 40% 60% 40%;
    animation: morph 10s ease-in-out infinite;
    z-index: -1;
}

@keyframes morph {
    0%, 100% {
        border-radius: 40% 60% 60% 40% / 60% 40% 60% 40%;
        transform: rotate(0deg) scale(1);
    }
    33% {
        border-radius: 60% 40% 40% 60% / 40% 60% 40% 60%;
        transform: rotate(120deg) scale(1.05);
    }
    66% {
        border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
        transform: rotate(240deg) scale(0.95);
    }
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(143, 168, 138, 0.1);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.profile-image:hover {
    transform: scale(1.02) rotate(1deg);
}

.profile-intro {
    animation: fadeInRight 1s ease-out 0.3s both;
}

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

.profile-name {
    font-size: clamp(3.5rem, 7vw, 6rem);
    margin-bottom: 1.5rem;
    font-weight: 400;
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.profile-tagline {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: var(--color-text-light);
    line-height: 1.8;
    max-width: 600px;
}

/* Story Section */
.story-section {
    padding: 8rem 2rem;
    position: relative;
    overflow: hidden;
}

.story-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.story-decorative {
    position: absolute;
    inset: -20%;
    pointer-events: none;
    z-index: 0;
}

.organic-blob {
    position: absolute;
    border-radius: 50% 40% 60% 50% / 40% 60% 40% 60%;
    opacity: 0.04;
}

.blob-1 {
    width: 600px;
    height: 600px;
    top: -10%;
    right: -20%;
    background: var(--color-accent);
    animation: float 15s ease-in-out infinite;
}

.blob-2 {
    width: 400px;
    height: 400px;
    bottom: 10%;
    left: -15%;
    background: var(--color-secondary);
    animation: float 20s ease-in-out infinite reverse;
}

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

.story-content .section-label {
    margin-bottom: 1.5rem;
}

.story-content h2 {
    margin-bottom: 3rem;
}

.story-text {
    text-align: left;
    font-size: 1.125rem;
    line-height: 2;
    color: var(--color-text);
}

.story-text p {
    margin-bottom: 1.75rem;
}

/* Specialties Section */
.specialties-section {
    padding: 8rem 2rem;
    background: var(--color-white);
    position: relative;
}

.specialties-section::before,
.specialties-section::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 150px;
    pointer-events: none;
}

.specialties-section::before {
    top: 0;
    background: linear-gradient(to bottom, var(--color-off-white), transparent);
}

.specialties-section::after {
    bottom: 0;
    background: linear-gradient(to top, var(--color-light), transparent);
}

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

.specialties-header {
    text-align: center;
    margin-bottom: 5rem;
}

.specialties-intro {
    font-size: 1.25rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 1.5rem auto 0;
}

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

.specialty-card {
    position: relative;
    padding: 3rem 2.5rem;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--color-off-white) 0%, var(--color-light) 100%);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(143, 168, 138, 0.1);
}

.specialty-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(143, 168, 138, 0.15), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.specialty-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border-color: var(--color-accent);
}

.specialty-card:hover::before {
    opacity: 1;
}

.specialty-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    color: var(--color-accent);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.specialty-card:hover .specialty-icon {
    transform: scale(1.1) rotate(5deg);
}

.specialty-icon svg {
    width: 100%;
    height: 100%;
}

.specialty-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
    text-align: center;
}

.specialty-card p {
    color: var(--color-text-light);
    line-height: 1.8;
    text-align: center;
    margin: 0;
}

/* Philosophy Section */
.philosophy-section {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, var(--color-light) 0%, var(--color-white) 100%);
    position: relative;
    overflow: hidden;
}

.philosophy-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
    align-items: center;
}

.philosophy-content {
    max-width: 650px;
}

.philosophy-content h2 {
    margin-bottom: 2rem;
}

.philosophy-content p {
    font-size: 1.125rem;
    line-height: 2;
    color: var(--color-text);
    margin-bottom: 1.75rem;
}

.philosophy-visual {
    position: relative;
    height: 500px;
}

.philosophy-shape {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(143, 168, 138, 0.2) 0%, rgba(90, 115, 85, 0.1) 100%);
    border-radius: 50% 40% 60% 40% / 60% 40% 60% 40%;
    animation: morph 12s ease-in-out infinite, float 8s ease-in-out infinite;
    box-shadow: inset 0 0 60px rgba(143, 168, 138, 0.3);
}

/* About CTA */
.about-cta {
    padding: 8rem 2rem;
    background: var(--color-primary);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -25%;
    width: 150%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

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

.about-cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.about-cta h2 {
    color: var(--color-white);
    margin-bottom: 1.5rem;
    font-size: clamp(2.5rem, 5vw, 4rem);
}

.about-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 3rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.cta-buttons .btn {
    flex-shrink: 0;
    min-width: 200px;
    white-space: nowrap;
    display: inline-block;
}

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

.about-cta .btn-primary:hover {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

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

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

/* ==================
   GALLERY PAGE
   ================== */

.gallery-main {
    padding: 4rem 2rem 6rem;
    background: linear-gradient(180deg, var(--color-off-white) 0%, var(--color-white) 100%);
}

.gallery-grid-uniform {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
}

.gallery-item {
    position: relative;
    cursor: pointer;
    border-radius: 20px;
    overflow: hidden;
    background: var(--color-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.gallery-item-image {
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
    position: relative;
    background: var(--color-light);
}

.gallery-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.gallery-item-info h3 {
    color: var(--color-white);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
}

.gallery-item:hover .gallery-item-info h3 {
    transform: translateY(0);
}

.gallery-item-info p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin: 0;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.2s;
    line-height: 1.6;
}

.gallery-item:hover .gallery-item-info p {
    transform: translateY(0);
}

.no-results {
    text-align: center;
    color: var(--color-text-light);
    font-size: 1.25rem;
    padding: 4rem 2rem;
    grid-column: 1 / -1;
}

/* Gallery Filters */
.gallery-filters {
    background: rgba(250, 251, 250, 0.95);
    padding: 2.5rem 2rem;
    position: sticky;
    top: 80px;
    z-index: 100;
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(143, 168, 138, 0.1);
}

.filter-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--color-text);
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.filter-btn:hover {
    background: var(--color-accent);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(143, 168, 138, 0.3);
}

.filter-btn.active {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
    box-shadow: 0 4px 16px rgba(45, 63, 47, 0.3);
}

/* Enhanced Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.96);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(20px);
    padding: 2rem;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    animation: lightboxZoomIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.lightbox-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-image-wrapper img {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    display: block;
}

.lightbox-info {
    color: var(--color-white);
    padding: 2rem;
}

.lightbox-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-white);
    line-height: 1.2;
}

.lightbox-info p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: fixed;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.lightbox-close {
    top: 2rem;
    right: 2rem;
}

.lightbox-prev {
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-prev:hover {
    transform: translateY(-50%) scale(1.1);
}

.lightbox-next {
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next:hover {
    transform: translateY(-50%) scale(1.1);
}

/* Gallery CTA */
.gallery-cta {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    padding: 7rem 2rem;
    text-align: center;
}

.gallery-cta .cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gallery-cta .cta-content h2 {
    color: var(--color-white);
}

.gallery-cta .cta-content p {
    color: rgba(255, 255, 255, 0.9);
}

.gallery-cta .btn {
    display: inline-block;
    margin: 0 auto;
}

/* Responsive - Gallery */
@media (max-width: 1024px) {
    .gallery-grid-uniform {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 2rem;
    }

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

    .lightbox-info {
        text-align: center;
    }

    .lightbox-info h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .gallery-grid-uniform {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .gallery-main {
        padding: 3rem 1.5rem 4rem;
    }

    .lightbox {
        padding: 1rem;
    }

    .lightbox-prev,
    .lightbox-next {
        bottom: 2rem;
        top: auto;
        transform: none;
    }

    .lightbox-prev {
        left: 1rem;
    }

    .lightbox-next {
        right: 1rem;
    }

    .lightbox-prev:hover,
    .lightbox-next:hover {
        transform: scale(1.1);
    }

    .lightbox-close {
        top: 1rem;
        right: 1rem;
        width: 50px;
        height: 50px;
        font-size: 1.75rem;
    }

    .lightbox-info h2 {
        font-size: 1.75rem;
    }

    .lightbox-info p {
        font-size: 1rem;
    }
}

@media (max-width: 640px) {
    .gallery-grid-uniform {
        grid-template-columns: 1fr;
    }
}

/* ==================
   BOOKING PAGE
   ================== */

.booking-process {
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-light) 100%);
    padding: 5rem 2rem;
}

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

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.process-step {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    background: var(--color-white);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.process-step::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(143, 168, 138, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.process-step:hover::before {
    opacity: 1;
}

.step-number {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto 1.5rem;
    font-family: var(--font-heading);
    box-shadow: 0 8px 20px rgba(45, 63, 47, 0.2);
    font-weight: 600;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
    font-family: var(--font-heading);
}

.process-step p {
    color: var(--color-text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Form Styling */
.booking-form-section {
    padding: 3rem 2rem 5rem;
    background: var(--color-white);
}

.booking-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 3rem;
    align-items: start;
}

.booking-info h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.info-box {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(143, 168, 138, 0.1);
    transition: var(--transition-smooth);
}

.info-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.info-box h3 {
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.info-box ul {
    list-style: none;
    padding-left: 0;
}

.info-box li {
    padding-left: 2rem;
    margin-bottom: 1rem;
    position: relative;
    color: var(--color-text);
    line-height: 1.8;
}

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

.booking-form-wrapper {
    background: white;
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.form-header {
    margin-bottom: 2rem;
    text-align: center;
}

.form-header h2 {
    margin-bottom: 0.5rem;
    font-size: 2rem;
}

.form-header p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 500;
    color: var(--color-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.125rem 1.5rem;
    border: 2px solid var(--color-light);
    border-radius: 15px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-smooth);
    background: var(--color-off-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    background: var(--color-white);
    box-shadow: 0 0 0 4px rgba(143, 168, 138, 0.1);
    transform: translateY(-2px);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-row-3 {
    grid-template-columns: 1fr 1fr 1fr;
}

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

.form-note {
    text-align: center;
    color: var(--color-text-light);
    font-size: 0.875rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    padding: 1rem;
    background: var(--color-light);
    border-radius: 12px;
    transition: var(--transition);
}

.checkbox-label:hover {
    background: rgba(143, 168, 138, 0.1);
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--color-primary);
}

.checkbox-label span {
    color: var(--color-text);
    font-size: 1rem;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 400;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.btn-submit {
    width: 100%;
    font-size: 1.125rem;
    padding: 1.25rem 3rem;
    margin-top: 1rem;
}

/* ==================
   FAQ PAGE
   ================== */

.faq-page {
    background: linear-gradient(180deg, var(--color-off-white) 0%, var(--color-white) 100%);
}

.faq-section {
    padding: 5rem 2rem 7rem;
    background: transparent;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 4rem;
}

.faq-category:last-child {
    margin-bottom: 0;
}

.faq-category-title {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--color-light);
    position: relative;
}

.faq-category-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 80px;
    height: 2px;
    background: var(--color-accent);
}

.faq-item {
    background: var(--color-white);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(143, 168, 138, 0.1);
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.faq-item.active {
    border-color: var(--color-accent);
    box-shadow: 0 4px 20px rgba(143, 168, 138, 0.15);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--color-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    transition: color 0.3s ease;
    font-family: var(--font-heading);
}

.faq-question:hover {
    color: var(--color-accent);
}

.faq-item.active .faq-question {
    color: var(--color-primary);
}

.faq-icon {
    font-size: 2rem;
    line-height: 1;
    color: var(--color-accent);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    width: 30px;
    text-align: center;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    margin: 0;
    color: var(--color-text);
    line-height: 1.8;
    font-size: 1.05rem;
}

.faq-answer a {
    color: var(--color-accent);
    text-decoration: underline;
}

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

/* FAQ CTA */
.faq-cta {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    padding: 7rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.faq-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.faq-cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.faq-cta h2 {
    color: var(--color-white);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
}

.faq-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
}

/* Responsive - FAQ */
@media (max-width: 768px) {
    .faq-section {
        padding: 3rem 1.5rem 5rem;
    }

    .faq-category-title {
        font-size: 1.75rem;
    }

    .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 1.05rem;
    }

    .faq-answer p {
        padding: 0 1.5rem 1.25rem;
        font-size: 1rem;
    }

    .faq-cta {
        padding: 5rem 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        gap: 1rem;
    }

    .cta-buttons .btn {
        width: 100%;
        min-width: auto;
        text-align: center;
        padding: 1.25rem 2rem;
        font-size: 1.125rem;
    }

    /* About Page Mobile */
    .about-hero {
        padding: 8rem 1.5rem 5rem;
    }

    .story-section,
    .specialties-section,
    .philosophy-section {
        padding: 4rem 1.5rem;
    }

    .about-cta {
        padding: 5rem 1.5rem;
    }

    .specialty-cards {
        grid-template-columns: 1fr;
    }

    .profile-name {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    /* Gallery Mobile */
    .gallery-filters {
        padding: 2rem 1.5rem;
        top: 70px;
    }

    .filter-container {
        gap: 0.75rem;
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .filter-container::-webkit-scrollbar {
        display: none;
    }

    .filter-btn {
        white-space: nowrap;
    }

    /* Booking Mobile */
    .process-steps {
        grid-template-columns: 1fr;
    }

    .booking-form-section {
        padding: 4rem 1.5rem;
    }
}

@media (max-width: 640px) {
    /* About Page Small Mobile */
    .about-hero {
        padding: 7rem 1rem 4rem;
    }

    .profile-section {
        gap: 3rem;
    }

    .profile-image-wrapper {
        max-width: 300px;
    }

    .profile-glow {
        display: none;
    }

    .story-section,
    .specialties-section,
    .philosophy-section {
        padding: 3rem 1rem;
    }

    .organic-blob {
        display: none;
    }

    .specialty-icon {
        width: 70px;
        height: 70px;
    }

    .philosophy-visual {
        max-width: 250px;
        height: 250px;
    }

    .about-cta {
        padding: 4rem 1rem;
    }

    /* Gallery Small Mobile */
    .page-hero {
        padding: 8rem 1rem 4rem;
    }

    .gallery-main {
        padding: 3rem 1rem 4rem;
    }

    .gallery-grid-uniform {
        gap: 1.5rem;
    }

    .gallery-item-info h3 {
        font-size: 1.25rem;
    }

    /* FAQ Small Mobile */
    .faq-section {
        padding: 3rem 1rem 4rem;
    }

    .faq-cta {
        padding: 4rem 1rem;
    }

    /* Booking Small Mobile */
    .booking-process {
        padding: 3rem 1rem;
    }

    .booking-form-section {
        padding: 3rem 1rem;
    }
}

@media (max-width: 480px) {
    /* About Page Extra Small Mobile */
    .about-hero {
        padding: 6rem 1rem 3rem;
    }

    .profile-section {
        gap: 2.5rem;
    }

    .profile-image-wrapper {
        max-width: 260px;
    }

    .profile-name {
        font-size: clamp(1.75rem, 10vw, 2.5rem);
    }

    .profile-tagline {
        font-size: 1rem;
    }

    .story-section,
    .specialties-section,
    .philosophy-section {
        padding: 2.5rem 1rem;
    }

    .section-label {
        font-size: 0.8rem;
        letter-spacing: 2px;
    }

    .specialty-card {
        padding: 2rem 1.5rem;
    }

    .specialty-icon {
        width: 60px;
        height: 60px;
    }

    .about-cta {
        padding: 3.5rem 1rem;
    }

    /* Gallery Extra Small Mobile */
    .page-hero {
        padding: 7rem 1rem 3rem;
    }

    .gallery-filters {
        padding: 1.5rem 1rem;
        top: 65px;
    }

    .filter-btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
    }

    .gallery-main {
        padding: 2.5rem 1rem 3rem;
    }

    .gallery-grid-uniform {
        gap: 1.25rem;
    }

    .gallery-item {
        border-radius: 15px;
    }

    .gallery-item-overlay {
        padding: 1.5rem;
    }

    .gallery-item-info h3 {
        font-size: 1.125rem;
    }

    .gallery-item-info p {
        font-size: 0.875rem;
    }

    .gallery-cta,
    .faq-cta {
        padding: 3.5rem 1rem;
    }

    /* FAQ Extra Small Mobile */
    .faq-section {
        padding: 2.5rem 1rem 3rem;
    }

    .faq-category {
        margin-bottom: 3rem;
    }

    .faq-category-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .faq-question {
        padding: 1.125rem 1.25rem;
        font-size: 1rem;
        gap: 1rem;
    }

    .faq-answer p {
        padding: 0 1.25rem 1.25rem;
        font-size: 0.9375rem;
    }

    .faq-icon {
        font-size: 1.75rem;
        width: 25px;
    }

    /* Booking Extra Small Mobile */
    .booking-process {
        padding: 2.5rem 1rem;
    }

    .booking-form-section {
        padding: 2.5rem 1rem;
    }

    .process-step {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 375px) {
    /* About Page Very Small Mobile */
    .about-hero {
        padding: 5.5rem 1rem 2.5rem;
    }

    .profile-image-wrapper {
        max-width: 240px;
    }

    .story-section,
    .specialties-section,
    .philosophy-section {
        padding: 2rem 1rem;
    }

    .specialty-card {
        padding: 1.75rem 1.25rem;
    }

    /* Gallery Very Small Mobile */
    .page-hero {
        padding: 6.5rem 1rem 2.5rem;
    }

    .gallery-main {
        padding: 2rem 1rem 2.5rem;
    }

    .gallery-grid-uniform {
        gap: 1rem;
    }

    .lightbox {
        padding: 0.5rem;
    }

    .lightbox-info {
        padding: 1.5rem;
    }

    .lightbox-info h2 {
        font-size: 1.5rem;
    }

    .lightbox-info p {
        font-size: 0.9375rem;
    }

    /* FAQ Very Small Mobile */
    .faq-section {
        padding: 2rem 1rem 2.5rem;
    }

    .faq-category-title {
        font-size: 1.375rem;
    }

    .faq-question {
        padding: 1rem;
        font-size: 0.9375rem;
    }

    .faq-answer p {
        padding: 0 1rem 1rem;
        font-size: 0.875rem;
    }

    /* Booking Very Small Mobile */
    .booking-process,
    .booking-form-section {
        padding: 2rem 1rem;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Increase touch targets */
    .filter-btn,
    .faq-question,
    .nav-menu a,
    .btn {
        min-height: 44px;
        min-width: 44px;
    }

    /* Remove hover effects that don't work on touch */
    .gallery-item:hover .gallery-item-overlay {
        opacity: 0;
    }

    /* Show info on touch/click instead */
    .gallery-item.touched .gallery-item-overlay {
        opacity: 1;
    }

    /* Disable parallax on mobile for performance */
    .floating-element,
    .organic-blob,
    .profile-glow {
        animation: none !important;
    }
}

/* Landscape mobile optimization */
@media (max-width: 900px) and (orientation: landscape) {
    .hero,
    .about-hero,
    .page-hero {
        min-height: auto;
        padding-top: 6rem;
        padding-bottom: 3rem;
    }

    .profile-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        text-align: left;
    }

    .profile-image-wrapper {
        margin: 0;
    }

    .hero-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .hero-image {
        height: 350px;
    }
}

/* ==================
   RESPONSIVE DESIGN
   ================== */

@media (max-width: 1200px) {
    .about-hero-content,
    .story-container,
    .specialties-container,
    .philosophy-container {
        padding: 0 1.5rem;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .profile-section {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 4rem;
    }

    .profile-image-wrapper {
        margin: 0 auto;
        max-width: 400px;
    }

    .specialty-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

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

    .philosophy-visual {
        max-width: 300px;
        margin: 0 auto;
    }

    .profile-image-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }

    .profile-tagline {
        margin: 0 auto;
    }

    .philosophy-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .philosophy-visual {
        height: 350px;
    }

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

@media (max-width: 768px) {
    .about-hero {
        padding: 8rem 1.5rem 4rem;
        min-height: auto;
    }

    .profile-section {
        gap: 3rem;
    }

    .specialty-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-section,
    .specialties-section,
    .philosophy-section,
    .about-cta {
        padding: 5rem 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        gap: 1rem;
    }

    .cta-buttons .btn {
        width: 100%;
        min-width: auto;
        text-align: center;
        padding: 1.25rem 2rem;
        font-size: 1.125rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .booking-form-wrapper {
        padding: 2rem 1.5rem;
    }

    .filter-container {
        gap: 0.75rem;
    }

    .filter-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }
}

/* ==================
   CUSTOM CALENDAR
   ================== */

.custom-calendar {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    background: var(--color-white);
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 1rem;
    z-index: 1000;
    min-width: 280px;
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e8ece8;
}

.calendar-title {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-dark);
}

.calendar-nav {
    background: none;
    border: none;
    color: var(--color-primary);
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.calendar-nav:hover {
    background: var(--color-light);
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.calendar-day-name {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 500;
    color: #666;
    padding: 0.5rem 0;
}

.calendar-dates {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.25rem;
}

.calendar-date {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--color-dark);
}

.calendar-date:not(.empty):not(.disabled):hover {
    background: var(--color-light);
    color: var(--color-primary);
}

.calendar-date.empty {
    cursor: default;
}

.calendar-date.disabled {
    color: #ccc;
    cursor: not-allowed;
}

.calendar-date.today {
    border: 2px solid var(--color-primary);
    font-weight: 600;
}

.calendar-date.selected {
    background: var(--color-primary);
    color: var(--color-white);
    font-weight: 600;
}

.calendar-date.selected:hover {
    background: var(--color-primary-dark);
    color: var(--color-white);
}

.form-group {
    position: relative;
}

.date-input-container {
    position: relative;
}

.date-input-container input {
    padding-right: 3rem;
}

.calendar-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-text-light);
    pointer-events: none;
}

#preferred_date_display {
    cursor: pointer;
    background-color: var(--color-white);
    -webkit-user-select: none;
    user-select: none;
    caret-color: transparent;
    -webkit-tap-highlight-color: transparent;
}

#preferred_date_display:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

#preferred_date_display:active {
    background-color: var(--color-light);
}

/* ==================
   ADDITIONAL MOBILE OPTIMIZATIONS
   ================== */

@media (max-width: 768px) {
    /* Booking Process - Mobile */
    .booking-process {
        padding: 3rem 1rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .process-step {
        padding: 2rem 1.5rem;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .process-step h3 {
        font-size: 1.15rem;
    }

    .process-step p {
        font-size: 0.9rem;
    }

    /* Booking Container - Mobile */
    .booking-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .booking-info {
        order: 2;
    }

    .booking-form-wrapper {
        order: 1;
    }

    /* Form Rows - Stack on Mobile */
    .form-row,
    .form-row-3 {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Calendar - Mobile Adjustments */
    .custom-calendar {
        position: fixed;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: calc(100vw - 2rem);
        max-width: 340px;
        min-width: auto;
        z-index: 9999;
    }

    /* Add backdrop for mobile calendar */
    .custom-calendar::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.4);
        z-index: -1;
    }

    /* Navigation - Mobile */
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-white);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: flex !important;
    }

    /* Page Hero - Mobile */
    .page-hero {
        padding: 7rem 1.5rem 4rem;
        min-height: 50vh;
    }

    .page-title {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    /* Gallery - Mobile */
    .gallery-grid-uniform {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Info Boxes - Mobile */
    .info-box {
        padding: 1.5rem;
    }

    .info-box h3 {
        font-size: 1.1rem;
    }

    .info-box ul li {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    /* Extra Small Devices */
    .booking-process {
        padding: 2rem 0.75rem;
    }

    .process-step {
        padding: 1.5rem 1rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    .process-step h3 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .process-step p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .booking-form-wrapper {
        padding: 1.5rem 1rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 1rem 1.25rem;
        font-size: 16px; /* Prevents zoom on iOS */
    }

    .btn-submit {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .page-title {
        font-size: 1.75rem;
    }

    .custom-calendar {
        width: calc(100vw - 1.5rem);
        max-width: 320px;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Increase touch targets */
    .form-group input,
    .form-group select,
    .form-group textarea,
    .btn,
    .calendar-date,
    .filter-btn {
        min-height: 44px;
    }

    .calendar-nav {
        padding: 0.5rem;
        min-width: 44px;
        min-height: 44px;
    }

    /* Remove hover effects on touch devices */
    .process-step:hover,
    .btn:hover,
    .filter-btn:hover {
        transform: none;
    }
}

/* Landscape Mode - Tablets */
@media (max-width: 1024px) and (orientation: landscape) {
    .page-hero {
        min-height: 60vh;
    }

    .booking-process {
        padding: 3rem 2rem;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}
