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



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

/* Typography - Magazine Style */
h1, h2, h3, h4 {
    font-family: 'Crimson Text', serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    line-height: 1.1;
    font-weight: 600;
}

h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 600;
}

h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    font-weight: 600;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    overflow-x: hidden;
    font-weight: 400;
}

/* Magazine-style text hierarchy */
.magazine-title {
    font-size: 5rem;
    font-weight: 300;
    letter-spacing: -0.03em;
    line-height: 1;
}

.magazine-subtitle {
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    opacity: 0.8;
}

.magazine-caption {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.7;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

/* Color Palette */
:root {
    --primary-color: #DCC29C;
    --secondary-color: #F2EFEB;
    --accent-color: #5E5E5E;
    --text-dark: #2C2C2C;
    --text-light: #5E5E5E;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #DCC29C 0%, #F2EFEB 100%);
}

/* Navigation Right Section */
.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Language Selector */
.language-selector {
    display: flex;
    gap: 5px;
    background: rgba(255, 255, 255, 0.9);
    padding: 6px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.lang-btn {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.lang-btn.active {
    background: var(--primary-color);
    color: var(--white);
}

.lang-btn:hover:not(.active) {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.nav-logo h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section - Magazine Style */
.hero {
    min-height: 100vh;
    background: var(--gradient);
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 60px;
    overflow: hidden;
    /* Safari specific fixes */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    /* Ensure proper video rendering in Safari */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(220, 194, 156, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(242, 239, 235, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    /* Safari specific fixes */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    /* Ensure proper rendering in Safari */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    /* Prevent Safari from showing scrollbars */
    overflow: hidden;
    /* Force Safari to render properly */
    -webkit-perspective: 1000px;
    perspective: 1000px;
}

.hero-video-background video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    /* Safari specific fixes */
    -webkit-object-fit: cover;
    -webkit-object-position: center;
    /* Force hardware acceleration for Safari */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    /* Prevent Safari from showing video controls */
    -webkit-playsinline: true;
    playsinline: true;
    /* Additional Safari fixes */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    /* Force full coverage */
    min-width: 100%;
    min-height: 100%;
    /* Prevent Safari from showing video controls */
    -webkit-user-select: none;
    user-select: none;
    /* Force Safari to treat as background */
    pointer-events: none;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(220, 194, 156, 0.7) 0%, rgba(242, 239, 235, 0.6) 100%);
    z-index: 2;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 3;
}

.hero-text {
    text-align: center;
    max-width: 800px;
}

.hero-text h1 {
    color: var(--white);
    font-size: 5rem;
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: -0.03em;
    line-height: 1;
}

.hero-text h2 {
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-text p {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-primary, .btn-secondary {
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: var(--white);
    color: var(--text-dark);
}

.btn-primary, .btn-secondary {
    padding: 16px 40px;
    border-radius: 0;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
}

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

.btn-primary:hover::before,
.btn-secondary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--text-dark);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 300px;
    height: 400px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 4rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.image-placeholder p {
    font-size: 1rem;
    margin-top: 1rem;
    text-align: center;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 1.5rem;
    animation: gentleFloat 3s ease-in-out infinite;
    opacity: 0.8;
    z-index: 3;
}

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

/* Section Headers - Magazine Style */
.section-header {
    text-align: center;
    margin-bottom: 6rem;
    position: relative;
}

.section-header::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--primary-color);
}

.section-header h2 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.2rem;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* About Section - Magazine Style */
.about {
    padding: 120px 0;
    background: var(--white);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-text h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.experience {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

.certifications {
    margin-top: 2rem;
}

.cert-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.cert-item i {
    color: var(--primary-color);
    margin-right: 1rem;
    font-size: 1.2rem;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-photo {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 50%;
    object-fit: cover;
    transition: all 0.3s ease;
    border: 4px solid var(--primary-color);
}

.about-photo:hover {
    transform: scale(1.02);
}

/* Services Section - Magazine Style */
.services {
    padding: 120px 0;
    background: var(--secondary-color);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

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

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 0;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
    border-left: 4px solid transparent;
}

.service-card:hover {
    border-left-color: var(--primary-color);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 194, 156, 0.1), transparent);
    transition: left 0.5s;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 1.5rem 0;
    color: var(--white);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(220, 194, 156, 0.3);
}

.service-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1rem;
}

.service-price {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.2rem;
}

/* Gallery Section - Magazine Style */
.gallery {
    padding: 120px 0;
    background: var(--white);
    position: relative;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

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

/* Local Images Section - Hidden by default */
.local-images-section {
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

/* Instagram Videos Section - Visible by default */
.instagram-videos-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

/* Safari iOS Detection - Show images, hide videos */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    .local-images-section {
        display: grid !important;
    }
    
    .instagram-videos-section {
        display: none !important;
    }
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.gallery-item {
    border-radius: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    aspect-ratio: 4/3;
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(220, 194, 156, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item {
    border-radius: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.gallery-item:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Add a subtle overlay to indicate clickability */
.gallery-item::before {
    content: '🔍';
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 8px;
    border-radius: 50%;
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
    pointer-events: none;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--white);
    font-size: 2rem;
}

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

/* Instagram Video Styles */
.instagram-video {
    position: relative;
}

.video-placeholder {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #833AB4 0%, #FD1D1D 50%, #FCAF45 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-thumbnail {
    text-align: center;
    color: var(--white);
    z-index: 2;
    position: relative;
}

.video-thumbnail i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.video-thumbnail p {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.instagram-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    color: #E4405F;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.instagram-video .gallery-overlay {
    background: rgba(0, 0, 0, 0.8);
}

.instagram-video .gallery-overlay i {
    font-size: 2.5rem;
    color: var(--white);
}

.instagram-video:hover .video-placeholder {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.gallery-item:hover {
    transform: scale(1.03) translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.gallery-item .image-placeholder {
    width: 100%;
    height: 250px;
    background: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 15px;
    font-size: 3rem;
}

/* Testimonials Section - Magazine Style */
.testimonials {
    padding: 120px 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
    /* Safari specific fixes */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    /* Ensure proper video rendering in Safari */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.testimonials-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    /* Safari specific fixes */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    /* Ensure proper rendering in Safari */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    /* Prevent Safari from showing scrollbars */
    overflow: hidden;
    /* Force Safari to render properly */
    -webkit-perspective: 1000px;
    perspective: 1000px;
}

.testimonials-video-background video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    /* Safari specific fixes */
    -webkit-object-fit: cover;
    -webkit-object-position: center;
    /* Force hardware acceleration for Safari */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    /* Prevent Safari from showing video controls */
    -webkit-playsinline: true;
    playsinline: true;
    /* Additional Safari fixes */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    /* Force full coverage */
    min-width: 100%;
    min-height: 100%;
    /* Prevent Safari from showing video controls */
    -webkit-user-select: none;
    user-select: none;
    /* Force Safari to treat as background */
    pointer-events: none;
}

.testimonials .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(220, 194, 156, 0.8) 0%, rgba(242, 239, 235, 0.7) 100%);
    z-index: 2;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

.testimonials .section-header h2,
.testimonials .section-header p {
    color: var(--white);
}

.testimonials .section-header {
    position: relative;
    z-index: 3;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 3;
}

.testimonial {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-left: 3px solid rgba(255, 255, 255, 0.3);
}

.testimonial::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.6s ease;
}

.testimonial:hover::before {
    left: 100%;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255,255,255,0.2);
}

.stars {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.testimonial p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-style: italic;
}

.client-name {
    font-weight: 600;
    opacity: 0.9;
}

/* Contact Section - Magazine Style */
.contact {
    padding: 120px 0;
    background: var(--white);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

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

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-right: 1rem;
    margin-top: 0.2rem;
}

.contact-item h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    z-index: 1;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.3s ease;
}

.social-link:hover::before {
    transform: scale(1);
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(220, 194, 156, 0.4);
}

/* WhatsApp Booking */
.whatsapp-booking {
    background: var(--secondary-color);
    padding: 3rem;
    border-radius: 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-left: 4px solid var(--primary-color);
}

.whatsapp-booking::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(220, 194, 156, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.whatsapp-booking:hover::before {
    opacity: 1;
}

.whatsapp-booking:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.whatsapp-booking h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
    font-weight: 600;
}

.whatsapp-booking p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.6;
}

.service-carousel {
    margin-bottom: 2rem;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 1.5rem;
}

.service-option {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 0;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-width: 280px;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.service-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.service-option:hover::before {
    opacity: 0.1;
}

.service-option.selected {
    border: 2px solid var(--primary-color) !important;
    background: var(--white);
    box-shadow: 0 10px 25px rgba(220, 194, 156, 0.3);
    transform: translateY(-5px);
    z-index: 2;
}

.service-option.selected::before {
    opacity: 0.05;
}

.service-option .service-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: var(--white);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.service-option:hover .service-icon {
    transform: scale(1.1);
}

.service-option h4 {
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.service-option p {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
    position: relative;
    z-index: 2;
}

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

.carousel-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    position: relative;
    overflow: hidden;
}

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

.carousel-btn:hover::before {
    left: 100%;
}

.carousel-btn:hover {
    background: var(--text-dark);
    transform: scale(1.1);
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent-color);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.dot:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

.whatsapp-button {
    text-align: center;
    margin-top: 2rem;
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 0;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
}

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

.btn-whatsapp:hover::before {
    left: 100%;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:disabled {
    background: var(--accent-color);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-whatsapp:disabled:hover {
    background: var(--accent-color);
    transform: none;
    box-shadow: none;
}

.btn-whatsapp i {
    font-size: 1.3rem;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
    color: #ccc;
    text-decoration: none;
    line-height: 1.8;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-section .social-links a {
    width: 40px;
    height: 40px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    z-index: 1;
}

.footer-section .social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.3s ease;
}

.footer-section .social-links a:hover::before {
    transform: scale(1);
}

.footer-section .social-links a:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(220, 194, 156, 0.4);
}

/* Contact section social links */
.contact .social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: flex-start;
}

.contact .social-links a {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    z-index: 1;
    font-size: 1.2rem;
    font-weight: 600;
}

.contact .social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.3s ease;
}

.contact .social-links a:hover::before {
    transform: scale(1);
}

.contact .social-links a:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(220, 194, 156, 0.4);
}

.contact .social-links a i {
    color: var(--white);
    font-size: 1.2rem;
    pointer-events: none;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-right {
        gap: 0.5rem;
    }
    
    .language-selector {
        padding: 4px;
    }
    
    .lang-btn {
        padding: 4px 10px;
        font-size: 0.75rem;
    }
    
    .hamburger {
        display: flex;
    }
    
    .magazine-title {
        font-size: 3rem;
    }
    
    .magazine-caption {
        font-size: 0.7rem;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .service-card {
        padding: 2rem;
    }
    
        .magazine-grid {
        grid-template-columns: 1fr;
    }
    
    .lightbox-content {
        max-width: 95%;
        max-height: 95%;
    }
    
    .lightbox-caption {
        padding: 1.5rem;
    }
    
    .lightbox-caption h3 {
        font-size: 1.2rem;
    }
    
    .lightbox-nav {
        padding: 0 10px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    /* Safari mobile video fixes */
    .hero-video-background video,
    .testimonials-video-background video {
        -webkit-transform: translateZ(0) scale(1.01);
        transform: translateZ(0) scale(1.01);
        /* Prevent Safari from showing video controls on mobile */
        -webkit-playsinline: true;
        playsinline: true;
        /* Force fullscreen video in Safari mobile */
        -webkit-object-fit: cover;
        object-fit: cover;
        /* Additional Safari mobile fixes */
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        /* Force absolute positioning for Safari */
        position: absolute;
        top: 0;
        left: 0;
        /* Ensure full coverage */
        min-width: 100%;
        min-height: 100%;
        /* Prevent user interaction */
        pointer-events: none;
        -webkit-user-select: none;
        user-select: none;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }
    
    .nav-right {
        order: -1;
    }

    .hero-content {
        text-align: center;
        padding: 0 15px;
    }

    .hero-text {
        max-width: 100%;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-photo {
        max-width: 300px;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .testimonials-slider {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

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

    .hero-text h2 {
        font-size: 1.2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .service-card {
        padding: 2rem;
    }

    .whatsapp-booking {
        padding: 2rem;
    }
    
    .service-carousel {
        margin-bottom: 1.5rem;
    }
    
    .carousel-track {
        gap: 1rem;
    }
    
    .service-option {
        padding: 1.5rem 1rem;
        min-width: 250px;
    }
    
    .carousel-nav {
        gap: 1rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .btn-whatsapp {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .about-photo {
        max-width: 250px;
    }
    
    /* Safari mobile video fixes for small screens */
    .hero-video-background video,
    .testimonials-video-background video {
        -webkit-transform: translateZ(0) scale(1.02);
        transform: translateZ(0) scale(1.02);
        /* Enhanced Safari mobile fixes */
        -webkit-object-fit: cover;
        object-fit: cover;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        /* Prevent Safari from showing video controls */
        -webkit-playsinline: true;
        playsinline: true;
        /* Force hardware acceleration */
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        /* Force absolute positioning */
        position: absolute;
        top: 0;
        left: 0;
        /* Ensure full coverage */
        min-width: 100%;
        min-height: 100%;
        /* Prevent user interaction */
        pointer-events: none;
        -webkit-user-select: none;
        user-select: none;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Elegant Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInFromBottom {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gentleFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes subtlePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.fade-in-left {
    animation: fadeInLeft 0.8s ease-out;
}

.fade-in-right {
    animation: fadeInRight 0.8s ease-out;
}

.scale-in {
    animation: scaleIn 0.6s ease-out;
}

.slide-in-bottom {
    animation: slideInFromBottom 0.8s ease-out;
}

.gentle-float {
    animation: gentleFloat 3s ease-in-out infinite;
}

.subtle-pulse {
    animation: subtlePulse 2s ease-in-out infinite;
}

/* Magazine-style decorative elements */
.magazine-caption {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    opacity: 0.6;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* Magazine-style grid layouts */
.magazine-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
}

.magazine-grid-6 {
    grid-column: span 6;
}

.magazine-grid-4 {
    grid-column: span 4;
}

.magazine-grid-3 {
    grid-column: span 3;
}

/* Magazine-style quotes */
.magazine-quote {
    font-size: 1.5rem;
    font-style: italic;
    font-weight: 300;
    line-height: 1.4;
    color: var(--primary-color);
    border-left: 3px solid var(--primary-color);
    padding-left: 2rem;
    margin: 2rem 0;
}

/* Magazine-style numbers */
.magazine-number {
    font-size: 4rem;
    font-weight: 300;
    color: var(--primary-color);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 1rem;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--secondary-color);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 0;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

/* Lightbox Styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    background: var(--white);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: var(--white);
    cursor: pointer;
    z-index: 10001;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.lightbox-media-container {
    position: relative;
    max-width: 100%;
    max-height: 80vh;
    overflow: hidden;
}

.lightbox-image-container {
    position: relative;
    max-width: 100%;
    max-height: 80vh;
    overflow: hidden;
}

#lightbox-image {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    display: block;
}

.lightbox-video-container {
    position: relative;
    max-width: 100%;
    max-height: 80vh;
    overflow: hidden;
    display: none;
}

#lightbox-video {
    width: 100%;
    height: 80vh;
    max-width: 500px;
    border: none;
    display: block;
}

.lightbox-caption {
    padding: 2rem;
    background: var(--white);
    border-top: 1px solid var(--secondary-color);
}

.lightbox-caption h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    font-weight: 600;
}

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

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.lightbox-prev,
.lightbox-next {
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    padding: 15px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    pointer-events: auto;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

/* Lightbox animations */
@keyframes lightboxFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.lightbox.active .lightbox-content {
    animation: lightboxFadeIn 0.3s ease-out;
}

/* Safari-specific fixes */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    .hero-video-background video,
    .testimonials-video-background video {
        /* Force Safari to render video as background */
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        -webkit-object-fit: cover !important;
        /* Prevent any Safari video controls */
        -webkit-playsinline: true !important;
        playsinline: true !important;
        /* Force hardware acceleration */
        -webkit-transform: translateZ(0) !important;
        transform: translateZ(0) !important;
        /* Prevent user interaction */
        pointer-events: none !important;
        -webkit-user-select: none !important;
        user-select: none !important;
        /* Ensure full coverage */
        min-width: 100% !important;
        min-height: 100% !important;
        /* Additional Safari fixes */
        -webkit-backface-visibility: hidden !important;
        backface-visibility: hidden !important;
        /* Force Safari to treat as background */
        z-index: -1 !important;
    }
    
    .hero-video-background,
    .testimonials-video-background {
        /* Force Safari container fixes */
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        overflow: hidden !important;
        /* Force hardware acceleration */
        -webkit-transform: translateZ(0) !important;
        transform: translateZ(0) !important;
        /* Prevent Safari rendering issues */
        -webkit-backface-visibility: hidden !important;
        backface-visibility: hidden !important;
    }
} 