/*
 * CSS stylesheet for Tal Shani Website
 * Primary Brand Color: #dd96b5 (Blush)
 */

 :root {
    --primary: #dd96b5;
    --primary-dark: #B08968;
    --primary-light: #FAF7F5;
    --sage: #2E4F3A;
    --sage-light: #E5EDE8;
    --text-main: #1A0F08;
    --text-muted: #4A3728;
    --bg-light: #EDE0D4;
    --bg-white: #FAF7F5;
    --bg-dark: #E5EDE8;
    --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
}

/* Scroll Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@media (prefers-reduced-motion: reduce) {
    .fade-up {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Heebo', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-white);
    line-height: 1.8;
    font-size: 1.05rem;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

/* Layout */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.container-sm {
    max-width: 800px;
}

section {
    padding: 100px 0;
}

.text-center { text-align: center; }
.bg-light { background-color: var(--bg-light); }
.bg-dark { background-color: var(--bg-dark); }
.text-white { color: #fff; }
.mt-4 { margin-top: 2rem; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--sage);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: var(--primary-light);
    color: var(--primary);
}

.btn-secondary:hover {
    background-color: #f0d0e4;
}

.btn-outline {
    border-color: var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--primary);
    color: white;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Header & Nav */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 15px 0;
    transition: var(--transition);
}

.header.scrolled {
    padding: 10px 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

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

.nav-link {
    font-weight: 600;
    color: var(--text-main);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

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

.nav-contact {
    padding: 8px 20px;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-main);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85vw;
    max-width: 300px;
    height: 100vh;
    background: var(--bg-white);
    padding: 50px 30px;
    z-index: 2000;
    transition: 0.4s ease;
    box-shadow: 5px 0 15px rgba(0,0,0,0.1);
}

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

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-main);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.mobile-nav a {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Section Header */
.section-header {
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 10px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.15rem;
    font-weight: 500;
}

.divider {
    height: 4px;
    width: 60px;
    background-color: var(--primary);
    margin: 15px auto;
    border-radius: 2px;
}

.divider-light {
    background-color: var(--sage);
}

/* Hero Section */
.hero {
    padding-top: 150px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 30px;
    color: var(--sage);
}

.hero-title .highlight {
    color: var(--sage);
}

.hero-text p {
    margin-bottom: 15px;
    font-size: 1.15rem;
    color: var(--text-main);
    font-weight: 400;
}

.hero-text p strong {
    color: var(--text-main);
    font-size: 1.2rem;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--sage);
    font-size: 1.4rem;
    box-shadow: var(--shadow-sm);
}

.hero-socials a {
    animation: social-pulse 2.5s ease-in-out infinite;
}

.hero-socials a:nth-child(1) { animation-delay: 0s; }
.hero-socials a:nth-child(2) { animation-delay: 0.2s; }
.hero-socials a:nth-child(3) { animation-delay: 0.4s; }
.hero-socials a:nth-child(4) { animation-delay: 0.6s; }
.hero-socials a:nth-child(5) { animation-delay: 0.8s; }

@keyframes social-pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(221, 150, 181, 0.6); }
    50%       { transform: scale(1.12); box-shadow: 0 0 0 8px rgba(221, 150, 181, 0); }
}

.social-icons a:hover {
    background-color: var(--primary-dark);
    color: white;
    animation: none;
    transform: translateY(-3px) scale(1.15);
    box-shadow: var(--shadow-md);
}

.hero-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    object-fit: cover;
    max-height: 700px;
}

/* Values Section */
.values {
    background-color: var(--sage-light);
}

.values .divider {
    background-color: var(--sage);
}

.values .section-header h2,
.gallery .section-header h2 {
    color: var(--sage);
    font-size: 1.6rem;
}

.values .section-header p {
    color: var(--sage);
    font-size: 1.4rem;
    font-weight: 600;
}

/* Values Grid – desktop: 3-top + 2-centered layout via 6-col grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    text-align: center;
}

.value-card:nth-child(1) { grid-column: 1 / 3; }
.value-card:nth-child(2) { grid-column: 3 / 5; }
.value-card:nth-child(3) { grid-column: 5 / 7; }
.value-card:nth-child(4) { grid-column: 2 / 4; }
.value-card:nth-child(5) { grid-column: 4 / 6; }

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

/* ── Flip Card ── */

/* perspective on the grid so the card's own float-transform doesn't interfere */
.values-grid {
    perspective: 1200px;
}

.value-card {
    cursor: pointer;
    background: transparent;
    border-radius: var(--radius-md);
    animation: float 3.5s ease-in-out infinite;
    min-height: 240px;
    transform-style: preserve-3d; /* let 3D bubble up through the float transform */
}

.value-card:nth-child(1) { animation-delay: 0s; }
.value-card:nth-child(2) { animation-delay: 0.4s; }
.value-card:nth-child(3) { animation-delay: 0.8s; }
.value-card:nth-child(4) { animation-delay: 1.2s; }
.value-card:nth-child(5) { animation-delay: 1.6s; }

.value-card.flipped {
    animation-play-state: paused;
}

.value-inner {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 240px;
    transition: transform 0.6s cubic-bezier(0.4, 0.2, 0.2, 1);
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d; /* Safari */
}

.value-card.flipped .value-inner {
    transform: rotateY(180deg);
}

.value-front,
.value-back {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-md);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
}

/* Front */
.value-front {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
}

.value-card:not(.flipped):hover .value-front {
    box-shadow: var(--shadow-md);
}

.value-card .icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--sage-light);
    color: var(--primary);
    border-radius: 50%;
    font-size: 2rem;
    transition: var(--transition);
}

.value-card:not(.flipped):hover .icon-wrapper {
    background-color: var(--sage);
    color: white;
}

.value-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--sage);
    margin-bottom: 0;
}

/* Tap hint icon */
.value-hint {
    margin-top: 12px;
    font-size: 0.75rem;
    color: rgba(46,79,58,0.3);
    transition: opacity 0.3s ease;
}

.value-card.flipped .value-hint,
.value-card.hint-done .value-hint {
    opacity: 0;
}

/* Back */
.value-back {
    background: var(--sage);
    transform: rotateY(180deg);
    box-shadow: var(--shadow-md);
    gap: 14px;
}

.value-back-icon {
    font-size: 2rem;
    color: var(--primary);
    opacity: 0.9;
}

.value-back p {
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
}

/* Gallery / Experiences */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.gallery-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    background-color: var(--bg-light);
    position: relative;
    cursor: zoom-in;
    overflow: hidden;
}

/* Zoom-in hover overlay */
.card-image::after {
    content: '\f00e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    background: rgba(0,0,0,0);
    opacity: 0;
    transition: background 0.3s ease, opacity 0.3s ease;
}

.card-image:hover::after {
    background: rgba(0,0,0,0.35);
    opacity: 1;
}

/* ── Lightbox ── */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-img {
    max-width: 92vw;
    max-height: 88vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    transform: scale(0.92);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lightbox.active .lightbox-img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    font-size: 1.1rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.lightbox-close:hover {
    background: rgba(255,255,255,0.25);
}

/* Gradients overlaid to simulate images if actual files fail */
.bg-1 { background-image: url('תמונות%20רקע/WhatsApp-Image-2023-01-24-at-11.35.25-1024x461.jpeg'); }
.bg-2 { background-image: url('תמונות%20רקע/עיצוב-ללא-שם.png'); }
.bg-3 { background-image: url('תמונות%20רקע/IMG_20220529_145319-scaled-1-1024x576.jpg'); }
.bg-4 { background-image: url('תמונות%20רקע/317866393_515828390589781_6023882661475405882_n.jpg'); }
.bg-5 { background-image: url('תמונות%20רקע/G0496033-scaled-1-1024x768.jpg'); }
.bg-6 { background-image: url('תמונות%20רקע/112.jpeg'); }

.card-content {
    padding: 25px;
}

.card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--sage);
}

.card-content p {
    color: var(--text-main);
    font-size: 1rem;
    line-height: 1.75;
}

/* Clients */
.clients .section-header h2 {
    color: var(--sage);
}

.clients-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.clients-grid img {
    max-height: 70px;
    max-width: 150px;
    object-fit: contain;
    transition: var(--transition);
}

.clients-grid img:hover {
    transform: scale(1.05);
}

/* FAQ */
.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    border: 1px solid #E2E8F0;
    border-radius: var(--radius-md);
    margin-bottom: 15px;
    overflow: hidden;
    background: var(--bg-white);
}

.accordion-header {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-white);
    transition: var(--transition);
}

.accordion-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.accordion-header i {
    color: var(--primary);
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header {
    background: var(--primary-light);
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-body {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-item.active .accordion-body {
    padding: 20px;
    max-height: 1000px;
}

/* Contact CTA Button */
.contact-main-btn {
    padding: 16px 48px;
    font-size: 1.2rem;
    position: relative;
    animation: pulse-glow 2.4s ease-in-out infinite;
}

.contact-main-btn:hover {
    animation: none;
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 12px 30px rgba(221, 150, 181, 0.55);
}

@keyframes pulse-glow {
    0%   { box-shadow: 0 0 0 0 rgba(221, 150, 181, 0.7); transform: scale(1); }
    50%  { box-shadow: 0 0 0 12px rgba(221, 150, 181, 0); transform: scale(1.03); }
    100% { box-shadow: 0 0 0 0 rgba(221, 150, 181, 0); transform: scale(1); }
}

@media (max-width: 480px) {
    .contact-main-btn {
        width: 100%;
        padding: 16px 20px;
        font-size: 1rem;
    }
}

/* Contact Section */
.contact .section-header h2 {
    color: var(--sage);
}

.contact .section-header p {
    color: var(--text-muted);
}

.contact.text-white {
    color: var(--text-main);
}

.contact-wrapper {
    background: rgba(255, 255, 255, 0.5);
    padding: 50px;
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(122, 143, 123, 0.3);
}

.contact .info-item,
.contact .info-item a {
    color: var(--text-main);
}

.contact h3 {
    color: var(--text-main);
}

.contact p {
    color: var(--text-muted);
}


.contact-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.info-item i {
    color: var(--primary);
    font-size: 1.5rem;
}

.info-item a:hover {
    color: var(--primary);
}

/* Founder Section */
.founder-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.founder-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    object-fit: cover;
    max-height: 700px;
}

.founder-text {
    line-height: 1.9;
    font-size: 1.15rem;
    color: var(--text-main);
    font-weight: 400;
}

.founder-text p {
    margin-bottom: 20px;
}

.key-statement {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-main);
    padding: 4px 0;
}

.key-statement strong {
    color: var(--sage);
}

.founder .divider {
    background-color: var(--sage);
}

.founder .section-header h2,
.faq .section-header h2 {
    color: var(--sage);
}

.highlight-box {
    background-color: var(--sage-light);
    border-right: 4px solid var(--sage);
    padding: 22px 28px;
    border-radius: 0 10px 10px 0;
    margin: 10px 0 30px;
}

.highlight-box p {
    margin-bottom: 0;
    font-size: 1.1rem;
    color: var(--text-main);
    font-weight: 500;
    line-height: 1.8;
}

.pull-quote {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin: 30px 0;
    font-style: italic;
    font-size: 1.2rem;
    color: var(--sage);
    font-weight: 600;
}

.quote-icon {
    font-size: 2rem;
    color: var(--sage);
    opacity: 0.4;
    margin-top: -5px;
}

.founder-cta {
    margin-top: 30px;
}

/* Footer */
.footer {
    background: #2D3D2E;
    color: rgba(255,255,255,0.5);
    padding: 30px 0;
    font-size: 0.9rem;
}

.footer-credit {
    margin-top: 8px;
    font-size: 0.8rem;
    opacity: 0.5;
}

.footer-credit-link {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.footer-credit-link:hover {
    opacity: 1;
    color: #25D366;
}

.footer-credit-link .fa-whatsapp {
    font-size: 0.85rem;
    margin-right: 2px;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-container, .founder-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-text p {
        margin: 0 auto 15px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    .hero {
        padding-top: 100px;
    }

    .nav {
        display: none;
    }
    
    .hamburger {
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 44px;
        min-height: 44px;
    }
    
    .section-header {
        margin-bottom: 35px;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .contact-wrapper {
        padding: 30px 20px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .value-card:nth-child(1),
    .value-card:nth-child(2),
    .value-card:nth-child(3),
    .value-card:nth-child(4),
    .value-card:nth-child(5) { grid-column: unset; }

    .value-card:last-child:nth-child(odd) {
        grid-column: 1 / -1;
    }

    .value-card .icon-wrapper {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .value-card h3 {
        font-size: 1.1rem;
    }

    .hero-container {
        gap: 25px;
    }

    .hero-title {
        font-size: 2.4rem;
        margin-bottom: 20px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .hero-image, .founder-image {
        grid-row: 1;
        margin-bottom: 10px;
    }
    
    .hero-image img, .founder-image img {
        max-height: 400px;
    }

    .pull-quote {
        text-align: right;
    }

    .accordion-header {
        padding: 15px;
    }
    
    .accordion-header h3 {
        font-size: 1rem;
        padding-left: 10px;
    }
}

@media (max-width: 480px) {
    section {
        padding: 40px 0;
    }

    .hero {
        padding-top: 80px;
        min-height: auto;
    }

    .hero-title {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }

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

    .section-header p {
        font-size: 1rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .hero-image img {
        max-height: 260px;
    }

    .card-image {
        height: 200px;
    }

    .contact-wrapper {
        padding: 20px 12px;
    }

    .btn {
        padding: 14px 24px;
        font-size: 1rem;
    }

    .clients-grid {
        gap: 20px;
    }

    .clients-grid img {
        max-width: 110px;
        max-height: 55px;
    }

    .accordion-header {
        padding: 12px;
    }

    .info-item {
        font-size: 1rem;
    }

    .contact-info {
        gap: 15px;
    }
}

/* ── Photo Carousel ───────────────────────────────────────────────────────── */
.photo-carousel-section {
    padding: 100px 0 80px;
    background: linear-gradient(160deg, var(--sage) 0%, #1a3326 100%);
    position: relative;
    overflow: hidden;
}

.photo-carousel-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(221,150,181,0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(221,150,181,0.08) 0%, transparent 50%);
    pointer-events: none;
}

.photo-carousel-section .section-header h2,
.photo-carousel-section .section-header p {
    color: #fff;
}

.photo-carousel-section .divider {
    background: var(--primary);
}

.carousel-wrapper {
    display: flex;
    align-items: center;
    margin-top: 48px;
    padding: 0 20px;
    gap: 16px;
}

.carousel-track-container {
    overflow: hidden;
    flex: 1;
    border-radius: var(--radius-lg);
}

.carousel-track {
    display: flex;
    direction: ltr;
    transition: transform 0.28s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.carousel-slide {
    flex: 0 0 50%;
    padding: 0 10px;
    box-sizing: border-box;
}

.carousel-slide img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: var(--radius-md);
    display: block;
    box-shadow: 0 8px 32px rgba(0,0,0,0.35);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.carousel-slide img:hover {
    transform: scale(1.03) translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.45);
}

.carousel-btn {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.25);
    border-radius: 50%;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: var(--transition);
    font-size: 0.9rem;
}

.carousel-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(221,150,181,0.4);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 32px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    border: none;
    cursor: pointer;
    transition: all 0.35s ease;
    padding: 0;
}

.carousel-dot.active {
    background: var(--primary);
    width: 28px;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(221,150,181,0.6);
}

/* Counter "5 / 24" – mobile only */
.carousel-counter {
    display: none;
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 10px;
}

/* ── Mobile Carousel ── */
@media (max-width: 768px) {
    .photo-carousel-section {
        padding: 60px 0 40px;
    }

    /* Hide arrows – swipe only on mobile */
    .carousel-btn {
        display: none;
    }

    .carousel-wrapper {
        padding: 0;
        gap: 0;
        margin-top: 28px;
    }

    .carousel-track-container {
        border-radius: 0;
    }

    /* One image, full-width, edge-to-edge */
    .carousel-slide {
        flex: 0 0 100%;
        padding: 0 10px;
    }

    .carousel-slide img {
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 3;
        border-radius: 14px;
        box-shadow: 0 6px 24px rgba(0,0,0,0.4);
    }

    .carousel-dots {
        margin-top: 14px;
        gap: 7px;
    }

    .carousel-counter {
        display: block;
    }
}

/* ── Video Gallery ──────────────────────────────────────────────────────────── */

/* ── Desktop: Bento Grid ── */
.video-gallery-section {
    padding: 100px 0;
    background: #111815;
    position: relative;
    overflow: hidden;
}

.video-gallery-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 15% 50%, rgba(221,150,181,0.07) 0%, transparent 50%),
        radial-gradient(circle at 85% 20%, rgba(46,79,58,0.15) 0%, transparent 50%);
    pointer-events: none;
}

.video-gallery-section .section-header h2,
.video-gallery-section .section-header p {
    color: #fff;
}

.video-gallery-section .divider {
    background: var(--primary);
}

/* Bento grid: 6 columns */
.video-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 230px;
    gap: 14px;
    margin-top: 48px;
}

/* Row 1 */
.video-card:nth-child(1)  { grid-column: span 4; }
.video-card:nth-child(2)  { grid-column: span 2; }
/* Row 2 */
.video-card:nth-child(3)  { grid-column: span 2; }
.video-card:nth-child(4)  { grid-column: span 2; }
.video-card:nth-child(5)  { grid-column: span 2; }
/* Row 3 */
.video-card:nth-child(6)  { grid-column: span 2; }
.video-card:nth-child(7)  { grid-column: span 4; }
/* Row 4 */
.video-card:nth-child(8)  { grid-column: span 3; }
.video-card:nth-child(9)  { grid-column: span 3; }
/* Row 5 */
.video-card:nth-child(10) { grid-column: span 2; }
.video-card:nth-child(11) { grid-column: span 2; }
.video-card:nth-child(12) { grid-column: span 2; }
/* Row 6 */
.video-card:nth-child(13) { grid-column: span 4; }
.video-card:nth-child(14) { grid-column: span 2; }
/* Row 7 */
.video-card:nth-child(15) { grid-column: span 3; }
.video-card:nth-child(16) { grid-column: span 3; }

.video-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #0d1f14;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.video-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.06);
    pointer-events: none;
    transition: border-color 0.3s ease;
    z-index: 3;
}

.video-card:hover {
    transform: scale(1.025) translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.55), 0 0 0 1px rgba(221,150,181,0.2);
}

.video-card:hover::after {
    border-color: rgba(221,150,181,0.35);
}

.video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.video-card:hover video {
    transform: scale(1.04);
}

.video-play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(160deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.05) 40%, rgba(0,0,0,0.5) 100%);
    border: none;
    cursor: pointer;
    transition: background 0.35s ease, opacity 0.35s ease;
    z-index: 2;
}

.video-play-btn .play-circle {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1.5px solid rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.video-play-btn .play-circle i {
    font-size: 1.2rem;
    color: #fff;
    margin-right: -2px;
}

.video-play-btn .play-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255,255,255,0.75);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.video-card:hover .play-circle {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.15);
    box-shadow: 0 0 35px rgba(221,150,181,0.6);
}

.video-card.playing .video-play-btn {
    opacity: 0;
    pointer-events: none;
}

@media (hover: hover) {
    .video-card.playing:hover .video-play-btn {
        opacity: 1;
        pointer-events: auto;
    }
}

/* ── Tablet ── */
@media (max-width: 1024px) {
    .video-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 200px;
    }
    .video-card:nth-child(1)  { grid-column: span 4; }
    .video-card:nth-child(2)  { grid-column: span 2; }
    .video-card:nth-child(3)  { grid-column: span 2; }
    .video-card:nth-child(4)  { grid-column: span 2; }
    .video-card:nth-child(5)  { grid-column: span 2; }
    .video-card:nth-child(6)  { grid-column: span 2; }
    .video-card:nth-child(7)  { grid-column: span 2; }
    .video-card:nth-child(8)  { grid-column: span 2; }
    .video-card:nth-child(9)  { grid-column: span 4; }
    .video-card:nth-child(10) { grid-column: span 2; }
    .video-card:nth-child(11) { grid-column: span 2; }
    .video-card:nth-child(12) { grid-column: span 2; }
    .video-card:nth-child(13) { grid-column: span 2; }
    .video-card:nth-child(14) { grid-column: span 4; }
    .video-card:nth-child(15) { grid-column: span 2; }
    .video-card:nth-child(16) { grid-column: span 2; }
}

/* ── Scroll hint (mobile feed) ── */
.video-scroll-hint {
    display: none;
}

@media (max-width: 768px) {
    .video-scroll-hint {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
        position: absolute;
        bottom: 24px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 20;
        pointer-events: none;
        animation: hint-fade 3s ease forwards;
    }

    .video-scroll-hint i {
        font-size: 1.1rem;
        color: rgba(255,255,255,0.9);
        animation: hint-bounce 0.9s ease-in-out infinite;
    }

    .video-scroll-hint span {
        font-size: 0.7rem;
        font-weight: 600;
        color: rgba(255,255,255,0.7);
        letter-spacing: 1px;
    }

    @keyframes hint-bounce {
        0%, 100% { transform: translateY(0); }
        50%       { transform: translateY(-6px); }
    }

    @keyframes hint-fade {
        0%   { opacity: 1; }
        70%  { opacity: 1; }
        100% { opacity: 0; }
    }
}

/* ── Mobile: TikTok / Reels Feed ── */
@media (max-width: 768px) {
    /* Carousel (keep as-is) */
    .carousel-slide { flex: 0 0 100%; }
    .carousel-slide img { height: 360px; }
    .carousel-btn { width: 42px; height: 42px; }

    /* Section becomes full-viewport container */
    .video-gallery-section {
        padding: 0;
        height: 100dvh;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .video-gallery-section::before { display: none; }

    .video-gallery-section > .container {
        max-width: 100%;
        width: 100%;
        padding: 0;
        display: flex;
        flex-direction: column;
        height: 100%;
        overflow: hidden;
    }

    /* Compact header strip */
    .video-gallery-section .section-header {
        padding: 52px 20px 10px;
        margin-bottom: 0;
        flex-shrink: 0;
        background: linear-gradient(to bottom, #111815 70%, transparent);
        position: relative;
        z-index: 5;
    }

    .video-gallery-section .section-header h2 { font-size: 1.25rem; margin-bottom: 2px; }
    .video-gallery-section .section-header p  { font-size: 0.8rem; }
    .video-gallery-section .section-header .divider { margin: 6px auto; }

    /* Scroll-snap feed container */
    .video-grid {
        flex: 1;
        display: block;
        overflow-y: scroll;
        overflow-x: hidden;
        scroll-snap-type: y mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
        margin-top: 0;
        gap: 0;
        touch-action: pan-y;
    }

    .video-grid::-webkit-scrollbar { display: none; }

    /* Every card = one full "frame" */
    .video-card:nth-child(n) {
        grid-column: unset;
        width: 100%;
        height: calc(100dvh - 110px);
        scroll-snap-align: start;
        scroll-snap-stop: always;
        border-radius: 0;
        box-shadow: none;
        border-bottom: 2px solid rgba(255,255,255,0.04);
        touch-action: pan-y;
    }

    .video-card::after { display: none; }

    .video-card:hover {
        transform: none;
        box-shadow: none;
    }

    .video-card:hover video { transform: none; }

    /* Bigger tap target play button */
    .video-play-btn .play-circle {
        width: 76px;
        height: 76px;
    }

    .video-play-btn .play-circle i { font-size: 1.8rem; }

    .video-play-btn .play-label {
        font-size: 0.8rem;
        letter-spacing: 2px;
    }

    /* Gradient bottom overlay so play button is legible */
    .video-play-btn {
        background: linear-gradient(
            to top,
            rgba(0,0,0,0.6) 0%,
            rgba(0,0,0,0.0) 55%
        );
    }
}

/* ── Skip-videos button (mobile only) ── */
.video-skip-btn {
    display: none;
}

@media (max-width: 768px) {
    .video-skip-btn {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        margin-top: 10px;
        padding: 7px 18px;
        border-radius: 50px;
        background: rgba(255,255,255,0.1);
        backdrop-filter: blur(8px);
        border: 1px solid rgba(255,255,255,0.2);
        color: rgba(255,255,255,0.8);
        font-size: 0.8rem;
        font-weight: 600;
        letter-spacing: 0.5px;
        transition: background 0.25s ease, color 0.25s ease;
        text-decoration: none;
    }

    .video-skip-btn:hover,
    .video-skip-btn:active {
        background: var(--primary);
        color: #fff;
        border-color: var(--primary);
    }

    .video-skip-btn i {
        font-size: 0.7rem;
    }
}


/* ── Mobile scroll-down indicator (video section) ── */
.video-scroll-down {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 18px 0 36px;
    color: rgba(255,255,255,0.35);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    animation: vsd-bounce 1.8s ease-in-out infinite;
    pointer-events: none;
    user-select: none;
}

.video-scroll-down i {
    font-size: 0.85rem;
}

@keyframes vsd-bounce {
    0%, 100% { transform: translateY(0);   opacity: 0.35; }
    50%       { transform: translateY(7px); opacity: 0.65; }
}

@media (max-width: 768px) {
    .video-scroll-down { display: flex; }
}

/* ── Floating Contact Button ──────────────────────────────────────────────── */
.fab-contact {
    position: fixed;
    bottom: 20px;
    left: 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    background: var(--primary);
    color: #fff;
    border-radius: 50px;
    padding: 8px 14px;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(221,150,181,0.5);
    font-size: 0.72rem;
    font-weight: 700;
    z-index: 999;
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    pointer-events: none;
}

.fab-contact.visible {
    opacity: 1;
    pointer-events: auto;
}

.fab-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(221,150,181,0.65);
}

.fab-contact i {
    font-size: 0.75rem;
}
