/* Global Variables */
:root {
    --primary: #800000;
    /* Maroon */
    --gold: #d4af37;
    /* Metallic Gold */
    --dark: #121212;
    --light: #ffffff;
    --text-color: #333;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    --transition-speed: 0.5s;
}

/* Reset & Base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    background: var(--light);
    color: var(--text-color);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    color: var(--primary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

/* Utilities */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.text-center {
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    border: 1px solid var(--gold);
    color: var(--light);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
}

.btn:hover {
    background: var(--gold);
    color: #000;
}

.btn-dark {
    color: #000;
    border-color: #000;
}

.btn-dark:hover {
    background: #000;
    color: #fff;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    /* White background for logo visibility */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    pointer-events: auto;
    /* Allow clicks */
}

.navbar>* {
    pointer-events: auto;
}

/* Re-enable pointer events for links */

.logo-link {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 60px;
    /* Adjust based on navbar height */
    width: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #111;
    /* Dark text for white navbar */
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    font-weight: 700;
    transition: color 0.3s;
}

.nav-btn-cta {
    background: linear-gradient(135deg, var(--primary) 0%, #5a0000 100%);
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--primary);
}

.nav-btn-cta:hover {
    background: linear-gradient(135deg, #5a0000 0%, var(--primary) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
}


/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #000;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.slide-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
    transform: translateY(20px);
    opacity: 0;
    transition: all 1s ease 0.5s;
}

.slide.active .slide-content {
    transform: translateY(0);
    opacity: 1;
}

.slide-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.8);
}

.slide-content p {
    font-size: 1.5rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 40px;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

/* Slider Navigation */
.prev-slide,
.next-slide {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.3);
    color: white;
    border: none;
    padding: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s;
}

.prev-slide:hover,
.next-slide:hover {
    background: var(--gold);
    color: #000;
}

.prev-slide {
    left: 20px;
}

.next-slide {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active,
.dot:hover {
    background: var(--gold);
}

/* Professional Sections */
.pro-section {
    padding: 100px 0;
}

.pro-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.pro-content.reverse {
    flex-direction: row-reverse;
}

.pro-text {
    flex: 1;
}

.pro-text h2 {
    font-size: 3rem;
    margin-bottom: 25px;
    line-height: 1.2;
}

.pro-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.pro-image {
    flex: 1;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.pro-image:hover img {
    transform: scale(1.05);
}

.section-label {
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 20px;
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
}

/* Feature Lists */
.feature-list-inline {
    list-style: none;
    margin-bottom: 40px;
}

.feature-list-inline li {
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: #444;
}

.feature-list-inline i {
    color: var(--gold);
    margin-right: 12px;
}

/* Facilities Grid (Hotel) */
.facilities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    list-style: none;
    margin-bottom: 40px;
}

.facilities-grid li {
    font-size: 0.95rem;
    color: #555;
    display: flex;
    align-items: center;
}

.facilities-grid i {
    color: var(--gold);
    margin-right: 10px;
    font-size: 1rem;
}

@media (max-width: 900px) {

    .pro-content,
    .pro-content.reverse {
        flex-direction: column;
        gap: 40px;
    }

    .pro-image {
        height: 300px;
        width: 100%;
    }

    .pro-text h2 {
        font-size: 2.5rem;
    }
}

/* Gallery Layout */
.gallery-filters {
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.filter-main-group,
.filter-sub-group {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-main,
.filter-sub {
    border: 1px solid var(--gold);
    background: transparent;
    color: #333;
    padding: 10px 25px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-main.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.filter-sub.active {
    background: var(--gold);
    color: #fff;
}

.filter-main:hover:not(.active),
.filter-sub:hover:not(.active) {
    background: rgba(212, 175, 55, 0.1);
}

.filter-sub {
    font-size: 0.8rem;
    padding: 8px 20px;
}


@media (max-width: 600px) {
    .filter-btn {
        padding: 8px 15px;
        font-size: 0.8rem;
    }
}

.gallery-grid {
    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding-bottom: 80px;
}

.gallery-item,
.gallery-item-large {
    position: relative;
    overflow: hidden;
    height: 300px;
    border-radius: 4px;
    cursor: pointer;
}

.gallery-item-large {
    grid-column: span 2;
    /* Make some items wider if grid allows */
}

.gallery-item img,
.gallery-item-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img,
.gallery-item-large:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .gallery-item-large {
        grid-column: span 1;
    }
}

/* Contact Dual */
.contact-dual {
    display: flex;
    background: #0d0d0d;
    color: #fff;
    padding: 80px 0;
}

.contact-part {
    flex: 1;
    text-align: center;
    border-right: 1px solid #222;
}

.contact-part:last-child {
    border-right: none;
}

.contact-part h4 {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.contact-part p {
    color: #888;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

/* Events Section */
.events-marquee {
    width: 100%;
    overflow: hidden;
    margin-top: 40px;
    padding: 20px 0;
}

.events-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: marquee 30s linear infinite;
}

/* Left to Right: Start at -50% (middle) and move to 0 */
@keyframes marquee {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

.events-card {
    background: #fff;
    padding: 40px 30px;
    flex: 0 0 350px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    border-bottom: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.events-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.6), transparent);
    transform: skewX(-25deg);
    transition: left 0.5s;
    z-index: 1;
    pointer-events: none;
}

.events-card:hover::before {
    animation: shimmer 0.75s forwards;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 200%;
    }
}

.events-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--gold);
}

.events-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.events-card h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #111;
}

.events-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* Footer */
footer {
    background: #000;
    color: #888;
    text-align: center;
    padding: 40px 20px;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-social a {
    color: var(--gold);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    width: 45px;
    height: 45px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social a:hover {
    background: var(--gold);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.footer-content p {
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Location Navigation Buttons */
.location-links {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.nav-instruction {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 5px;
    font-style: italic;
    letter-spacing: 1px;
}

.nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 20px;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    width: 220px;
    transition: all 0.3s ease;
    border-radius: 4px;
    font-weight: 600;
    background: transparent;
}

.nav-btn:hover {
    background: var(--gold);
    color: #000;
    transform: translateY(-2px);
}

.nav-btn i {
    font-size: 0.9rem;
}


/* Responsive */
@media (max-width: 900px) {
    .split-hero {
        flex-direction: column;
        padding-top: 130px;
        /* Push content down below fixed navbar */
    }

    .split {
        width: 100%;
        height: 50%;
    }

    .split-hero:hover .split {
        width: 100%;
        height: 40%;
    }

    .split-hero .split:hover {
        width: 100%;
        height: 60%;
    }

    .split-content h1 {
        font-size: 2.5rem;
        /* Reduced from 4rem */
    }

    .split-content p {
        font-size: 1rem;
        letter-spacing: 1px;
    }

    .dual-section {
        flex-direction: column;
    }

    .col-left {
        border-right: none;
        border-bottom: 1px solid #eee;
    }

    .contact-dual {
        flex-direction: column;
        gap: 40px;
    }

    .contact-part {
        border-right: none;
    }

    .contact-part {
        border-right: none;
    }

    /* Mobile Navbar & Logo */
    .navbar {
        padding: 15px 20px;
        /* Reduced padding */
        flex-direction: column;
        /* Stack logo and links if needed, or keep row but adjust size */
        gap: 15px;
    }

    .logo-img {
        height: 40px;
        /* Smaller logo on mobile */
    }

    .nav-links {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-links a {
        font-size: 0.75rem;
        /* Smaller text */
    }
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    display: none;
    /* Hidden by default */
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.show {
    opacity: 1;
}

.modal-content {
    background: transparent;
    padding: 0;
    width: 90%;
    max-width: 400px;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transform: scale(0.8);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.modal-overlay.show .modal-content {
    transform: scale(1);
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #999;
    transition: color 0.2s;
}

.close-modal:hover {
    color: var(--primary);
}

.modal-header {
    text-align: center;
    margin-bottom: 20px;
}

.modal-header h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.modal-header p {
    color: #666;
    font-size: 0.9rem;
}

.form-group {
    margin-bottom: 15px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 0.95rem;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
}

/* Intl Tel Input Adjustments */
.iti {
    width: 100%;
    margin-bottom: 0;
}

.iti__flag-container {
    z-index: 5;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.btn-block:hover {
    background: #5a0000;
    transform: scale(1);
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    z-index: 100;
    font-size: 1.5rem;
    cursor: pointer;
    color: #999;
    transition: color 0.2s;
    background: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.close-modal:hover {
    color: var(--primary);
}

.popup-card {
    background: #fff;
    overflow: hidden;
}

.popup-image-header {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.popup-image-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popup-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gold);
    color: #000;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.popup-body {
    padding: 25px;
}

.popup-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
    background: #f9f9f9;
    padding: 15px;
    border-radius: 6px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #444;
    text-align: center;
}

.feature-item i {
    font-size: 1.1rem;
    color: var(--gold);
}

.popup-contact {
    margin-bottom: 20px;
}

.contact-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 5px;
}

.contact-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-number:hover {
    color: #000;
}

.popup-actions {
    display: flex;
    gap: 10px;
}

.popup-actions .btn {
    flex: 1;
    padding: 12px 10px;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.btn-outline {
    background: transparent;
    color: var(--dark);
    border: 1px solid #ddd;
}

.btn-outline:hover {
    border-color: var(--gold);
    background: #fff;
    color: var(--primary);
}

.close-modal {
    z-index: 10;
    background: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    font-size: 1.2rem;
    color: #000;
    top: 10px;
    right: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Lightbox Styles */
.lightbox {
    position: fixed;
    z-index: 5000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 5001;
}

.lightbox-close:hover {
    color: var(--gold);
}

/* Specific rule for the collage image in sections to ensure it fills the container */
.pro-image img[src*="hotel-collage-v2"],
.pro-image img[src*="hotel-hero-new"] {
    object-fit: cover !important;
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: #FFF;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 35px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.4);
    color: #fff;
}

@media (max-width: 768px) {
    .slide-content h1 {
        font-size: 2.5rem;
    }

    .slide-content p {
        font-size: 1rem;
    }
}

/* Lightbox Navigation */
.lightbox-prev,
.lightbox-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 40px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1001;
}

.lightbox-next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.lightbox-prev {
    left: 0;
    border-radius: 0 3px 3px 0;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

@media (max-width: 768px) {

    .lightbox-prev,
    .lightbox-next {
        font-size: 30px;
        padding: 10px;
    }
}

/* --- About Page Specific Styles --- */
.about-page {
    padding-top: 100px;
    background: #fdfbf7;
    min-height: 100vh;
}

/* Hero Banner */
.about-hero {
    height: 60vh;
    min-height: 400px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/convention-hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 80px;
}

.about-hero-content span {
    display: block;
    font-size: 1.1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 10px;
    opacity: 0.9;
}

.about-hero-content h1 {
    font-size: 4rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 5px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    color: #fff;
}

.about-hero-content p {
    font-size: 1.2rem;
    letter-spacing: 3px;
    color: #fff;
    font-weight: 400;
    margin-top: 10px;
    opacity: 0.9;
}

/* Responsive Grid for Content */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 60px;
    margin-top: 40px;
}

.about-card {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    border-bottom: 4px solid var(--gold);
}

.about-card:hover {
    transform: translateY(-5px);
}

.about-card b {
    color: var(--primary);
    font-size: 1.5rem;
    display: block;
    margin-bottom: 20px;
}

.about-card p {
    line-height: 1.8;
    color: #555;
    text-align: justify;
}

/* Video Showcase Section */
.video-showcase {
    background: #111;
    padding: 100px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.video-card {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.video-thumbnail {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    background: #000;
}

.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.video-card:hover .video-thumbnail img {
    opacity: 1;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.video-meta {
    padding: 20px;
}

.video-meta h4 {
    color: #fff;
    margin: 0 0 5px;
}

.video-meta p {
    color: var(--gold);
    font-size: 0.85rem;
    text-transform: uppercase;
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.video-modal.active {
    display: flex;
}

.video-modal-content {
    width: 90%;
    max-width: 1000px;
    aspect-ratio: 16/9;
    position: relative;
}

.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
}

/* Channel Button */
.channel-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #FF0000 0%, #cc0000 100%);
    color: #fff !important;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    text-decoration: none;
}

.channel-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2.5rem;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }

    .about-hero {
        height: 40vh;
    }
}

/* Professional Google Business Profile Card */
.gbp-card {
    background: #fff;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e0e0;
    overflow: hidden;
    font-family: 'Lato', sans-serif;
}

.gbp-header {
    padding: 25px;
    background: #fff;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.gbp-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.gbp-logo {
    width: 60px;
}

.gbp-info h3 {
    margin: 0;
    font-size: 1.5rem;
    color: #202124;
}

.gbp-info p {
    margin: 2px 0 0;
    font-size: 0.9rem;
    color: #70757a;
}

.gbp-rating-top {
    text-align: right;
}

.rating-num {
    font-size: 1.8rem;
    font-weight: 700;
    color: #202124;
    margin-right: 5px;
}

.gbp-rating-top .stars {
    color: #fbbc05;
    font-size: 1.2rem;
    display: inline-block;
}

.review-count {
    display: block;
    font-size: 0.85rem;
    color: #70757a;
    margin-top: 5px;
}

.gbp-body {
    padding: 25px;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.gbp-location {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.loc-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.loc-item i {
    color: #4285f4;
    font-size: 1.2rem;
    margin-top: 3px;
}

.loc-item div strong {
    display: block;
    font-size: 0.95rem;
    color: #202124;
}

.loc-item div p {
    margin: 2px 0 0;
    font-size: 0.9rem;
    color: #4d5156;
}

.gbp-nav-actions {
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    border-top: 1px solid #f1f3f4;
}

.nav-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #1a73e8;
    font-weight: 600;
    font-size: 0.85rem;
    transition: background 0.2s;
    padding: 10px;
    border-radius: 8px;
}

.nav-action-btn:hover {
    background: #f8fbff;
}

.nav-action-btn i {
    font-size: 1.2rem;
}

.gbp-footer {
    padding: 25px;
    background: #f8f9fa;
}

.gbp-footer h4 {
    margin: 0 0 10px;
    color: #202124;
    font-size: 1rem;
}

.gbp-quote {
    font-style: italic;
    color: #4d5156;
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.review-buttons-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.gbp-btn {
    background: #4285f4;
    color: #fff !important;
    padding: 12px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: background 0.2s;
}

.gbp-btn:hover {
    background: #3367d6;
}

.gbp-btn.secondary {
    background: #fff;
    color: #4285f4 !important;
    border: 1px solid #dadce0;
}

.gbp-btn.secondary:hover {
    background: #f8f9fa;
}

/* About Contact styles */
.contact-item h4 {
    margin: 10px 0;
    font-size: 1.2rem;
    color: var(--primary);
}

.contact-item p {
    color: #666;
    line-height: 1.6;
}

/* Map Styling */
.map-container iframe {
    transition: filter 0.3s ease;
    filter: grayscale(0.2) contrast(1.1);
}

.map-container:hover iframe {
    filter: grayscale(0);
}

@media (max-width: 768px) {
    .reviews-trust-content {
        padding: 20px;
    }

    .gbp-header {
        text-align: center;
        justify-content: center;
    }

    .gbp-rating-top {
        text-align: center;
        width: 100%;
    }

    .gbp-card {
        margin: 0 15px;
    }

    .gbp-nav-actions {
        flex-wrap: wrap;
    }
}