/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background-color: #faf7f2;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #0e304b;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Navigation */
.navbar {
    background: linear-gradient(135deg, #ffffff 0%, #faf7f2 100%);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(14, 48, 75, 0.1);
    border-bottom: 1px solid rgba(196, 184, 139, 0.3);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo-image {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.logo-fallback {
    display: none;
    font-size: 40px;
    line-height: 1;
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: #0e304b;
    letter-spacing: 0.5px;
    padding-bottom: 4px;
    border-bottom: 1px solid #c4b88b;
    margin-bottom: 4px;
}

.logo-tagline {
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    color: #c4b88b;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
}

/* Navigation Links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    color: #0e304b;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #c4b88b;
    transition: width 0.3s;
}

.nav-links a:hover {
    color: #c4b88b;
}

.nav-links a:hover::after {
    width: 100%;
}

.enquiry-nav-link {
    background: #c4b88b;
    padding: 8px 20px !important;
    border-radius: 50px;
    color: #0e304b !important;
}

.enquiry-nav-link::after {
    display: none;
}

.enquiry-nav-link:hover {
    background: #d4c49b;
    transform: translateY(-2px);
}

/* Hero Section with Carousel */
.hero {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.carousel-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    visibility: hidden;
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible;
}

.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-caption {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: rgba(14, 48, 75, 0.85);
    color: #c4b88b;
    padding: 10px 20px;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    letter-spacing: 1px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(196, 184, 139, 0.5);
    transform: translateY(20px);
    opacity: 0;
    animation: slideUp 0.5s ease-out 0.5s forwards;
}

@keyframes slideUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    backdrop-filter: blur(5px);
}

.carousel-btn:hover {
    background: #c4b88b;
    border-color: #c4b88b;
    color: #0e304b;
}

.carousel-btn.prev {
    left: 30px;
}

.carousel-btn.next {
    right: 30px;
}

.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.indicator.active {
    background: #c4b88b;
    transform: scale(1.2);
    border-color: white;
}

.indicator:hover {
    background: #c4b88b;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(14, 48, 75, 0.8) 0%, rgba(14, 48, 75, 0.6) 100%);
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: white;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: 56px;
    margin-bottom: 20px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.hero h1 span {
    color: #c4b88b;
    display: block;
    font-size: 32px;
    margin-top: 10px;
    letter-spacing: 2px;
    font-weight: 400;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Button Styles */
.btn {
    display: inline-block;
    background-color: #c4b88b;
    color: #0e304b;
    padding: 15px 40px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    border: none;
    cursor: pointer;
    font-size: 16px;
    letter-spacing: 0.5px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(196, 184, 139, 0.4);
    background-color: #d4c49b;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid #c4b88b;
    color: #c4b88b;
}

.btn-outline:hover {
    background-color: #c4b88b;
    color: #0e304b;
}

/* Welcome Section */
.welcome {
    padding: 100px 0;
    background: linear-gradient(135deg, #faf7f2 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.welcome::before {
    content: '🧘‍♀️';
    font-size: 300px;
    position: absolute;
    bottom: -100px;
    left: -100px;
    opacity: 0.03;
    transform: rotate(15deg);
    pointer-events: none;
}

.welcome-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.welcome-text h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #0e304b;
    position: relative;
}

.welcome-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #c4b88b;
}

.welcome-text p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.signature {
    font-family: 'Montserrat', sans-serif;
    color: #c4b88b;
    font-size: 20px;
    font-weight: 600;
    margin-top: 30px;
    font-style: italic;
}

.welcome-btn {
    margin-top: 20px;
}

.welcome-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(14, 48, 75, 0.15);
    border: 3px solid #c4b88b;
}

.profile-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}

.welcome-image:hover .profile-image {
    transform: scale(1.05);
}

.profile-fallback {
    display: none;
    width: 100%;
    height: 500px;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    text-align: center;
    background: linear-gradient(135deg, #c4b88b 0%, #0e304b 100%);
    position: relative;
}

.profile-fallback::after {
    content: "🧘‍♀️";
    font-size: 100px;
    position: absolute;
    opacity: 0.2;
    bottom: -20px;
    right: -20px;
    transform: rotate(-15deg);
}

/* Yoga Types Section */
.yoga-types {
    padding: 100px 0;
    background-color: #0e304b;
    position: relative;
    overflow: hidden;
}

.yoga-types::before {
    content: '🌿';
    font-size: 300px;
    position: absolute;
    top: -50px;
    right: -50px;
    opacity: 0.05;
    transform: rotate(25deg);
    color: #c4b88b;
    pointer-events: none;
}

.yoga-types .section-title {
    color: white;
}

.yoga-types .section-title::after {
    background-color: #c4b88b;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.type-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 10px;
    transition: all 0.3s;
    border: 1px solid rgba(196, 184, 139, 0.3);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #c4b88b, #ffffff);
    transform: translateX(-100%);
    transition: transform 0.5s;
}

.type-card:hover {
    transform: translateY(-10px);
    border-color: #c4b88b;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    background: rgba(255, 255, 255, 0.15);
}

.type-card:hover::before {
    transform: translateX(0);
}

.type-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: #c4b88b;
}

.type-card h3 {
    margin-bottom: 15px;
    color: #c4b88b;
    font-size: 24px;
}

.type-card p {
    color: rgba(255, 255, 255, 0.9);
}

.type-benefits {
    list-style: none;
    margin-top: 20px;
    margin-bottom: 20px;
    flex-grow: 1;
}

.type-benefits li {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
}

.type-btn {
    margin-top: auto;
    text-align: center;
    background: #c4b88b;
    color: #0e304b;
    padding: 10px 20px;
    font-size: 14px;
}

/* Focus Areas */
.focus-areas {
    padding: 100px 0;
    background: linear-gradient(135deg, #faf7f2 0%, #ffffff 100%);
}

.section-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #0e304b;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #c4b88b;
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.focus-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 10px;
    transition: all 0.3s;
    background-color: white;
    border: 1px solid transparent;
    box-shadow: 0 5px 20px rgba(14, 48, 75, 0.05);
}

.focus-card:hover {
    transform: translateY(-10px);
    border-color: #c4b88b;
    box-shadow: 0 10px 30px rgba(14, 48, 75, 0.15);
}

.focus-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: #c4b88b;
    transition: transform 0.3s;
}

.focus-card:hover .focus-icon {
    transform: scale(1.1);
}

.focus-card h3 {
    margin-bottom: 15px;
    color: #0e304b;
    font-size: 20px;
}

.focus-card p {
    color: #666;
    line-height: 1.6;
}

.center-btn {
    text-align: center;
    margin-top: 50px;
}

/* Schedule Section */
.schedule {
    padding: 100px 0;
    background-color: #0e304b;
    position: relative;
    overflow: hidden;
}

.schedule::before {
    content: '📅';
    font-size: 250px;
    position: absolute;
    bottom: -50px;
    right: -50px;
    opacity: 0.05;
    transform: rotate(-10deg);
    color: #c4b88b;
    pointer-events: none;
}

.schedule .section-title {
    color: white;
}

.schedule .section-title::after {
    background-color: #c4b88b;
}

.schedule-table-wrapper {
    overflow-x: auto;
    margin-top: 50px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 1px solid rgba(196, 184, 139, 0.3);
    background: rgba(255, 255, 255, 0.95);
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.schedule-table th {
    background: #0e304b;
    color: #c4b88b;
    padding: 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-align: center;
    border-bottom: 2px solid #c4b88b;
}

.schedule-table td {
    padding: 12px 15px;
    text-align: center;
    border-bottom: 1px solid rgba(196, 184, 139, 0.2);
}

.time-cell {
    background: rgba(196, 184, 139, 0.1);
    font-weight: 600;
    color: #0e304b;
}

.class-cell {
    color: #0e304b;
    transition: all 0.3s;
    cursor: pointer;
}

.class-cell:hover {
    background: #c4b88b;
    color: #0e304b;
}

.schedule-note {
    text-align: center;
    margin-top: 30px;
}

.schedule-note p {
    font-size: 18px;
    color: #c4b88b;
    margin-bottom: 20px;
}

.schedule-btn {
    background: #c4b88b;
    color: #0e304b;
}

/* Classes Section */
.classes {
    padding: 100px 0;
    background: linear-gradient(135deg, #0e304b 0%, #1a4663 100%);
    position: relative;
    overflow: hidden;
}

.classes::before {
    content: '🧘';
    font-size: 300px;
    position: absolute;
    top: -50px;
    left: -50px;
    opacity: 0.05;
    transform: rotate(15deg);
    color: #c4b88b;
    pointer-events: none;
}

.classes .section-title {
    color: white;
}

.classes .section-title::after {
    background-color: #c4b88b;
}

.classes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.class-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: all 0.3s;
    border: 1px solid rgba(196, 184, 139, 0.3);
}

.class-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border-color: #c4b88b;
}

.class-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.class-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.class-card:hover .class-image img {
    transform: scale(1.1);
}

.class-image .image-fallback {
    display: none;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    background: linear-gradient(135deg, #c4b88b 0%, #0e304b 100%);
    color: white;
}

.class-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
}

.class-content h3 {
    margin-bottom: 12px;
    color: #0e304b;
    font-size: 22px;
}

.class-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.class-meta {
    display: flex;
    justify-content: space-between;
    color: #c4b88b;
    font-weight: 600;
    padding-top: 15px;
    border-top: 1px solid #eee;
    margin-bottom: 20px;
}

.class-btn {
    text-align: center;
    padding: 12px;
    font-size: 14px;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: linear-gradient(135deg, #faf7f2 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '💰';
    font-size: 250px;
    position: absolute;
    bottom: -50px;
    right: -50px;
    opacity: 0.03;
    transform: rotate(15deg);
    pointer-events: none;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    background: white;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s;
    border: 1px solid rgba(196, 184, 139, 0.2);
    box-shadow: 0 5px 20px rgba(14, 48, 75, 0.05);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(14, 48, 75, 0.15);
    border-color: #c4b88b;
}

.pricing-card.featured {
    border: 2px solid #c4b88b;
    transform: scale(1.05);
    z-index: 1;
    box-shadow: 0 10px 30px rgba(196, 184, 139, 0.2);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #c4b88b;
    color: #0e304b;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.pricing-header h3 {
    font-size: 24px;
    color: #0e304b;
    margin-bottom: 15px;
}

.price {
    font-size: 48px;
    font-weight: 700;
    color: #c4b88b;
    line-height: 1;
}

.pricing-header p {
    color: #666;
    margin-top: 5px;
}

.pricing-features {
    list-style: none;
    margin: 30px 0;
}

.pricing-features li {
    margin-bottom: 12px;
    color: #555;
}

.pricing-btn {
    width: 100%;
    padding: 12px;
}

/* Workshops Section */
.workshops {
    padding: 100px 0;
    background-color: #0e304b;
    position: relative;
    overflow: hidden;
}

.workshops::before {
    content: '✨';
    font-size: 300px;
    position: absolute;
    top: -50px;
    left: -50px;
    opacity: 0.05;
    transform: rotate(25deg);
    color: #c4b88b;
    pointer-events: none;
}

.workshops .section-title {
    color: white;
}

.workshops-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.workshop-card {
    display: flex;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s;
    border: 1px solid transparent;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.workshop-card:hover {
    transform: translateY(-5px);
    border-color: #c4b88b;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.workshop-date {
    background: #0e304b;
    color: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    border-right: 2px solid #c4b88b;
}

.workshop-date .day {
    font-size: 32px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.workshop-date .month {
    font-size: 16px;
    text-transform: uppercase;
    color: #c4b88b;
}

.workshop-details {
    padding: 20px;
    flex: 1;
}

.workshop-details h3 {
    margin-bottom: 10px;
    color: #0e304b;
}

.workshop-time {
    color: #c4b88b;
    font-weight: 600;
    margin-bottom: 10px;
}

.workshop-desc {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.workshop-price {
    font-size: 20px;
    font-weight: 700;
    color: #0e304b;
    margin-bottom: 15px;
}

.workshop-btn {
    padding: 8px 20px;
    font-size: 14px;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #faf7f2 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '"';
    font-size: 300px;
    color: #c4b88b;
    position: absolute;
    top: -50px;
    left: -50px;
    opacity: 0.1;
    font-family: serif;
    transform: rotate(15deg);
}

.testimonials-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(14, 48, 75, 0.08);
    transition: all 0.3s;
    border: 1px solid rgba(196, 184, 139, 0.3);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(14, 48, 75, 0.15);
    border-color: #c4b88b;
}

.student-image-container {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #c4b88b;
    box-shadow: 0 5px 15px rgba(196, 184, 139, 0.3);
}

.student-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.student-image-fallback {
    display: none;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #c4b88b, #0e304b);
    color: white;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}

.student-info {
    text-align: center;
    margin-bottom: 15px;
}

.student-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #0e304b;
    margin-bottom: 4px;
}

.student-since {
    font-size: 11px;
    color: #c4b88b;
    letter-spacing: 0.5px;
}

.testimonial-text {
    color: #555;
    line-height: 1.5;
    font-style: italic;
    margin-bottom: 15px;
    font-size: 13px;
    flex-grow: 1;
}

.testimonial-rating {
    display: flex;
    gap: 3px;
    justify-content: center;
    margin-top: auto;
}

.star {
    color: #c4b88b;
    font-size: 14px;
}

.testimonials-cta {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background: rgba(196, 184, 139, 0.15);
    border-radius: 10px;
    border: 1px solid #c4b88b;
}

.testimonials-cta p {
    font-size: 18px;
    color: #0e304b;
}

.testimonials-cta a {
    color: #c4b88b;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border-bottom: 2px solid transparent;
}

.testimonials-cta a:hover {
    color: #0e304b;
    border-bottom-color: #c4b88b;
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background-color: #0e304b;
    position: relative;
    overflow: hidden;
}

.gallery::before {
    content: '📸';
    font-size: 250px;
    position: absolute;
    bottom: -50px;
    right: -50px;
    opacity: 0.05;
    transform: rotate(-10deg);
    color: #c4b88b;
    pointer-events: none;
}

.gallery .section-title {
    color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    border: 2px solid rgba(196, 184, 139, 0.3);
    transition: all 0.3s;
}

.gallery-item:hover {
    border-color: #c4b88b;
    transform: scale(1.02);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(14, 48, 75, 0.95));
    color: white;
    padding: 20px;
    transition: bottom 0.3s;
}

.gallery-item:hover .gallery-overlay {
    bottom: 0;
}

.gallery-overlay span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #c4b88b;
    font-size: 16px;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: linear-gradient(135deg, #faf7f2 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.faq::before {
    content: '❓';
    font-size: 250px;
    position: absolute;
    top: -50px;
    right: -50px;
    opacity: 0.03;
    transform: rotate(15deg);
    pointer-events: none;
}

.faq-grid {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(14, 48, 75, 0.08);
    border: 1px solid rgba(196, 184, 139, 0.2);
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: #c4b88b;
    box-shadow: 0 8px 20px rgba(14, 48, 75, 0.12);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover {
    background: rgba(196, 184, 139, 0.05);
}

.faq-question h3 {
    font-size: 18px;
    margin: 0;
    color: #0e304b;
}

.faq-question h3 a {
    color: #c4b88b;
    text-decoration: none;
    font-size: 14px;
    margin-left: 10px;
}

.faq-question h3 a:hover {
    text-decoration: underline;
}

.faq-toggle {
    font-size: 24px;
    color: #c4b88b;
    font-weight: 600;
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    padding: 0 20px;
    overflow: hidden;
    transition: all 0.3s;
    background: rgba(196, 184, 139, 0.05);
    color: #666;
    line-height: 1.8;
}

.faq-answer a {
    color: #c4b88b;
    text-decoration: none;
    font-weight: 600;
}

.faq-answer a:hover {
    text-decoration: underline;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 20px;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(14, 48, 75, 0.8);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background: white;
    border-radius: 20px;
    width: 90%;
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideIn 0.3s ease-out;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 2px solid #c4b88b;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.success-modal {
    max-width: 400px;
    text-align: center;
}

.modal-header {
    padding: 25px 30px;
    border-bottom: 2px solid #c4b88b;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #faf7f2, white);
    border-radius: 20px 20px 0 0;
}

.modal-header h2 {
    margin: 0;
    color: #0e304b;
    font-size: 28px;
}

.success-header {
    border-bottom: none;
    background: linear-gradient(135deg, #0e304b, #1a4663);
    justify-content: flex-end;
}

.close-modal {
    font-size: 32px;
    font-weight: 300;
    color: #c4b88b;
    cursor: pointer;
    transition: all 0.3s;
    line-height: 1;
}

.close-modal:hover {
    color: #0e304b;
    transform: scale(1.1);
}

.success-header .close-modal {
    color: white;
}

.success-header .close-modal:hover {
    color: #c4b88b;
}

.modal-body {
    padding: 30px;
}

.success-body {
    text-align: center;
    padding: 40px 30px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #c4b88b;
    color: #0e304b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 20px;
    animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.success-body h2 {
    color: #0e304b;
    margin-bottom: 15px;
    font-size: 32px;
}

.success-body p {
    color: #666;
    margin-bottom: 10px;
    font-size: 16px;
}

.success-body .btn {
    margin-top: 25px;
    padding: 12px 40px;
}

/* Form Styles */
.enquiry-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #0e304b;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    transition: all 0.3s;
    background: #faf7f2;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c4b88b;
    box-shadow: 0 0 0 3px rgba(196, 184, 139, 0.2);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: #c4b88b;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 10px 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #555;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #c4b88b;
}

.form-submit {
    text-align: center;
    margin-top: 20px;
}

.submit-btn {
    padding: 15px 50px;
    font-size: 16px;
    background: #0e304b;
    color: white;
}

.submit-btn:hover {
    background: #1a4663;
    box-shadow: 0 5px 20px rgba(14, 48, 75, 0.3);
}

/* Footer */
.footer {
    background-color: #0e304b;
    color: white;
    padding: 80px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '🧘‍♀️';
    font-size: 250px;
    position: absolute;
    bottom: -50px;
    right: -50px;
    opacity: 0.03;
    transform: rotate(-15deg);
    color: #c4b88b;
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.footer h3 {
    color: #c4b88b;
    margin-bottom: 25px;
    font-size: 20px;
    position: relative;
}

.footer h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #c4b88b;
}

.footer p {
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 20px;
}

.footer-btn {
    padding: 10px 25px;
    font-size: 14px;
    background: #c4b88b;
    color: #0e304b;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    opacity: 0.9;
    display: inline-block;
}

.footer-links a:hover {
    color: #c4b88b;
    opacity: 1;
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: white;
    text-decoration: none;
    font-size: 28px;
    transition: all 0.3s;
    opacity: 0.9;
}

.social-links a:hover {
    color: #c4b88b;
    transform: translateY(-3px);
    opacity: 1;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(196, 184, 139, 0.2);
    font-size: 14px;
    opacity: 0.8;
    position: relative;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .testimonials-row {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .hero h1 {
        font-size: 48px;
    }
    
    .hero h1 span {
        font-size: 28px;
    }
    
    .welcome-content {
        gap: 40px;
    }
    
    .welcome-text h2 {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .testimonials-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .checkbox-group {
        grid-template-columns: 1fr;
    }

    .modal-header h2 {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        gap: 15px;
    }

    .logo {
        justify-content: center;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .nav-links a {
        font-size: 14px;
    }

    .hero {
        min-height: 600px;
    }

    .hero h1 {
        font-size: 36px;
    }
    
    .hero h1 span {
        font-size: 24px;
    }

    .hero p {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn, .btn-outline {
        width: 100%;
        max-width: 250px;
        margin: 0;
        text-align: center;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .carousel-btn.prev {
        left: 15px;
    }
    
    .carousel-btn.next {
        right: 15px;
    }

    .welcome-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .welcome-text h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .welcome-text {
        text-align: center;
    }

    .profile-image, .profile-fallback {
        height: 400px;
    }

    .section-title {
        font-size: 32px;
    }

    .focus-grid {
        gap: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .workshop-card {
        flex-direction: column;
    }
    
    .workshop-date {
        flex-direction: row;
        justify-content: center;
        gap: 10px;
    }
    
    .testimonials-row {
        grid-template-columns: 1fr;
    }

    .modal-content {
        width: 95%;
        margin: 20px;
    }

    .modal-body {
        padding: 20px;
    }

    .modal-header {
        padding: 20px;
    }

    .modal-header h2 {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 10px 0;
    }
    
    .logo {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .logo-image {
        width: 40px;
        height: 40px;
    }
    
    .logo-text-wrapper {
        align-items: center;
    }
    
    .logo-title {
        font-size: 18px;
    }
    
    .logo-tagline {
        font-size: 10px;
    }
    
    .nav-links {
        gap: 10px;
    }
    
    .nav-links a {
        font-size: 12px;
        padding: 5px 8px;
    }

    .enquiry-nav-link {
        padding: 5px 12px !important;
        font-size: 12px;
    }

    .hero h1 {
        font-size: 28px;
    }
    
    .hero h1 span {
        font-size: 20px;
    }
    
    .hero p {
        font-size: 16px;
    }

    .btn {
        padding: 12px 30px;
        font-size: 14px;
    }

    .focus-grid {
        grid-template-columns: 1fr;
    }

    .classes-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-links {
        justify-content: center;
    }
    
    .faq-question h3 {
        font-size: 16px;
    }

    .modal-header h2 {
        font-size: 20px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 14px;
    }

    .checkbox-label {
        font-size: 13px;
    }

    .submit-btn {
        padding: 12px 30px;
        width: 100%;
    }

    .success-body {
        padding: 30px 20px;
    }

    .success-body h2 {
        font-size: 28px;
    }

    .success-icon {
        width: 60px;
        height: 60px;
        font-size: 30px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading States */
.class-image img {
    opacity: 0;
    transition: opacity 0.3s;
}

.class-image img.loaded {
    opacity: 1;
}

/* Print Styles */
@media print {
    .navbar,
    .carousel-btn,
    .carousel-indicators,
    .btn,
    .modal,
    .footer::before,
    .testimonials::before,
    .welcome::before,
    .yoga-types::before,
    .schedule::before,
    .classes::before,
    .pricing::before,
    .workshops::before,
    .gallery::before,
    .faq::before {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .hero-overlay {
        background: none;
    }
    
    .hero h1,
    .hero h1 span,
    .hero p {
        color: black;
        text-shadow: none;
    }
}