@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --pink-primary: #D81B60;
    --pink-light: #FDE8EF;
    --pink-lighter: #FFF5F8;
    --pink-dark: #AD1457;
    --dark: #1A1A2E;
    --dark-soft: #2D2D3F;
    --gray: #6B7280;
    --gray-light: #9CA3AF;
    --white: #FFFFFF;
    --bg-cream: #FAFAFA;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.2rem 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 20px rgba(216, 27, 96, 0.08);
    padding: 0.8rem 2rem;
}

.navbar-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--pink-primary);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-logo span {
    color: var(--dark);
    font-weight: 400;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-soft);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: color 0.3s;
}

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

.nav-cta {
    background: var(--pink-primary) !important;
    color: var(--white) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600 !important;
    transition: all 0.3s !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--white) !important;
    color: var(--pink-primary) !important;
    transform: translateY(-1px);
    outline: 2px solid var(--pink-primary);
    outline-offset: -2px;
    box-shadow: none !important;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--dark);
    transition: all 0.3s;
    border-radius: 2px;
}

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

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

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

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--white);
    padding: 6rem 2rem 4rem;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
}

.hero-shape-1 {
    width: 600px;
    height: 600px;
    background: var(--pink-primary);
    top: -200px;
    right: -100px;
    animation: floatShape 20s ease-in-out infinite;
}

.hero-shape-2 {
    width: 400px;
    height: 400px;
    background: var(--pink-primary);
    bottom: -150px;
    left: -100px;
    animation: floatShape 15s ease-in-out infinite reverse;
}

.hero-shape-3 {
    width: 200px;
    height: 200px;
    background: var(--pink-primary);
    top: 50%;
    left: 50%;
    animation: floatShape 12s ease-in-out infinite 2s;
}

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 8rem 0 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--pink-light);
    color: var(--pink-primary);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--pink-primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

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

.hero-description {
    font-size: 1.15rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.hero-description .text-highlight {
    color: var(--pink-primary);
    font-weight: 600;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.hero-stat {
    text-align: left;
}

.hero-stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--pink-primary);
    line-height: 1;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.hero-stat-label {
    font-size: 0.8rem;
    color: var(--gray-light);
    font-weight: 500;
    margin-top: 0.3rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--pink-primary);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    letter-spacing: 0.3px;
}

.btn-primary:hover {
    background: var(--white);
    color: var(--pink-primary);
    transform: translateY(-2px);
    outline: 2px solid var(--pink-primary);
    outline-offset: -2px;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--dark);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    border: 2px solid var(--dark);
    cursor: pointer;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--pink-primary);
    transform: translateY(-2px);
    outline: 2px solid var(--pink-primary);
    outline-offset: -2px;
}

.hero-image-wrapper {
    position: absolute;
    right: 0;
    bottom: -250px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    animation: fadeInRight 1s ease-out 0.3s both;
    width: 52%;
}

.hero-image {
    width: 100%;
    max-width: 700px;
    border-radius: 0;
    box-shadow: none;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-float-card {
    position: absolute;
    background: var(--white);
    border-radius: 16px;
    padding: 1rem 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    animation: floatCard 6s ease-in-out infinite;
    z-index: 3;
}

.hero-float-card-1 {
    bottom: 60px;
    left: -40px;
    animation-delay: 0s;
}

.hero-float-card-2 {
    top: 40px;
    right: -30px;
    animation-delay: 3s;
}

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

.float-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.float-card-icon.pink {
    background: var(--pink-light);
}

.float-card-text strong {
    display: block;
    font-size: 0.85rem;
    color: var(--dark);
}

.float-card-text span {
    font-size: 0.75rem;
    color: var(--gray-light);
}

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

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

/* ===== SECTION COMMON ===== */
.section {
    padding: 6rem 2rem;
}

.section-inner {
    max-width: 1280px;
    margin: 0 auto;
}

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

.section-tag {
    display: inline-block;
    background: var(--pink-light);
    color: var(--pink-primary);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== ABOUT ===== */
.about {
    background: var(--bg-cream);
    position: relative;
    overflow: hidden;
}

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

.about-image-section {
    position: relative;
}

.about-image-main {
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.about-image-main img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.about-experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--pink-primary);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(216, 27, 96, 0.3);
}

.about-experience-badge .number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.about-experience-badge .label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: 0.3rem;
}

.about-content .section-tag {
    margin-bottom: 1rem;
}

.about-content .section-title {
    text-align: left;
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
}

.about-text {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.9rem 1.1rem;
    background: linear-gradient(135deg, rgba(216, 27, 96, 0.06) 0%, rgba(216, 27, 96, 0.02) 100%);
    border: 1px solid rgba(216, 27, 96, 0.12);
    border-radius: 14px;
    transition: all 0.3s ease;
}

.about-feature:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(216, 27, 96, 0.15);
    border-color: rgba(216, 27, 96, 0.25);
}

.about-feature-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--pink-primary) 0%, #e91e63 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(216, 27, 96, 0.3);
}

.about-feature-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--white);
}

.about-feature span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark-soft);
}

/* ===== SERVICES ===== */
.services {
    background: var(--white);
    position: relative;
}

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

.service-card {
    background: linear-gradient(135deg, var(--pink-lighter) 0%, var(--white) 50%, var(--pink-lighter) 100%);
    border: 1px solid rgba(216, 27, 96, 0.08);
    border-radius: 28px;
    padding: 2.25rem 1.75rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.03);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(216, 27, 96, 0.08);
    border-color: rgba(216, 27, 96, 0.15);
}

.service-card:hover .service-icon {
    background: var(--pink-primary);
}

.service-card:hover .service-icon svg {
    stroke: var(--white);
}

.service-card:hover .service-features li svg {
    stroke: var(--pink-primary);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: var(--pink-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s;
    box-shadow: 0 4px 6px rgba(216, 27, 96, 0.1);
    position: relative;
    overflow: hidden;
}

.service-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--pink-primary);
    transition: all 0.3s;
}

.service-card h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--pink-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.25px;
}

.service-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 280px;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: var(--dark-soft);
    padding: 0.5rem 0;
    position: relative;
}

.service-features li svg {
    width: 16px;
    height: 16px;
    stroke: var(--pink-primary);
    flex-shrink: 0;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: var(--pink-lighter);
    position: relative;
    overflow: hidden;
}

.testimonials-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
}

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

.testimonial-card {
    background: var(--white);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(216, 27, 96, 0.1);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 1.2rem;
}

.testimonial-stars svg {
    width: 18px;
    height: 18px;
    fill: #FFB800;
    stroke: none;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--dark-soft);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
}

.testimonial-expandable {
    order: -1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--pink-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--pink-primary);
    font-size: 1.1rem;
}

.testimonial-info {
    min-width: 0;
}

.testimonial-info strong {
    display: block;
    font-size: 0.95rem;
    color: var(--dark);
}

.testimonial-info span {
    font-size: 0.8rem;
    color: var(--gray-light);
}

/* ===== VIDEOS CAROUSEL ===== */
.videos {
    background: var(--bg-cream);
    position: relative;
}

.videos-carousel-wrapper {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
}

.carousel-dots {
    display: none;
    justify-content: center;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(216, 27, 96, 0.2);
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    padding: 0;
}

.carousel-dot.active {
    background: var(--pink-primary);
    transform: scale(1.3);
}

.videos-carousel {
    overflow: hidden;
}

.videos-grid {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.5rem 0;
}

.video-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: var(--pink-lighter);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
    aspect-ratio: 9/16;
    flex-shrink: 0;
    cursor: pointer;
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(216, 27, 96, 0.12);
}

.video-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.25);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.video-item:hover .video-play-overlay,
.video-item.paused .video-play-overlay {
    opacity: 1;
}

.video-play-overlay svg {
    width: 60px;
    height: 60px;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
    transition: transform 0.3s;
}

.video-item:hover .video-play-overlay svg {
    transform: scale(1.1);
}

.video-item.playing .video-play-overlay {
    opacity: 0;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    color: var(--pink-primary);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
    z-index: 5;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(216, 27, 96, 0.15);
}

.carousel-btn:hover {
    background: var(--pink-primary);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 24px rgba(216, 27, 96, 0.3);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-prev {
    left: -24px;
}

.carousel-next {
    right: -24px;
}

/* ===== CLIENTS ===== */
.clients {
    background: var(--white);
    padding: 5rem 2rem;
}

.clients-inner {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}

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

.clients-header .section-tag {
    margin-bottom: 1rem;
}

.clients-header h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark);
}

.clients-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.clients-logos:hover {
    opacity: 1;
}

.client-logo {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%);
    transition: all 0.3s;
}

.client-logo:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.client-logo svg {
    height: 100%;
    width: auto;
}

.clients-counter {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #f0f0f0;
}

.clients-counter-text {
    font-size: 1.1rem;
    color: var(--gray);
}

.clients-counter-text strong {
    color: var(--pink-primary);
    font-size: 1.3rem;
}

/* ===== ABOUT SECTION MOBILE READ MORE ===== */
@media (max-width: 768px) {
    .about-text-limit {
        max-height: 80px;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    .about-text-limit.expanded {
        max-height: 1000px;
    }
    .about-text-hidden {
        display: none;
    }
    .about-text-container {
        position: relative;
    }
    .about-text-fade {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 50px;
        background: linear-gradient(to bottom, rgba(255,255,255,0), var(--bg-cream));
        pointer-events: none;
        transition: opacity 0.3s;
    }
    .about-read-more {
        display: block;
        background: none;
        border: none;
        color: var(--pink-primary);
        font-weight: 600;
        cursor: pointer;
        padding: 0;
        margin: 0.5rem auto 2rem;
        text-align: center;
        width: 100%;
    }
}
@media (min-width: 769px) {
    .about-read-more, .about-text-fade {
        display: none;
    }
}

/* ===== CTA ===== */
.cta {
    background: linear-gradient(135deg, var(--pink-primary) 0%, var(--pink-dark) 100%);
    position: relative;
    overflow: hidden;
    padding: 8rem 2rem;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 1;
}

.cta-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.cta-shape-1 {
    width: 500px;
    height: 500px;
    top: -250px;
    right: -150px;
    animation: ctaFloat1 8s ease-in-out infinite;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.05) 70%);
}

.cta-shape-2 {
    width: 400px;
    height: 400px;
    bottom: -200px;
    left: -100px;
    animation: ctaFloat2 10s ease-in-out infinite;
    background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.03) 70%);
}

.cta-shape-3 {
    width: 200px;
    height: 200px;
    top: 30%;
    left: 10%;
    animation: ctaFloat3 6s ease-in-out infinite;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.02) 70%);
}

.cta-shape-4 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation: ctaFloat1 7s ease-in-out infinite reverse;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.02) 70%);
}

.cta-shape-5 {
    width: 80px;
    height: 80px;
    top: 20%;
    right: 30%;
    animation: ctaPulse 4s ease-in-out infinite;
    background: rgba(255, 255, 255, 0.15);
}

@keyframes ctaFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, 20px) scale(1.05); }
}

@keyframes ctaFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(40px, -30px) scale(1.08); }
}

@keyframes ctaFloat3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(20px, -20px) rotate(10deg); }
}

@keyframes ctaPulse {
    0%, 100% { transform: scale(1); opacity: 0.15; }
    50% { transform: scale(1.3); opacity: 0.25; }
}

.cta-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cta-content {
    text-align: left;
    max-width: 600px;
}

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

.cta-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 24px;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    pointer-events: none;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: badgePulse 3s ease-in-out infinite;
}

.cta-badge-dot {
    width: 8px;
    height: 8px;
    background: #4ADE80;
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px #4ADE80;
}

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

@keyframes dotPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.cta-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: iconFloat 3s ease-in-out infinite;
}

.cta-icon svg {
    width: 36px;
    height: 36px;
    stroke: var(--white);
    stroke-width: 1.5;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.05); }
}

.cta-emoji {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
    animation: emojiBounce 2s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

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

.cta h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 2.8rem;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.cta p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.cta-features {
    display: flex;
    justify-content: flex-start;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
}

.cta-feature svg {
    width: 20px;
    height: 20px;
    stroke: #4ADE80;
    stroke-width: 2.5;
}

.cta-trust-badges {
    display: flex;
    justify-content: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.cta-trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.08);
    padding: 0.6rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.cta-trust-badge span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    color: var(--pink-primary);
    padding: 1.2rem 3rem;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

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

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

.btn-white:hover {
    background: var(--white);
    color: var(--pink-dark);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.btn-white svg {
    transition: transform 0.3s;
}

.btn-white:hover svg {
    transform: translateX(4px);
}

.cta-note {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.cta-note svg {
    width: 16px;
    height: 16px;
    stroke: rgba(255, 255, 255, 0.7);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 3rem 2rem 2rem;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-brand h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--white);
}

.footer-brand h3 span {
    color: var(--pink-primary);
}

.footer-social {
    display: flex;
    gap: 0.8rem;
}

.footer-social a {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--pink-primary);
    transform: translateY(-3px);
}

.footer-social a svg {
    width: 24px;
    height: 24px;
    fill: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
    padding-top: 1.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr 1fr;
        text-align: left;
        gap: 3rem;
    }

    .video-item:hover {
        transform: none;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    }
    .video-item:hover .video-play-overlay {
        opacity: 0;
    }
    .video-item:hover .video-play-overlay svg {
        transform: none;
    }

    .hero-content {
        order: 1;
    }

    .hero-image-wrapper {
        order: 0;
        width: 95%;
        bottom: -80px;
    }
    .hero-image {
        max-width: 950px;
    }
    .hero-image-container {
        width: 350px;
        height: 420px;
    }

    .hero-description {
        margin: 0 0 2.5rem;
    }

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

    .hero-buttons {
        justify-content: flex-start;
    }

    .hero-float-card-1 {
        left: 10px;
    }

    .hero-float-card-2 {
        right: 10px;
    }

    .about-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-content .section-title {
        text-align: center;
    }

    .about-content .section-tag {
        display: block;
        text-align: center;
    }

}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    /* Hide carousel arrows on mobile */
    .carousel-btn {
        display: none;
    }

    /* Show dots navigation on mobile */
    .carousel-dots {
        display: flex;
    }

    /* Enable touch scrolling for videos on mobile */
    .videos-carousel {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .videos-carousel::-webkit-scrollbar {
        display: none;
    }

    .videos-grid {
        gap: 1rem;
        transition: none;
        transform: none !important;
    }

    .video-item {
        scroll-snap-align: center;
        flex-shrink: 0;
        width: 85vw;
        max-width: 400px;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 999;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .mobile-toggle {
        display: flex;
        z-index: 1001;
    }

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

    .hero-stats {
        gap: 1.5rem;
    }

    .hero-stat-number {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta h2 {
        font-size: 2rem;
    }

    .cta-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .cta-image {
        order: -1;
        justify-content: center;
    }

    .cta-image img {
        max-width: 300px;
    }

    .cta-features {
        justify-content: center;
    }

    .cta-trust-badges {
        justify-content: center;
    }

    .cta-note {
        justify-content: center;
    }

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

    .clients-logos {
        gap: 2rem;
    }

    .client-logo {
        height: 30px;
    }

    .videos-grid {
        gap: 1rem;
    }

    .video-item {
        max-width: none;
        width: 100%;
    }

    .carousel-prev {
        left: 10px;
    }

    .carousel-next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .hero-image-container {
        width: 280px;
        height: 340px;
    }

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

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* ===== MOBILE OPTIMIZATION ===== */
@media (max-width: 768px) {
    .hero {
        padding: 4rem 0 3rem;
    }
    .hero-inner {
        grid-template-columns: 1fr;
        padding: 3rem 1.5rem 2rem;
        text-align: center;
    }

    .hero-image-wrapper {
        position: relative;
        bottom: 0;
        width: 100%;
        justify-content: center;
        margin-top: 2rem;
    }

    .hero-image {
        max-width: 400px;
        margin: 0 auto;
    }

    .hero-title {
        font-size: 2rem;
        text-align: center;
    }

    .hero-description {
        font-size: 1rem;
        text-align: center;
    }

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

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

    .hero-stat-number {
        font-size: 1.6rem;
    }

    .hero-stat-label {
        font-size: 0.7rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        font-size: 0.9rem;
        padding: 0.75rem 1.5rem;
    }

    .section {
        padding: 4rem 1.5rem;
    }

    .section-title {
        font-size: 1.8rem;
        text-align: center;
    }

    .section-subtitle {
        font-size: 1rem;
        text-align: center;
    }

    .about-inner {
        gap: 2.5rem;
    }

    .about-content .section-title {
        font-size: 1.8rem;
        text-align: center;
    }

    .about-text {
        font-size: 0.95rem;
        text-align: center;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .about-feature {
        padding: 0.8rem;
    }

    .about-feature span {
        font-size: 0.9rem;
    }

    .about-image-main img {
        height: 350px;
    }

    .about-experience-badge {
        bottom: -10px;
        right: -10px;
        padding: 0.8rem 1rem;
        border-radius: 16px;
    }

    .about-experience-badge .number {
        font-size: 1.6rem;
    }

    .about-experience-badge .label {
        font-size: 0.65rem;
        margin-top: 0.1rem;
    }

    .service-card {
        cursor: pointer;
    }
    .service-header {
        display: flex;
        align-items: center;
        gap: 1rem;
    }
    .service-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 0;
        flex-shrink: 0;
    }
    .service-icon svg {
        width: 20px;
        height: 20px;
    }
    .service-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0;
    }
    .service-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
    }
    .service-card.active .service-content {
        max-height: 500px;
    }
    .service-content-inner {
        padding-top: 1rem;
    }

    .service-card p {
        margin-top: 1rem;
    }


    .testimonial-card {
        padding: 1.5rem;
        cursor: pointer;
    }

    .testimonial-expandable {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-out, opacity 0.3s ease-out;
        opacity: 0;
        order: 1;
    }

    .testimonial-card.active .testimonial-expandable {
        max-height: 500px;
        opacity: 1;
        margin-top: 1.5rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }

    .testimonial-author::after {
        content: '+';
        margin-left: auto;
        font-size: 1.5rem;
        font-weight: 300;
        color: var(--pink-primary);
        transition: transform 0.3s;
    }

    .testimonial-card.active .testimonial-author::after {
        transform: rotate(45deg);
    }

    .cta {
        padding: 5rem 1.5rem;
    }

    .cta-inner {
        padding: 0 1rem;
    }

    .cta h2 {
        font-size: 1.8rem;
        text-align: center;
    }

    .cta p {
        font-size: 1rem;
        text-align: center;
    }

    .cta-features {
        justify-content: center;
        gap: 1rem;
    }

    .cta-feature {
        font-size: 0.85rem;
    }

    .cta-trust-badges {
        justify-content: center;
        gap: 0.8rem;
    }

    .cta-trust-badge {
        padding: 0.5rem 0.8rem;
    }

    .cta-trust-badge span {
        font-size: 0.75rem;
    }

    .btn-white {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        font-size: 0.95rem;
        padding: 1rem 2rem;
    }

    .cta-image img {
        max-width: 280px;
    }

    .clients-header h2 {
        font-size: 1.8rem;
    }

    .clients-logos {
        gap: 1.5rem;
    }

    .client-logo {
        height: 30px;
    }

    .clients-counter-text {
        font-size: 0.95rem;
    }

    .videos-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
    }

    .video-item {
        max-width: 100%;
    }

    .footer-social a {
        width: 48px;
        height: 48px;
    }

    .footer-social a svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.7rem;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .hero-stat-number {
        font-size: 1.4rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .about-content .section-title {
        font-size: 1.6rem;
    }

    .cta h2 {
        font-size: 1.6rem;
    }

    .about-image-main img {
        height: 280px;
    }

    .service-card h3 {
    }

    .testimonial-text {
        font-size: 0.9rem;
    }

    .about-experience-badge {
        padding: 0.6rem 0.8rem;
        bottom: -8px;
        right: -8px;
    }

    .about-experience-badge .number {
        font-size: 1.3rem;
    }

    .about-experience-badge .label {
        font-size: 0.6rem;
    }

    .about-content .btn-primary {
        max-width: 280px;
        margin: 0 auto;
        display: flex;
    }
}

/* ===== REDUCE HERO PHOTO ON PC ===== */
@media screen and (min-width: 769px) {
    .hero-image-wrapper {
        width: 48%;
    }
    .hero-image {
        max-width: 620px;
    }
}

/* ===== ZOOM OUT FOR SCREENS SMALLER THAN 1920x1080 (PC ONLY) ===== */
@media screen and (min-width: 769px) and (max-width: 1919px) {
    html {
        zoom: 0.8;
    }
}
