:root {
    /* Color Palette */
    --primary-dark: #2C1608;
    /* Deep Chocolate Brown */
    --accent-gold: #BFA980;
    /* Elegant Beige/Gold */
    --highlight-yellow: #F7CC00;
    /* Logo Yellow */
    --bg-light: #F8F8F8;
    /* Off-white background */
    --text-main: #333333;
    /* Standard text */
    --white: #FFFFFF;
    --bg-alt: #F2EFE9;
    --bg-light: #F8F8F8;
    /* New alternate block background */
    --transition: all 0.3s ease;

    /* Spacing */
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
}

.notice-bar {
    background-color: var(--highlight-yellow);
    color: var(--primary-dark);
    text-align: center;
    padding: 0.5rem;
    font-size: 0.85rem;
    font-weight: bold;
    border-bottom: 2px solid var(--accent-gold);
}

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

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
    /* Prevent horizontal scroll */
}

h1,
h2,
h3,
h4 {
    color: var(--primary-dark);
}

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

ul {
    list-style: none;
}

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

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.section {
    padding: 6rem 0;
    /* Consistent large padding for blocks */
}

/* Info Rows (Alternating Image/Text) */
.info-row {
    display: flex;
    align-items: center;
    gap: 5rem;
    margin-bottom: 6rem;
}

.info-row:last-child {
    margin-bottom: 0;
}

.info-row.reverse {
    flex-direction: row-reverse;
}

.info-col {
    flex: 1;
}

.info-image-wrap {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.info-image-wrap img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.info-row:hover .info-image-wrap img {
    transform: scale(1.05);
}

.info-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.info-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
}

/* Response for Info Rows */
@media (max-width: 992px) {

    .info-row,
    .info-row.reverse {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .info-image-wrap img {
        height: 300px;
    }
}

/* Block Styles */
.block-white {
    background-color: var(--white);
}

.block-alt {
    background-color: var(--bg-alt);
}

.block-light {
    background-color: var(--bg-light);
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2.2rem;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-gold);
}

/* Header & Nav */
header {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: var(--spacing-sm) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
}

.logo {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 5px 12px;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.logo:hover {
    background: #fff;
    transform: translateY(-2px);
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: var(--spacing-md);
}

.nav-links a {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-gold);
}

.lang-switcher {
    display: flex;
    gap: 0.5rem;
    font-size: 0.8rem;
}

.lang-switcher a {
    color: rgba(255, 255, 255, 0.6);
}

.lang-switcher a.active {
    color: var(--white);
    font-weight: bold;
}

/* Hero Section Redesign */
.hero {
    padding: 8rem 0 6rem;
    background: #fbfbfb;
    color: var(--primary-dark);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--accent-gold);
    font-weight: 700;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: #444;
}

.hero-lists {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.hero-list-box h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
    border-bottom: 2px solid var(--accent-gold);
    display: inline-block;
    padding-bottom: 5px;
}

.hero-list-box ul {
    list-style: none;
    padding: 0;
}

.hero-list-box ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    line-height: 1.4;
}

.hero-list-box ul li::before {
    content: "•";
    color: var(--accent-gold);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.hero-image-wrap {
    position: relative;
}

.hero-image-wrap img {
    width: 100%;
    height: 500px;
    /* Optimized height for personal photo */
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 30px 30px 0px rgba(191, 169, 128, 0.1);
    transition: transform 0.5s ease;
}

.hero-image-wrap:hover img {
    transform: scale(1.02);
}

.hero-image-wrap::after {
    content: "";
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    border-top: 5px solid var(--accent-gold);
    border-right: 5px solid var(--accent-gold);
    z-index: -1;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: var(--accent-gold);
    color: var(--primary-dark);
    font-weight: bold;
    border-radius: 4px;
    text-transform: uppercase;
    transition: var(--transition);
}

.btn:hover {
    background-color: var(--highlight-yellow);
}

/* Page Intro/Title */
.page-header {
    background-color: var(--accent-gold);
    padding: var(--spacing-md) 0;
    color: var(--primary-dark);
    text-align: center;
}

/* Footer Modernization */
footer {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 5rem 0 2rem;
    border-top: 4px solid var(--accent-gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-col h3 {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-gold);
}

.footer-about p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-logo-small {
    background: rgba(255, 255, 255, 0.95);
    padding: 5px 10px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.footer-logo-small img {
    height: 35px;
}

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

.footer-social a {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.footer-col ul {
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.footer-contact-info p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-info i {
    color: var(--accent-gold);
    margin-top: 4px;
}

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

.footer-legal {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    max-width: 800px;
    margin: 0 auto 1rem;
    line-height: 1.4;
}

.footer-copy {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    footer {
        padding: 4rem 0 2rem;
    }
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    transition: var(--transition);
}

/* premium touches */
.btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
    z-index: -1;
}

.btn:hover::after {
    left: 100%;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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


/* Modern Video Gallery */
.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.video-item {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    border: 1px solid rgba(191, 169, 128, 0.1);
}

.video-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--accent-gold);
}

.video-info {
    padding: 1.5rem;
    color: var(--white);
}

.video-info h3 {
    font-size: 1.2rem;
    color: var(--accent-gold);
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.video-meta {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
}

.video-meta span i {
    margin-right: 5px;
    color: var(--accent-gold);
}

/* Plyr Player Customization */
.plyr {
    --plyr-color-main: var(--accent-gold);
    --plyr-video-background: #000;
    border-radius: 0;
}

/* Responsive Updates */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--primary-dark);
        flex-direction: column;
        padding: var(--spacing-md);
        text-align: center;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-container {
        padding: 0.8rem 15px;
        /* Add horizontal spacing for mobile */
    }

    .hero-content h1 {
        font-size: 2rem;
    }
}


/* Testimonials Slider Design Update */
.testimonials {
    color: var(--primary-dark);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    /* Prevent slide spillover */
}

/* Swiper Integration Fixes */
.swiper-container {
    padding: 2rem 15px 4rem;
    overflow: hidden;
}

.testimonial-card {
    height: auto;
    /* Allow Swiper to manage heights */
    margin: 0;
    /* Swiper handles gap */
    flex: none;
    /* Reset individual flex for swiper-slide behavior */
}

.swiper-pagination-bullet-active {
    background: var(--accent-gold) !important;
}

.testimonials .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #333;
}

.rating-summary {
    text-align: center;
    margin-bottom: 2rem;
}

.rating-summary h3 {
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.rating-summary .stars {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.rating-summary .count {
    color: #666;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 1rem;
}

.google-brand {
    height: 30px;
}

/* Swiper specific adjustment for existing grid fallback */
.testimonials-grid.swiper-wrapper {
    display: flex;
    overflow: visible;
    gap: 0;
}

.testimonials-grid::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar Chrome/Safari */
}

.testimonial-card {
    background: #f7f7f7;
    padding: 1.5rem;
    border-radius: 8px;
    min-width: 320px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: none;
    transition: var(--transition);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    gap: 1rem;
}

.author-info {
    flex-grow: 1;
}

.author-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
}

.testimonial-author {
    display: block;
    font-weight: 700;
    color: #333;
    font-size: 1rem;
}

.testimonial-date {
    color: #999;
    font-size: 0.8rem;
}

.google-icon-card {
    color: #4285F4;
}

.card-rating {
    margin-bottom: 1rem;
    color: #FFD700;
    display: flex;
    align-items: center;
    gap: 5px;
}

.verified-check {
    color: #4285F4;
    font-size: 0.8rem;
}

.testimonial-text {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.read-more {
    color: #777;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
}

.slider-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.nav-btn {
    background: white;
    border: 1px solid #ddd;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    transition: var(--transition);
}

.nav-btn:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Contact Info Updates */
.schedule-list {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.schedule-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.schedule-list li span:first-child {
    font-weight: 700;
    color: var(--primary-dark);
}

/* Homepage Media Block */
.home-media {
    max-width: 900px;
    margin: 0 auto;
}

.media-featured-title {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-dark);
}

.media-featured-title i {
    color: var(--accent-gold);
    margin-right: 10px;
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

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

    .hero-text h1 {
        font-size: 2.5rem;
    }
}

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

/* Breadcrumbs Styling */
.breadcrumb {
    background-color: var(--bg-alt);
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.breadcrumb .container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: #777;
    text-transform: none;
    letter-spacing: 0.5px;
}

.breadcrumb a {
    color: #777;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--accent-gold);
}

.breadcrumb a i {
    font-size: 0.9rem;
}

.breadcrumb span {
    color: var(--primary-dark);
    font-weight: 600;
}

.breadcrumb .separator {
    margin: 0 1rem;
    color: #ccc;
    font-size: 0.7rem;
}

@media (max-width: 768px) {
    .breadcrumb {
        padding: 1rem 0;
    }
    .breadcrumb .separator {
        margin: 0 0.5rem;
    }
}