:root {
    --primary-color: #1a6aac;      /* Blue - primary color */
    --primary-dark: #155892;       /* Darker blue for hover states */
    --secondary-color: #2c9f9f;    /* Teal - secondary color */
    --secondary-dark: #238383;     /* Darker teal for hover states */
    --accent-color: #70b6f3;       /* Light blue accent */
    --accent-secondary: #66c2c2;   /* Light teal accent */
    --dark-color: #2c3e50;         /* Dark blue-gray */
    --light-color: #f0f6fc;        /* Light blue-tinted background */
    --ocean-blue: #0077b6;         /* Ocean blue for additional accents */
    --sky-blue: #90e0ef;           /* Sky blue for lighter elements */
    --forest-green: #2d6a4f;       /* Forest green for nature elements */
    --light-green: #95d5b2;        /* Light green for farm elements */
    --text-color: #333;            /* Main text color */
    --white: #ffffff;
    --black: #000000;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
}

/* Base Styles */
body {
    font-family: 'Montserrat', 'Open Sans', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
}

/* Animations for smoother experience */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in {
    animation: fadeIn 0.5s ease-in;
}

/* Header & Navigation */
.navbar {
    background-color: var(--dark-color);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar-brand img {
    max-height: 50px;
    transition: all 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link {
    color: var(--white);
    font-weight: 600;
    padding: 0.5rem 1rem;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-dark .navbar-nav .nav-link:hover:before,
.navbar-dark .navbar-nav .nav-link.active:before {
    width: 80%;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--accent-color);
}

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.dropdown-item:hover {
    background-color: var(--light-color);
}

/* Video Hero Section */
.hero-video-container {
    position: relative;
    height: 85vh;
    min-height: 500px;
    overflow: hidden;
    background-color: var(--dark-color);
}

.hero-video-wrapper {
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 2rem;
    max-width: 800px;
    color: var(--white);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    animation: fadeIn 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
    animation: fadeIn 1.5s ease;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    animation: fadeIn 2s ease;
}

/* Split Hero for Farm and Mountain (legacy support) */
.hero-split {
    display: flex;
    flex-wrap: wrap;
    height: 80vh;
    min-height: 500px;
}

.hero-half {
    flex: 1;
    min-width: 300px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.5s ease;
}

.hero-half:hover {
    flex: 1.2;
}

.hero-half.farm-stay {
    background: url('../images/farm-stay-hero.jpg') center/cover no-repeat;
}

.hero-half.snow-mountain {
    background: url('../images/snow-mountain-hero.jpg') center/cover no-repeat;
}

.hero-half .hero-content {
    max-width: 90%;
}

.hero-half:hover .hero-content {
    transform: scale(1.05);
}

/* Buttons */
.btn {
    border-radius: 5px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    z-index: -1;
}

.btn:hover:before {
    width: 100%;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-secondary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-secondary:hover {
    background-color: var(--secondary-dark);
    border-color: var(--secondary-dark);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-outline-secondary {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-outline-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Welcome Section */
.welcome-section {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color)),
                url('../images/farm-mountain-bg.jpg') center/cover no-repeat;
    background-blend-mode: multiply;
    color: var(--white);
    padding: 5rem 0;
    position: relative;
}

.welcome-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/pattern-overlay.png');
    opacity: 0.1;
}

.welcome-content {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.welcome-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.welcome-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Section Styles */
.section {
    padding: 5rem 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
    position: relative;
    color: var(--dark-color);
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    margin: 1rem auto;
    border-radius: 2px;
}

/* Package Cards */
.package-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    background-color: var(--white);
    position: relative;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.package-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.package-header:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/pattern-dot.png');
    opacity: 0.1;
}

.category-farm .package-header {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
}

.package-title {
    font-size: 1.4rem;
    margin: 0 0 0.5rem;
    font-weight: 700;
    position: relative;
}

.package-price {
    font-size: 2rem;
    font-weight: 700;
    margin: 0.5rem 0;
    position: relative;
}

.package-header p {
    margin: 0;
    opacity: 0.9;
    position: relative;
}

.package-body {
    padding: 1.5rem;
    flex-grow: 1;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}

.package-features li {
    padding: 0.5rem 0;
    border-bottom: 1px dashed var(--gray-300);
    display: flex;
    align-items: center;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features li i {
    margin-right: 10px;
}

.package-footer {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    background-color: var(--gray-100);
    border-top: 1px solid var(--gray-200);
}

.package-footer .btn {
    flex-basis: 48%;
}

/* Package Filter Group */
.package-filter-group {
    display: inline-flex;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.package-filter-group .btn {
    border-radius: 0;
    padding: 0.6rem 1.5rem;
    margin: 0;
    border: none;
    background-color: var(--white);
    color: var(--dark-color);
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.package-filter-group .btn:first-child {
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
}

.package-filter-group .btn:last-child {
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
}

.package-filter-group .btn.active {
    background-color: var(--primary-color);
    color: var(--white);
}

.package-filter-group .btn:hover:not(.active) {
    background-color: var(--light-color);
}

.package-filter-group .btn-outline-secondary.active {
    background-color: var(--secondary-color);
}

/* Featured Image Container */
.featured-image-container {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    height: 100%;
    min-height: 350px;
}

.featured-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-image-container:hover img {
    transform: scale(1.05);
}

.featured-text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 2rem 1.5rem 1.5rem;
    color: var(--white);
    transition: all 0.3s ease;
}

.featured-image-container:hover .featured-text-overlay {
    padding-bottom: 2.5rem;
}

.featured-text-overlay h2 {
    margin: 0 0 0.5rem;
    font-size: 1.8rem;
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.featured-text-overlay p {
    margin: 0;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Feature Cards */
.feature-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 1.8rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.feature-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
    transition: all 0.3s ease;
    z-index: -1;
}

.feature-card:hover:before {
    width: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card:hover h3, 
.feature-card:hover p {
    color: var(--white);
}

.feature-card:hover i {
    color: var(--white) !important;
}

.feature-icon {
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.feature-card p {
    margin-bottom: 0;
    transition: all 0.3s ease;
}

/* Gallery */
.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 2rem;
}

.gallery-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 2rem;
}

.gallery-filter button {
    background: var(--white);
    color: var(--dark-color);
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.gallery-filter button.active,
.gallery-filter button:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 250px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--white);
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-title {
    margin: 0 0 0.3rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.gallery-category {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.8;
}

/* Testimonials */
.testimonial-slider {
    position: relative;
    padding: 40px 0 20px;
}

.testimonial-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    margin-top: 40px;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: -40px;
    left: 30px;
}

.testimonial-rating {
    color: #ffc107;
    font-size: 1.1rem;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-color);
}

.testimonial-author {
    font-weight: 700;
    margin: 0;
    color: var(--primary-color);
}

.testimonial-role {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin: 0;
}

/* Call to Action Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/pattern-wave.png');
    opacity: 0.1;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.cta-section .lead {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    position: relative;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: var(--white);
    position: relative;
}

footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

footer h5 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

footer h5:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--accent-color);
}

footer a {
    color: var(--white);
    transition: all 0.3s ease;
}

footer a:hover {
    color: var(--accent-color);
    text-decoration: none;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.newsletter .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--white);
    border-radius: 30px 0 0 30px;
}

.newsletter .btn {
    border-radius: 0 30px 30px 0;
    padding: 0.375rem 1rem;
}

/* Booking Form */
.booking-form {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

.form-label {
    font-weight: 600;
    color: var(--dark-color);
}

.form-control, .form-select {
    padding: 0.75rem 1rem;
    border-radius: 5px;
    border: 1px solid var(--gray-300);
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(26, 106, 172, 0.25);
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Payment Methods */
.payment-method-container {
    background: var(--gray-100);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.payment-method-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.payment-separator {
    display: flex;
    align-items: center;
    color: var(--gray-500);
    margin: 1.5rem 0;
}

.payment-separator:before,
.payment-separator:after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--gray-300);
}

.payment-separator:before {
    margin-right: 1rem;
}

.payment-separator:after {
    margin-left: 1rem;
}

.card-payment-form {
    background: var(--gray-100);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1rem;
}

/* Farm vs Snow Category Styling */
.category-farm {
    border-left: 4px solid var(--secondary-color);
}

.category-snow {
    border-left: 4px solid var(--primary-color);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section {
        padding: 4rem 0;
    }
}

@media (max-width: 992px) {
    .hero-video-container {
        height: 70vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section {
        padding: 3.5rem 0;
    }
    
    .welcome-section {
        padding: 3.5rem 0;
    }
    
    .welcome-title {
        font-size: 2.2rem;
    }
    
    .cta-section h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .hero-video-container {
        height: 60vh;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .welcome-section {
        padding: 3rem 0;
    }
    
    .welcome-title {
        font-size: 1.8rem;
    }
    
    .package-filter-group {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto 2rem;
        border-radius: 10px;
    }
    
    .package-filter-group .btn {
        border-radius: 0;
        padding: 0.6rem 1rem;
        margin-bottom: 1px;
    }
    
    .package-filter-group .btn:first-child {
        border-radius: 10px 10px 0 0;
    }
    
    .package-filter-group .btn:last-child {
        border-radius: 0 0 10px 10px;
    }
    
    .featured-image-container {
        min-height: 250px;
    }
    
    .testimonial-slider {
        padding-top: 60px;
    }
    
    .testimonial-card {
        margin-top: 60px;
    }
    
    .cta-section h2 {
        font-size: 1.8rem;
    }
    
    .cta-section .lead {
        font-size: 1.1rem;
    }
    
    .testimonial-slider .row {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE & Edge */
        padding-bottom: 20px;
    }
    
    .testimonial-slider .row::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }
    
    .testimonial-slider .col-lg-4 {
        flex: 0 0 85%;
        scroll-snap-align: center;
    }
}

@media (max-width: 576px) {
    .hero-video-container {
        height: 50vh;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .section {
        padding: 2.5rem 0;
    }
    
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }
    
    .welcome-section {
        padding: 2.5rem 0;
    }
    
    .welcome-title {
        font-size: 1.6rem;
    }
    
    .welcome-text {
        font-size: 1rem;
    }
    
    .package-card .package-footer {
        flex-direction: column;
        gap: 10px;
    }
    
    .package-card .package-footer .btn {
        width: 100%;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-icon {
        font-size: 2rem;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
    }
    
    .gallery-filter button {
        padding: 0.4rem 1rem;
        font-size: 0.9rem;
    }
    
    .gallery-container {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    
    .gallery-item {
        height: 180px;
    }
    
    .cta-section h2 {
        font-size: 1.6rem;
    }
    
    .cta-section .lead {
        font-size: 1rem;
    }
}

/* Lazy Loading and Performance Optimization */
.lazy-load {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.lazy-load.loaded {
    opacity: 1;
}

/* Animations */
.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeInUp {
    animation-name: fadeInUp;
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid var(--light-color);
    border-top: 5px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-overlay.fade-out {
    opacity: 0;
    visibility: hidden;
}
/* Centered Video Hero Section */
.hero-centered-video {
    padding: 3rem 0;
    background-color: var(--light-color);
    position: relative;
}

.hero-centered-video .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--dark-color);
    animation: fadeIn 1s ease;
}

.hero-centered-video .hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    animation: fadeIn 1.5s ease;
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border: 5px solid var(--white);
    outline: 1px solid var(--primary-color);
}

.video-container:before {
    content: '';
    display: block;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-buttons {
    animation: fadeIn 2s ease;
}

/* Media queries for mobile responsiveness */
@media (max-width: 992px) {
    .hero-centered-video .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-centered-video .hero-subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .hero-centered-video {
        padding: 2rem 0;
    }
    
    .hero-centered-video .hero-title {
        font-size: 2rem;
    }
    
    .hero-centered-video .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .video-container {
        border-width: 3px;
    }
}

@media (max-width: 576px) {
    .hero-centered-video .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-centered-video .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .video-container {
        border-width: 2px;
    }
}
/* Centered Video Hero Section */
.hero-centered-video {
    padding: 3rem 0;
    background-color: var(--light-color);
    position: relative;
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border: 5px solid var(--white);
    outline: 1px solid var(--primary-color);
}

.video-container:before {
    content: '';
    display: block;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}