/* Modern Pilates Website Styles */

:root {
    --primary: #867154;        /* Dark brown - NO GREEN */
    --primary-dark: #6B5A43;   /* Darker brown */
    --secondary: #e7e1df;      /* Main color - light beige */
    --accent: #867154;         /* Dark brown accent */
    --dark: #2c2c2c;
    --light: #ecebea;          /* Light color */
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.1);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px var(--shadow);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
}

.nav-brand h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--primary);
    font-weight: 700;
}

.nav-brand .site-logo {
    max-height: 50px;
    height: auto;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.nav-brand .site-logo:hover {
    transform: scale(1.05);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: all 0.3s;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s;
    position: relative;
}

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

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

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

/* Language Switcher */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 20px;
}

.lang-option {
    padding: 6px 12px;
    border-radius: 6px;
    text-decoration: none;
    color: var(--dark);
    background: var(--light);
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    white-space: nowrap;
}

.lang-option:hover {
    background: var(--secondary);
    color: var(--primary);
    transform: translateY(-2px);
}

.lang-option.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary-dark);
    box-shadow: 0 2px 8px rgba(134, 113, 84, 0.3);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #867154 0%, #e7e1df 50%, #ecebea 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><path fill="rgba(255,255,255,0.05)" d="M0,100 Q300,50 600,100 T1200,100 L1200,600 L0,600 Z"/></svg>') no-repeat center;
    background-size: cover;
}

.hero-content {
    position: relative;
    text-align: center;
    color: var(--white);
    z-index: 1;
}

.hero-label {
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 15px;
    opacity: 0.9;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0.95;
    line-height: 1.8;
}

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

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: bounce 2s infinite;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(134, 113, 84, 0.4);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(134, 113, 84, 0.6);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

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

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 10px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-description {
    max-width: 600px;
    margin: 0 auto;
    color: #666;
    line-height: 1.8;
}

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

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

.about-text p {
    margin-bottom: 25px;
    line-height: 1.9;
    color: #555;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(134, 113, 84, 0.2);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    max-height: 600px;
}

.image-placeholder {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 80px;
    opacity: 0.8;
}

/* Services Section */
.services {
    background: var(--light);
}

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

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px var(--shadow);
}

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

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--white);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark);
}

.service-card p {
    color: #666;
    line-height: 1.8;
}

/* Benefits Section */
.benefits {
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.benefit-card {
    text-align: center;
    padding: 30px 20px;
}

.benefit-icon {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--dark);
}

.benefit-card p {
    color: #666;
    font-size: 14px;
}

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

/* Poses Section */
.poses {
    background: var(--light);
}

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

.pose-card {
    background: var(--white);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 3px 15px var(--shadow);
    position: relative;
}

.pose-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.pose-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.pose-info h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--dark);
}

.pose-sanskrit {
    font-size: 12px;
    color: #999;
    font-style: italic;
}

.pose-difficulty {
    display: inline-block;
    margin-top: 10px;
    padding: 4px 12px;
    background: var(--primary);
    color: var(--white);
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

/* Trainers Section */
.trainers {
    background: var(--white);
}

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

.trainer-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px var(--shadow);
    transition: all 0.3s ease;
}

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

.trainer-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

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

.trainer-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 80px;
}

.trainer-social {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s;
}

.trainer-card:hover .trainer-social {
    opacity: 1;
}

.trainer-social a {
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.3s;
}

.trainer-social a:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.trainer-info {
    padding: 30px;
    text-align: center;
}

.trainer-info h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--dark);
}

.trainer-title {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 15px;
}

.trainer-bio {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
}

/* Schedule Section */
.schedule {
    background: var(--light);
}

.schedule-content {
    max-width: 1000px;
    margin: 0 auto;
}

.schedule-tables {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.schedule-table-wrapper {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
}

.schedule-table thead {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
}

.schedule-table th,
.schedule-table td {
    padding: 15px;
    text-align: center;
    font-size: 14px;
}

.schedule-table th {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
}

.schedule-table tbody tr:nth-child(even) {
    background: var(--light);
}

.time-cell {
    font-weight: 600;
    color: var(--primary);
}

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

/* Statistics Section */
.stats {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-item {
    text-align: center;
    color: var(--white);
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.stat-item p {
    font-size: 16px;
    opacity: 0.95;
}

/* Testimonials Section */
.testimonials {
    background: var(--white);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--light);
    padding: 40px;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 5px 20px var(--shadow);
}

.testimonial-quote {
    font-size: 80px;
    color: var(--primary);
    opacity: 0.2;
    position: absolute;
    top: 20px;
    left: 30px;
    font-family: 'Playfair Display', serif;
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.9;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    font-size: 16px;
    margin-bottom: 3px;
}

.testimonial-author p {
    font-size: 13px;
    color: #666;
}

.testimonial-rating {
    color: #ffc107;
    font-size: 14px;
}

/* Pricing Section */
.pricing {
    background: var(--light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 30px;
}

.pricing-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s ease;
}

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

.pricing-card.featured {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffc107;
    color: var(--dark);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-name {
    font-size: 24px;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.pricing-price {
    margin-bottom: 30px;
}

.currency {
    font-size: 24px;
    vertical-align: top;
}

.amount {
    font-size: 60px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.period {
    display: block;
    font-size: 14px;
    opacity: 0.8;
    margin-top: 5px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 14px;
}

.pricing-card.featured .pricing-features li {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

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

.pricing-card.featured .pricing-features i {
    color: var(--white);
}

.pricing-note {
    text-align: center;
    font-size: 13px;
    color: #666;
}

/* Gallery Section - Modern Design */
.gallery {
    background: linear-gradient(180deg, #fff 0%, #e7e1df 100%);
    padding: 100px 0;
}

.gallery .section-header {
    margin-bottom: 60px;
}

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

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(134, 113, 84, 0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(134, 113, 84, 0.3), rgba(134, 113, 84, 0.3));
    opacity: 0;
    transition: opacity 0.5s;
    z-index: 1;
}

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

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(134, 113, 84, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    color: var(--white);
    opacity: 0;
    transition: opacity 0.5s;
    z-index: 2;
}

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

.gallery-overlay h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    transform: translateY(20px);
    transition: transform 0.5s;
}

.gallery-item:hover .gallery-overlay h4 {
    transform: translateY(0);
}

.gallery-overlay p {
    font-size: 14px;
    opacity: 0.9;
    transform: translateY(20px);
    transition: transform 0.5s 0.1s;
}

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

.gallery-overlay p {
    font-size: 13px;
    opacity: 0.9;
}

/* Blog Section */
.blog {
    background: var(--light);
}

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

.blog-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s ease;
}

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

.blog-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary);
    color: var(--white);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.blog-content {
    padding: 30px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 13px;
    color: #999;
}

.blog-meta i {
    margin-right: 5px;
}

.blog-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark);
    line-height: 1.4;
}

.blog-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.blog-author {
    font-size: 13px;
    color: #999;
}

/* Contact Section */
.contact {
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--dark);
}

.contact-item p {
    color: #666;
    font-size: 14px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(134, 113, 84, 0.1);
}

.form-message {
    margin-top: 15px;
    padding: 15px;
    border-radius: 8px;
    font-size: 14px;
    display: none;
}

.form-message.success {
    background: #d1fae5;
    color: #065f46;
    display: block;
}

.form-message.error {
    background: #fee2e2;
    color: #991b1b;
    display: block;
}

/* Privacy Consent Checkbox */
.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 10px 0;
    padding: 15px;
    background: rgba(134, 113, 84, 0.05);
    border-radius: 10px;
    border: 2px solid rgba(134, 113, 84, 0.1);
    transition: all 0.3s;
}

.form-checkbox:hover {
    border-color: rgba(134, 113, 84, 0.3);
    background: rgba(134, 113, 84, 0.08);
}

.form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin: 0;
    cursor: pointer;
    accent-color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.form-checkbox label {
    font-size: 14px;
    line-height: 1.6;
    color: var(--dark);
    cursor: pointer;
    margin: 0;
    user-select: none;
}

.form-checkbox label strong {
    color: var(--primary);
}

/* Checkbox validation state */
.form-checkbox input[type="checkbox"]:invalid {
    outline: 2px solid #ef4444;
    outline-offset: 2px;
}

.form-checkbox input[type="checkbox"]:valid {
    outline: none;
}

/* Newsletter Section */
.newsletter {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    padding: 80px 0;
}

.newsletter-content {
    text-align: center;
    color: var(--white);
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: 15px;
}

.newsletter-content p {
    margin-bottom: 30px;
    opacity: 0.95;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 25px;
    border: none;
    border-radius: 50px;
    font-size: 14px;
}

.newsletter-form .btn {
    padding: 15px 35px;
    background: var(--dark);
    border-color: var(--dark);
}

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

.newsletter-message {
    margin-top: 15px;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    display: none;
}

.newsletter-message.success {
    background: rgba(255, 255, 255, 0.2);
    display: block;
}

.newsletter-message.error {
    background: rgba(255, 0, 0, 0.2);
    display: block;
}

/* Mobile App Section - Ultra Modern Design */
.app-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #ecebea 0%, #fff 50%, #e7e1df 100%);
    position: relative;
    overflow: hidden;
}

.app-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(134, 113, 84, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.app-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(231, 225, 223, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.app-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.app-text .section-label {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.app-text .section-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.app-description {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 40px;
}

.app-features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 40px 0;
}

.app-feature-item {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 20px;
    border: 1px solid rgba(134, 113, 84, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(134, 113, 84, 0.08);
}

.app-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(134, 113, 84, 0.2);
    border-color: var(--primary);
}

.app-feature-item .feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 15px;
    box-shadow: 0 8px 25px rgba(134, 113, 84, 0.3);
}

.app-feature-item .feature-text h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark);
}

.app-feature-item .feature-text p {
    font-size: 14px;
    color: #777;
    line-height: 1.6;
    margin: 0;
}

.app-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.app-store-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 30px;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-width: 200px;
}

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

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

.app-store-btn.google-play {
    background: linear-gradient(135deg, #000 0%, #2c2c2c 100%);
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.app-store-btn.apple-store {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.app-store-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.3);
}

.app-store-btn i {
    font-size: 40px;
    position: relative;
    z-index: 1;
}

.app-store-btn div {
    position: relative;
    z-index: 1;
}

.app-store-btn small {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    opacity: 0.9;
    letter-spacing: 0.5px;
}

.app-store-btn strong {
    display: block;
    font-size: 20px;
    font-weight: 600;
    margin-top: 2px;
}

/* App Mockup - Ultra Modern Phone Design */
.app-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-mockup {
    width: 320px;
    height: 650px;
    background: linear-gradient(135deg, #867154 0%, #a8917a 50%, #e7e1df 100%);
    border-radius: 50px;
    padding: 15px;
    box-shadow: 
        0 30px 80px rgba(134, 113, 84, 0.4),
        0 0 0 20px rgba(255, 255, 255, 0.1),
        inset 0 0 0 2px rgba(255, 255, 255, 0.3);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(-2deg); }
    50% { transform: translateY(0px) rotate(0deg); }
    75% { transform: translateY(-15px) rotate(2deg); }
}

.app-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 30px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 0 0 20px 20px;
    z-index: 2;
}

.app-mockup::after {
    content: '';
    position: absolute;
    inset: 15px;
    background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-mockup i {
    font-size: 150px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 3;
    animation: pulse 2s ease-in-out infinite;
}

/* App Screenshot - Displayed inside phone mockup */
.app-mockup .app-screenshot {
    position: absolute;
    inset: 15px;
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    object-fit: cover;
    border-radius: 38px;
    z-index: 2;
}

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

/* Decorative Elements */
.app-image::before,
.app-image::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    z-index: 0;
}

.app-image::before {
    top: -30px;
    right: -30px;
    background: radial-gradient(circle, rgba(134, 113, 84, 0.15) 0%, transparent 70%);
    animation: decorFloat 8s ease-in-out infinite;
}

.app-image::after {
    bottom: -30px;
    left: -30px;
    background: radial-gradient(circle, rgba(231, 225, 223, 0.2) 0%, transparent 70%);
    animation: decorFloat 8s ease-in-out infinite reverse;
}

@keyframes decorFloat {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, -20px); }
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 100px 0 20px;
    position: relative;
    overflow: hidden;
}

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

.footer-col h3,
.footer-col h4 {
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.footer-col .footer-logo {
    max-height: 60px;
    height: auto;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    margin-bottom: 20px;
    display: block;
}

.footer-col p {
    opacity: 0.8;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

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

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

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--primary);
}

.footer-col ul li i {
    margin-right: 10px;
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    opacity: 0.7;
    font-size: 14px;
}

.footer-bottom a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

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

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(134, 113, 84, 0.4);
}

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

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

/* Responsive */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 20px var(--shadow);
        transform: translateX(-100%);
        transition: transform 0.3s;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .language-switcher {
        margin-left: 0;
        margin-top: 15px;
        width: 100%;
        justify-content: center;
    }
    
    .lang-option {
        flex: 1;
        text-align: center;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .about-content,
    .contact-content,
    .app-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .app-image {
        order: -1;
    }
    
    .app-mockup {
        width: 280px;
        height: 560px;
        border-radius: 40px;
    }
    
    .app-mockup i {
        font-size: 120px;
    }
    
    .app-text .section-title {
        font-size: 36px;
    }
    
    .app-features-list {
        grid-template-columns: 1fr;
    }
    
    .app-buttons {
        flex-direction: column;
    }
    
    .app-store-btn {
        width: 100%;
        justify-content: center;
    }
    
    .schedule-tables {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile Horizontal Scroll Prevention */
@media (max-width: 768px) {
    * {
        max-width: 100%;
    }
    
    .container {
        overflow-x: hidden;
        width: 100%;
    }
    
    section {
        overflow-x: hidden;
        width: 100%;
    }
    
    .hero,
    .navbar,
    .footer {
        overflow-x: hidden;
        width: 100%;
    }
    
    img {
        max-width: 100%;
        height: auto;
    }
    
    .app-mockup,
    .app-image,
    .about-image,
    .gallery-item {
        max-width: 100%;
    }
    
    /* Prevent row overflow */
    .row,
    .grid,
    [class*="-grid"],
    [class*="-content"] {
        max-width: 100%;
        overflow-x: hidden;
    }
}

/* Video Section with Curved Decorations */
.video-section {
    position: relative;
    padding: 180px 0 120px 0;
    overflow: hidden;
    background: 
        linear-gradient(135deg, rgba(134, 113, 84, 0.3) 0%, rgba(107, 90, 67, 0.4) 100%),
        linear-gradient(45deg, #e7e1df 25%, transparent 25%, transparent 75%, #e7e1df 75%, #e7e1df),
        linear-gradient(45deg, #e7e1df 25%, transparent 25%, transparent 75%, #e7e1df 75%, #e7e1df);
    background-size: 100% 100%, 60px 60px, 60px 60px;
    background-position: 0 0, 0 0, 30px 30px;
    margin-top: 80px;
}

.video-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.8;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(134, 113, 84, 0.6) 0%, rgba(107, 90, 67, 0.5) 100%);
    z-index: 1;
}

.video-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.video-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.play-button {
    display: inline-block;
    margin-bottom: 25px;
    cursor: pointer;
    transition: all 0.4s ease;
}

.play-button:hover {
    transform: scale(1.1);
}

.play-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.5);
    transition: all 0.4s ease;
    animation: pulse 2s infinite;
}

.play-button:hover .play-icon {
    background: rgba(255, 255, 255, 0.35);
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.5);
}

.play-icon svg {
    width: 35px;
    height: 40px;
    margin-left: 5px;
    fill: #ffffff;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }
}

.video-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.video-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 1px;
    text-transform: lowercase;
}

/* Curved SVG Decorations */
.curved-decoration {
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 3;
    line-height: 0;
}

.curved-decoration.top {
    top: -1px;
    transform: rotate(180deg);
}

.curved-decoration.bottom {
    bottom: -1px;
}

.curved-decoration svg {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .video-section {
        padding: 100px 0 80px 0;
        margin-top: 60px;
    }
    
    .play-icon {
        width: 80px;
        height: 80px;
    }
    
    .play-icon svg {
        width: 28px;
        height: 32px;
    }
    
    .video-title {
        font-size: 24px;
    }
    
    .video-subtitle {
        font-size: 14px;
    }
}

/* AOS Animation Library Styles */
[data-aos] {
    opacity: 0;
    transition-property: transform, opacity;
}

[data-aos][data-aos][data-aos-duration="400"] {
    transition-duration: 400ms;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}
