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

/* ===== SMOOTH SCROLLING & ANIMATION FOUNDATION ===== */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 60px;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Performance optimizations */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Will-change for animated elements */
.animate-on-scroll,
.hero-content,
.floating-makeup,
.service-card,
.portfolio-item,
.video-card-horizontal {
    will-change: transform, opacity;
}

:root {
    /* Light mode colors */
    --bg-primary: #fafafa;
    --bg-secondary: #ffffff;
    --text-primary: #333;
    --text-secondary: #666;
    --text-light: #ccc;
    --accent-color: #d4a574;
    --accent-hover: #c19660;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-light: rgba(0, 0, 0, 0.08);
    --border: #ddd;
    --footer-bg: #333;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Dark mode styles */
body.dark-mode {
    --bg-primary: #1a1a1a;
    --bg-secondary: #2d2d2d;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-light: #888;
    --shadow: rgba(0, 0, 0, 0.3);
    --shadow-light: rgba(0, 0, 0, 0.2);
    --border: #444;
    --footer-bg: #111;
}

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

/* Navigation */
.navbar {
    background: var(--bg-secondary);
    box-shadow: 0 2px 10px var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 0.75rem 0;
    backdrop-filter: blur(10px);
}

.announcement-bar {
    background: linear-gradient(to right, var(--accent-color), var(--accent-hover));
    color: white;
    text-align: center;
    padding: 10px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
}

/* Adjust navbar to sit below announcement bar */
body.has-announcement .navbar {
    top: 40px;
}

/* Adjust hero padding to account for extra header height */
body.has-announcement .hero {
    padding-top: 180px;
}

.navbar.scrolled {
    padding: 0.4rem 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 165, 116, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-img {
    height: 55px;
    width: auto;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-color);
    letter-spacing: 0.3px;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.logo-link:hover .logo-img {
    transform: scale(1.05);
}

.logo-link:hover .logo-text {
    color: var(--accent-hover);
}

.logo h2 {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    transition: all 0.3s ease;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
}

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

/* Removed duplicate nav-link active styling - handled by enhanced version below */

/* Hero Section - Enhanced */
.hero {
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding: 140px 20px 50px;
    max-width: 1200px;
    margin: 0 auto;
    gap: 4rem;
    position: relative;
    overflow: hidden;
}

/* Floating Background Elements */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-makeup {
    position: absolute;
    font-size: 2rem;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.makeup-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.makeup-2 {
    top: 60%;
    left: 15%;
    animation-delay: 1s;
}

.makeup-3 {
    top: 30%;
    right: 20%;
    animation-delay: 2s;
}

.makeup-4 {
    top: 70%;
    right: 10%;
    animation-delay: 3s;
}

.makeup-5 {
    top: 10%;
    left: 60%;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

/* Hero Content */
.hero-content {
    flex: 1;
    z-index: 2;
    position: relative;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    animation: slideInLeft 0.8s ease-out;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    animation: slideInLeft 0.8s ease-out 0.2s both;
}

.title-line-1,
.title-line-3 {
    display: block;
}

.title-line-2 {
    display: block;
    font-size: 4.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-color), #e6b887, var(--accent-hover));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        filter: hue-rotate(0deg);
    }

    50% {
        filter: hue-rotate(20deg);
    }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
    animation: slideInLeft 0.8s ease-out 0.4s both;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    animation: slideInUp 0.8s ease-out 0.6s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    animation: slideInUp 0.8s ease-out 0.8s both;
}

.cta-button {
    display: inline-block;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    color: white;
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 165, 116, 0.4);
}

.cta-button.secondary {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.cta-button.secondary:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-3px);
}

/* Social Proof */
.hero-social-proof {
    animation: slideInUp 0.8s ease-out 1s both;
}

.client-avatars {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.avatar {
    width: 40px !important;
    height: 40px !important;
    border-radius: 50%;
    border: 3px solid white;
    object-fit: cover;
    object-position: center;
    margin-left: -10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: inline-block !important;
    flex-shrink: 0;
    z-index: 1;
}

.avatar:first-child {
    margin-left: 0;
}

.avatar-text {
    margin-left: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Hero Image Enhanced */
.hero-image {
    flex: 1;
    z-index: 2;
    position: relative;
}

.image-container {
    position: relative;
    animation: slideInRight 0.8s ease-out 0.3s both;
}

.image-frame {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.image-frame:hover {
    transform: translateY(-10px) rotate(2deg);
}

.image-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
}

.overlay-badge {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-color);
}

/* Decorative Elements */
.decorative-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.deco-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color), transparent);
    opacity: 0.1;
    animation: rotate 20s linear infinite;
}

.circle-1 {
    width: 100px;
    height: 100px;
    top: -50px;
    left: -50px;
}

.circle-2 {
    width: 150px;
    height: 150px;
    bottom: -75px;
    right: -75px;
    animation-direction: reverse;
}

.deco-triangle {
    position: absolute;
    top: 50%;
    left: -20px;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 35px solid var(--accent-color);
    opacity: 0.1;
    animation: float 4s ease-in-out infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

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

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

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

.placeholder-image {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    color: #666;
    font-weight: 500;
}

/* ===== CONSISTENT IMAGE SIZING - FIXED DIMENSIONS ===== */
/* All images maintain consistent dimensions regardless of source image size */
/* Images will automatically crop/zoom to fit containers without distortion */

/* Hero and About Images */
.hero-img,
.about-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center top;
    /* Focus on face area */
    border-radius: 15px;
}

/* Universal Image Sizing Rules */
img {
    max-width: 100%;
    height: auto;
}

/* All container images use object-fit: cover for consistent sizing */
.featured-img,
.gallery-img,
.service-img,
.process-img,
.before-img img,
.after-img img,
.insta-item img,
.video-placeholder img,
.floating-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

/* Specific container dimensions maintained via aspect-ratio or fixed height */
.featured-hero {
    height: 400px;
}

.featured-item {
    height: 190px;
}

.insta-item {
    aspect-ratio: 1;
}

.before-img,
.after-img {
    aspect-ratio: 3/4;
}

.video-placeholder {
    aspect-ratio: 16/9;
}

.avatar {
    width: 40px;
    height: 40px;
}

.service-img {
    height: 200px;
}

.process-img {
    height: 150px;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    border-radius: 20px;
}

.before-after-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    /* Face-focused cropping */
}

.service-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 25px 25px 0 0;
    /* Matching outer container radius */
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    display: block;
    object-position: center top;
    /* Face-focused for service images */
}

.process-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 15px;
    /* Inner radius */
    margin-bottom: 1rem;
    object-position: center top;
    /* Face-focused positioning */
}

.featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    /* Ensure faces are prominently displayed */
}



/* About Section */
.about {
    padding: 80px 0;
    background: var(--bg-secondary);
    transition: background-color 0.3s ease;
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.about-content {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.about-text {
    flex: 1;
}

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

.about-image {
    flex: 1;
}

/* Section Subtitles */
.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-style: italic;
}

/* Featured Work Section */
.featured-work {
    padding: 80px 0;
    background: var(--bg-primary);
    transition: background-color 0.3s ease;
}

.featured-work h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}


.featured-gallery {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
}

.featured-hero {
    flex: 2;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: var(--card-bg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    height: 400px;
}

.featured-hero:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(212, 165, 116, 0.2);
}

.featured-small-grid {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.featured-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: var(--card-bg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    height: 190px;
}

.featured-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(212, 165, 116, 0.2);
}

.featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    display: block;
    border-radius: 20px;
}

.featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.featured-item:hover .featured-overlay {
    transform: translateY(0);
}

.featured-overlay h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.featured-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Before & After Showcase */
.before-after-showcase {
    padding: 80px 0;
    background: var(--bg-secondary);
    transition: background-color 0.3s ease;
}

.before-after-showcase h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

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

.transformation-item {
    text-align: center;
}

.transformation-images {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.8rem;
    align-items: stretch;
}

.before-img,
.after-img {
    flex: 1;
    position: relative;
    border-radius: 18px;
    /* Outer radius for transformation images */
    overflow: hidden;
    aspect-ratio: 3/4;
    background: transparent;
}

.before-img img,
.after-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    border-radius: 18px;
}

.transformation-item .label {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.transformation-item h4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.transformation-item p {
    color: var(--text-secondary);
    font-style: italic;
}

/* Process Section */
.process {
    padding: 80px 0;
    background: var(--bg-primary);
    transition: background-color 0.3s ease;
}

.process h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

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

.process-step {
    text-align: center;
    position: relative;
    padding: 2rem;
    background: var(--bg-secondary);
    border-radius: 25px;
    /* Outer radius = Inner radius (15px) + Padding (10px) */
    box-shadow: 0 5px 15px var(--shadow-light);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.process-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    object-position: center top;
    border-radius: 15px;
    /* Inner radius */
    margin-bottom: 1rem;
    display: block;
}

.process-step h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.process-step p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Video Testimonials */
.video-testimonials {
    padding: 80px 0;
    background: var(--bg-secondary);
    transition: background-color 0.3s ease;
}

.video-testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: start;
}

.video-item {
    text-align: center;
}

.video-placeholder {
    position: relative;
    border-radius: 20px;
    /* Outer radius = Inner radius (15px) + Padding (5px) */
    overflow: hidden;
    cursor: pointer;
    margin-bottom: 1rem;
    aspect-ratio: 16/9;
    background: transparent;
}

.video-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    border-radius: 20px;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(212, 165, 116, 0.9);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    padding-left: 3px;
    /* Offset to center the triangle visually */
}

.video-placeholder:hover .play-button {
    background: var(--accent-color);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-item h4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.video-item p {
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.6;
    margin: 0;
    padding: 0 1rem;
}

/* Horizontal Video Gallery Section */
.video-gallery {
    padding: 80px 0;
    background: var(--bg-primary);
    transition: background-color 0.3s ease;
    overflow: hidden;
}

.gallery-header {
    text-align: center;
    margin-bottom: 50px;
}

.video-scroll-container {
    position: relative;
    margin: 0 -20px;
    padding: 0 20px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.video-scroll-container::-webkit-scrollbar {
    display: none;
}

.video-scroll-track {
    display: flex;
    gap: 25px;
    padding: 10px 0 30px 0;
    width: max-content;
}

.video-card-horizontal {
    flex-shrink: 0;
    width: 280px;
    background: var(--bg-secondary);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border);
    position: relative;
}

.video-card-horizontal:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(212, 165, 116, 0.25);
}

.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 9/16;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    border-radius: 20px 20px 0 0;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border: none;
    outline: none;
    border-radius: 20px 20px 0 0;
    transition: filter 0.3s ease, brightness 0.3s ease;
}

.video-card-horizontal:hover .video-wrapper video {
    /* Subtle brightness enhancement only */
    filter: brightness(1.05) contrast(1.02);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.1) 0%,
            rgba(0, 0, 0, 0.3) 50%,
            rgba(0, 0, 0, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

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

.play-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 165, 116, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    font-weight: bold;
    transform: scale(0.8);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding-left: 3px;
}

.video-card-horizontal:hover .play-icon {
    transform: scale(1);
    background: var(--accent-color);
}

.video-details {
    padding: 20px;
    text-align: center;
    background: var(--bg-secondary);
}

.video-details h4 {
    color: var(--accent-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
}

.video-details p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
    opacity: 0.8;
}

.scroll-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.scroll-hint {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    opacity: 0.7;
}

.scroll-arrow {
    font-size: 1.2rem;
    color: var(--accent-color);
    animation: slideHint 2s ease-in-out infinite;
}

@keyframes slideHint {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(10px);
    }
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .logo-img {
        height: 45px;
    }

    .logo-text {
        font-size: 1.3rem;
    }

    .logo-link {
        gap: 12px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--bg-secondary);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        z-index: 999;
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 1rem;
        display: block;
        border-radius: 10px;
        margin: 0 1rem;
        transition: all 0.3s ease;
    }

    .nav-link:hover,
    .nav-link.active {
        background-color: var(--accent-color);
        color: white;
    }
}

/* Responsive Design for Horizontal Gallery */
@media (max-width: 768px) {
    .video-card-horizontal {
        width: 250px;
    }

    .video-scroll-track {
        gap: 20px;
        padding: 10px 0 25px 0;
    }

    .video-details {
        padding: 15px;
    }

    .video-details h4 {
        font-size: 1rem;
    }

    .video-details p {
        font-size: 0.85rem;
    }

    .play-icon {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 40px;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .logo-link {
        gap: 10px;
    }

    .video-card-horizontal {
        width: 220px;
    }

    .video-scroll-container {
        margin: 0 -15px;
        padding: 0 15px;
    }

    .video-scroll-track {
        gap: 15px;
    }

    .scroll-hint span {
        font-size: 0.8rem;
    }
}

/* Instagram Feed */
.instagram-feed {
    padding: 100px 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s ease;
}

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

.instagram-header {
    text-align: center;
    margin-bottom: 60px;
}

.instagram-title-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.instagram-logo {
    width: 48px;
    height: 48px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.instagram-feed h2 {
    font-size: 2.5rem;
    margin: 0;
    color: var(--text-primary);
    font-weight: 600;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.insta-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    aspect-ratio: 1;
    background: #000;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.insta-item:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 15px 40px rgba(212, 165, 116, 0.3);
    z-index: 10;
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
}

.insta-item:hover img {
    transform: scale(1.1);
}

.insta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.9), rgba(184, 134, 87, 0.9));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.insta-icon {
    width: 50px;
    height: 50px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.insta-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.instagram-cta {
    text-align: center;
}

.follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(188, 24, 136, 0.3);
    position: relative;
    overflow: hidden;
}

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

.follow-btn:hover::before {
    transform: translateX(100%);
}

.follow-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(188, 24, 136, 0.4);
}

.follow-btn svg {
    width: 24px;
    height: 24px;
}

.instagram-followers {
    margin-top: 15px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Instagram Responsive */
@media (max-width: 1024px) {
    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .instagram-logo {
        width: 40px;
        height: 40px;
    }

    .instagram-feed h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .instagram-feed {
        padding: 70px 0;
    }

    .instagram-header {
        margin-bottom: 40px;
    }

    .instagram-title-section {
        gap: 15px;
    }

    .instagram-logo {
        width: 36px;
        height: 36px;
    }

    .instagram-feed h2 {
        font-size: 1.75rem;
    }

    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-bottom: 40px;
    }

    .insta-item {
        border-radius: 16px;
    }

    .insta-icon {
        width: 40px;
        height: 40px;
    }

    .insta-text {
        font-size: 0.85rem;
    }

    .follow-btn {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .instagram-feed {
        padding: 60px 0;
    }

    .instagram-title-section {
        flex-direction: column;
        gap: 10px;
    }

    .instagram-feed h2 {
        font-size: 1.5rem;
    }

    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .insta-item {
        border-radius: 14px;
    }

    .follow-btn {
        padding: 14px 25px;
        font-size: 0.95rem;
    }
}

/* Services Section */
.services {
    padding: 80px 0;
    background: var(--bg-primary);
    transition: background-color 0.3s ease;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

/* Service Category Styling */
.service-category {
    margin-bottom: 4rem;
}

.category-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2.5rem;
    text-align: center;
    position: relative;
}

.category-icon {
    font-size: 2.5rem;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

.category-text {
    background: linear-gradient(135deg, var(--accent-color), #f4d03f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--accent-color), #f4d03f);
    border-radius: 2px;
}

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

.service-card {
    background: var(--bg-secondary);
    border-radius: 25px;
    /* Outer radius = Inner radius (15px) + Padding (10px) */
    text-align: center;
    box-shadow: 0 5px 15px var(--shadow-light);
    transition: transform 0.3s ease, background-color 0.3s ease;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
}


.service-img:not([src]),
.service-img[src=""] {
    background: linear-gradient(135deg, #d4a574 0%, #c19660 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 500;
}

.service-img:not([src])::after,
.service-img[src=""]::after {
    content: "Image Loading...";
}

.service-card h3 {
    color: var(--accent-color);
    margin: 1.5rem 0 1rem 0;
    font-size: 1.3rem;
    padding: 0 2rem;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    padding: 0 2rem 2rem 2rem;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: var(--bg-secondary);
    transition: background-color 0.3s ease;
}

.pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.pricing .section-subtitle {
    text-align: center;
    margin-bottom: 4rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
    align-items: start;
    padding-top: 20px;
}

.pricing-category {
    background: var(--bg-primary);
    padding: 2.5rem 2rem 2rem 2rem;
    border-radius: 24px;
    box-shadow: 0 8px 30px var(--shadow-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-category:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px var(--shadow);
    border-color: rgba(212, 165, 116, 0.3);
}

/* Featured Card - Makeup Services */
.pricing-featured {
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.08) 0%, rgba(212, 165, 116, 0.15) 100%);
    border: 2px solid var(--accent-color);
    position: relative;
    box-shadow: 0 10px 40px rgba(212, 165, 116, 0.3);
    overflow: visible;
}

.pricing-featured::before {
    content: "⭐ Most Popular";
    position: absolute;
    top: -14px;
    right: 20px;
    background: linear-gradient(135deg, var(--accent-color), #f4d03f);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.4);
    animation: pulse 2s ease-in-out infinite;
    z-index: 10;
    white-space: nowrap;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Premium Package Card */
.pricing-premium {
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.05) 0%, rgba(255, 215, 0, 0.08) 100%);
    border: 2px solid rgba(212, 165, 116, 0.5);
}

/* Category Icon */
.category-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.pricing-category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    text-align: center;
    letter-spacing: 0.3px;
}

/* Category Description */
.category-description {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(212, 165, 116, 0.2);
    font-style: italic;
}

.pricing-subcategory {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px dashed var(--border);
}

.pricing-subcategory:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.pricing-subheading {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    padding-left: 0.5rem;
    border-left: 3px solid var(--accent-color);
}

.pricing-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pricing-list li {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(212, 165, 116, 0.1);
    transition: all 0.2s ease;
    gap: 1rem;
}

.pricing-list li:last-child {
    border-bottom: none;
}

.pricing-list li:hover {
    padding-left: 0.5rem;
    background: rgba(212, 165, 116, 0.05);
    border-radius: 8px;
}

.service-name {
    color: var(--text-primary);
    font-weight: 500;
    flex: 1;
    line-height: 1.4;
}

.service-price {
    color: var(--accent-color);
    font-weight: 600;
    white-space: nowrap;
    font-size: 0.95rem;
}

.pricing-note {
    text-align: center;
    padding: 2rem;
    background: rgba(212, 165, 116, 0.1);
    border-radius: 15px;
    border-left: 4px solid var(--accent-color);
    margin-top: 2rem;
}

.pricing-note p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

/* Location Section */
.location {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

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

.location-header {
    margin-bottom: 3rem;
}

.location-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.location-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.location-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.location-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-color), #f4d03f);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.location-icon svg {
    width: 24px;
    height: 24px;
    stroke: white;
}

.location-text h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.location-text p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.location-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.location-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.location-btn.primary {
    background: linear-gradient(135deg, var(--accent-color), #f4d03f);
    color: white;
}

.location-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.4);
}

.location-btn.secondary {
    background: transparent;
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.location-btn.secondary:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-3px);
}

.location-btn svg {
    width: 20px;
    height: 20px;
}

.location-map {
    position: relative;
}

.map-container {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.map-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
}

.map-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.map-icon {
    font-size: 1.2rem;
}

.map-text {
    font-weight: 500;
    color: var(--text-primary);
    font-size: 0.9rem;
}

/* Mobile Responsive for Location Section */
@media (max-width: 768px) {
    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .location-actions {
        justify-content: center;
    }

    .location-btn {
        flex: 1;
        justify-content: center;
        min-width: 140px;
    }

    .map-container iframe {
        height: 300px;
    }
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--bg-secondary);
    transition: background-color 0.3s ease;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item h4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-item p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 15px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    background: var(--bg-secondary);
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.contact-form button {
    background: var(--accent-color);
    color: white;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background: var(--accent-hover);
}

/* Portfolio Specific Styles */
.portfolio-header {
    padding: 140px 0 50px;
    text-align: center;
    background: var(--bg-secondary);
    transition: background-color 0.3s ease;
}

.portfolio-header h1 {
    font-size: 3rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.portfolio-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.portfolio-filters {
    padding: 30px 0;
    background: var(--bg-primary);
    transition: background-color 0.3s ease;
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--bg-secondary);
    border: 2px solid var(--border);
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    font-weight: 500;
    color: var(--text-primary);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

.portfolio-gallery {
    padding: 50px 0 80px;
    background: var(--bg-primary);
    transition: background-color 0.3s ease;
}

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

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 4/5;
    background: transparent;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow);
}

.gallery-item .placeholder-image {
    height: 100%;
    width: 100%;
    margin: 0;
    border-radius: 20px;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Before & After Styles */
.before-after-container {
    display: flex;
    aspect-ratio: 16/9;
    background: transparent;
}

.before-image,
.after-image {
    flex: 1;
    position: relative;
}

.before-image .placeholder-image,
.after-image .placeholder-image {
    height: 100%;
    border-radius: 0;
    margin: 0;
}

.label {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Dark mode enhancement for labels */
body.dark-mode .label {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: var(--bg-secondary);
    transition: background-color 0.3s ease;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

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

.testimonial {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 15px var(--shadow-light);
    transition: all 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px var(--shadow-light);
}

.testimonial p {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial h4 {
    color: var(--accent-color);
    font-weight: 500;
}

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

.testimonial .review-time {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-top: 0.5rem;
    display: block;
}

/* Beautiful Footer Design */
.footer {
    background: linear-gradient(135deg, #1a1614 0%, #2d2420 50%, #1a1614 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), #f4d03f, var(--accent-color));
}

.footer-main {
    padding: 60px 0 40px;
    position: relative;
}

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

/* Brand Section */
.footer-brand {
    padding-right: 2rem;
}

.footer-logo h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--accent-color), #f4d03f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-accent {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), #f4d03f);
    border-radius: 2px;
    margin-bottom: 1rem;
}

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

.footer-stats {
    display: flex;
    gap: 2rem;
}

.footer-stats .stat-item {
    text-align: left;
}

.footer-stats .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 0.25rem;
}

.footer-stats .stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Links Sections */
.footer-links h4,
.footer-services h4,
.footer-contact h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
    position: relative;
}

.footer-links h4::after,
.footer-services h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-color);
    border-radius: 1px;
}

.footer-links ul,
.footer-services ul {
    list-style: none;
    padding: 0;
}

.footer-links li,
.footer-services li {
    margin-bottom: 0.75rem;
}

.footer-links a,
.footer-services a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-links a::before,
.footer-services a::before {
    content: '→';
    opacity: 0;
    margin-right: 8px;
    transition: opacity 0.3s ease;
}

.footer-links a:hover::before,
.footer-services a:hover::before {
    opacity: 1;
}

/* Contact Section */
.contact-items {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.contact-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--accent-color), #f4d03f);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 18px;
    height: 18px;
    stroke: white;
}

.contact-item span,
.contact-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--accent-color);
}

/* Social Media */
.footer-social {
    margin-top: 1.5rem;
}

.footer-social h5 {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    color: white;
}

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

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-icon.facebook:hover {
    background: #1877f2;
}

.social-icon.whatsapp:hover {
    background: #25d366;
}

.social-icon svg {
    width: 20px;
    height: 20px;
    stroke: white;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem 0;
    border-top: 1px solid rgba(212, 165, 116, 0.2);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright p {
    margin: 0;
    color: rgba(212, 165, 116, 0.7);
    font-size: 0.9rem;
}

.footer-controls {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.powered-by {
    color: rgba(212, 165, 116, 0.6);
    font-size: 0.85rem;
}

.brand-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.brand-link:hover {
    color: #f4d03f;
}

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

    .footer-brand {
        padding-right: 0;
        margin-bottom: 1rem;
    }

    .footer-stats {
        justify-content: center;
        gap: 3rem;
    }

    .footer-links h4,
    .footer-services h4,
    .footer-contact h4 {
        text-align: center;
    }

    .footer-links h4::after,
    .footer-services h4::after,
    .footer-contact h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .contact-item {
        justify-content: center;
        text-align: left;
        max-width: 300px;
        margin: 0 auto 1rem;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-controls {
        flex-direction: column;
        gap: 1rem;
    }
}

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

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.powered-by {
    font-size: 0.9rem;
    color: var(--text-light);
}

.brand-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.brand-link:hover {
    color: var(--accent-hover);
    text-decoration: underline;
}

/* Theme Toggle Styles */
.theme-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.theme-switch-checkbox {
    display: none;
}

.theme-switch-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    width: 60px;
    height: 30px;
    background: #ccc;
    border-radius: 15px;
    transition: background 0.3s ease;
}

.theme-switch-checkbox:checked+.theme-switch-label {
    background: var(--accent-color);
}

.theme-switch-slider {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.theme-switch-checkbox:checked+.theme-switch-label .theme-switch-slider {
    transform: translateX(30px);
}

.theme-switch-text {
    position: absolute;
    right: 8px;
    font-size: 0.8rem;
    transition: opacity 0.3s ease;
}

.theme-switch-checkbox:checked+.theme-switch-label .theme-switch-text {
    opacity: 0.8;
}

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

.social-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: left;
        padding: 140px 20px 50px;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .title-line-2 {
        font-size: 3rem;
    }

    .hero-stats {
        justify-content: flex-start;
        gap: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-button {
        width: 200px;
        text-align: center;
    }

    .client-avatars {
        justify-content: flex-start;
    }

    .floating-makeup {
        font-size: 1.5rem;
    }

    .about-content {
        flex-direction: column;
    }

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

    .nav-menu {
        gap: 1rem;
    }

    .filter-tabs {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }

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

    .footer .container {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-content {
        text-align: center;
    }

    .footer-right {
        flex-direction: column;
        gap: 1rem;
    }

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

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-category {
        padding: 2rem 1.5rem 1.5rem 1.5rem;
    }

    .category-icon {
        font-size: 2.5rem;
        margin-bottom: 0.75rem;
    }

    .pricing-category-title {
        font-size: 1.3rem;
    }

    .category-description {
        font-size: 0.85rem;
        margin-bottom: 1.25rem;
        padding-bottom: 1.25rem;
    }

    .pricing-subheading {
        font-size: 1rem;
    }

    .pricing-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .service-price {
        font-size: 0.9rem;
    }

    .pricing-note {
        padding: 1.5rem;
    }

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

    /* Service Category Mobile Styles */
    .category-title {
        font-size: 1.5rem;
        gap: 0.8rem;
        margin-bottom: 2rem;
    }

    .category-icon {
        font-size: 2rem;
    }

    .category-text {
        font-size: 1.5rem;
    }

    .featured-gallery {
        flex-direction: column;
        gap: 1.5rem;
    }

    .featured-hero {
        height: 300px;
    }

    .featured-small-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .featured-item {
        height: 150px;
    }

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

    .transformation-images {
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: 0.6rem;
    }

    .before-img,
    .after-img {
        aspect-ratio: 4/5;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

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

    .video-item {
        margin-bottom: 2rem;
    }

    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .portfolio-header h1 {
        font-size: 2rem;
    }

    .about h2,
    .services h2,
    .pricing h2,
    .contact h2,
    .testimonials h2 {
        font-size: 2rem;
    }

    .pricing-category {
        padding: 1.75rem 1.25rem 1.25rem 1.25rem;
    }

    .category-icon {
        font-size: 2.25rem;
        margin-bottom: 0.5rem;
    }

    .pricing-category-title {
        font-size: 1.2rem;
    }

    .category-description {
        font-size: 0.8rem;
        margin-bottom: 1rem;
        padding-bottom: 1rem;
    }

    .service-name {
        font-size: 0.9rem;
    }

    .service-price {
        font-size: 0.85rem;
    }

    .nav-container {
        padding: 0 15px;
        height: 50px;
    }

    .container {
        padding: 0 15px;
    }

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

    .follow-btn {
        max-width: 320px;
        font-size: 0.9rem;
        padding: 12px 20px;
    }

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

/* ===== ABOUT PAGE STYLES ===== */

/* About Hero Section */
.about-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(212, 165, 116, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 165, 116, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

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

.about-hero-text {
    animation: slideInLeft 1s ease-out;
}

.hero-badge {
    display: inline-block;
    background: rgba(212, 165, 116, 0.1);
    color: var(--accent-color);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(212, 165, 116, 0.2);
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.about-hero-image {
    position: relative;
    height: 500px;
    animation: slideInRight 1s ease-out;
}

.image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-card {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.floating-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.floating-card.card-1 {
    width: 280px;
    height: 350px;
    top: 0;
    left: 0;
    z-index: 3;
    animation: float 6s ease-in-out infinite;
}

.floating-card.card-2 {
    width: 200px;
    height: 250px;
    top: 100px;
    right: 50px;
    z-index: 2;
    animation: float 6s ease-in-out infinite 2s;
}

.floating-card.card-3 {
    width: 150px;
    height: 200px;
    bottom: 0;
    right: 0;
    z-index: 1;
    animation: float 6s ease-in-out infinite 4s;
}

.floating-card:hover {
    transform: translateY(-10px) scale(1.02);
}

/* About Story Section */
.about-story {
    padding: 80px 0;
    background: var(--bg-primary);
}

.story-content h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.story-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.story-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.story-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(212, 165, 116, 0.15);
}

.story-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.story-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.story-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Skills Section */
.skills-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.skills-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.skill-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.skill-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.1), transparent);
    transition: left 0.5s ease;
}

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

.skill-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(212, 165, 116, 0.15);
}

.skill-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.skill-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.skill-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.skill-level {
    background: rgba(212, 165, 116, 0.1);
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.skill-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-color), #f4d03f);
    border-radius: 4px;
    width: 0%;
    transition: width 2s ease-out 0.5s;
    position: relative;
}

.skill-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

/* Philosophy Section */
.philosophy-section {
    padding: 80px 0;
    background: var(--bg-primary);
}

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

.philosophy-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.philosophy-quote {
    margin-bottom: 3rem;
}

.philosophy-quote blockquote {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2rem;
}

.philosophy-quote blockquote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 4rem;
    color: var(--accent-color);
    opacity: 0.3;
}

.philosophy-quote cite {
    color: var(--accent-color);
    font-weight: 600;
    font-style: normal;
}

.philosophy-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.point-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-bg);
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.point-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.1);
}

.point-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.point-text h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.point-text p {
    color: var(--text-secondary);
    line-height: 1.5;
}

.philosophy-image {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.image-frame img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center top;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 2rem;
    color: white;
}

.overlay-text span {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Contact Cards */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-color), #f4d03f);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-card:hover::before {
    opacity: 1;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(212, 165, 116, 0.15);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 165, 116, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent-color);
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    background: var(--accent-color);
    transform: scale(1.1);
}

.contact-card:hover .contact-icon svg {
    stroke: white;
}

.contact-details {
    flex: 1;
}

.contact-details h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 600;
}

.contact-details p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.4;
    margin: 0;
}

/* Form Styling */
.contact-form {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: 15px;
    background: var(--bg-primary);
    color: var(--text-primary);
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--accent-color), #f4d03f);
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.3);
}

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

.submit-btn:hover .btn-shine {
    left: 100%;
}

/* Form Validation Styles */
.error-message {
    display: none;
    color: #e74c3c;
    font-size: 0.8rem;
    margin-top: 0.5rem;
    padding: 0.3rem 0.5rem;
    background: rgba(231, 76, 60, 0.1);
    border-radius: 5px;
    border-left: 3px solid #e74c3c;
}

.form-status {
    display: none;
    margin-top: 1rem;
}

.success-message {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #27ae60;
    font-size: 0.9rem;
    padding: 1rem;
    background: rgba(39, 174, 96, 0.1);
    border-radius: 10px;
    border-left: 3px solid #27ae60;
    animation: slideInSuccess 0.3s ease-out;
}

.success-message svg {
    color: #27ae60;
    flex-shrink: 0;
}

@keyframes slideInSuccess {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

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

/* Form input focus states */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

/* Submit button disabled state */
.submit-btn:disabled {
    cursor: not-allowed;
    opacity: 0.7;
}

.submit-btn:disabled:hover {
    transform: none;
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.3);
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

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

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* Mobile Responsive for About Page */
@media (max-width: 768px) {
    .about-hero {
        padding: 140px 0 60px;
    }

    .about-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

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

    .hero-stats {
        justify-content: center;
        gap: 1.5rem;
    }

    .about-hero-image {
        height: 400px;
    }

    .floating-card.card-1 {
        width: 200px;
        height: 250px;
        left: 50%;
        transform: translateX(-50%);
    }

    .floating-card.card-2 {
        width: 150px;
        height: 180px;
        top: 50px;
        right: 20px;
    }

    .floating-card.card-3 {
        width: 120px;
        height: 150px;
        bottom: 20px;
        left: 20px;
    }

    .philosophy-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-cards {
        grid-template-columns: 1fr;
    }

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

    .contact-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-card {
        padding: 2rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .contact-card::before {
        width: 100%;
        height: 4px;
        top: 0;
        left: 0;
        background: linear-gradient(90deg, var(--accent-color), #f4d03f);
    }

    .contact-icon {
        width: 50px;
        height: 50px;
    }

    .contact-icon svg {
        width: 20px;
        height: 20px;
    }

    .point-item:hover {
        transform: translateY(-5px);
    }
}

/* ===== ABOUT PAGE FOOTER REDESIGN ===== */

.about-footer {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.about-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(212, 165, 116, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

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

.footer-brand-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.brand-logo h3 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.brand-tagline {
    margin-bottom: 1rem;
}

.brand-tagline .gradient-text {
    font-size: 1rem;
    font-weight: 500;
}

.brand-description {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
    max-width: 400px;
}

.social-section h4 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--card-bg);
    border-radius: 15px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
    max-width: 300px;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 165, 116, 0.15);
}

.social-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 165, 116, 0.1);
    border-radius: 10px;
}

.social-text {
    display: flex;
    flex-direction: column;
}

.social-name {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
}

.social-handle {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.footer-info-section {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.footer-contact h4,
.footer-services h4 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-icon {
    font-size: 1.2rem;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 165, 116, 0.1);
    border-radius: 8px;
    flex-shrink: 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
}

.contact-label {
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 500;
}

.contact-value {
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 600;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.service-tag {
    background: var(--card-bg);
    color: var(--text-primary);
    padding: 0.8rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.service-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 165, 116, 0.2);
    background: rgba(212, 165, 116, 0.1);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-left {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.copyright {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

.powered-by {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin: 0;
}

.powered-by .brand-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.powered-by .brand-link:hover {
    color: #f4d03f;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.quick-links {
    display: flex;
    gap: 1.5rem;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.footer-link:hover,
.footer-link.active {
    color: var(--accent-color);
}

.footer-link.active::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-color);
    border-radius: 1px;
}

/* Mobile Responsive for About Footer */
@media (max-width: 768px) {
    .about-footer {
        padding: 40px 0 20px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-brand-section {
        text-align: center;
    }

    .brand-description {
        max-width: none;
    }

    .social-links {
        align-items: center;
    }

    .footer-info-section {
        gap: 2rem;
    }

    .service-tags {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-bottom-right {
        flex-direction: column;
        gap: 1rem;
    }

    .quick-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* ===== FLOATING ACTION BUTTONS - GLASSMORPHISM ===== */

.floating-buttons {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
}

.floating-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);

    /* Glassmorphism Effect */
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1);
}

.floating-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.2) 0%,
            rgba(255, 255, 255, 0.05) 50%,
            rgba(255, 255, 255, 0.1) 100%);
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.floating-btn:hover::before {
    opacity: 1;
}

.floating-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.floating-btn:active {
    transform: translateY(-1px) scale(0.98);
    transition: all 0.1s ease;
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.btn-icon svg {
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
}

.btn-text {
    display: none;
}

/* Call Button Icon Color */
.call-btn .btn-icon svg {
    stroke: #4CAF50;
    filter: drop-shadow(0 0 8px rgba(76, 175, 80, 0.3));
}

.call-btn:hover .btn-icon svg {
    stroke: #45a049;
    filter: drop-shadow(0 0 12px rgba(76, 175, 80, 0.5));
    transform: scale(1.1);
}

/* WhatsApp Button Icon Color */
.whatsapp-btn .btn-icon svg {
    stroke: #25D366;
    filter: drop-shadow(0 0 8px rgba(37, 211, 102, 0.3));
}

.whatsapp-btn:hover .btn-icon svg {
    stroke: #128C7E;
    filter: drop-shadow(0 0 12px rgba(37, 211, 102, 0.5));
    transform: scale(1.1);
}

/* Liquid Glass Animation */
.floating-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle,
            rgba(255, 255, 255, 0.1) 0%,
            transparent 70%);
    opacity: 0;
    transform: scale(0);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
}

.floating-btn:hover::after {
    opacity: 1;
    transform: scale(1);
}

/* Dark Mode Adjustments */
body.dark-mode .floating-btn {
    background: rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(255, 255, 255, 0.05);
}

body.dark-mode .floating-btn:hover {
    background: rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1);
}

body.dark-mode .floating-btn::before {
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.1) 0%,
            rgba(255, 255, 255, 0.02) 50%,
            rgba(255, 255, 255, 0.05) 100%);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .floating-buttons {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }

    .floating-btn {
        width: 52px;
        height: 52px;
        border-radius: 14px;
    }

    .btn-icon svg {
        width: 18px;
        height: 18px;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .floating-buttons {
        bottom: 15px;
        right: 15px;
        gap: 8px;
    }

    .floating-btn {
        width: 48px;
        height: 48px;
        border-radius: 12px;
    }

    .btn-icon svg {
        width: 16px;
        height: 16px;
    }
}

/* ===== VIDEO GALLERY PLAYBACK CONTROL ===== */

/* Video Playing State Indicators */
.video-card-horizontal.playing {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 165, 116, 0.3);
    border: 2px solid var(--accent-color);
    position: relative;
}

.video-card-horizontal.playing .video-overlay {
    opacity: 0;
    pointer-events: none;
}

.video-card-horizontal.playing .video-details h4 {
    color: var(--accent-color);
    font-weight: 600;
}

.video-card-horizontal.playing::after {
    content: '▶ PLAYING';
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--accent-color);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 10;
    animation: playingPulse 2s infinite;
}

@keyframes playingPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

/* Enhanced video controls visibility */
.video-card-horizontal video::-webkit-media-controls-panel {
    background: rgba(0, 0, 0, 0.8);
}

.video-card-horizontal.playing video::-webkit-media-controls-panel {
    background: rgba(212, 165, 116, 0.9);
}

/* ===== SCROLL ANIMATIONS & REVEAL EFFECTS ===== */

/* Base animation classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* Fade animations */
.fade-in {
    opacity: 0;
    transition: opacity 1s ease-out;
}

.fade-in.animate {
    opacity: 1;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in-up.animate {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in-right.animate {
    opacity: 1;
    transform: translateX(0);
}

/* Scale animations */
.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scale-in.animate {
    opacity: 1;
    transform: scale(1);
}

/* Stagger animations for groups */
.stagger-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.stagger-item.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Delay classes for staggered animations */
.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.delay-5 {
    transition-delay: 0.5s;
}

.delay-6 {
    transition-delay: 0.6s;
}

/* Parallax elements */
.parallax-element {
    transition: transform 0.1s ease-out;
}

/* Enhanced hover effects */
.hover-lift {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Smooth transitions for all interactive elements */
a,
button,
.btn,
.nav-link,
.service-card,
.portfolio-item,
.video-card-horizontal {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Loading animation */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease-out;
}

.loading-overlay.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(212, 165, 116, 0.3);
    border-top: 3px solid var(--accent-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* ===== ENHANCED MICRO-INTERACTIONS ===== */

/* Button enhancements */
.cta-button,
.btn {
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.cta-button::before,
.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;
}

.cta-button:hover::before,
.btn:hover::before {
    left: 100%;
}

/* Enhanced service card interactions */
.service-card {
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1), rgba(212, 165, 116, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover .service-img {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.1);
}

/* Portfolio item enhancements */
.portfolio-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.portfolio-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 2;
}

.portfolio-item:hover::before {
    width: 300px;
    height: 300px;
}

/* Video card enhancements - REMOVED INTERFERING OVERLAYS */
.video-card-horizontal {
    position: relative;
    overflow: hidden;
}

/* Removed ::before pseudo-element that was causing color overlay */

/* Navigation link enhancements */
.nav-link {
    position: relative;
    overflow: hidden;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* Floating elements enhanced animation */
.floating-makeup {
    animation-duration: 6s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

.makeup-1 {
    animation-name: float1;
    animation-delay: 0s;
}

.makeup-2 {
    animation-name: float2;
    animation-delay: 1s;
}

.makeup-3 {
    animation-name: float3;
    animation-delay: 2s;
}

.makeup-4 {
    animation-name: float4;
    animation-delay: 3s;
}

.makeup-5 {
    animation-name: float5;
    animation-delay: 4s;
}

@keyframes float1 {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes float2 {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(-3deg);
    }
}

@keyframes float3 {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-25px) rotate(7deg);
    }
}

@keyframes float4 {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-18px) rotate(-5deg);
    }
}

@keyframes float5 {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-22px) rotate(4deg);
    }
}

/* Image hover effects */
img {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hover-lift img:hover {
    transform: scale(1.05);
    filter: brightness(1.1) saturate(1.1);
}

/* Text selection enhancement */
::selection {
    background: rgba(212, 165, 116, 0.3);
    color: var(--text-primary);
}

::-moz-selection {
    background: rgba(212, 165, 116, 0.3);
    color: var(--text-primary);
}

/* ===== PERFORMANCE OPTIMIZATIONS ===== */

/* GPU acceleration for animated elements */
.animate-on-scroll,
.stagger-item,
.hover-lift,
.parallax-element,
.floating-makeup,
.service-card,
.video-card-horizontal,
.portfolio-item {
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Optimize animations for 60fps */
@media (min-width: 768px) {
    .hover-lift:hover {
        transform: translateY(-8px) translateZ(0);
    }

    .service-card:hover .service-img {
        transform: scale(1.1) translateZ(0);
    }
}

/* ===== MOBILE OPTIMIZATIONS ===== */

@media (max-width: 768px) {

    /* Reduce motion on mobile for better performance */
    .parallax-element {
        transform: none !important;
    }

    /* Simplify hover effects on mobile */
    .hover-lift:hover {
        transform: translateY(-4px);
    }

    /* Reduce animation complexity */
    .floating-makeup {
        animation-duration: 8s;
    }

    /* Optimize scroll animations */
    .animate-on-scroll {
        transition-duration: 0.6s;
    }

    /* Touch-friendly interactions */
    .service-card:active,
    .video-card-horizontal:active,
    .portfolio-item:active {
        transform: scale(0.98);
    }
}

/* ===== DARK MODE ANIMATION ENHANCEMENTS ===== */

body.dark-mode .loading-overlay {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

body.dark-mode .navbar.scrolled {
    background: rgba(26, 26, 26, 0.98);
    border-bottom: 1px solid rgba(212, 165, 116, 0.2);
}

body.dark-mode .service-card::after {
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.15), rgba(212, 165, 116, 0.08));
}

body.dark-mode .video-card-horizontal::before {
    background: linear-gradient(45deg, rgba(212, 165, 116, 0.15), transparent);
}

/* ===== ACCESSIBILITY IMPROVEMENTS ===== */

/* Focus indicators with animations */
button:focus,
.cta-button:focus,
.nav-link:focus,
input:focus,
textarea:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
    animation: focusPulse 2s infinite;
}

@keyframes focusPulse {

    0%,
    100% {
        outline-color: var(--accent-color);
    }

    50% {
        outline-color: rgba(212, 165, 116, 0.5);
    }
}

/* Skip to content link - hidden by default */
.skip-to-content {
    position: absolute;
    top: -50px;
    left: 20px;
    background: var(--accent-color);
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    z-index: 10000;
    opacity: 0;
    transform: translateY(-10px);
}

.skip-to-content:focus {
    top: 20px;
    opacity: 1;
    transform: translateY(0);
}

/* ===== LOADING STATES ===== */

.loading-state {
    position: relative;
    overflow: hidden;
}

.loading-state::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.3), transparent);
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* ===== MODERN VERTICAL VIDEO GALLERY ===== */

.video-gallery {
    padding: 80px 0;
    background: var(--bg-primary);
    position: relative;
}

.gallery-header {
    text-align: center;
    margin-bottom: 50px;
}

.gallery-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.gallery-header .section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.video-scroll-container {
    overflow-x: auto;
    overflow-y: visible;
    padding: 30px 0 50px 0;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-color) transparent;
}

.video-scroll-container::-webkit-scrollbar {
    height: 6px;
}

.video-scroll-container::-webkit-scrollbar-track {
    background: rgba(212, 165, 116, 0.1);
    border-radius: 3px;
    margin: 0 20px;
}

.video-scroll-container::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 3px;
}

.video-scroll-track {
    display: flex;
    gap: 30px;
    padding: 0 40px;
    min-width: max-content;
    align-items: flex-start;
}

/* REEL CARDS - TWO-LAYER WRAPPER SYSTEM */
.reel-card {
    flex: 0 0 280px;
    background: var(--bg-secondary);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    cursor: pointer;
    overflow: hidden;
    /* Inner inset shadow border instead of regular border */
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.1),
        inset 0 0 0 1px rgba(212, 165, 116, 0.2);
}

/* REEL MEDIA - INNER WRAPPER WITH ADVANCED CLIPPING */
.reel-media {
    position: relative;
    width: 100%;
    height: 498px;
    /* Perfect 9:16 ratio for 280px width */
    overflow: hidden;
    background: #000;
    border-radius: 20px 20px 0 0;
    /* Advanced clipping for perfect rounded corners */
    clip-path: inset(0 0 0 0 round 20px 20px 0 0);
    /* Safari/iOS fallback */
    -webkit-mask-image: radial-gradient(circle at center, white 100%, transparent 100%);
    -webkit-mask-composite: intersect;
    /* Additional browser support */
    -webkit-clip-path: inset(0 0 0 0 round 20px 20px 0 0);
    -moz-clip-path: inset(0 0 0 0 round 20px 20px 0 0);
}

.reel-media video,
.reel-media iframe,
.reel-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border: none;
    outline: none;
    background: #000;
    /* No border-radius needed - parent clipping handles it */
    position: relative;
    z-index: 1;
}

/* Elegant Play Overlay - Designer Quality */
.elegant-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.3) 50%,
            rgba(0, 0, 0, 0.6) 100%);
    z-index: 5;
    opacity: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.play-circle {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.95), rgba(184, 134, 87, 0.95));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow:
        0 8px 30px rgba(212, 165, 116, 0.4),
        0 0 0 0 rgba(212, 165, 116, 0.7);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow:
            0 8px 30px rgba(212, 165, 116, 0.4),
            0 0 0 0 rgba(212, 165, 116, 0.7);
    }

    50% {
        box-shadow:
            0 8px 30px rgba(212, 165, 116, 0.4),
            0 0 0 15px rgba(212, 165, 116, 0);
    }
}

.play-circle::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.play-icon {
    width: 38px;
    height: 38px;
    color: white;
    margin-left: 6px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

.play-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    opacity: 0.95;
    transition: all 0.3s ease;
}

/* Hover Effects */
.reel-card:hover .elegant-play-overlay {
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.1) 0%,
            rgba(0, 0, 0, 0.4) 50%,
            rgba(0, 0, 0, 0.7) 100%);
}

.reel-card:hover .play-circle {
    transform: scale(1.15);
    background: linear-gradient(135deg, rgba(212, 165, 116, 1), rgba(184, 134, 87, 1));
    box-shadow:
        0 12px 40px rgba(212, 165, 116, 0.6),
        0 0 0 0 rgba(212, 165, 116, 0);
    animation: none;
}

.reel-card:hover .play-circle::before {
    opacity: 1;
}

.reel-card:hover .play-icon {
    transform: scale(1.1);
}

.reel-card:hover .play-text {
    opacity: 1;
    transform: translateY(-3px);
}

/* Active/Click State */
.reel-card:active .play-circle {
    transform: scale(1.05);
}

/* Video Modal Overlay - Elegant Fullscreen Player */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 500px;
    aspect-ratio: 9 / 16;
    background: #000;
    border-radius: 30px;
    overflow: hidden;
    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.6),
        0 20px 60px rgba(212, 165, 116, 0.15),
        0 0 0 1px rgba(212, 165, 116, 0.2);
    transform: scale(0.9) translateY(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-modal.active .video-modal-content {
    transform: scale(1) translateY(0);
}

.video-modal-player {
    position: relative;
    width: 100%;
    height: 100%;
}

.video-modal-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-modal-close {
    position: absolute;
    top: -60px;
    right: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.95), rgba(184, 134, 87, 0.95));
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10001;
    box-shadow:
        0 8px 25px rgba(212, 165, 116, 0.4),
        0 4px 12px rgba(0, 0, 0, 0.3),
        0 0 0 3px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.video-modal-close:hover {
    background: linear-gradient(135deg, rgba(212, 165, 116, 1), rgba(184, 134, 87, 1));
    transform: scale(1.15) rotate(90deg);
    box-shadow:
        0 12px 35px rgba(212, 165, 116, 0.6),
        0 6px 20px rgba(0, 0, 0, 0.4),
        0 0 0 3px rgba(255, 255, 255, 0.2);
}

.video-modal-close svg {
    width: 24px;
    height: 24px;
    color: white;
    transition: transform 0.3s ease;
}

/* Mobile Responsiveness for Modal */
@media (max-width: 768px) {
    .video-modal-content {
        width: 95%;
        max-width: 420px;
        border-radius: 25px;
        box-shadow:
            0 30px 80px rgba(0, 0, 0, 0.6),
            0 15px 50px rgba(212, 165, 116, 0.15),
            0 0 0 1px rgba(212, 165, 116, 0.2);
    }

    .video-modal-close {
        top: -55px;
        width: 46px;
        height: 46px;
    }

    .video-modal-close svg {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 480px) {
    .video-modal-content {
        width: 95%;
        max-width: 95%;
        border-radius: 20px;
        height: auto;
        box-shadow:
            0 25px 70px rgba(0, 0, 0, 0.6),
            0 12px 40px rgba(212, 165, 116, 0.15),
            0 0 0 1px rgba(212, 165, 116, 0.2);
    }

    .video-modal-close {
        top: -50px;
        right: 0;
        width: 44px;
        height: 44px;
    }
}

/* Ensure video maintains border radius when playing - Cross-browser compatibility */
.video-card-vertical.playing .video-wrapper video,
.video-card-horizontal.playing .video-wrapper video {
    border-radius: 20px 20px 0 0 !important;
    -webkit-border-radius: 20px 20px 0 0 !important;
    -moz-border-radius: 20px 20px 0 0 !important;
    overflow: hidden !important;
    transform: translateZ(0);
    /* Force hardware acceleration for smooth rendering */
}

/* Additional cross-browser border radius fixes */
.video-wrapper {
    -webkit-border-radius: 20px 20px 0 0;
    -moz-border-radius: 20px 20px 0 0;
    transform: translateZ(0);
    /* Improve rendering performance */
}

.video-card-vertical,
.video-card-horizontal {
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    transform: translateZ(0);
}

/* WebKit specific video border radius fix */
.video-wrapper video::-webkit-media-controls-enclosure {
    border-radius: 20px 20px 0 0 !important;
    overflow: hidden !important;
}

/* PERSISTENT PLAY/PAUSE TOGGLE BUTTON */
.play-toggle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    color: var(--accent-color);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Show play/pause button on hover */
.reel-card:hover .play-toggle {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1.05);
}

.play-toggle:hover {
    background: rgba(255, 255, 255, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Button states */
.play-toggle.playing {
    font-size: 20px;
}

.play-toggle.paused {
    font-size: 24px;
}

/* SOUND TOGGLE BUTTON WITH SVG ICONS */
.sound-toggle {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.sound-toggle:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

.sound-toggle svg {
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
}

.sound-toggle.muted svg {
    stroke: #ff6b6b;
    fill: none;
}

.sound-toggle.unmuted svg {
    stroke: var(--accent-color);
    fill: none;
}

/* ENHANCED VIDEO CONTROLS - NO INTERFERENCE */
.video-wrapper video::-webkit-media-controls-panel {
    background: rgba(0, 0, 0, 0.9) !important;
    border-radius: 0 0 24px 24px;
    backdrop-filter: blur(15px);
    z-index: 10 !important;
}

.video-wrapper video::-webkit-media-controls-play-button,
.video-wrapper video::-webkit-media-controls-mute-button,
.video-wrapper video::-webkit-media-controls-volume-slider,
.video-wrapper video::-webkit-media-controls-timeline,
.video-wrapper video::-webkit-media-controls-current-time-display,
.video-wrapper video::-webkit-media-controls-time-remaining-display,
.video-wrapper video::-webkit-media-controls-fullscreen-button {
    filter: brightness(1.4) contrast(1.2);
    opacity: 1 !important;
    z-index: 10 !important;
}

.video-wrapper video::-webkit-media-controls-timeline {
    background: rgba(255, 255, 255, 0.4) !important;
    border-radius: 4px;
    height: 8px !important;
    margin: 0 8px !important;
}

.video-wrapper video::-webkit-media-controls-timeline::-webkit-slider-thumb {
    background: var(--accent-color) !important;
    border-radius: 50%;
    width: 16px !important;
    height: 16px !important;
    border: 2px solid white !important;
}

.video-card-vertical.playing video::-webkit-media-controls-panel,
.video-card-horizontal.playing video::-webkit-media-controls-panel {
    background: rgba(212, 165, 116, 0.95) !important;
}

/* Ensure controls are always accessible */
.video-wrapper video::-webkit-media-controls {
    opacity: 1 !important;
    z-index: 10 !important;
}

.video-wrapper video {
    position: relative;
    z-index: 5 !important;
}

/* Remove any interference from wrapper */
.video-wrapper:hover {
    z-index: 5 !important;
}

/* Custom audio indicator */
.video-wrapper::after {
    content: '🔊';
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 18px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 5;
    background: rgba(0, 0, 0, 0.6);
    padding: 6px 8px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.video-card-vertical.playing .video-wrapper::after,
.video-card-horizontal.playing .video-wrapper::after {
    opacity: 1;
}

/* FIXED OVERLAY SYSTEM - NO INTERFERENCE */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    z-index: 3;
    opacity: 1;
}

/* When video is playing, completely hide overlay */
.video-overlay.hidden {
    opacity: 0 !important;
    pointer-events: none !important;
    visibility: hidden !important;
    transform: scale(0.8);
}

/* Only show overlay hover effect when video is paused */
.video-wrapper:hover .video-overlay:not(.hidden) {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.4) 100%);
}

/* COMPLETELY REMOVE ALL OVERLAYS WHEN PLAYING */
.video-card-vertical.playing .video-overlay,
.video-card-horizontal.playing .video-overlay,
.video-card-vertical.playing::before,
.video-card-horizontal.playing::before,
.video-card-vertical.playing .video-wrapper::before,
.video-card-horizontal.playing .video-wrapper::before {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

/* REFINED PLAY BUTTON */
.play-icon {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--accent-color);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: scale(1);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.25),
        0 4px 12px rgba(212, 165, 116, 0.3);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.8);
    position: relative;
}

.play-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--accent-color), rgba(212, 165, 116, 0.6));
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-wrapper:hover .play-icon {
    transform: scale(1.1);
    box-shadow:
        0 16px 50px rgba(0, 0, 0, 0.3),
        0 6px 20px rgba(212, 165, 116, 0.4);
}

.video-wrapper:hover .play-icon::before {
    opacity: 1;
}

/* CAPTION STYLING */
.caption {
    padding: 20px;
    text-align: center;
    background: var(--bg-secondary);
    border-radius: 0 0 20px 20px;
}

/* Responsive border radius for video details */
@media (max-width: 768px) {
    .video-details {
        border-radius: 0 0 18px 18px;
        -webkit-border-radius: 0 0 18px 18px;
        -moz-border-radius: 0 0 18px 18px;
    }
}

@media (max-width: 480px) {
    .video-details {
        border-radius: 0 0 16px 16px;
        -webkit-border-radius: 0 0 16px 16px;
        -moz-border-radius: 0 0 16px 16px;
    }
}

.caption h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    transition: color 0.3s ease;
    line-height: 1.3;
}

.caption p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.4;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

/* HOVER EFFECTS */
.reel-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.15),
        inset 0 0 0 1px rgba(212, 165, 116, 0.3);
}

.reel-card:hover .caption h4 {
    color: var(--accent-color);
}

.reel-card:hover .caption p {
    opacity: 1;
}

/* HIDE PLAY BUTTON WHEN PLAYING */
.video-card-vertical.playing .play-button-overlay,
.video-card-horizontal.playing .play-button-overlay {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

/* REFINED PLAYING STATE */
.video-card-vertical.playing .video-overlay,
.video-card-horizontal.playing .video-overlay {
    opacity: 0 !important;
    pointer-events: none !important;
    transform: scale(0.8);
}

.video-card-vertical.playing,
.video-card-horizontal.playing {
    transform: translateY(-8px);
    box-shadow:
        0 20px 50px rgba(212, 165, 116, 0.25),
        0 8px 32px rgba(0, 0, 0, 0.15);
    border: 3px solid var(--accent-color);
    z-index: 8;
}

.video-card-vertical.playing .video-details,
.video-card-horizontal.playing .video-details {
    background: var(--bg-secondary);
}

.video-card-vertical.playing .video-details h4,
.video-card-horizontal.playing .video-details h4 {
    color: var(--accent-color);
    font-weight: 700;
    transform: translateY(-1px);
}

/* Removed old playing badge - using new reel-card system */

/* Dark mode video styles */
body.dark-mode .video-card-horizontal {
    background: var(--bg-secondary);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

body.dark-mode .video-overlay {
    background: rgba(0, 0, 0, 0.5);
}

body.dark-mode .video-wrapper:hover .video-overlay {
    background: rgba(0, 0, 0, 0.7);
}

/* RESPONSIVE DESIGN FOR REEL CARDS */
@media (max-width: 768px) {
    .video-gallery {
        padding: 60px 0;
    }

    .gallery-header h2 {
        font-size: 2.2rem;
    }

    .reel-card {
        flex: 0 0 240px;
        border-radius: 18px;
    }

    .reel-media {
        height: 427px;
        /* Perfect 9:16 ratio for 240px width */
        border-radius: 18px 18px 0 0;
        clip-path: inset(0 0 0 0 round 18px 18px 0 0);
        -webkit-clip-path: inset(0 0 0 0 round 18px 18px 0 0);
        -moz-clip-path: inset(0 0 0 0 round 18px 18px 0 0);
    }

    .caption {
        border-radius: 0 0 18px 18px;
    }

    .play-toggle {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }

    .play-circle {
        width: 75px;
        height: 75px;
    }

    .play-icon {
        width: 32px;
        height: 32px;
    }

    .play-text {
        font-size: 0.85rem;
        letter-spacing: 1.5px;
    }

    .play-toggle.playing {
        font-size: 16px;
    }

    .sound-toggle {
        width: 36px;
        height: 36px;
        bottom: 12px;
        right: 12px;
    }

    .sound-toggle svg {
        width: 18px;
        height: 18px;
    }

    .video-scroll-track {
        gap: 25px;
        padding: 0 30px;
    }

    .play-button-overlay {
        width: 70px;
        height: 70px;
    }

    .play-button-overlay::before {
        border-left-width: 18px;
        border-top-width: 10px;
        border-bottom-width: 10px;
    }

    .sound-toggle {
        width: 36px;
        height: 36px;
        bottom: 12px;
        right: 12px;
    }

    .sound-toggle.muted::before,
    .sound-toggle.unmuted::before {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .video-gallery {
        padding: 50px 0;
    }

    .gallery-header {
        margin-bottom: 40px;
    }

    .gallery-header h2 {
        font-size: 1.8rem;
    }

    .reel-card {
        flex: 0 0 200px;
        border-radius: 16px;
    }

    .reel-media {
        height: 356px;
        /* Perfect 9:16 ratio for 200px width */
        border-radius: 16px 16px 0 0;
        clip-path: inset(0 0 0 0 round 16px 16px 0 0);
        -webkit-clip-path: inset(0 0 0 0 round 16px 16px 0 0);
        -moz-clip-path: inset(0 0 0 0 round 16px 16px 0 0);
    }

    .caption {
        border-radius: 0 0 16px 16px;
        padding: 16px;
    }

    .caption h4 {
        font-size: 1rem;
    }

    .caption p {
        font-size: 0.85rem;
    }

    .play-toggle {
        width: 55px;
        height: 55px;
        font-size: 18px;
    }

    .play-toggle.playing {
        font-size: 14px;
    }

    .play-circle {
        width: 65px;
        height: 65px;
    }

    .play-icon {
        width: 28px;
        height: 28px;
    }

    .play-text {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }

    .sound-toggle {
        width: 32px;
        height: 32px;
        bottom: 10px;
        right: 10px;
    }

    .sound-toggle svg {
        width: 16px;
        height: 16px;
    }

    .video-scroll-track {
        gap: 20px;
        padding: 0 20px;
    }

    .play-button-overlay {
        width: 60px;
        height: 60px;
    }

    .play-button-overlay::before {
        border-left-width: 15px;
        border-top-width: 9px;
        border-bottom-width: 9px;
    }

    .sound-toggle {
        width: 32px;
        height: 32px;
        bottom: 10px;
        right: 10px;
    }

    .sound-toggle.muted::before,
    .sound-toggle.unmuted::before {
        font-size: 14px;
    }

    .video-details {
        padding: 16px;
    }

    .video-details h4 {
        font-size: 1rem;
    }

    .video-details p {
        font-size: 0.85rem;
    }
}