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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

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

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(196, 30, 58, 0.4);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(196, 30, 58, 0);
    }
}

@keyframes videoGlow {
    0%, 100% {
        box-shadow: 0 20px 60px rgba(196, 30, 58, 0.3);
    }
    50% {
        box-shadow: 0 20px 80px rgba(196, 30, 58, 0.5);
    }
}

/* Scroll-triggered animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }
.animate-on-scroll.delay-5 { transition-delay: 0.5s; }

/* CSS Variables */
:root {
    --red: #C41E3A;
    --red-dark: #A01830;
    --black: #1a1a1a;
    --white: #ffffff;
    --gray-light: #f5f5f5;
    --gray: #666666;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

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

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

.text-red {
    color: var(--red);
}

.highlight {
    background-color: var(--red);
    color: var(--white);
    padding: 5px 15px;
    display: inline-block;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 40px;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

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

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: transparent;
    transition: all 0.3s ease;
}

.header.scrolled {
    background-color: var(--white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.logo img {
    width: 120px;
    height: auto;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.08);
}

.nav ul {
    display: flex;
    gap: 40px;
}

.nav a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--white);
    transition: color 0.3s ease;
    position: relative;
}

.header.scrolled .nav a {
    color: var(--black);
}

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

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav a:hover::after {
    transform: scaleX(1);
}

.nav a.nav-cta {
    background-color: var(--red);
    color: var(--white) !important;
    padding: 8px 18px;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.nav a.nav-cta:hover {
    background-color: var(--red-dark);
    transform: translateY(-2px);
}

.nav a.nav-cta::after {
    display: none;
}

/* Instagram nav icon */
.nav-instagram {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
    margin-left: 20px;
}

.nav-instagram:hover {
    transform: scale(1.15);
    opacity: 0.85;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 30px;
}

.lang-switcher a {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    transition: color 0.3s ease;
}

.header.scrolled .lang-switcher a {
    color: var(--black);
}

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

.lang-divider {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.header.scrolled .lang-divider {
    color: rgba(0, 0, 0, 0.3);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    transition: all 0.3s ease;
}

.header.scrolled .mobile-menu-btn span {
    background-color: var(--black);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: var(--black);
    padding: 100px 20px;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: 2px;
    animation: fadeInUp 1s ease forwards;
}

.hero h1 span {
    color: var(--red);
}

.hero .tagline {
    font-size: 1.2rem;
    color: var(--white);
    letter-spacing: 8px;
    margin-bottom: 40px;
    font-weight: 500;
    animation: fadeInUp 1s ease 0.3s forwards;
    opacity: 0;
}

.hero-subtagline {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    font-style: italic;
    letter-spacing: 1px;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.45s forwards;
    opacity: 0;
}

.hero .btn {
    animation: fadeInUp 1s ease 0.6s forwards, pulse 2s ease-in-out 2s infinite;
    opacity: 0;
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

/* Floating decorative circles */
.floating-circle {
    position: absolute;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    opacity: 0.08;
    z-index: 0;
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: -50px;
    right: -50px;
    background-image: url('../assets/gallery/award1.jpg');
    opacity: 0.15;
    animation: float 6s ease-in-out infinite;
}

.circle-2 {
    width: 200px;
    height: 200px;
    bottom: -30px;
    left: -30px;
    background-image: url('../assets/gallery/walking.jpg');
    opacity: 0.15;
    animation: float 8s ease-in-out infinite 1s;
}

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

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.about-text h3 {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 25px;
    font-weight: 500;
}

.about-text p {
    color: var(--gray);
    margin-bottom: 15px;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image.animate-on-scroll img {
    transform: translate(-20px, -20px);
}

.about-image.animate-on-scroll.animated img {
    transform: translate(0, 0);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--red);
    border-radius: 10px;
    z-index: -1;
}

/* Services Section */
.services {
    padding: 100px 0;
    background-color: var(--gray-light);
}

.services h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 50px;
    color: var(--gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

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

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

.service-icon {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.service-icon svg {
    width: 30px;
    height: 30px;
    color: var(--white);
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--red);
}

.service-card h4 {
    font-size: 0.85rem;
    margin-bottom: 15px;
    color: var(--gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Events Showcase Section */
.events-showcase {
    padding: 100px 0;
    background-color: var(--black);
}

.showcase-main {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

/* Video-Content-Video trio layout */
.showcase-trio {
    grid-template-columns: auto 1fr auto;
    gap: 40px;
}

.showcase-trio .showcase-content {
    text-align: center;
}

.showcase-content {
    color: var(--white);
}

.showcase-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.showcase-content p {
    font-size: 1.1rem;
    opacity: 0.85;
    margin-bottom: 30px;
    line-height: 1.7;
}

.showcase-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.showcase-highlights span {
    background-color: var(--red);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 500;
}

.showcase-video-wrapper {
    display: inline-block;
    position: relative;
    flex-shrink: 0;
}

/* Mobile video poster overlay */
.video-poster-overlay {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border-radius: 20px;
    z-index: 5;
}

.video-poster-overlay .play-btn {
    width: 70px;
    height: 70px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.video-poster-overlay .play-btn svg {
    width: 30px;
    height: 30px;
    fill: white;
    margin-left: 5px;
}

.video-poster-overlay:hover .play-btn {
    transform: scale(1.1);
}

.showcase-video {
    width: 100%;
    max-width: 280px;
    height: auto;
    border-radius: 20px;
    animation: videoGlow 3s ease-in-out infinite;
}

.video-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 8px;
}

.video-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.video-btn:hover {
    background: var(--red);
}

.video-btn svg {
    width: 18px;
    height: 18px;
    color: white;
}

/* Play/Pause toggle */
.video-btn .play-icon {
    display: none;
}

.video-btn.paused .play-icon {
    display: block;
}

.video-btn.paused .pause-icon {
    display: none;
}

/* Sound toggle */
.video-btn .sound-on {
    display: none;
}

.video-btn.unmuted .sound-off {
    display: none;
}

.video-btn.unmuted .sound-on {
    display: block;
}

/* Landscape reel video section */
.showcase-reel {
    display: flex;
    justify-content: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.showcase-reel-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
}

.showcase-reel-video {
    width: 100%;
    border-radius: 16px;
    animation: videoGlow 3s ease-in-out infinite 1.5s;
}

.reel-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
}

/* Videos row for multiple portrait videos */
.showcase-videos-row {
    display: flex;
    gap: 30px;
    justify-content: center;
}

/* Gallery Slideshow */
.gallery-slideshow {
    margin-top: 60px;
    overflow: hidden;
    border-radius: 12px;
}

.gallery-track {
    display: flex;
    gap: 20px;
    animation: slideGallery 45s linear infinite;
    width: max-content;
    will-change: transform;
    backface-visibility: hidden;
}

.gallery-track img {
    height: 250px;
    width: auto;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}

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

.gallery-track img {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-track img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.4);
}

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

.gallery-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.gallery-lightbox img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 50px;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
    line-height: 1;
}

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

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    cursor: pointer;
    padding: 15px 20px;
    border-radius: 8px;
    transition: background 0.3s ease, color 0.3s ease;
}

.lightbox-nav:hover {
    background: var(--red);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

@media (max-width: 992px) {
    .showcase-main {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        justify-items: center;
    }

    .showcase-trio {
        grid-template-columns: 1fr;
    }

    .showcase-trio .showcase-content {
        order: -1;
    }

    .showcase-trio .showcase-video-wrapper:first-child {
        order: 0;
    }

    .showcase-trio .showcase-video-wrapper:last-child {
        order: 1;
    }

    .showcase-content {
        order: 1;
    }

    .showcase-video-wrapper {
        order: 2;
    }

    .showcase-highlights {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .showcase-video {
        max-width: 260px;
    }

    .showcase-reel {
        padding-top: 30px;
    }

    .showcase-reel-video {
        border-radius: 12px;
    }

    .showcase-videos-row {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .gallery-slideshow {
        margin-top: 40px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .gallery-track {
        animation: none !important;
        padding: 10px 0;
    }

    .gallery-track img {
        height: 180px;
    }
}

/* Approach Section */
.approach {
    padding: 100px 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.approach-bg-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background-image: url('../assets/gallery/podium.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.12;
    z-index: 0;
}

.approach .container {
    position: relative;
    z-index: 1;
}

.approach h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
}

.approach-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto 50px;
}

.approach-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    background-color: var(--gray-light);
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.approach-item:hover {
    background-color: var(--red);
    color: var(--white);
}

.approach-icon {
    width: 12px;
    height: 12px;
    background-color: var(--red);
    border-radius: 50%;
    flex-shrink: 0;
}

.approach-item:hover .approach-icon {
    background-color: var(--white);
}

.approach-tagline {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.8;
}

/* Why Us Section */
.why-us {
    padding: 100px 0;
    background-color: var(--gray-light);
    position: relative;
    overflow: hidden;
}

.section-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/gallery/stage-speaking.jpg');
    background-size: cover;
    background-position: center top;
    opacity: 0.10;
    z-index: 0;
}

.why-us .container {
    position: relative;
    z-index: 1;
}

.why-us h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 10px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.feature {
    padding: 30px;
    background-color: var(--white);
    border-radius: 10px;
    border-left: 4px solid var(--red);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature:hover {
    transform: translateX(8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.feature h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--red);
}

.feature p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background-color: var(--white);
}

.testimonials h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
}

.testimonial-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.testimonial-item.reverse {
    direction: rtl;
}

.testimonial-item.reverse > * {
    direction: ltr;
}

.testimonial-content {
    padding: 20px;
}

.testimonial-quote {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark);
    margin-bottom: 30px;
    font-style: italic;
    position: relative;
}

.testimonial-quote::before {
    content: '"';
    font-size: 4rem;
    color: var(--red);
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: Georgia, serif;
    opacity: 0.3;
}

.testimonial-author h4 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 8px;
}

.testimonial-author p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 8px;
}

.testimonial-author a {
    color: var(--red);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.testimonial-author a:hover {
    opacity: 0.7;
}

.social-link {
    font-size: 0.9rem;
    font-weight: 500;
}

.testimonial-video-wrapper {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 340px;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.testimonial-video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.instagram-overlay-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.instagram-overlay-btn:hover {
    background: var(--red);
    color: var(--white);
    transform: scale(1.1);
}

.instagram-overlay-btn svg {
    width: 22px;
    height: 22px;
}

/* Mission Section */
.mission {
    padding: 150px 0;
    position: relative;
    color: var(--white);
    overflow: hidden;
}

.mission-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-image: url('../assets/gallery/crowd-event.jpg');
    background-size: cover;
    background-position: center 35%;
    background-attachment: fixed;
    z-index: 0;
}

.mission-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.75) 0%, rgba(160, 24, 48, 0.78) 100%);
}

.mission .container {
    position: relative;
    z-index: 1;
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.mission h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.mission p {
    font-size: 1.2rem;
    line-height: 1.8;
}

/* Book a Call Section */
.book-section {
    padding: 100px 0;
    background-color: var(--gray-light);
}

.book-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 10px;
}

#cal-embed {
    margin-top: 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    min-height: 600px;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: var(--white);
}

.contact h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
}

.contact-grid {
    display: flex;
    justify-content: center;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 30px;
    background-color: var(--gray-light);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background-color: var(--red);
    color: var(--white);
}

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

.contact-item svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--red);
}

.contact-item:hover svg {
    color: var(--white);
}

.contact-item a {
    font-weight: 500;
    color: var(--black);
    transition: color 0.3s ease;
}

/* Footer */
.footer {
    padding: 40px 0;
    background-color: var(--black);
    color: var(--white);
}

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

.footer-logo {
    height: 45px;
    margin-bottom: 20px;
}

.footer p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }

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

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

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

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav-instagram {
        margin-left: 12px;
    }

    .nav-instagram svg {
        width: 18px;
        height: 18px;
    }

    .lang-switcher {
        margin-left: 12px;
    }

    .nav a.nav-cta {
        display: inline-block;
        width: fit-content;
        margin-top: 4px;
        background-color: var(--red) !important;
        color: var(--white) !important;
        padding: 10px 20px;
        border-radius: 5px;
    }

    .nav {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background-color: var(--white);
        padding: 20px;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .nav.active {
        transform: translateY(0);
    }

    .nav ul {
        flex-direction: column;
        gap: 20px;
    }

    .nav a {
        color: var(--black);
        font-size: 1.1rem;
    }

    .testimonial-item,
    .testimonial-item.reverse {
        grid-template-columns: 1fr;
        gap: 30px;
        direction: ltr;
    }

    .testimonial-video-wrapper {
        order: -1;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

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

    .approach-list {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-video {
        display: block;
    }

    .testimonials-grid {
        padding: 0 10px;
    }

    .hero .tagline {
        letter-spacing: 4px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    #cal-embed {
        min-height: 400px;
        border-radius: 8px;
    }
}

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

    section {
        padding: 60px 0;
    }

    h2 {
        font-size: 1.8rem !important;
    }

    .btn {
        padding: 12px 30px;
    }

    .showcase-video {
        max-width: 220px;
    }

    .gallery-track img {
        height: 150px;
    }

    .gallery-track {
        gap: 12px;
        animation: none !important;
    }
}
