* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #2B2B2B;
    --primary-light: #F3F1EC;
    --accent-orange: #DE6526;
    --accent-navy: #2E4057;
    --header-font: 'Playfair Display', serif;
    --body-font: 'Libre Baskerville', serif;
}

body {
    font-family: var(--body-font);
    color: var(--primary-dark);
    background-color: var(--primary-light);
    line-height: 1.7;
}

/* Navigation */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background-color: transparent;
    border-bottom: 1px solid rgba(243, 241, 236, 0.1);
    transition: all 0.4s ease;
    padding: 1.25rem 0;
}

header.scrolled {
    background-color: rgba(243, 241, 236, 0.98);
    border-bottom: 1px solid rgba(43, 43, 43, 0.1);
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 4rem;
}

/* Left Menu - All Items */
.nav-left {
    display: flex;
    justify-content: flex-start;
}

.nav-left ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-left a {
    text-decoration: none;
    color: white;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
}

header.scrolled .nav-left a {
    color: var(--primary-dark);
}

.nav-left a:hover {
    color: var(--accent-orange);
}

.nav-left a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-orange);
    transition: width 0.3s ease;
}

.nav-left a:hover::after {
    width: 100%;
}

/* Center Logo */
.logo {
    font-family: var(--header-font);
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    letter-spacing: 3px;
    text-align: center;
    transition: all 0.4s ease;
    white-space: nowrap;
    justify-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    display: none;
}

.logo-devon {
    color: white;
}

.logo-stables {
    color: var(--accent-orange);
}

.logo-img {
    display: none;
    height: 55px;
    width: auto;
    transition: all 0.4s ease;
}

header.scrolled .logo-text {
    display: none;
}

header.scrolled .logo-img {
    display: block;
}

header.scrolled .logo {
    color: var(--primary-dark);
}

/* Right - Contact Button */
.nav-right {
    display: flex;
    justify-content: flex-end;
}

.contact-btn {
    padding: 0.7rem 2rem;
    background-color: var(--accent-orange);
    color: white;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 2px solid var(--accent-orange);
    transition: all 0.3s ease;
    white-space: nowrap;
    display: inline-block;
}

header.scrolled .contact-btn {
    background-color: var(--accent-orange);
    border-color: var(--accent-orange);
}

.contact-btn:hover {
    background-color: transparent;
    color: var(--accent-orange);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(222, 101, 38, 0.3);
}

.contact-btn::after {
    display: none;
}

header.scrolled .contact-btn:hover {
    background-color: transparent;
    color: var(--accent-orange);
}

/* Hero Section */
.hero {
    margin-top: 0;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(46, 64, 87, 0.4), rgba(43, 43, 43, 0.5)),
                url('pictures/Devon_hero.png');
    background-size: cover;
    background-position: center 50%;
    animation: zoomIn 20s ease-in-out infinite alternate;
    z-index: -1;
}

@keyframes zoomIn {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.hero-content {
    max-width: 900px;
    padding: 2rem;
    animation: fadeInUp 1.2s ease;
    position: relative;
    z-index: 1;
    margin-top: 15vh;
}

.hero-subtitle {
    font-family: var(--body-font);
    font-size: 0.9rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: var(--primary-light);
    opacity: 0.9;
}

.hero h1 {
    font-family: var(--header-font);
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: 3px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.8;
}

/* Scroll Down Arrow */
.scroll-down {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    cursor: pointer;
    animation: bounce 2s infinite;
    transition: all 0.3s ease;
}

.scroll-down:hover {
    transform: translateX(-50%) translateY(-5px);
}

.scroll-down svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    background-color: var(--accent-orange);
    color: white;
    text-decoration: none;
    font-family: var(--body-font);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 2px solid var(--accent-orange);
    transition: all 0.3s ease;
    margin: 0.5rem;
}

.cta-button:hover {
    background-color: transparent;
    color: var(--accent-orange);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(222, 101, 38, 0.3);
}

.cta-button.secondary {
    background-color: transparent;
    border-color: white;
    color: white;
}

.cta-button.secondary:hover {
    background-color: white;
    color: var(--primary-dark);
}

/* About Section */
.about {
    padding: 8rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image {
    width: 100%;
    height: 600px;
    border-radius: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about:hover .about-img {
    transform: scale(1.05);
}

.about-content h2 {
    font-family: var(--header-font);
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
    line-height: 1.3;
}

.about-content h2 span {
    color: var(--accent-orange);
}

.about-content p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
    opacity: 0.85;
}

/* Services Section */
.services {
    background-color: var(--accent-navy);
    padding: 8rem 3rem;
    color: var(--primary-light);
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title h2 {
    font-family: var(--header-font);
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.section-title p {
    font-size: 1.1rem;
    opacity: 0.8;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.service-card {
    background-color: transparent;
    padding: 3rem 2rem;
    text-align: center;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(243, 241, 236, 0.08);
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    border: 1px solid rgba(222, 101, 38, 0.4);
    transition: all 0.3s ease;
}

.service-icon svg {
    width: 42px;
    height: 42px;
    color: var(--accent-orange);
    stroke: var(--accent-orange);
}

.service-card:hover .service-icon {
    background-color: var(--accent-orange);
    border-color: var(--accent-orange);
}

.service-card:hover .service-icon svg {
    stroke: white;
    color: white;
}

.service-card h3 {
    font-family: var(--header-font);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.service-card p {
    font-size: 0.9rem;
    line-height: 1.8;
    opacity: 0.75;
}

/* Parallax Quote Section */
.parallax-quote {
    height: 800px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #2B2B2B;
    background-image: 
        linear-gradient(135deg, rgba(43, 43, 43, 0.6), rgba(222, 101, 38, 0.4)),
        url('pictures/Devon_quote.JPG');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.quote-content {
    max-width: 900px;
    text-align: center;
    padding: 2rem;
    color: white;
    z-index: 1;
}

.quote-content h2 {
    font-family: var(--header-font);
    font-size: 2.8rem;
    font-weight: 400;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--primary-light);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

.quote-content p {
    font-family: var(--body-font);
    font-size: 1.1rem;
    letter-spacing: 2px;
    color: var(--accent-orange);
    text-transform: uppercase;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

/* Horses for Sale Section */
.horses-section {
    background-color: var(--primary-light);
    padding: 8rem 3rem;
}

.horses-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Section Header */
.section-header {
    margin-bottom: 6rem;
    text-align: center;
}

.header-content h2 {
    font-family: var(--header-font);
    font-size: 3.5rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.header-content p {
    font-size: 1.15rem;
    color: var(--primary-dark);
    opacity: 0.7;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.header-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--accent-orange), transparent);
    margin: 0 auto;
}

/* Horse Grid */
.horses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem;
}

/* Horse Card */
.horse-card {
    background-color: white;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.horse-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-8px);
}

/* Horse Image Wrapper */
.horse-image-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    background-color: #f5f5f5;
}

.horse-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.23, 1, 0.320, 1);
}

.horse-card:hover .horse-image-wrapper img {
    transform: scale(1.08);
}

/* Horse Badge */
.horse-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background-color: var(--accent-orange);
    color: white;
    padding: 0.5rem 1.2rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(222, 101, 38, 0.3);
}

.horse-badge.featured {
    background-color: #2E4057;
    box-shadow: 0 4px 15px rgba(46, 64, 87, 0.3);
}

/* Hover Overlay */
.horse-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(43, 43, 43, 0.4), rgba(43, 43, 43, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 3;
}

.horse-card:hover .horse-overlay {
    opacity: 1;
}

.overlay-btn {
    padding: 0.9rem 2.5rem;
    background-color: var(--accent-orange);
    color: white;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 2px solid var(--accent-orange);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    transform: translateY(20px) scale(0.95);
    cursor: pointer;
    opacity: 0;
    box-shadow: 0 4px 15px rgba(222, 101, 38, 0.2);
}

.horse-card:hover .overlay-btn {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.overlay-btn:hover {
    background-color: white;
    color: var(--accent-orange);
    border-color: white;
    box-shadow: 0 8px 25px rgba(222, 101, 38, 0.35);
    transform: translateY(-2px) scale(1);
}

/* Horse Info */
.horse-info {
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    background-color: white;
    flex-grow: 1;
    text-align: center;
}

.horse-info h3 {
    font-family: var(--header-font);
    font-size: 1.7rem;
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

.horse-breed {
    font-size: 0.95rem;
    color: var(--accent-orange);
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Horse Specs */
.horse-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    padding-bottom: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.spec {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0.5rem 0;
    position: relative;
}

.spec:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40%;
    background-color: rgba(0, 0, 0, 0.1);
}

.spec-label {
    font-size: 0.7rem;
    color: var(--primary-dark);
    opacity: 0.6;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.spec-value {
    font-size: 1rem;
    color: var(--primary-dark);
    font-weight: 600;
}

/* View All Button */
.view-all-container {
    text-align: center;
    margin-top: 2rem;
}

.view-all-btn {
    display: inline-block;
    padding: 1.2rem 3.5rem;
    background-color: var(--accent-navy);
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 2px solid var(--accent-navy);
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    background-color: transparent;
    color: var(--accent-navy);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(46, 64, 87, 0.3);
}

/* Footer */
/* Team Section */
.team-section {
    padding: 8rem 4rem;
    background-color: var(--accent-navy);
}

.team-container {
    max-width: 1000px;
    margin: 0 auto;
}

.team-header {
    text-align: center;
    margin-bottom: 5rem;
}

.team-header h2 {
    font-family: var(--header-font);
    font-size: 3.5rem;
    color: var(--primary-light);
    margin-bottom: 1rem;
}

.team-header p {
    font-size: 1.1rem;
    opacity: 0.8;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: var(--primary-light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.team-card {
    position: relative;
    height: 420px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transition: box-shadow 0.4s ease;
}

.team-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.team-photo {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    transition: transform 0.6s ease;
}

.team-card:hover .team-photo {
    transform: scale(1.05);
}

.team-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(222, 101, 38, 0.3) 0%,
        rgba(222, 101, 38, 0.95) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-info {
    padding: 2rem;
    color: white;
    width: 100%;
}

.team-info h3 {
    font-family: var(--header-font);
    font-size: 1.4rem;
    margin-bottom: 0.3rem;
    letter-spacing: 1px;
}

.team-role {
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.9;
    margin-bottom: 0.8rem;
    color: white;
}

.team-divider {
    width: 40px;
    height: 1px;
    background-color: rgba(255,255,255,0.4);
    margin-bottom: 1rem;
}

.team-contacts {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.team-contacts a {
    color: white;
    text-decoration: none;
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

.team-contacts a:hover {
    opacity: 1;
}

/* References / Successful Sales Section */
.references-section {
    padding: 8rem 3rem;
    background-color: var(--primary-light);
    color: var(--primary-dark);
}

.references-container {
    max-width: 1400px;
    margin: 0 auto;
}

.references-header {
    text-align: center;
    margin-bottom: 4rem;
}

.references-header h2 {
    font-family: var(--header-font);
    font-size: 3.5rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.references-header > p {
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.6;
    margin-bottom: 1.5rem;
}

.references-intro {
    font-size: 1rem !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
    opacity: 0.7 !important;
    max-width: 600px;
    margin: 1.5rem auto 0 !important;
    line-height: 1.8;
}

/* Carousel */
.carousel-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.carousel-track-wrapper {
    overflow: hidden;
    flex: 1;
}

.carousel-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s ease;
}

.ref-card {
    flex: 0 0 calc(25% - 1.2rem);
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ref-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.ref-photo {
    height: 280px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.ref-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: var(--accent-orange);
    color: white;
    font-size: 0.7rem;
    letter-spacing: 2px;
    padding: 0.3rem 0.8rem;
    font-family: var(--body-font);
}

.ref-info {
    padding: 1.2rem 1.5rem;
}

.ref-info h3 {
    font-family: var(--header-font);
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin-bottom: 0.3rem;
}

.ref-detail {
    font-size: 0.8rem;
    opacity: 0.6;
    margin-bottom: 0.4rem;
}

.ref-destination {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-orange);
    letter-spacing: 1px;
}

.carousel-btn {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--accent-orange);
    background: transparent;
    color: var(--accent-orange);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: var(--accent-orange);
    color: white;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2.5rem;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(43, 43, 43, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background-color: var(--accent-orange);
    width: 24px;
    border-radius: 4px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 8rem 3rem;
    background-color: var(--accent-navy);
    color: var(--primary-light);
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-header h2 {
    font-family: var(--header-font);
    font-size: 3.5rem;
    color: var(--primary-light);
    margin-bottom: 1rem;
}

.testimonials-header > p {
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.6;
    margin-bottom: 1.5rem;
}

.testimonials-intro {
    font-size: 1rem !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
    opacity: 0.7 !important;
    max-width: 600px;
    margin: 1.5rem auto 0 !important;
    line-height: 1.8;
}

.testimonials-carousel-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonials-track-wrapper {
    overflow: hidden;
    flex: 1;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
}

.t-card {
    flex: 0 0 100%;
    display: grid;
    grid-template-columns: 380px 1fr;
    min-height: 420px;
    overflow: hidden;
}

.t-photo {
    background-size: cover;
    background-position: center top;
}

.t-content {
    padding: 3.5rem 4rem;
    background-color: rgba(255,255,255,0.04);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.t-quote-icon {
    font-family: var(--header-font);
    font-size: 6rem;
    line-height: 0.8;
    color: var(--accent-orange);
    margin-bottom: 1.5rem;
    opacity: 0.6;
}

.t-text {
    font-size: 1.05rem;
    line-height: 1.9;
    opacity: 0.85;
    font-style: italic;
    margin-bottom: 2rem;
}

.t-divider {
    width: 50px;
    height: 2px;
    background-color: var(--accent-orange);
    margin-bottom: 1.2rem;
}

.t-name {
    font-family: var(--header-font);
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.t-role {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.6;
    color: var(--accent-orange);
}

.t-carousel-btn {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--accent-orange);
    background: transparent;
    color: var(--accent-orange);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.t-carousel-btn:hover {
    background: var(--accent-orange);
    color: white;
}

.t-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2.5rem;
}

.t-carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(243, 241, 236, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.t-carousel-dot.active {
    background-color: var(--accent-orange);
    width: 24px;
    border-radius: 4px;
}

footer {
    background-color: var(--primary-dark);
    color: var(--primary-light);
    padding: 5rem 3rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-columns {
    display: grid;
    grid-template-columns: 0.6fr 1.6fr 0.8fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.footer-column h4 {
    font-family: var(--body-font);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: var(--accent-orange);
    font-weight: 400;
}

/* Footer Logo */
.footer-logo {
    margin-bottom: 2rem;
}

.footer-logo h3 {
    font-family: var(--header-font);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-light);
    letter-spacing: 2px;
}

.footer-logo span {
    color: var(--accent-orange);
}

/* Footer Center Logo */
/* Contact Info */
.contact-info p {
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.contact-info a {
    color: var(--primary-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--accent-orange);
}

.contact-info strong {
    color: var(--accent-orange);
    font-weight: 400;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(243, 241, 236, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--accent-orange);
    border-color: var(--accent-orange);
    transform: translateY(-3px);
}

.social-icons svg {
    width: 18px;
    height: 18px;
}

/* Footer Map */
.footer-map {
    width: 70%;
    margin: 0 auto 1rem auto;
    border: 1px solid rgba(243, 241, 236, 0.2);
    border-radius: 4px;
    overflow: hidden;
}

.footer-map svg {
    width: 100%;
    height: auto;
    display: block;
}

.map-description {
    font-size: 0.85rem;
    opacity: 0.7;
    font-style: italic;
    text-align: center;
}

.footer-column:nth-child(2) h4 {
    text-align: center;
}

.footer-column:nth-child(3) {
    text-align: left;
}

.footer-column:nth-child(3) .contact-info {
    text-align: left;
    white-space: nowrap;
}

.footer-column:nth-child(3) .social-icons {
    justify-content: flex-start;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--primary-light);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    opacity: 0.8;
}

.footer-links a:hover {
    color: var(--accent-orange);
    opacity: 1;
    padding-left: 5px;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(243, 241, 236, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-logo-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    max-width: 80px;
    height: auto;
    opacity: 0.85;
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto 1.5rem auto;
}

.footer-logo-img:hover {
    opacity: 1;
    transform: scale(1.05);
}

.footer-bottom p {
    font-size: 0.85rem;
    opacity: 0.6;
    letter-spacing: 1px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hamburger Menu Button */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    position: relative;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background-color: white;
    transition: all 0.3s ease;
    border-radius: 2px;
}

header.scrolled .hamburger span {
    background-color: var(--primary-dark);
}

.hamburger.active span,
header.scrolled .hamburger.active span {
    background-color: white;
}

.hamburger.active {
    z-index: 1002;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5.5px, 5.5px);
    transform-origin: center;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5.5px, -5.5px);
    transform-origin: center;
}

/* Mobile Menu Overlay */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--primary-dark);
    z-index: 999;
    transition: left 0.4s ease;
    padding-top: 100px;
    overflow-y: auto;
}

.mobile-menu.active {
    left: 0;
    display: block;
}

.mobile-menu-logo {
    text-align: center;
    padding: 0 2rem 1rem;
}

.mobile-menu-logo img {
    height: 70px;
    width: auto;
    opacity: 0.9;
}



.mobile-menu nav ul {
    list-style: none;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-menu nav li {
    text-align: center;
}

.mobile-menu nav a {
    color: var(--primary-light);
    text-decoration: none;
    font-size: 1.3rem;
    font-family: var(--body-font);
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 0.8rem 0;
    position: relative;
}

.mobile-menu nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-orange);
    transition: width 0.3s ease;
}

.mobile-menu nav a:hover {
    color: var(--accent-orange);
}

.mobile-menu nav a:hover::after {
    width: 80%;
}

.mobile-menu nav a.mobile-contact {
    background-color: var(--accent-orange);
    color: white;
    text-align: center;
    padding: 1rem 3rem;
    margin-top: 2rem;
    border: 2px solid var(--accent-orange);
    font-size: 1.1rem;
}

.mobile-menu nav a.mobile-contact::after {
    display: none;
}

.mobile-menu nav a.mobile-contact:hover {
    background-color: transparent;
}

.mobile-menu-footer {
    padding: 2rem 2rem 3rem;
    border-top: 1px solid rgba(243, 241, 236, 0.1);
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.mobile-contact-info h4,
.mobile-social h4 {
    font-family: var(--body-font);
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-orange);
    margin-bottom: 1rem;
    text-align: center;
}

.mobile-contact-info a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-light);
    text-decoration: none;
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 0.7rem;
    transition: opacity 0.2s ease;
}

.mobile-contact-info a:hover {
    opacity: 1;
    color: var(--accent-orange);
}

.mobile-social-icons {
    display: flex;
    gap: 1.2rem;
}

.mobile-social-icons a {
    color: var(--primary-light);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.mobile-social-icons a:hover {
    color: var(--accent-orange);
    opacity: 1;
}
    color: var(--accent-orange);
    border-color: var(--accent-orange);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(222, 101, 38, 0.3);
}

/* Responsive */
@media (max-width: 1200px) {
    .nav-container {
        gap: 2rem;
        padding: 0 1.5rem;
    }

    .nav-left ul {
        gap: 1.2rem;
    }

    .nav-left a {
        font-size: 0.8rem;
    }
}

@media (max-width: 968px) {
    /* Show hamburger menu */
    .hamburger {
        display: flex;
        position: absolute;
        right: 1.5rem;
        top: 50%;
        transform: translateY(-50%);
    }

    .mobile-menu {
        display: block;
    }

    /* Hide desktop menu */
    .nav-left,
    .nav-right {
        display: none;
    }

    .nav-container {
        grid-template-columns: 1fr;
        padding: 1rem 1.5rem;
        position: relative;
    }

    .logo {
        font-size: 1.5rem;
        margin: 0;
    }

    header.scrolled .logo {
        font-size: 1.3rem;
    }

    /* Team - 2 columns on tablet */
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
    }

    /* References - 2 cards on tablet */
    .ref-card {
        flex: 0 0 calc(50% - 0.75rem);
    }

    /* Services - 2 columns on tablet */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Testimonials */
    .t-card {
        grid-template-columns: 280px 1fr;
    }
}

@media (max-width: 768px) {

    /* === GLOBAL === */
    section {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }

    /* === HEADER === */
    .nav-container {
        padding: 0 1.5rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 0.95rem;
        padding: 0 0.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    /* === ABOUT === */
    .about {
        grid-template-columns: 1fr;
        padding: 4rem 1.5rem;
        gap: 2.5rem;
    }

    .about-content {
        text-align: center;
    }

    .about-content a.cta-button {
        display: inline-block;
        margin: 0 auto;
    }

    .about-content h2,
    .section-title h2 {
        font-size: 2.2rem;
    }

    /* === SERVICES === */
    .services {
        padding: 5rem 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* === PARALLAX QUOTE === */
    .parallax-quote {
        height: 450px;
        background-attachment: scroll;
        padding: 0 1.5rem;
    }

    .quote-content h2 {
        font-size: 1.6rem;
    }

    /* === HORSES === */
    .horses-section {
        padding: 5rem 1.5rem;
    }

    .horses-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .header-content h2 {
        font-size: 2.2rem;
    }

    .horse-image-wrapper {
        height: 300px;
    }

    .horse-overlay {
        opacity: 1;
    }

    .overlay-btn {
        transform: translateY(0);
        opacity: 1;
    }

    /* === TEAM === */
    .team-section {
        padding: 5rem 1.5rem;
    }

    .team-header h2,
    .references-header h2,
    .testimonials-header h2 {
        font-size: 2.2rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
        margin: 0 auto;
    }

    .team-card {
        height: 360px;
    }

    /* === REFERENCES === */
    .references-section {
        padding: 5rem 1.5rem;
    }

    .carousel-wrapper {
        gap: 0.5rem;
    }

    .ref-card {
        flex: 0 0 100%;
    }

    .ref-photo {
        height: 220px;
    }

    .carousel-btn {
        width: 38px;
        height: 38px;
    }

    /* === TESTIMONIALS === */
    .testimonials-section {
        padding: 5rem 1.5rem;
    }

    .t-card {
        grid-template-columns: 1fr;
    }

    .t-photo {
        height: 240px;
    }

    .t-content {
        padding: 2rem 1.5rem;
    }

    .t-quote-icon {
        font-size: 3.5rem;
        margin-bottom: 1rem;
    }

    .t-text {
        font-size: 0.9rem;
    }

    .t-carousel-btn {
        width: 38px;
        height: 38px;
    }

    /* === FOOTER === */
    footer {
        padding: 4rem 1.5rem 2rem;
    }

    .footer-columns {
        grid-template-columns: 1fr;
        gap: 3rem;
        max-width: 100%;
    }

    .footer-column {
        text-align: center;
    }

    .footer-column:nth-child(3) {
        text-align: center;
    }

    .footer-column:nth-child(3) .contact-info {
        text-align: center;
        white-space: normal;
    }

    .footer-column:nth-child(3) .social-icons,
    .social-icons {
        justify-content: center;
    }

    .footer-map {
        width: 90%;
        margin: 0 auto 1rem;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-links a:hover {
        padding-left: 0;
    }
}
