/* Color Palette Variables */
:root {
    --primary-brown: #744127;
    --white: #ffffff;
    --light-gray: #a3a09e;
    --gold: #d88d42;
    --dark-brown: #a25830;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--primary-brown);
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(116, 65, 39, 0.1);
}

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

.logo-img {
    height: 60px;
    width: auto;
}

.navigation {
    display: flex;
    align-items: center;
}

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

.nav-link {
    text-decoration: none;
    color: var(--primary-brown);
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
}

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

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

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

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-brown);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(116, 65, 39, 0.4), rgba(162, 88, 48, 0.4)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><pattern id="horse-pattern" x="0" y="0" width="400" height="300" patternUnits="userSpaceOnUse"><path d="M50 150 Q100 100 150 120 Q200 140 250 130 Q300 120 350 140 L350 200 Q300 180 250 190 Q200 200 150 180 Q100 200 50 180 Z" fill="%23d88d42" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23horse-pattern)"/></svg>') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(116, 65, 39, 0.3) 0%, rgba(216, 141, 66, 0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 30px;
    font-style: italic;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 40px;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.btn-primary:hover {
    background: var(--dark-brown);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(216, 141, 66, 0.3);
}

.language-switcher {
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-brown) 100%);
    color: var(--white);
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: 'Open Sans', sans-serif;
}

.language-switcher:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(216, 141, 66, 0.3);
    background: linear-gradient(135deg, var(--dark-brown) 0%, var(--gold) 100%);
}

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

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-brown);
    transform: translateY(-2px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: rotate(45deg);
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--white) 0%, #f8f8f8 100%);
    box-shadow: 0 10px 30px rgba(116, 65, 39, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(116, 65, 39, 0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-brown);
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--light-gray);
    line-height: 1.6;
}

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

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

/* Horses Page Styles */
.horses-banner {
    height: 60vh;
    background: linear-gradient(rgba(116, 65, 39, 0.6), rgba(162, 88, 48, 0.6)),
                url('https://images.unsplash.com/photo-1553284965-83fd3e82fa5a?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    margin-top: 90px;
}

.horses-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(116, 65, 39, 0.4) 0%, rgba(216, 141, 66, 0.3) 100%);
}

.horses-banner-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.horses-banner-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.horses-banner-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 25px;
    font-style: italic;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.horses-banner-description {
    font-size: 1.1rem;
    color: var(--white);
    line-height: 1.7;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.horses-grid-section {
    padding: 100px 0;
    background: var(--white);
}

.horses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.horse-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(116, 65, 39, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.horse-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(116, 65, 39, 0.15);
}

.horse-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

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

.horse-card:hover .horse-img {
    transform: scale(1.05);
}

.horse-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary-brown);
    margin: 25px 25px 15px;
    font-weight: 600;
}

.horse-description {
    color: var(--light-gray);
    line-height: 1.6;
    margin: 0 25px 30px;
    font-size: 0.95rem;
}

/* Coaches Page Styles */
.coaches-header {
    height: 60vh;
    background: linear-gradient(rgba(116, 65, 39, 0.7), rgba(162, 88, 48, 0.7)),
                url('https://images.unsplash.com/photo-1544737151-6e4b9d1b7e6e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    margin-top: 90px;
}

.coaches-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(116, 65, 39, 0.5) 0%, rgba(216, 141, 66, 0.4) 100%);
}

.coaches-header-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.coaches-header-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.coaches-header-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 25px;
    font-style: italic;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.coaches-header-description {
    font-size: 1.1rem;
    color: var(--white);
    line-height: 1.7;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.coaches-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.coaches-list {
    max-width: 1000px;
    margin: 0 auto;
}

.coach-item {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    gap: 60px;
    opacity: 0;
    transform: translateY(50px);
    animation: slideInUp 0.8s ease-out forwards;
}

.coach-item:nth-child(1) { animation-delay: 0.2s; }
.coach-item:nth-child(2) { animation-delay: 0.4s; }
.coach-item:nth-child(3) { animation-delay: 0.6s; }
.coach-item:nth-child(4) { animation-delay: 0.8s; }

.coach-left {
    flex-direction: row;
}

.coach-right {
    flex-direction: row-reverse;
}

.coach-content {
    flex: 1;
    padding: 40px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(116, 65, 39, 0.1);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.coach-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(116, 65, 39, 0.15);
}

.coach-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--dark-brown) 100%);
    border-radius: 20px 20px 0 0;
}

.coach-image {
    flex: 0 0 300px;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

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

.coach-item:hover .coach-img {
    transform: scale(1.05);
}

.coach-name {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-brown);
    margin-bottom: 8px;
    font-weight: 600;
}

.coach-title {
    font-size: 1.1rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.coach-experience {
    font-size: 0.9rem;
    color: var(--light-gray);
    margin-bottom: 20px;
    font-style: italic;
}

.coach-description {
    color: var(--primary-brown);
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 1rem;
}

.coach-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.specialty {
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-brown) 100%);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

/* Contact Page Styles */
.contact-header {
    height: 60vh;
    background: linear-gradient(rgba(116, 65, 39, 0.7), rgba(162, 88, 48, 0.7)),
                url('https://images.unsplash.com/photo-1553284965-83fd3e82fa5a?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    margin-top: 90px;
}

.contact-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(116, 65, 39, 0.5) 0%, rgba(216, 141, 66, 0.4) 100%);
}

.contact-header-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.contact-header-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.contact-header-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 25px;
    font-style: italic;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.contact-header-description {
    font-size: 1.1rem;
    color: var(--white);
    line-height: 1.7;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

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

.contact-form-container {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(116, 65, 39, 0.1);
    position: relative;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--dark-brown) 100%);
    border-radius: 20px 20px 0 0;
}

.form-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--primary-brown);
    margin-bottom: 30px;
    text-align: center;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    font-weight: 600;
    color: var(--primary-brown);
    margin-bottom: 8px;
    font-size: 1rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Open Sans', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: #fafafa;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(216, 141, 66, 0.1);
    background: var(--white);
}

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

.form-submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-brown) 100%);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(216, 141, 66, 0.3);
}

.social-media-container {
    padding: 20px;
}

.social-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--primary-brown);
    margin-bottom: 20px;
    text-align: center;
}

.social-description {
    color: var(--light-gray);
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Phone Call Section */
.phone-call-section {
    margin: 30px 0 40px 0;
}

.phone-call-link {
    display: flex;
    align-items: center;
    padding: 25px;
    background: var(--white);
    border-radius: 15px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 20px rgba(116, 65, 39, 0.1);
    border: 2px solid transparent;
}

.phone-call-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(116, 65, 39, 0.2);
    border-color: var(--gold);
}

.phone-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    background: linear-gradient(45deg, var(--primary-brown) 0%, var(--dark-brown) 100%);
}

.phone-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.phone-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--primary-brown);
    margin-bottom: 5px;
}

.phone-info p {
    color: var(--light-gray);
    font-size: 0.95rem;
}

/* Social Media Links */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 40px 0;
}

.social-link {
    display: flex;
    align-items: center;
    padding: 25px;
    background: var(--white);
    border-radius: 15px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 20px rgba(116, 65, 39, 0.1);
    border: 2px solid transparent;
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(116, 65, 39, 0.2);
    border-color: var(--gold);
}

.social-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.social-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.social-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--primary-brown);
    margin-bottom: 5px;
}

.social-info p {
    color: var(--light-gray);
    font-size: 0.95rem;
}

.facebook .social-icon {
    background: linear-gradient(45deg, #1877f2 0%, #166fe5 100%);
}

.instagram .social-icon {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.tiktok .social-icon {
    background: linear-gradient(45deg, #ff0050 0%, #000000 100%);
}

.whatsapp .social-icon {
    background: linear-gradient(45deg, #25d366 0%, #128c7e 100%);
}

.social-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--primary-brown);
    margin-bottom: 5px;
}

.social-info p {
    color: var(--light-gray);
    font-size: 0.95rem;
}

.quick-contact {
    background: linear-gradient(135deg, var(--primary-brown) 0%, var(--dark-brown) 100%);
    color: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.quick-contact h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.quick-contact p {
    opacity: 0.9;
    line-height: 1.6;
}

/* About Page Styles */
.about-hero {
    height: 70vh;
    background: linear-gradient(rgba(116, 65, 39, 0.7), rgba(162, 88, 48, 0.7)),
                url('https://images.unsplash.com/photo-1544737151-6e4b9d1b7e6e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    margin-top: 90px;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(116, 65, 39, 0.5) 0%, rgba(216, 141, 66, 0.4) 100%);
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.about-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.about-hero-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--gold);
    font-style: italic;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.about-story {
    padding: 100px 0;
    background: var(--white);
}

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

.story-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-brown);
    margin-bottom: 30px;
}

.story-description {
    color: var(--light-gray);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.story-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(116, 65, 39, 0.2);
}

.story-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.story-image:hover .story-img {
    transform: scale(1.05);
}

.about-mission {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.mission-card {
    background: var(--white);
    padding: 50px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(116, 65, 39, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--dark-brown) 100%);
    border-radius: 20px 20px 0 0;
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(116, 65, 39, 0.15);
}

.mission-icon {
    font-size: 3rem;
    margin-bottom: 25px;
}

.mission-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--primary-brown);
    margin-bottom: 20px;
}

.mission-card p {
    color: var(--light-gray);
    line-height: 1.7;
    font-size: 1rem;
}

.about-facilities {
    padding: 100px 0;
    background: var(--white);
}

.facilities-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-brown);
    text-align: center;
    margin-bottom: 60px;
}

.facilities-grid {
    display: grid;
    gap: 60px;
}

.facility-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.facility-item:nth-child(even) {
    direction: rtl;
}

.facility-item:nth-child(even) .facility-content {
    direction: ltr;
}

.facility-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(116, 65, 39, 0.15);
}

.facility-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.facility-item:hover .facility-img {
    transform: scale(1.05);
}

.facility-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary-brown);
    margin-bottom: 20px;
}

.facility-content p {
    color: var(--light-gray);
    line-height: 1.7;
    font-size: 1.1rem;
}

.about-commitment {
    padding: 100px 0;
    background: linear-gradient(rgba(116, 65, 39, 0.9), rgba(162, 88, 48, 0.9)),
                url('https://images.unsplash.com/photo-1553284965-83fd3e82fa5a?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
    position: relative;
    text-align: center;
}

.about-commitment-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(116, 65, 39, 0.4) 0%, rgba(216, 141, 66, 0.3) 100%);
}

.commitment-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.commitment-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.commitment-description {
    color: var(--white);
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 25px;
    opacity: 0.95;
}

.commitment-btn {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-brown) 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 20px;
}

.commitment-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(216, 141, 66, 0.4);
}

/* Mobile Navigation Styles */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding: 12px;
    width: 50px;
    height: 50px;
    z-index: 1001;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    position: relative;
}

.hamburger:hover {
    background-color: rgba(116, 65, 39, 0.1);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-brown);
    margin: 2px 0;
    transition: 0.3s;
    border-radius: 2px;
    display: block;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-7px, -7px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 90px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        z-index: 1000;
        padding: 20px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 15px 0;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 15px 20px;
        display: block;
        border-radius: 8px;
        margin: 0 20px;
        transition: all 0.3s ease;
    }
    
    .nav-link:hover {
        background: linear-gradient(135deg, var(--gold) 0%, var(--dark-brown) 100%);
        color: var(--white);
        transform: translateY(-2px);
    }
    
    .language-switcher {
        margin: 10px 20px;
        padding: 12px 20px;
        font-size: 1rem;
        border-radius: 25px;
        width: calc(100% - 40px);
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 200px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .horses-banner {
        height: 50vh;
        margin-top: 80px;
    }
    
    .horses-banner-title {
        font-size: 2.5rem;
    }
    
    .horses-banner-subtitle {
        font-size: 1.1rem;
    }
    
    .horses-banner-description {
        font-size: 1rem;
    }
    
    .horses-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .coaches-header {
        height: 50vh;
        margin-top: 80px;
    }
    
    .coaches-header-title {
        font-size: 2.5rem;
    }
    
    .coaches-header-subtitle {
        font-size: 1.1rem;
    }
    
    .coaches-header-description {
        font-size: 1rem;
    }
    
    .coaches-section {
        padding: 80px 0;
    }
    
    .coach-item {
        flex-direction: column !important;
        gap: 30px;
        margin-bottom: 60px;
        text-align: center;
    }
    
    .coach-image {
        flex: none;
        width: 250px;
        height: 300px;
        margin: 0 auto;
    }
    
    .coach-content {
        padding: 30px 20px;
    }
    
    .coach-name {
        font-size: 1.6rem;
    }
    
    .contact-header {
        height: 50vh;
        margin-top: 80px;
    }
    
    .contact-header-title {
        font-size: 2.5rem;
    }
    
    .contact-header-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-header-description {
        font-size: 1rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-form-container {
        padding: 30px 25px;
    }
    
    .form-title {
        font-size: 1.8rem;
    }
    
    .social-title {
        font-size: 1.8rem;
    }
    
    .social-media-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .social-card {
        padding: 20px 10px;
    }
    
    .social-card h4 {
        font-size: 1rem;
    }
    
    .social-card p {
        font-size: 0.8rem;
    }
    
    .phone-call-link {
        padding: 20px;
    }
    
    .phone-icon {
        width: 50px;
        height: 50px;
        margin-right: 15px;
    }
    
    .phone-icon i {
        font-size: 1.5rem;
    }
    
    .phone-info h3 {
        font-size: 1.2rem;
    }
    
    .about-hero {
        height: 50vh;
        margin-top: 80px;
    }
    
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .story-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .facilities-title {
        font-size: 2rem;
    }
    
    .facility-item {
        grid-template-columns: 1fr !important;
        gap: 30px;
        direction: ltr !important;
    }
    
    .facility-content {
        text-align: center;
    }
    
    .commitment-title {
        font-size: 2.2rem;
    }
    
    .commitment-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 45px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
}
