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

:root {
    --font-family: 'Cormorant Garamond', serif;
    --transition-speed: 0.3s;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all var(--transition-speed);
    padding: 20px 0;
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-height: 60px;
    transition: all var(--transition-speed);
}

.header.scrolled .logo img {
    max-height: 45px;
}

.logo-text {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color, #fff);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-speed);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color, #d4af37);
    transition: width var(--transition-speed);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--accent-color, #d4af37);
}

.lang-switcher {
    display: flex;
    gap: 10px;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
}

.lang-switcher a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color var(--transition-speed);
}

.lang-switcher a.active,
.lang-switcher a:hover {
    color: var(--accent-color, #d4af37);
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    z-index: 2000;
    padding: 80px 30px 30px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-lang-switcher {
    display: flex;
    gap: 10px;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 20px;
}

.mobile-lang-switcher a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.mobile-lang-switcher a.active {
    color: var(--accent-color, #d4af37);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video,
.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image {
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #fff;
    padding: 20px;
    max-width: 900px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    margin-bottom: 40px;
    opacity: 0.95;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

/* Hero Social Icons */
.hero-social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.hero-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #fff;
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.3s;
}

.hero-social-icons a:hover {
    background: var(--accent-color, #d4af37);
    border-color: var(--accent-color, #d4af37);
    color: #000;
    transform: translateY(-5px) scale(1.1);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-15px);
    }
    60% {
        transform: translateX(-50%) translateY(-7px);
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition-speed);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--accent-color, #d4af37);
    color: #000;
}

.btn-primary:hover {
    background: var(--accent-hover, #c9a42b);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-color, #d4af37);
    border: 2px solid var(--accent-color, #d4af37);
}

.btn-secondary:hover {
    background: var(--accent-color, #d4af37);
    color: #000;
    transform: translateY(-3px);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* Sections */
section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-color, #1a1a1a);
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-secondary, #666);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Services Section */
.services {
    background: var(--section-bg, #f8f8f8);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

/* Services Mobile Slider - shown on all screens when slider mode is selected */
.services-mobile-slider {
    display: block;
}

.services-swiper {
    padding: 20px 60px 30px;
}

.services-swiper .swiper-button-next,
.services-swiper .swiper-button-prev {
    top: 50%;
    transform: translateY(-50%);
}

.service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all var(--transition-speed);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 4rem;
    color: var(--accent-color, #d4af37);
    margin-bottom: 20px;
}

.service-icon svg {
    width: 64px;
    height: 64px;
    fill: var(--accent-color, #d4af37);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-color, #1a1a1a);
}

.service-description {
    color: var(--text-secondary, #666);
    margin-bottom: 20px;
    line-height: 1.7;
}

/* Services Layout Variants for Mobile */
@media (max-width: 768px) {
    .services-grid.services-layout-1col {
        grid-template-columns: 1fr;
    }
    
    .services-grid.services-layout-2col {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .services-layout-2col .service-card {
        padding: 25px 15px;
    }
    
    .services-layout-2col .service-icon {
        font-size: 2.5rem;
    }
    
    .services-layout-2col .service-title {
        font-size: 1.1rem;
    }
    
    .services-layout-2col .service-description {
        font-size: 0.9rem;
    }
    
    .services-swiper {
        padding: 20px 40px 30px;
    }
    
    .hero-social-icons a {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    align-items: center;
}

.about-image img {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 30px;
}

.about-description {
    color: var(--text-secondary, #666);
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Galleries Section */
.galleries {
    background: var(--section-bg-alt, #fff);
}

.gallery-block {
    margin-bottom: 80px;
}

.gallery-block:last-child {
    margin-bottom: 0;
}

.gallery-title {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 15px;
    color: var(--text-color, #1a1a1a);
}

.gallery-description {
    text-align: center;
    color: var(--text-secondary, #666);
    margin-bottom: 40px;
}

.gallery-swiper {
    padding: 0 50px 50px;
}

.gallery-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
}

.gallery-image-wrapper img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.6s;
}

.gallery-image-wrapper:hover img {
    transform: scale(1.1);
}

.gallery-image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #fff;
    padding: 20px;
    transform: translateY(100%);
    transition: transform var(--transition-speed);
}

.gallery-image-wrapper:hover .gallery-image-caption {
    transform: translateY(0);
}

/* Videos Section */
.videos {
    background: var(--section-bg, #f8f8f8);
}

.video-swiper {
    padding: 0 50px 50px;
}

.video-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-card video {
    width: 100%;
    height: auto;
}

.video-title {
    padding: 20px;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color, #1a1a1a);
    text-align: center;
}

/* Testimonials Section */
.testimonials {
    background: var(--section-bg-alt, #fff);
}

.testimonials-swiper {
    padding: 0 50px 30px;
}

.testimonials-swiper .swiper-slide {
    height: auto;
}

.testimonial-card {
    background: var(--section-bg, #fff);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    height: 100%;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.testimonial-rating {
    color: var(--accent-color, #d4af37);
    font-size: 1.5rem;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-secondary, #666);
    margin-bottom: 25px;
    line-height: 1.7;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex-shrink: 0;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.testimonial-author strong {
    color: var(--text-color, #1a1a1a);
    font-size: 1.1rem;
}

.testimonial-date {
    color: var(--text-secondary, #999);
    font-size: 0.9rem;
}

.google-review-cta {
    text-align: center;
    margin-top: 50px;
}

/* Custom Sections */
.custom-section {
    background-size: cover;
    background-position: center;
    position: relative;
}

.custom-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.custom-section .container {
    position: relative;
    z-index: 10;
}

.custom-section .section-title {
    color: #fff;
}

.custom-section-content {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Contact Section */
.contact {
    background: var(--section-bg, #f8f8f8);
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-color, #1a1a1a);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--accent-color, #d4af37);
    border-radius: 10px;
    font-size: 1rem;
    font-family: var(--font-family);
    transition: all var(--transition-speed);
    background: var(--section-bg, #fff);
    color: var(--text-color, #1a1a1a);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-secondary, #999);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color, #d4af37);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.contact-form .btn {
    width: 100%;
    justify-content: center;
    margin-top: 20px;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3,
.footer-column h4 {
    margin-bottom: 20px;
    color: var(--accent-color, #d4af37);
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color var(--transition-speed);
}

.footer-links a:hover {
    color: var(--accent-color, #d4af37);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all var(--transition-speed);
}

.social-links a:hover {
    background: var(--accent-color, #d4af37);
    color: #000;
    transform: translateY(-3px);
}

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

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all var(--transition-speed);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 5px 30px rgba(37, 211, 102, 0.7);
    }
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
}

.modal.active {
    display: block;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    background: #fff;
    border-radius: 15px;
    padding: 40px;
}

/* Video Modal - Larger Size */
#videoModal .modal-content {
    width: 90vw;
    max-width: 1200px;
    background: var(--section-bg, #1a1a1a);
    padding: 30px;
    border-radius: 15px;
}

#videoModal .modal-body {
    width: 100%;
}

#videoModal .modal-body h2 {
    color: var(--accent-color, #d4af37) !important;
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

/* Video Container - Responsive 16:9 */
#videoModal .modal-body > div:last-child {
    width: 100%;
    min-height: 300px;
}

#videoModal .modal-body iframe {
    border-radius: 10px;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #fff;
    transition: all var(--transition-speed);
    z-index: 10;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#videoModal .modal-close {
    color: var(--accent-color, #d4af37);
    background: rgba(0, 0, 0, 0.7);
}

#videoModal .modal-close:hover {
    background: var(--accent-color, #d4af37);
    color: #000;
}

.modal-close:hover {
    background: var(--accent-color, #d4af37);
    color: #000;
    transform: scale(1.1);
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
}

.lightbox.active {
    display: block;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
}

.lightbox-close {
    position: fixed;
    top: 30px;
    right: 30px;
    background: transparent;
    border: none;
    font-size: 2.5rem;
    cursor: pointer;
    color: #fff;
    z-index: 10001;
    transition: transform var(--transition-speed);
}

.lightbox-close:hover {
    transform: scale(1.1);
}

.lightbox-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 95%;
    max-height: 95%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 10px;
}

/* Swiper Customization */
.swiper-button-next,
.swiper-button-prev {
    color: var(--accent-color, #d4af37);
    background: rgba(255, 255, 255, 0.9);
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px;
}

.swiper-pagination-bullet {
    background: var(--accent-color, #d4af37);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

/* Animations */
.animate-fade-in-up {
    opacity: 0;
    transform: translateY(30px);
}

.animate-fade-in-up.animated {
    animation: fadeInUp 0.8s forwards;
}

.animate-fade-in-up.delay-1 {
    animation-delay: 0.2s;
}

.animate-fade-in-up.delay-2 {
    animation-delay: 0.4s;
}

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Gallery Cards for Slider */
.gallery-card {
    cursor: pointer;
    border-radius: 15px;
    overflow: hidden;
    background: var(--section-bg, #fff);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-speed);
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.gallery-card-image {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.gallery-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.gallery-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.8) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 25px;
    opacity: 0;
    transition: opacity var(--transition-speed);
}

.gallery-card:hover .gallery-card-overlay {
    opacity: 1;
}

.gallery-card-count {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 15px;
}

.gallery-card-count i {
    margin-right: 8px;
    color: var(--accent-color, #d4af37);
}

.gallery-card-btn {
    background: var(--accent-color, #d4af37);
    color: #000;
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-speed);
}

.gallery-card-btn:hover {
    background: #fff;
    color: #000;
}

.gallery-card-content {
    padding: 20px;
    text-align: center;
    background: var(--section-bg, #fff);
}

.gallery-card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-color, #1a1a1a);
    margin-bottom: 8px;
}

.gallery-card-description {
    color: var(--text-secondary, #666);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Video Cards for Slider */
.video-card-preview {
    cursor: pointer;
    border-radius: 15px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-speed);
}

.video-card-preview:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.video-card-thumbnail {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.video-card-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.video-card-preview:hover .video-card-thumbnail img {
    transform: scale(1.1);
}

.video-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--accent-color, #d4af37);
}

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-speed);
}

.video-card-preview:hover .video-play-overlay {
    opacity: 1;
}

.video-play-overlay i {
    font-size: 4rem;
    color: #fff;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    transition: transform var(--transition-speed);
}

.video-card-preview:hover .video-play-overlay i {
    transform: scale(1.2);
}

.video-card-title {
    padding: 20px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color, #1a1a1a);
}

/* Main Swiper Styling for Galleries and Videos */
.galleries-main-swiper,
.videos-main-swiper {
    padding: 20px 60px 50px;
}

/* Global Swiper Arrow Styling */
.swiper-button-next,
.swiper-button-prev {
    width: 50px;
    height: 50px;
    background: var(--accent-color, #d4af37);
    border-radius: 50%;
    color: #000;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 18px;
    font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #fff;
    transform: scale(1.1);
}

/* Swiper arrows positioning */
.galleries-main-swiper .swiper-button-next,
.videos-main-swiper .swiper-button-next,
.testimonials-swiper .swiper-button-next {
    right: 5px;
}

.galleries-main-swiper .swiper-button-prev,
.videos-main-swiper .swiper-button-prev,
.testimonials-swiper .swiper-button-prev {
    left: 5px;
}

/* Gallery Modal Styling */
#galleryModal .modal-content {
    background: rgba(0, 0, 0, 0.95);
    padding: 20px;
}

#galleryModal .swiper-button-next,
#galleryModal .swiper-button-prev {
    color: #fff;
    background: rgba(255, 255, 255, 0.25);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

#galleryModal .swiper-button-next:hover,
#galleryModal .swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.4);
}

#galleryModal .swiper-button-next::after,
#galleryModal .swiper-button-prev::after {
    font-size: 18px;
    font-weight: bold;
}

/* Hide pagination dots in gallery modal */
#galleryModal .swiper-pagination {
    display: none;
}

/* Video Modal Styling */
#videoModal .modal-content {
    background: rgba(0, 0, 0, 0.95);
    padding: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }
    
    * {
        max-width: 100%;
    }
    
    .container {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
    }
    
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 2rem;
        word-wrap: break-word;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    section {
        padding: 50px 0;
        overflow-x: hidden;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    /* Contact Form Mobile Fix */
    .contact-form {
        max-width: 100%;
        padding: 0 10px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        max-width: 100%;
        padding: 12px;
        font-size: 16px; /* Prevents iOS zoom */
    }
    
    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-column {
        text-align: center;
    }
    
    /* Swiper Mobile Fix */
    .swiper {
        max-width: 100%;
        overflow: hidden;
    }
    
    .swiper-slide {
        max-width: 100%;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .gallery-swiper,
    .video-swiper,
    .galleries-main-swiper,
    .videos-main-swiper,
    .testimonials-swiper {
        padding: 0 40px 30px;
    }
    
    .gallery-card-image {
        height: 220px;
    }
    
    .video-card-thumbnail {
        height: 180px;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        width: 35px;
        height: 35px;
    }
    
    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 14px;
    }
    
    .testimonial-card {
        min-height: 280px;
        padding: 25px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    #galleryModal .modal-content,
    #videoModal .modal-content {
        width: 95vw !important;
        max-width: 95vw !important;
        padding: 15px;
        margin: 0;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    
    #videoModal .modal-body h2 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    #videoModal .modal-close,
    #galleryModal .modal-close {
        top: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
}


/* Galleries Section - Theme Colors */
.galleries .section-title,
.galleries .section-subtitle {
    color: var(--text-color, #1a1a1a);
}

.galleries {
    background: var(--section-bg-alt, #fff);
}

/* Videos Section - Theme Colors */
.videos {
    background: var(--section-bg, #f8f8f8);
}

.videos .section-title,
.videos .section-subtitle {
    color: var(--text-color, #1a1a1a);
}

/* Video Card Theme Adaptation */
.video-card-preview {
    background: var(--section-bg-alt, #fff);
}

.video-card-title {
    background: var(--section-bg-alt, #fff);
    color: var(--text-color, #1a1a1a);
}

/* Testimonials Section - Theme Colors */
.testimonials .section-title,
.testimonials .section-subtitle {
    color: var(--text-color, #1a1a1a);
}
