/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #000;
    position: relative;
}

.elegant-script {
    font-family: 'Tangerine', cursive;
    font-size: 4rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #f4d03f);
}

/* Header */
.header {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 0;
    height: 80px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    height: 80px;
    padding: 0;
    box-sizing: border-box;
    overflow: visible;
}

.logo-image {
    height: 78px;
    width: auto;
    border-radius: 3px;
    object-fit: contain;
    margin: 0;
    max-width: none;
    position: relative;
    top: 0px;
}

.logo-text h1 {
    font-family: 'Tangerine', cursive;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 3.0rem;
    color: #888888;
    margin-top: 5px;
    line-height: 1.2;
}
        .vc-highlight {
            color: #d4af37; /* Golden color */
            font-weight: 700;
            font-size: 3.5rem;
        }
.logo-subtitle {
    font-size: 0.9rem;
    color: #fff;
    display: block;
    margin-top: -5px;
    font-weight: 300;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #d4af37;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #d4af37;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://vcmassagetherapy.com/assets/images/hero-bg.jpg') no-repeat center center;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.hero-content {
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.0rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 300;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #f8f8f8;
}

.services-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 3px solid #d4af37;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 2rem;
    color: #d4af37;
    margin-bottom: 1rem;
    background-color: #f8f4ea;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #000;
}

.service-card p {
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.6;
}

.price {
    font-size: 1.2rem;
    font-weight: 600;
    color: #d4af37;
}

/* About Section */
.about {
    padding: 80px 0;
    background: #fff;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    text-align: left;
    margin-bottom: 2rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
}

.credentials {
    margin-top: 2rem;
}

.credential {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #333;
}

.credential i {
    color: #d4af37;
    margin-right: 10px;
    font-size: 1.2rem;
}

.about-image img {
    width: 90%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: block;
    margin: 0 auto;
    max-height: 500px;
    object-fit: cover;
    transition: all 0.3s ease;
}

/* Reviews Section */
.reviews {
    padding: 80px 0;
    background: #fff;
}

.google-reviews-container {
    max-width: 1000px;
    margin: 0 auto;
}

.reviews-summary {
    background: linear-gradient(135deg, #f8f8f8, #fff);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #d4af37;
}

.rating-display {
    margin-bottom: 1.5rem;
}

.rating-stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 1rem;
}

.rating-number {
    font-size: 3rem;
    font-weight: 700;
    color: #d4af37;
    font-family: 'Playfair Display', serif;
}

.stars {
    display: flex;
    gap: 5px;
}

.stars i {
    color: #d4af37;
    font-size: 1.5rem;
}

.rating-text {
    color: #666;
    font-size: 1.1rem;
    margin: 0;
}

.google-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #4285f4;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.google-link:hover {
    background: #3367d6;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(66, 133, 244, 0.3);
}

.google-link i {
    font-size: 1.2rem;
}

.loading-reviews {
    text-align: center;
    padding: 3rem 0;
    color: #666;
}

.loading-reviews i {
    font-size: 2rem;
    color: #d4af37;
    margin-bottom: 1rem;
}

.google-reviews-widget-container {
    width: 100%;
    margin-top: 2rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.review-card {
    background: #f8f8f8;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid #d4af37;
    position: relative;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.review-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 1rem;
}

.review-stars i {
    color: #d4af37;
    font-size: 1.2rem;
}

.review-text {
    font-style: italic;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.review-author-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #d4af37;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.review-author-info h4 {
    color: #000;
    margin: 0;
    font-size: 1.1rem;
}

.review-date {
    color: #999;
    font-size: 0.9rem;
    margin-top: 2px;
}

.google-verified {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #4285f4;
    color: white;
    padding: 5px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.write-review-section {
    text-align: center;
    padding: 2rem 0;
}

.write-review-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    color: #000;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.write-review-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.write-review-btn i {
    font-size: 1.1rem;
}

/* Error state */
.reviews-error {
    text-align: center;
    padding: 3rem 0;
    color: #666;
    grid-column: 1 / -1;
}

.reviews-error i {
    font-size: 2rem;
    color: #d4af37;
    margin-bottom: 1rem;
}

.reviews-error h3 {
    color: #000;
    margin-bottom: 1rem;
}

.reviews-error p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.reviews-error a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
}

.reviews-error a:hover {
    text-decoration: underline;
}

.reviews-error .write-review-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    color: #000;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.reviews-error .write-review-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Google Business Widget */
.google-business-widget {
    background: linear-gradient(135deg, #fff, #f8f8f8);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #d4af37;
    grid-column: 1 / -1;
    margin-bottom: 2rem;
}

.google-widget-header {
    text-align: center;
    margin-bottom: 2rem;
}

.google-widget-header i {
    font-size: 3rem;
    color: #4285f4;
    margin-bottom: 1rem;
}

.google-widget-header h3 {
    color: #000;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.google-widget-header p {
    color: #666;
    font-size: 1rem;
}

.google-widget-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.widget-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.widget-feature i {
    color: #d4af37;
    font-size: 1.2rem;
    min-width: 20px;
}

.widget-feature span {
    color: #333;
    font-weight: 500;
}

.google-widget-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.google-business-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.google-business-btn.primary {
    background: #4285f4;
    color: white;
}

.google-business-btn.primary:hover {
    background: #3367d6;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(66, 133, 244, 0.3);
}

.google-business-btn.secondary {
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    color: #000;
}

.google-business-btn.secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

/* Reviews Carousel Styling */
.reviews-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 30px auto;
}

.reviews-slide {
    display: flex;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    left: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
    transform: translateX(100%);
    justify-content: space-between;
}

.reviews-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    position: relative;
}

.reviews-slide.prev {
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
}

.review-card {
    background: #f8f8f8;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #d4af37;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    width: 30%;
    margin: 0 1%;
    position: relative;
}

.review-card::before {
    content: "Verified Google Review";
    position: absolute;
    top: 10px;
    right: -35px;
    background: #4285f4;
    color: white;
    padding: 5px 40px;
    font-size: 10px;
    transform: rotate(45deg);
    text-transform: uppercase;
    font-weight: bold;
    z-index: 2;
}

/* Carousel Navigation */
.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.carousel-dots {
    display: flex;
    gap: 8px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.carousel-dot.active {
    background: #d4af37;
}

.carousel-control {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: #d4af37;
    cursor: pointer;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.carousel-control:hover {
    color: #b8941f;
}

/* Responsive adjustments for the carousel */
@media screen and (max-width: 992px) {
    .review-card {
        width: 47%;
        margin: 0 1%;
    }
    
    .reviews-slide {
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 768px) {
    .review-card {
        width: 100%;
        margin: 10px 0;
    }
}

.view-more-reviews {
    margin-top: 1rem;
    text-align: center;
    grid-column: 1 / -1;
}

.view-more-reviews a {
    color: #4285f4;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.view-more-reviews a:hover {
    text-decoration: underline;
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
    background: #f8f8f8;
}

.gallery-carousel-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.gallery-carousel {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    display: none;
}

.gallery-slide.active {
    opacity: 1;
    display: block;
    z-index: 1;
}

.gallery-item {
    height: 100%;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.video-item {
    position: relative;
    cursor: pointer;
    height: 100%;
}

.gallery-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(212, 175, 55, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    transition: all 0.3s ease;
    z-index: 2;
}

.video-item.playing .video-play-button {
    opacity: 0;
}

.video-item.playing:hover .video-play-button {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
}

.gallery-carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    padding: 0 20px;
}

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.carousel-control.gallery-prev,
.carousel-control.gallery-next {
    background-color: rgba(212, 175, 55, 0.8);
    color: white;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    margin: 0 15px;
    position: relative;
    z-index: 5;
}

.carousel-control.gallery-prev:hover,
.carousel-control.gallery-next:hover {
    background-color: rgba(212, 175, 55, 1);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.25);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #000;
    color: #fff;
}

.contact .section-title {
    color: #fff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    color: #d4af37;
    font-size: 1.5rem;
    margin-top: 5px;
}

.contact-item h3 {
    color: #d4af37;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #ccc;
    line-height: 1.6;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #ccc;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

/* Form validation styling */
.form-group input.error-field,
.form-group select.error-field,
.form-group textarea.error-field {
    border: 1px solid #dc3545;
    background-color: rgba(220, 53, 69, 0.1);
}

.form-group input.error-field:focus,
.form-group select.error-field:focus,
.form-group textarea.error-field:focus {
    box-shadow: 0 0 5px rgba(220, 53, 69, 0.5);
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    color: #000;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Footer */
.footer {
    background: #000;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    color: #ffffff;
}

.footer-content {
    margin-bottom: 30px;
}

.footer-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h4 {
    color: #d4af37;
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.footer-logo h3 {
    color: #d4af37;
    font-size: 1.5rem;
    margin-bottom: 5px;
    word-spacing: -2px;
    max-width: 100%;
}

.footer-logo p {
    color: #fff;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #d4af37;
}

.footer-column p {
    margin-bottom: 10px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    color: #fff;
    font-size: 1.5rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
}

.footer-social a:hover {
    color: #d4af37;
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.footer-social a .fab.fa-facebook {
    color: #fff;
}

.footer-social a .fab.fa-instagram {
    color: #fff;
}

.footer-social a:hover .fab.fa-facebook {
    color: #d4af37;
}

.footer-social a:hover .fab.fa-instagram {
    color: #d4af37;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
    font-size: 0.9rem;
}

.footer-bottom a {
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Responsive Design */
@media screen and (max-width: 992px) {
    .footer-columns {
        gap: 20px;
    }
    
    .footer-column {
        min-width: 180px;
    }
}

@media screen and (max-width: 768px) {
    .footer-columns {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-column {
        width: 100%;
    }
    
    .footer-logo h3 {
        font-size: 1.8rem;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .reviews-container {
        grid-template-columns: 1fr;
    }
    
    .google-business-widget {
        padding: 1.5rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-image {
        position: static;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-summary {
        padding: 1.5rem;
    }
    
    .rating-stars {
        flex-direction: column;
        gap: 10px;
    }
    
    .rating-number {
        font-size: 2.5rem;
    }
    
    .google-link {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .write-review-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .google-widget-content {
        grid-template-columns: 1fr;
    }
    
    .google-widget-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .google-business-btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .gallery-carousel {
        height: 350px;
    }
    
    .video-play-button {
        width: 60px;
        height: 60px;
        font-size: 22px;
    }
}

@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .service-card,
    .contact-form {
        padding: 1.5rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.contact-item {
    animation: fadeInUp 0.6s ease forwards;
}

/* Hover Effects */
.service-card:hover .service-icon {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #d4af37;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #b8941f;
}
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
            
            .nav-menu {
                position: fixed;
                left: -100%;
                top: 70px;
                flex-direction: column;
                background-color: rgba(0, 0, 0, 0.95);
                width: 100%;
                text-align: center;
                transition: 0.3s;
                padding: 2rem 0;
                z-index: 1000;
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-menu li {
                margin: 1rem 0;
            }
        }
        
        /* Section spacing */
        #services, #about, #gallery, #contact {
            min-height: auto;
            padding: 100px 0;
            background-color: #fff;
            box-shadow: 0 0 30px rgba(0,0,0,0.1);
            margin-bottom: 0;
            border-bottom: 1px solid #f5f5f5;
        }
        
        /* Create alternating section colors for better visual separation */
        #about {
            background-color: #f9f9f9;
        }
        
        /* Dark themed contact section */
        #contact {
            background-color: #222222;
            color: #ffffff;
            position: relative;
        }
        
        #contact .section-title {
            color: #ffffff;
        }
        
        #contact .section-title.elegant-script {
            color: #ffffff;
        }
        
        #contact .contact-item h3 {
            color: #d4af37;
            font-family: 'Tangerine', cursive;
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 5px;
            letter-spacing: 1px;
        }
        
        #contact .contact-item i {
            color: #d4af37;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .section-title.elegant-script {
            font-family: 'Tangerine', cursive;
            font-size: 3.5rem;
            font-weight: 700;
            color: #333333; /* Changed from gold to dark gray/black */
            margin-bottom: 40px;
            letter-spacing: 2px;
            position: relative; /* Added for proper positioning of ::after pseudo-element */
        }
        
        .cta-button {
            background-color: #d4af37; /* Golden color matching the VC text */
            color: white;
            padding: 15px 30px;
            font-size: 1.2rem;
            font-weight: 700;
            border-radius: 50px;
            text-transform: uppercase;
            letter-spacing: 2px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
            border: 3px solid rgba(255, 255, 255, 0.6);
            animation: pulse 2s infinite;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
            font-family: 'Open Sans', sans-serif;
            display: inline-block;
        }
        
        .cta-button:hover {
            background-color: #bd9c30; /* Slightly darker gold on hover */
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0,0,0,0.4);
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        /* Reset scrolling behavior */
        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
        }
        
        body {
            margin: 0;
            padding: 0;
            overflow-x: hidden;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 30px;
            width: 100%;
            box-sizing: border-box;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            width: 100%;
            box-sizing: border-box;
        }
        
        /* Header styling */
        .header {
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(10px);
            position: fixed;
            width: 100%;
            top: 0;
            left: 0;
            z-index: 1000;
            transition: all 0.3s ease;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
            height: 80px; /* Fixed height for header */
        }
        
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 100%;
            padding: 0 20px;
        }
        
        /* Section styling */
        section {
            position: relative;
            width: 100%;
            min-height: 100vh; /* Make each section at least full viewport height */
            padding: 100px 0 80px; /* Add padding to separate sections */
            box-sizing: border-box;
        }
        
        /* Hero section special styling */
        #home {
            padding: 0; /* No padding for hero section */
            margin-top: 0; /* No margin for hero section */
            height: 100vh; /* Exactly full viewport height */
        }
        
        /* Mobile menu styles */
        @media (max-width: 768px) {
            /* Mobile logo text responsiveness */
            .logo-text h1 {
                font-size: 1.8rem !important;
                letter-spacing: 1px;
                margin-top: 3px;
                line-height: 1.1;
            }
            
            .vc-highlight {
                font-size: 2.0rem !important;
            }
            
            .logo {
                gap: 8px;
            }
            
            .logo-image {
                height: 50px !important;
                max-height: 50px !important;
            }
            
            /* Fixed hamburger styles */
            .hamburger {
                display: flex !important;
                flex-direction: column;
                cursor: pointer;
                padding: 10px;
                z-index: 1001;
                position: relative;
            }
            
            .hamburger .bar {
                width: 25px;
                height: 3px;
                background-color: #fff;
                margin: 3px 0;
                transition: 0.3s;
                border-radius: 2px;
                display: block;
            }
            
            .hamburger:hover .bar {
                background-color: #d4af37;
            }
            
            /* Fixed navigation menu styles for mobile */
            .nav-menu {
                position: fixed;
                left: -100%;
                top: 80px;
                flex-direction: column;
                background-color: rgba(0, 0, 0, 0.95);
                width: 100%;
                text-align: center;
                transition: 0.3s;
                box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
                padding: 20px 0;
                z-index: 999;
                display: flex;
            }
            
            .nav-menu.active {
                left: 0;
                display: flex;
            }
            
            .nav-item {
                margin: 20px 0;
            }
            
            /* Hamburger animation on active state */
            .hamburger.active .bar:nth-child(2) {
                opacity: 0;
                transform: translateX(-20px);
            }
            
            .hamburger.active .bar:nth-child(1) {
                transform: translateY(8px) rotate(45deg);
                background-color: #d4af37;
            }
            
            .hamburger.active .bar:nth-child(3) {
                transform: translateY(-8px) rotate(-45deg);
                background-color: #d4af37;
            }
        }
        
        /* Extra small screens (phones) */
        @media (max-width: 480px) {
            .logo-text h1 {
                font-size: 1.4rem !important;
                letter-spacing: 0.5px;
                margin-top: 2px;
            }
            
            .vc-highlight {
                font-size: 1.6rem !important;
            }
            
            .logo {
                gap: 6px;
            }
            
            .logo-image {
                height: 40px !important;
                max-height: 40px !important;
            }
            
            .nav-container {
                padding: 0 10px;
            }
        }
        
        /* Very small screens */
        @media (max-width: 320px) {
            .logo-text h1 {
                font-size: 1.2rem !important;
                letter-spacing: 0px;
                margin-top: 1px;
            }
            
            .vc-highlight {
                font-size: 1.4rem !important;
            }
            
            .logo-image {
                height: 35px !important;
                max-height: 35px !important;
            }
        }

        .hero {
            position: relative;
            height: 100vh;
            width: 100%;
            background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../Media/header.jpg');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #fff;
            padding-top: 80px; /* Account for fixed header */
            box-sizing: border-box;
        }
        
        .hero-content {
            z-index: 2;
            padding: 2rem;
            max-width: 800px;
        }
        
        .hero-title {
            font-size: 3.0rem;
            margin-bottom: 1.5rem;
            font-weight: 700;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
        }
        
        .hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 2.5rem;
            font-weight: 300;
            line-height: 1.5;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
        }
        
        @media (max-width: 768px) {
            .hero {
                min-height: 100vh;
            }
            
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
        }

        .service-pricing-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }
        
        .pricing-card {
            background-color: #fff;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }
        
        .pricing-header {
            background: linear-gradient(135deg, #d4af37 0%, #f2d675 100%);
            color: white;
            padding: 25px 20px;
            text-align: center;
            position: relative;
        }
        
        .pricing-icon {
            font-size: 30px;
            margin-bottom: 10px;
            display: block;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
        }
        
        .pricing-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            margin: 0;
            font-weight: 700;
            letter-spacing: 1px;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
        }
        
        .pricing-body {
            padding: 25px;
        }
        
        .pricing-item {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid #f0f0f0;
            font-size: 15px;
        }
        
        .pricing-item:last-child {
            border-bottom: none;
        }
        
        .price-tag {
            font-weight: 700;
            color: #d4af37;
            font-size: 16px;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        
        .service-card {
            background-color: #fff;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.06);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-top: 3px solid #d4af37;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.12);
        }
        
        .service-icon {
            background-color: #f8f4ea;
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }
        
        .service-icon i {
            color: #d4af37;
            font-size: 26px;
        }
        
        .service-card h3 {
            margin-bottom: 15px;
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
        }
        
        .service-card p {
            color: #666;
            font-size: 15px;
            line-height: 1.6;
        }
        
        @media (max-width: 768px) {
            .service-pricing-cards {
                grid-template-columns: 1fr;
            }
        }
        
        /* Contact form styling */
        .contact-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }
        
        .contact-info {
            display: grid;
            gap: 30px;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }
        
        .contact-item i {
            font-size: 24px;
            color: #d4af37;
            margin-top: 5px;
        }
        
        .contact-item h3 {
            margin-bottom: 8px;
            font-weight: 600;
        }
        
        .contact-form {
            background-color: rgba(255, 255, 255, 0.1);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group input, 
        .form-group select, 
        .form-group textarea {
            width: 100%;
            padding: 15px;
            border: none;
            background-color: rgba(255, 255, 255, 0.1);
            color: #fff;
            border-radius: 5px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            font-family: 'Open Sans', sans-serif;
        }
        
        /* Fix select dropdown options visibility */
        .form-group select {
            background-color: rgba(255, 255, 255, 0.9);
            color: #333;
        }
        
        .form-group select option {
            background-color: #fff;
            color: #333;
            padding: 10px;
        }
        
        .form-group select option:hover,
        .form-group select option:focus {
            background-color: #d4af37;
            color: #fff;
        }
        
        /* Style for the placeholder option */
        .form-group select option[value=""] {
            color: #666;
            font-style: italic;
        }
        
        .form-group input::placeholder, 
        .form-group textarea::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }
        
        .form-group input:focus, 
        .form-group select:focus, 
        .form-group textarea:focus {
            outline: none;
            border-color: #d4af37;
            box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
        }
        
        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }
        
        .submit-btn {
            background: linear-gradient(135deg, #d4af37 0%, #f2d675 100%);
            color: #222;
            padding: 15px 30px;
            border: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: block;
            width: 100%;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }
        
        @media (max-width: 768px) {
            .contact-content {
                grid-template-columns: 1fr;
            }
        }
        
        /* Reviews section styling */
        #reviews {
            background-color: #f9f9f9;
        }
        
        .reviews-content {
            padding: 20px 30px;
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
            box-sizing: border-box;
        }
        
        .reviews-carousel {
            overflow: hidden;
            position: relative;
            margin: 20px auto;
            box-shadow: 0 5px 25px rgba(0,0,0,0.05);
            border-radius: 12px;
            height: 350px;
            width: 100%;
        }
        
        .reviews-slide {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            transform: translateX(100%);
            transition: transform 0.5s ease, opacity 0.5s ease;
            pointer-events: none;
            display: flex;
            gap: 20px;
            padding: 0 30px;
            box-sizing: border-box;
        }
        
        .reviews-slide.active {
            opacity: 1;
            transform: translateX(0);
            pointer-events: auto;
        }
        
        .reviews-slide.prev {
            opacity: 0;
            transform: translateX(-100%);
        }
        
        @keyframes fadeEffect {
            from {opacity: 0.7; transform: translateX(50px);}
            to {opacity: 1; transform: translateX(0);}
        }
        
        .review-card {
            background-color: #fff;
            padding: 25px;
            display: flex;
            flex-direction: column;
            height: 100%;
            border-bottom: 3px solid #d4af37;
            flex: 1;
            min-width: calc(33.333% - 20px);
            max-width: calc(33.333% - 20px);
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            position: relative;
            box-sizing: border-box;
            padding-bottom: 80px; /* Make room for the author section */
        }
        
        /* Remove blue corner badges */
        .review-card:before, 
        .review-card:after {
            display: none !important;
        }
        
        .verified-badge {
            display: inline-flex;
            align-items: center;
            color: #333;
            font-size: 10px;
            font-weight: 700;
            margin: 0 0 15px 0;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .verified-badge i {
            color: #4CAF50;
            margin-right: 5px;
            font-size: 12px;
        }
        
        .review-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .review-stars {
            margin-bottom: 15px;
            color: #d4af37;
            font-size: 18px;
        }
        
        .review-text {
            flex-grow: 1;
            margin-bottom: 20px;
            min-height: 150px;
            display: flex;
            flex-direction: column;
        }
        
        .review-text p {
            font-style: italic;
            color: #555;
            line-height: 1.6;
        }
        
        .review-author {
            margin-top: auto;
            font-weight: 600;
            color: #333;
            border-top: 1px solid #eee;
            padding-top: 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            position: absolute;
            bottom: 25px;
            left: 0;
            right: 0;
            padding-left: 25px;
            padding-right: 25px;
        }
        
        .review-link {
            color: #d4af37;
            text-decoration: none;
            font-size: 14px;
            font-weight: 400;
            transition: color 0.3s ease;
            text-align: right;
        }
        
        .review-link:hover {
            color: #a38829;
            text-decoration: underline;
        }
        
        .carousel-controls {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }
        
        .carousel-control {
            background-color: #d4af37;
            color: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            margin: 0 5px;
            cursor: pointer;
            font-size: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.3s ease, transform 0.3s ease;
            box-shadow: 0 3px 5px rgba(0,0,0,0.2);
        }
        
        .carousel-control:hover {
            background-color: #bd9c30;
            transform: translateY(-2px);
        }
        
        .carousel-dots {
            display: flex;
            justify-content: center;
            margin-top: 15px;
        }
        
        .carousel-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: #ccc;
            margin: 0 5px;
            cursor: pointer;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }
        
        .carousel-dot.active {
            background-color: #d4af37;
            transform: scale(1.2);
        }
        
        @media (max-width: 992px) {
            .reviews-carousel {
                height: 400px;
            }
            
            .review-card {
                min-width: calc(50% - 20px);
                max-width: calc(50% - 20px);
            }
        }
        
        @media (max-width: 768px) {
            .reviews-carousel {
                height: 420px;
            }
            
            .review-card {
                min-width: 100%;
                max-width: 100%;
            }
            
            .reviews-slide {
                flex-wrap: wrap;
                overflow-y: auto;
                padding: 0 20px;
                box-sizing: border-box;
            }
            
            .container {
                padding: 0 20px;
            }
        }
        .service-discount {
            background: linear-gradient(135deg, #d4af37 0%, #f2d675 100%);
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-bottom: 30px;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }
        
        .service-discount p {
            margin: 0;
            padding: 0 40px;
            font-weight: 600;
            font-size: 1.1rem;
            color: #333;
        }
        
        @keyframes heartbeat {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.3);
            }
        }
        
        .heart {
            font-size: 24px;    
            color: #d4af37;
            margin: 0 15px;
            display: inline-block;
            animation: heartbeat 1.5s ease-in-out infinite;
        }
        
        /* Stagger the animation timing for the two hearts */
        .service-discount .heart:first-child {
            animation-delay: 0s;
        }
        
        .service-discount .heart:last-child {
            animation-delay: 0.75s;
        }
        
        /* Removed the .heart:after pseudo-element to have only one heart emoji */
               /* Lightbox styles */
        .lightbox {
            display: none;
            position: fixed;
            z-index: 2000;
            padding-top: 50px;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0, 0, 0, 0.9);
        }
        
        .lightbox-content {
            position: relative;
            margin: auto;
            padding: 0;
            width: 80%;
            max-width: 900px;
            height: 80%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
        
        .lightbox-img {
            max-width: 100%;
            max-height: 80vh;
            object-fit: contain;
            display: block;
            margin: 0 auto;
            box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
            border-radius: 4px;
        }
        
        /* Enhancing the video appearance in gallery */
        .gallery-video {
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            cursor: pointer;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .video-play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 70px;
            height: 70px;
            background-color: rgba(212, 175, 55, 0.8);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 30px;
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s ease;
        }
        
        .video-play-button:hover {
            background-color: rgba(212, 175, 55, 1);
            transform: translate(-50%, -50%) scale(1.1);
        }
        
        .video-item {
            position: relative;
            width: 100%;
            height: 100%;
            overflow: hidden;
            border-radius: 10px;
        }
        
        .video-item.playing .video-play-button {
            opacity: 0;
        }
        
        .lightbox-controls {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none; /* This allows clicks to pass through to the image */
        }
        
        .lightbox-close, .lightbox-prev, .lightbox-next {
            color: #fff;
            font-size: 35px;
            font-weight: bold;
            cursor: pointer;
            transition: color 0.3s ease;
            position: absolute;
            pointer-events: auto; /* This ensures the controls are clickable */
            z-index: 2010;
        }
        
        .lightbox-close {
            top: -40px;
            right: 0;
        }
        
        .lightbox-prev {
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 60px;
        }
        
        .lightbox-next {
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 60px;
        }
        
        .lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
            color: #d4af37;
            text-decoration: none;
        }
        
        .gallery-item a {
            cursor: pointer;
            display: block;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .gallery-item a:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }
        
        @media (max-width: 768px) {
            .lightbox-content {
                width: 95%;
            }
            
            .lightbox-prev {
                left: -30px;
                font-size: 40px;
            }
            
            .lightbox-next {
                right: -30px;
                font-size: 40px;
            }
            
            .gallery-carousel {
                height: 300px;
            }
            
            .gallery-carousel-controls {
                margin-top: 15px;
            }
            
            .gallery-prev,
            .gallery-next {
                width: 36px;
                height: 36px;
                font-size: 16px;
            }
            
            .video-play-button {
                width: 50px;
                height: 50px;
                font-size: 18px;
            }
        }