/* Import Variables */
@import 'utilities/variables.css';

/* Import Accessibility */
@import 'utilities/accessibility.css';

/* Import Performance */
@import 'utilities/performance.css';

/* Import Responsive Utilities */
@import 'utilities/responsive.css';

/* Import Layout */
@import 'layout/navigation.css';
@import 'layout/footer.css';

/* Import Components */
@import 'components/hero-banner.css';
@import 'components/news-ticker.css';
@import 'components/machines.css';
@import 'components/testimonials.css';
@import 'components/video-gallery.css';
@import 'components/promo-banner.css';
@import 'components/about-section.css';

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

/* Container */
.container {
    width: min(var(--container-max-width), 100% - var(--container-padding) * 2);
    margin-inline: auto;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

/* Spacing Utilities */
.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }
.mt-5 { margin-top: var(--spacing-xl); }

.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }
.mb-5 { margin-bottom: var(--spacing-xl); }

/* Display Utilities */
.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

/* Flex Utilities */
.flex-row { flex-direction: row; }
.flex-column { flex-direction: column; }
.justify-center { justify-content: center; }
.align-center { align-items: center; }
.flex-wrap { flex-wrap: wrap; }
.flex-nowrap { flex-wrap: nowrap; }

/* Grid Utilities */
.grid-auto-fit {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

/* Typography Utilities */
.text-primary { color: var(--primary-color); }
.text-white { color: var(--contrast-color); }
.text-black { color: var(--text-color); }

.font-bold { font-weight: 700; }
.font-normal { font-weight: 400; }
.font-light { font-weight: 300; }

/* Responsive Utilities */
@media (max-width: 768px) {
    .hide-mobile {
        display: none !important;
    }
}

@media (min-width: 769px) {
    .hide-desktop {
        display: none !important;
    }
}

/* Print Styles */
@media print {
    .no-print {
        display: none !important;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* High Contrast Mode */
@media (forced-colors: active) {
    * {
        forced-color-adjust: none;
    }
}

/* Variables */
:root {
    --primary-color: #e8b82c;
    --secondary-color: #333333;
    --background-color: #ffffff;
    --text-color: #333333;
    --contrast-color: #ffffff;
    --transition-speed: 0.3s;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

/* Navigation Styles - Imported from layout/navigation.css */

/* Utility Classes */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Add margin-top to main content to account for fixed header */
main {
    margin-top: 0;
}

/* Hero Banner Styles */
.hero-banner {
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--contrast-color);
}

.hero-banner.main-page {
    height: 80vh;
    min-height: 500px;
}

.hero-banner.sub-page {
    height: 40vh;
    min-height: 300px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
}

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

.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.hero-content .subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.2px;
    line-height: 1.4;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 700;
    font-size: 1.1rem;
    transition: all var(--transition-speed);
    border: 2px solid var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px var(--shadow-color);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow-color-dark);
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .hero-banner.main-page {
        height: 60vh;
        min-height: 400px;
    }

    .hero-banner.sub-page {
        height: 30vh;
        min-height: 200px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        letter-spacing: -0.3px;
    }
    
    .hero-content .subtitle {
        font-size: 1.1rem;
        letter-spacing: 0.1px;
    }
}

/* Hero Banner Brand and Tagline Styles */
.hero-brand {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 1rem;
    margin-bottom: 0.3rem;
    letter-spacing: 1.5px;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.25);
}
.hero-tagline {
    font-size: 1.3rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 1.2rem;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.25);
}
@media (max-width: 768px) {
    .hero-brand {
        font-size: 1.3rem;
    }
    .hero-tagline {
        font-size: 1rem;
    }
}

/* Newsletter Section Styles */
.newsletter-section {
    background-color: var(--background-color);
    color: var(--contrast-color);
    padding: 4rem 0;
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.newsletter-content p {
    margin-bottom: 2rem;
}

.newsletter-form .form-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 0.8rem 1rem;
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    font-size: 1rem;
    background-color: var(--contrast-color);
}

.newsletter-form .submit-button {
    padding: 0.8rem 2rem;
    background-color: var(--primary-color);
    color: var(--text-color);
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color var(--transition-speed);
}

.newsletter-form .submit-button:hover {
    background-color: #d4a825;
}

.form-message {
    min-height: 1.5rem;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .newsletter-form .form-group {
        flex-direction: column;
    }
    
    .newsletter-form .submit-button {
        width: 100%;
    }
}

/* Product Card Styles */
.product-card {
    background-color: var(--contrast-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.product-image {
    position: relative;
    padding-top: 100%; /* 1:1 Aspect Ratio */
    overflow: hidden;
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-speed);
}

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

.product-content {
    padding: 1.5rem;
}

.product-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.product-description {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.product-price {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--primary-color);
}

.add-to-cart {
    padding: 0.5rem 1rem;
    background-color: var(--primary-color);
    color: var(--text-color);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color var(--transition-speed);
}

.add-to-cart:hover {
    background-color: #d4a825;
}

/* Features Section Styles */
.features-section {
    padding: 4rem 0;
    text-align: center;
}

.features-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-color);
}

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

.feature-card {
    background-color: var(--contrast-color);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform var(--transition-speed);
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* About Page Styles */
.about-section {
    padding: 4rem 0;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    padding: 2rem 0;
}

.about-content h2 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.about-content h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin: 2rem 0 1rem;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}

.cta-container {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem;
    background-color: #f8f8f8;
    border-radius: 8px;
}

.cta-container h3 {
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.cta-container .cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
}

.values-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.values-list li {
    background-color: var(--contrast-color);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-weight: bold;
    color: var(--text-color);
    transition: transform var(--transition-speed);
}

.values-list li:hover {
    transform: translateY(-5px);
}

/* Team Section Styles */
.team-section {
    padding: 4rem 0;
    text-align: center;
}

.team-section h2 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 3rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    background-color: var(--contrast-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform var(--transition-speed);
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
}

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

.team-member h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin: 1rem 0 0.5rem;
}

.team-member p {
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 1rem;
}

/* FAQ Page Styles */
.faq-section {
    padding: 4rem 0;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-category {
    width: 100%;
    margin-bottom: 2rem;
}

.faq-category h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
}

.faq-question {
    width: 100%;
    padding: 1.2rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color var(--transition-speed);
}

.faq-answer {
    padding: 0 1.2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-speed), padding var(--transition-speed);
}

.faq-item.active .faq-answer {
    padding: 1.2rem;
    max-height: 500px;
}

.faq-contact {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background-color: #f8f8f8;
    border-radius: 8px;
}

.faq-contact h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .faq-category h2 {
        font-size: 1.5rem;
    }
    
    .faq-question {
        font-size: 1rem;
        padding: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 1rem;
    }
}

/* Booking Page Styles */
.booking-section {
    padding: 4rem 0;
}

.booking-container {
    max-width: 800px;
    margin: 0 auto;
}

.booking-form {
    background-color: var(--contrast-color);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-section {
    margin-bottom: 2.5rem;
}

.form-section h2 {
    font-size: 1.8rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.service-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-category h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-option {
    display: flex;
    align-items: center;
    padding: 1rem;
    border: 2px solid #eee;
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--transition-speed);
}

.service-option:hover {
    border-color: var(--primary-color);
    background-color: rgba(232, 184, 44, 0.05);
}

.service-option input[type="radio"] {
    margin-right: 1rem;
}

.service-name {
    flex: 1;
    font-weight: bold;
}

.service-price {
    color: var(--primary-color);
    font-weight: bold;
}

.datetime-selection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.personal-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #eee;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color var(--transition-speed);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.form-actions {
    text-align: center;
    margin-top: 2rem;
}

.submit-button {
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--text-color);
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color var(--transition-speed);
}

.submit-button:hover {
    background-color: #d4a825;
}

@media (max-width: 768px) {
    .booking-form {
        padding: 1.5rem;
    }

    .service-categories {
        grid-template-columns: 1fr;
    }

    .datetime-selection,
    .personal-info {
        grid-template-columns: 1fr;
    }
}

/* Shop Page Styles */
.shop-section {
    padding: 4rem 0;
}

.shop-header {
    margin-bottom: 2rem;
}

.shop-filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem;
    background-color: var(--contrast-color);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-group label {
    font-weight: bold;
    color: var(--text-color);
}

.filter-select {
    padding: 0.5rem;
    border: 2px solid #eee;
    border-radius: 4px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: border-color var(--transition-speed);
}

.filter-select:focus {
    border-color: var(--primary-color);
    outline: none;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.shop-pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.pagination-button {
    padding: 0.5rem 1rem;
    border: 2px solid #eee;
    background: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition-speed);
    font-weight: bold;
}

.pagination-button:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.pagination-button.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-color);
}

.pagination-button.next {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (max-width: 768px) {
    .shop-filters {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-group {
        width: 100%;
    }

    .filter-select {
        flex: 1;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
    }
}

/* Contact Page Styles */
.contact-section {
    padding: 4rem 0;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    background-color: var(--contrast-color);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info h2 {
    font-size: 2.2rem;
    color: var(--text-color);
    text-align: center;
    margin: 0;
}

.contact-text {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.contact-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background-color: #f8f8f8;
    border-radius: 8px;
    margin: 0;
}

.contact-highlight i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.contact-highlight span {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
}

.contact-form-container {
    background-color: var(--contrast-color);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-form-container h2 {
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    text-align: center;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #eee;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color var(--transition-speed);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

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

.form-actions {
    text-align: center;
    margin-top: 2rem;
}

.submit-button {
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--text-color);
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color var(--transition-speed);
}

.submit-button:hover {
    background-color: #d4a825;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info,
    .contact-form-container {
        padding: 1.5rem;
    }

    .contact-info {
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .contact-info h2 {
        font-size: 1.8rem;
    }

    .contact-text {
        font-size: 1.1rem;
    }

    .contact-highlight {
        padding: 0.8rem 1.5rem;
    }

    .contact-highlight i {
        font-size: 1.5rem;
    }

    .contact-highlight span {
        font-size: 1.3rem;
    }
}

/* Top Banner Styles */
.top-banner {
    background-color: #000000;
    padding: 0.5rem 0;
    border-bottom: 1px solid #333333;
}

.top-banner-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
}

.contact-info {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.contact-link {
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-speed);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-link:hover {
    color: var(--primary-color) !important;
    text-decoration: none;
}

.contact-link i {
    color: var(--primary-color);
}

.donate-button {
    background-color: var(--primary-color);
    color: #000000;
    text-decoration: none;
    padding: 0.5rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: all var(--transition-speed);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.donate-button:hover {
    background-color: #ffffff;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow-color);
}

@media (max-width: 768px) {
    .top-banner-container {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }
    .contact-info {
        justify-content: center;
        gap: 1.2rem;
    }
    .donate-button {
        width: 100%;
        justify-content: center;
        padding: 0.4rem 0;
        font-size: 0.95rem;
    }
}

/* Top Banner Styles */
.top-banner-container.three-cols {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.top-banner-col {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.phone-col {
    justify-content: flex-start;
}

.email-col {
    justify-content: center;
}

.donate-col {
    justify-content: flex-end;
}

@media (max-width: 768px) {
    .top-banner-container.three-cols {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.8rem 1rem;
    }
    .top-banner-col {
        width: 100%;
        text-align: center;
    }
    .contact-link {
        justify-content: center;
        font-size: 0.95rem;
    }
    .donate-button {
        margin-top: 0.5rem;
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* News Ticker Styles */
.news-ticker {
    background-color: var(--background-color);
    color: var(--contrast-color);
    padding: 0.8rem 0;
    overflow: hidden;
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.ticker-container {
    width: 100%;
    overflow: hidden;
}

.ticker-content {
    display: inline-flex;
    align-items: center;
    animation: ticker 30s linear infinite;
    white-space: nowrap;
}

.ticker-group {
    display: inline-flex;
    align-items: center;
    gap: 2rem;
}

.ticker-item {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.ticker-separator {
    color: var(--primary-color);
    font-size: 1.2rem;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .news-ticker {
        padding: 0.6rem 0;
    }

    .ticker-item {
        font-size: 0.9rem;
    }

    .ticker-separator {
        font-size: 1rem;
    }
}

/* Machines Section Styles */
.machines-section {
    padding: 4rem 0;
    margin: 2rem 0;
    text-align: center;
}

.machines-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.machines-section h2::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-color-light));
    border-radius: 2px;
}

.machines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 1rem;
}

.machine-card {
    background: var(--contrast-color);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-speed);
    box-shadow: 0 4px 12px var(--shadow-color);
    border: 1px solid var(--border-color);
}

.machine-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px var(--shadow-color-dark);
    border-color: var(--primary-color);
}

.machine-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin-bottom: 1.5rem;
    transition: transform var(--transition-speed);
}

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

.machine-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.machine-card p {
    color: var(--text-color-light);
    line-height: 1.6;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .machines-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .machines-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .machine-card img {
        height: 250px;
    }
}

/* Footer Styles */
.site-footer {
    background-color: #000000;
    color: #ffffff;
    padding: 4rem 0 2rem;
    border-top: 3px solid var(--primary-color);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.1);
}

.footer-social {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    color: #000000;
    border-radius: 50%;
    text-decoration: none;
    transition: all var(--transition-speed);
    font-size: 1.2rem;
}

.social-icon:hover {
    transform: translateY(-3px);
    background-color: #ffffff;
    color: var(--primary-color);
    box-shadow: 0 6px 16px rgba(232, 184, 44, 0.3);
}

.footer-description {
    margin-bottom: 1.5rem;
}

.footer-description p {
    line-height: 1.7;
    opacity: 0.9;
    font-size: 1.1rem;
}

.footer-contact h3,
.footer-links h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.footer-email,
.footer-phone {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #ffffff;
    text-decoration: none;
    margin-bottom: 1rem;
    transition: all var(--transition-speed);
    font-size: 1.1rem;
}

.footer-email:hover,
.footer-phone:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-email i,
.footer-phone i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: all var(--transition-speed);
    font-size: 1.1rem;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
    display: inline-block;
}

.footer-legal {
    border-top: 1px solid #333333;
    padding-top: 2rem;
    text-align: center;
}

.legal-links {
    margin-bottom: 1.5rem;
}

.legal-links a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 1.5rem;
    transition: color var(--transition-speed);
    font-size: 1rem;
}

.legal-links a:hover {
    color: var(--primary-color);
}

.separator {
    color: #666666;
    opacity: 0.5;
}

.copyright {
    color: #cccccc;
    opacity: 0.8;
    font-size: 1rem;
}

/* Package Styles */
.package-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.package-card {
    display: contents;
}

.package-card h3 {
    grid-column: 1 / -1;
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.package-details {
    display: contents;
}

.package-option {
    background-color: var(--contrast-color);
    padding: 0.8rem;
    border-radius: 6px;
    text-align: center;
    transition: all var(--transition-speed);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.package-option:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.package-option h4 {
    color: var(--text-color);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.original-price {
    color: #999;
    text-decoration: line-through;
    font-size: 0.9rem;
    margin-bottom: 0.1rem;
}

.discounted-price {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.1rem;
}

.discount {
    color: #28a745;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.price {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.features {
    list-style: none;
    padding: 0;
    margin: 0 0 0.5rem 0;
}

.features li {
    color: #666;
    margin-bottom: 0.2rem;
    font-size: 0.85rem;
}

.book-now-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color var(--transition-speed);
    width: 100%;
    font-size: 0.9rem;
}

.book-now-btn:hover {
    background-color: #d4a825;
}

@media (max-width: 1024px) {
    .package-options {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .package-options {
        grid-template-columns: 1fr;
    }
    
    .package-option {
        padding: 1rem;
    }
}

/* Enhanced About Home Section */
.about-home-section {
    padding: 4rem 0;
    margin: 2rem 0;
    background: var(--background-color-alt);
}

.about-home-section .about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-home-section .intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-color-light);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-home-section .event-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.about-home-section .event-type {
    background: var(--contrast-color);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: 0 4px 12px var(--shadow-color);
    border: 1px solid var(--border-color);
    transition: all var(--transition-speed);
}

.about-home-section .event-type:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow-color-dark);
    border-color: var(--primary-color);
}

.about-home-section .event-type h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.about-home-section .event-type h3 i {
    color: var(--primary-color);
    font-size: 1.8rem;
}

.about-home-section .event-type p {
    color: var(--text-color-light);
    line-height: 1.7;
    font-size: 1rem;
}

/* Enhanced Features Grid */
.about-home-section .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Video and Testimonial Section Improvements */
.video-section {
    background: var(--contrast-color);
    padding: 4rem 0;
    margin: 2rem 0;
}

.testimonial-section {
    background: var(--background-color-alt);
    padding: 4rem 0;
    margin: 2rem 0;
}

/* Promo Banner Styles */
.promo-banner {
    background-color: var(--primary-color);
    padding: 2rem 0;
    margin-bottom: 3rem;
    overflow: hidden;
}

.promo-banner-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 2rem;
    align-items: center;
    padding: 0 2rem;
    position: relative;
}

.promo-image-left,
.promo-image-right {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.promo-image-left {
    justify-content: flex-start;
}

.promo-image-right {
    justify-content: flex-end;
}

.promo-shirt-img {
    max-width: 110px;
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.promo-logo-img {
    max-width: 110px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.promo-content.new-promo-content {
    background: var(--primary-color);
    color: #333;
    padding: 2rem 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.promo-content.new-promo-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    color: #333;
}

.promo-content .promo-subtitle {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 500;
    margin-top: 0.5rem;
    letter-spacing: 1px;
}

.promo-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--contrast-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.promo-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1024px) {
    .promo-banner-container {
        grid-template-columns: 1fr 2.5fr 1fr;
        gap: 1rem;
    }
    .promo-shirt-img, .promo-logo-img {
        max-width: 80px;
    }
    .promo-content.new-promo-content {
        padding: 1.5rem 0.5rem;
    }
    .promo-content.new-promo-content h2 {
        font-size: 2rem;
    }
    .promo-content .promo-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .promo-banner-container {
        grid-template-columns: 1fr 3fr 1fr;
        padding: 0 0.5rem;
    }
    .promo-image-left, .promo-image-right {
        justify-content: center;
    }
    .promo-shirt-img, .promo-logo-img {
        max-width: 60px;
    }
    .promo-content.new-promo-content {
        padding: 1rem 0.2rem;
    }
    .promo-content.new-promo-content h2 {
        font-size: 1.3rem;
    }
    .promo-content .promo-subtitle {
        font-size: 0.9rem;
    }
}

/* Promo Banner Right Side Stacked Images */
.promo-right-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    height: 100%;
}
.promo-logo-img {
    max-width: 90px;
    width: 100%;
    height: auto;
    object-fit: contain;
    margin-bottom: 0.5rem;
}
.promo-shirt-img {
    max-width: 90px;
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
@media (max-width: 768px) {
    .promo-right-stack {
        flex-direction: row;
        gap: 0.5rem;
        justify-content: center;
        align-items: center;
        height: auto;
    }
    .promo-logo-img, .promo-shirt-img {
        max-width: 60px;
    }
}

/* Example Promo Banner Styles */
.promo-banner-example {
    padding: 0;
    margin: 0 auto 3rem auto;
    max-width: 1100px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
.promo-banner-example-container {
    display: grid;
    grid-template-columns: 1fr 3fr 1fr;
    align-items: stretch;
    width: 100%;
    min-height: 180px;
    gap: 0;
}

.promo-example-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 1rem 0.5rem;
}

.promo-example-shirt {
    max-width: 85%;
    max-height: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    padding: 0.5rem;
}

.promo-example-gameland {
    max-width: 100%;
    max-height: 180px;
    width: auto;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.promo-example-content {
    background: #000000;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 0.5rem;
    min-height: 100%;
    text-align: center;
    position: relative;
}

.promo-example-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    z-index: 1;
}

.promo-example-content > * {
    position: relative;
    z-index: 2;
}

.promo-example-title {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.promo-example-subtitle {
    color: #fff;
    font-size: 1.2rem;
    font-family: 'Georgia', 'Times New Roman', serif;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 0.5rem;
    border-top: 2px solid var(--primary-color);
    padding-top: 0.5rem;
}

@media (max-width: 900px) {
    .promo-banner-example-container {
        grid-template-columns: 1fr 2.5fr 1fr;
    }
    .promo-example-title {
        font-size: 2rem;
    }
    .promo-example-gameland {
        max-height: 120px;
    }
}

@media (max-width: 600px) {
    .promo-banner-example-container {
        grid-template-columns: 1fr 2fr 1fr;
        min-height: 100px;
    }
    .promo-example-title {
        font-size: 1.1rem;
    }
    .promo-example-subtitle {
        font-size: 0.8rem;
        padding-top: 0.2rem;
    }
    .promo-example-shirt, .promo-example-gameland {
        max-height: 60px;
    }
    .promo-example-content {
        padding: 0.5rem 0.1rem;
    }
}

/* Promo Banner Themed Background and Logo Styles */
.promo-theme-bg {
    background: var(--primary-color) !important;
}
.promo-example-logo {
    background: #fff;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    max-width: 90%;
    max-height: 110px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}
@media (max-width: 900px) {
    .promo-example-logo {
        max-height: 70px;
        padding: 0.3rem 0.7rem;
    }
}
@media (max-width: 600px) {
    .promo-example-logo {
        max-height: 40px;
        padding: 0.15rem 0.3rem;
    }
}

/* Testimonial Section Styles */
.testimonial-section {
    background: #fff;
    padding: 3rem 0 2rem 0;
    text-align: center;
}
.testimonial-title {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 700;
    letter-spacing: 1px;
}
.testimonial-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    justify-items: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}
.testimonial-images img {
    width: 100%;
    max-width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    background: #f8f8f8;
    transition: transform 0.3s, box-shadow 0.3s;
}
.testimonial-images img:hover {
    transform: scale(1.04) rotate(-1deg);
    box-shadow: 0 6px 24px rgba(0,0,0,0.15);
}
@media (max-width: 768px) {
    .testimonial-section {
        padding: 2rem 0 1rem 0;
    }
    .testimonial-title {
        font-size: 1.3rem;
    }
    .testimonial-images {
        gap: 0.7rem;
    }
    .testimonial-images img {
        max-width: 120px;
        height: 120px;
    }
}

/* Testimonial Carousel Styles */
.testimonial-carousel-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}
.testimonial-carousel {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 1.5rem;
    padding: 1rem 0;
    width: 100%;
    max-width: 1000px;
}
.testimonial-carousel::-webkit-scrollbar {
    display: none;
}
.testimonial-carousel {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.testimonial-carousel img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    background: #f8f8f8;
    transition: transform 0.3s, box-shadow 0.3s;
    flex-shrink: 0;
}
.testimonial-carousel img:hover {
    transform: scale(1.04) rotate(-1deg);
    box-shadow: 0 6px 24px rgba(0,0,0,0.15);
}
.testimonial-arrow {
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    transition: background 0.2s, transform 0.2s;
    z-index: 2;
}
.testimonial-arrow:hover {
    background: #cfa41f;
    transform: scale(1.08);
}
@media (max-width: 768px) {
    .testimonial-carousel img {
        width: 120px;
        height: 120px;
    }
    .testimonial-arrow {
        width: 32px;
        height: 32px;
        font-size: 1.3rem;
    }
    .testimonial-carousel {
        gap: 0.7rem;
        max-width: 95vw;
    }
}

/* Video Section Styles */
.video-section {
    background: #fff;
    padding: 3rem 0 1.5rem 0;
    text-align: center;
}
.video-title {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 700;
    letter-spacing: 1px;
}
.video-embed-responsive {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.video-embed-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 16px;
}
@media (max-width: 768px) {
    .video-title {
        font-size: 1.3rem;
    }
    .video-section {
        padding: 2rem 0 1rem 0;
    }
    .video-embed-responsive {
        max-width: 98vw;
        padding-bottom: 56vw;
    }
}

/* Video Gallery Styles */
.video-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 1rem;
}
.video-item {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    background: #f8f9fa;
}
.video-item iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 16px;
}
@media (max-width: 900px) {
    .video-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
}
@media (max-width: 600px) {
    .video-gallery {
        grid-template-columns: 1fr;
        gap: 0.7rem;
    }
    .video-item {
        padding-bottom: 60vw;
    }
}

/* Responsive Design for Footer */
@media (max-width: 1024px) {
    .footer-sections {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    .footer-section {
        gap: 1.2rem;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-sections {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-logo-img {
        height: 60px;
    }
    
    .footer-social {
        justify-content: center;
        gap: 1.2rem;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .footer-contact h3,
    .footer-links h3 {
        text-align: center;
        font-size: 1.3rem;
    }
    
    .footer-email,
    .footer-phone {
        justify-content: center;
        font-size: 1rem;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-description {
        text-align: center;
    }
}

/* Cart styles imported from layout/navigation.css */

/* Extra-small mobile tweaks */
@media (max-width: 480px) {
    :root {
        --container-padding: 0.5rem; /* was min 1rem, shrink to 8px */
    }

    .container {
        padding-left: var(--container-padding);
        padding-right: var(--container-padding);
    }

    /* Cards full width look better with reduced border-radius */
    .product-card,
    .machine-card,
    .package-card,
    .about-content,
    .contact-form-container {
        border-radius: 10px;
    }
}

/* Alert Styles for Contact Form */
.alert {
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    border: 1px solid transparent;
    font-weight: 500;
}

.alert-success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

.alert ul {
    margin: 0.5rem 0 0 0;
    padding-left: 1.5rem;
}

.alert ul li {
    margin-bottom: 0.25rem;
}