:root {
    --primary: #0c1c3d; /* Deep navy blue */
    --secondary: #b8860b; /* Dark gold */
    --accent: #8b4513; /* Saddle brown */
    --light: #f5f2e9; /* Cream white */
    --dark: #1a1a1a; /* Almost black */
    --transition: all 0.4s ease;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

body {
    font-family: 'Playfair Display', serif;
    color: var(--dark);
    background-color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
    line-height: 1.2;
    margin: 0 0 20px 0;
    letter-spacing: 0.5px;
}

h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: 1px;
}

h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    position: relative;
}

h2:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 3px;
    background-color: var(--secondary);
}

h2.centered:after {
    left: 50%;
    transform: translateX(-50%);
}

h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

p {
    margin-bottom: 20px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    line-height: 1.8;
    font-weight: 400;
}

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

a:hover {
    color: var(--secondary);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

.btn {
    display: inline-block;
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 15px 30px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    z-index: 1;
}

.btn:hover {
    color: var(--light);
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--primary);
    transition: var(--transition);
    z-index: -1;
}

.btn:hover:before {
    width: 100%;
}

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

.btn-secondary:before {
    background-color: var(--secondary);
}

.btn-dark {
    color: var(--light);
    border-color: var(--light);
}

.btn-dark:hover {
    color: var(--dark);
}

.btn-dark:before {
    background-color: var(--light);
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.header.scrolled {
    background-color: rgba(12, 28, 61, 0.95);
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

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

.logo-img {
    height: 60px;
    transition: var(--transition);
}

.scrolled .logo-img {
    height: 50px;
}

.logo-text {
    color: var(--light);
    font-size: 1.8rem;
    font-weight: 400;
    margin-left: 15px;
    letter-spacing: 1px;
    transition: var(--transition);
}

.scrolled .logo-text {
    font-size: 1.6rem;
}

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

.nav-item {
    margin-left: 40px;
}

.nav-link {
    color: var(--light);
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding: 5px 0;
}

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

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

.mobile-nav-toggle {
    display: none;
    color: var(--light);
    font-size: 1.8rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background-color: var(--dark);
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(12, 28, 61, 0.8) 0%, rgba(12, 28, 61, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin-left: 100px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.5s;
}

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

.hero h1 {
    color: var(--light);
    margin-bottom: 20px;
    font-size: 4.5rem;
    line-height: 1.2;
    text-transform: uppercase;
}

.hero h1 span {
    color: var(--secondary);
    font-style: italic;
    text-transform: none;
}

.hero p {
    color: var(--light);
    font-size: 1.5rem;
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.scroll-down {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--light);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeIn 1s ease forwards;
    animation-delay: 1.5s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.scroll-down span {
    margin-bottom: 10px;
}

.scroll-down i {
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

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

/* About Section */
.about {
    padding: 150px 0;
    position: relative;
    overflow: hidden;
}

.about-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: url('/api/placeholder/600/800');
    background-size: cover;
    opacity: 0.1;
    z-index: -1;
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.about-text {
    position: relative;
}

.about-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    display: block;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.stat-number:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: var(--secondary);
}

.stat-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-image {
    position: relative;
}

.about-img-main {
    width: 100%;
    height: 600px;
    object-fit: cover;
    box-shadow: var(--box-shadow);
}

.about-img-accent {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 60%;
    height: 250px;
    object-fit: cover;
    border: 10px solid var(--light);
    box-shadow: var(--box-shadow);
}

/* Services Section */
.services {
    padding: 150px 0;
    background-color: var(--primary);
    color: var(--light);
    position: relative;
    overflow: hidden;
}

.services-pattern {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background-image: url('/api/placeholder/400/400');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.05;
    z-index: 0;
}

.services h2 {
    color: var(--light);
    text-align: center;
    margin-bottom: 80px;
}

.services h2:after {
    background-color: var(--secondary);
    left: 50%;
    transform: translateX(-50%);
}

.services-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    position: relative;
    z-index: 1;
}

.service-box {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-box:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
}

.service-icon {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--light);
    position: relative;
}

.service-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-family: 'Cormorant Garamond', serif;
}

.service-link {
    color: var(--secondary);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.service-link:after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--secondary);
    transition: var(--transition);
}

.service-link:hover {
    color: var(--light);
}

.service-link:hover:after {
    background-color: var(--light);
}

/* Horses Section */
.horses {
    padding: 150px 0;
    background-color: var(--light);
    position: relative;
}

.horses h2 {
    text-align: center;
    margin-bottom: 30px;
}

.horses h2:after {
    left: 50%;
    transform: translateX(-50%);
}

.horses-intro {
    max-width: 800px;
    margin: 0 auto 80px;
    text-align: center;
}

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

.horse-card {
    position: relative;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 500px;
}

.horse-card:hover {
    transform: translateY(-10px);
}

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

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

.horse-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    color: var(--light);
    transition: var(--transition);
}

.horse-card:hover .horse-overlay {
    background: linear-gradient(to top, rgba(12, 28, 61, 0.9) 0%, rgba(12, 28, 61, 0.7) 50%, rgba(12, 28, 61, 0) 100%);
    padding-bottom: 50px;
}

.horse-name {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.horse-breed {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 15px;
    opacity: 0.9;
}

.horse-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.horse-card:hover .horse-desc {
    opacity: 1;
    transform: translateY(0);
}

.horse-link {
    color: var(--secondary);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    letter-spacing: 1px;
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    position: relative;
}

.horse-link:after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--secondary);
    transition: var(--transition);
}

.horse-card:hover .horse-link {
    opacity: 1;
    transform: translateY(0);
}

.horses-cta {
    text-align: center;
    margin-top: 60px;
}

/* Testimonials Section */
.testimonials {
    padding: 150px 0;
    background-color: var(--dark);
    color: var(--light);
    position: relative;
    overflow: hidden;
}

.testimonials-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/api/placeholder/1920/1080');
    background-size: cover;
    opacity: 0.1;
    z-index: 0;
}

.testimonials h2 {
    color: var(--light);
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.testimonials h2:after {
    background-color: var(--secondary);
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-wrap {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 50px;
}

.testimonial {
    text-align: center;
}

.testimonial-text {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 30px;
    position: relative;
    padding: 0 30px;
}

.testimonial-text:before,
.testimonial-text:after {
    content: '"';
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    color: var(--secondary);
    opacity: 0.5;
    position: absolute;
    top: -20px;
    left: 0;
    line-height: 1;
}

.testimonial-text:after {
    content: '"';
    left: auto;
    right: 0;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.author-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.author-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-style: italic;
    color: var(--secondary);
}

/* Gallery Section */
.gallery {
    padding: 150px 0;
    background-color: var(--light);
}

.gallery h2 {
    text-align: center;
    margin-bottom: 30px;
}

.gallery h2:after {
    left: 50%;
    transform: translateX(-50%);
}

.gallery-intro {
    max-width: 800px;
    margin: 0 auto 80px;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item:nth-child(4) {
    grid-column: span 2;
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(12, 28, 61, 0.2);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

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

.gallery-icon {
    color: var(--light);
    font-size: 2rem;
    transform: translateY(20px);
    transition: var(--transition);
    opacity: 0;
}

.gallery-item:hover .gallery-icon {
    transform: translateY(0);
    opacity: 1;
}

/* Contact Section */
.contact {
    padding: 150px 0;
    background-color: var(--primary);
    color: var(--light);
    position: relative;
}

.contact-pattern {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: url('/api/placeholder/800/1200');
    background-size: cover;
    opacity: 0.05;
    z-index: 0;
}

.contact h2 {
    color: var(--light);
    text-align: center;
    margin-bottom: 20px;
}

.contact h2:after {
    background-color: var(--secondary);
    left: 50%;
    transform: translateX(-50%);
}

.contact-intro {
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    position: relative;
    z-index: 1;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    font-size: 1.8rem;
    color: var(--secondary);
    flex-shrink: 0;
    margin-top: 5px;
}

.contact-detail h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--light);
}

.contact-detail p,
.contact-detail a {
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    transition: var(--transition);
}

.contact-detail a:hover {
    color: var(--secondary);
}

.contact-form {
    background-color: var(--light);
    padding: 50px;
    border-radius: 5px;
    box-shadow: var(--box-shadow);
}

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

.form-label {
    display: block;
    margin-bottom: 8px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--dark);
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
}

.form-control::placeholder {
    color: #999;
}

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

.form-btn {
    background-color: var(--primary);
    color: var(--light);
    border: none;
    padding: 15px 30px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

.form-btn:hover {
    background-color: var(--secondary);
}

/* Footer */
.footer {
    background-color: var(--dark);
    color: var(--light);
    padding: 80px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    margin-bottom: 20px;
    display: inline-block;
}

.footer-logo-img {
    height: 50px;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-bottom: 25px;
}

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

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--secondary);
    color: var(--light);
}

.footer-heading {
    font-size: 1.4rem;
    margin-bottom: 25px;
    color: var(--light);
    position: relative;
    padding-bottom: 15px;
}

.footer-heading:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-contact-icon {
    color: var(--secondary);
    font-size: 1.2rem;
}

.footer-contact-text {
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    text-align: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
}

/* Horse Profile Page */
.profile-hero {
    height: 80vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
}

.profile-hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(12, 28, 61, 0.8) 0%, rgba(12, 28, 61, 0.4) 100%);
}

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

.profile-hero h1 {
    font-size: 5rem;
    margin-bottom: 20px;
}

.profile-hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-style: italic;
    margin-bottom: 30px;
}

.profile-section {
    padding: 100px 0;
}

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

.profile-image-slider {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: var(--box-shadow);
}

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

.profile-content h2 {
    margin-bottom: 20px;
}

.profile-quote {
    margin: 30px 0;
    padding: 30px;
    background-color: var(--light);
    border-left: 4px solid var(--secondary);
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.3rem;
    line-height: 1.8;
    position: relative;
}

.profile-quote:before,
.profile-quote:after {
    content: '"';
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: var(--secondary);
    opacity: 0.3;
    position: absolute;
    top: 10px;
    left: 10px;
    line-height: 1;
}

.profile-quote:after {
    content: '"';
    top: auto;
    left: auto;
    bottom: -20px;
    right: 10px;
}

.profile-quote-author {
    display: block;
    font-style: normal;
    text-align: right;
    margin-top: 10px;
    font-weight: 600;
}

.profile-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.profile-detail-item {
    text-align: center;
    padding: 20px;
    background-color: var(--light);
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.profile-detail-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: var(--primary);
}

.profile-detail-value {
    font-size: 1.2rem;
    font-weight: 600;
}

.profile-video {
    margin-top: 50px;
}

.profile-video h3 {
    margin-bottom: 30px;
    text-align: center;
}

.video-container {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: var(--box-shadow);
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.video-play:hover {
    background-color: var(--secondary);
}

.video-play i {
    color: var(--light);
    font-size: 2rem;
}

.profile-cta {
    padding: 100px 0;
    background-color: var(--primary);
    color: var(--light);
    text-align: center;
}

.profile-cta h2 {
    color: var(--light);
    margin-bottom: 30px;
}

.profile-cta p {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.3rem;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-content {
        margin-left: 50px;
    }
    
    .hero h1 {
        font-size: 4rem;
    }
    
    .about-content {
        gap: 50px;
    }
    
    .about-img-main {
        height: 500px;
    }
    
    .gallery-grid {
        grid-template-rows: repeat(2, 250px);
    }
}

@media (max-width: 992px) {
    h1 {
        font-size: 3.5rem;
    }
    
    h2 {
        font-size: 2.5rem;
    }
    
    .hero-content {
        margin-left: 0;
        padding: 0 30px;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 80px;
    }
    
    .about-stats {
        margin-top: 40px;
    }
    
    .services-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .horses-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .gallery-item:nth-child(4) {
        grid-column: span 1;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .profile-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .mobile-nav-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--primary);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-item {
        margin-left: 0;
    }
    
    .services-container {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-text {
        font-size: 1.3rem;
        padding: 0;
    }
    
    .testimonial-text:before,
    .testimonial-text:after {
        display: none;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
    }
    
    .profile-hero h1 {
        font-size: 3.5rem;
    }
    
    .profile-details {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 20px;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .hero-btns {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .about-img-accent {
        display: none;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item:nth-child(1) {
        grid-column: span 1;
    }
    
    .profile-hero h1 {
        font-size: 3rem;
    }
}
