:root {
    --primary-pink: #e8a4b4;
    --dark-pink: #d67f93;
    --light-pink: #f8e1e6;
    --soft-purple: #c8a2c8;
    --lavender: #e6e6fa;
    --gold: #d4af37;
    --light-gold: #f4e4b4;
    --charcoal: #2d2d2d;
    --text-dark: #333333;
    --text-light: #777777;
    --white: #ffffff;
    --header-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--white);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
    padding-top: var(--header-height);
}

h1, h2, h3, h4, h5 {
    font-family: 'Dancing Script', cursive;
    font-weight: 600;
    line-height: 1.3;
}

.section-title h2 {
    font-family: 'Playfair Display', serif;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--charcoal);
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--primary-pink);
    margin: 15px auto;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background: var(--primary-pink);
    color: white;
}

.btn-primary:hover, .btn-primary:focus {
    background: var(--dark-pink);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn-secondary {
    background: transparent;
    color: var(--charcoal);
    border: 2px solid var(--charcoal);
}

.btn-secondary:hover, .btn-secondary:focus {
    background: var(--charcoal);
    color: white;
    transform: translateY(-3px);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover, .btn-whatsapp:focus {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Header & Navigation */
header {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    height: var(--header-height);
    display: flex;
    align-items: center;
}

header.scrolled {
    transform: translateY(0);
    padding: 0;
    background-color: rgba(255, 255, 255, 0.98);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-family: 'Dancing Script', cursive;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--charcoal);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo span {
    color: var(--primary-pink);
}

.logo i {
    margin-right: 10px;
    font-size: 1.4rem;
    color: var(--primary-pink);
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 28px;
}

.nav-links li {
    margin: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--charcoal);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    font-size: 1rem;
    padding: 6px 0;
}

.nav-links a:hover, .nav-links a:focus {
    color: var(--primary-pink);
    outline: none;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-pink);
    transition: width 0.25s ease;
}

.nav-links a:hover::after, .nav-links a:focus::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.4rem;
    color: var(--charcoal);
    cursor: pointer;
    padding: 6px;
}

/* Mobile Menu */
.mobile-menu {
    position: absolute;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 5px 12px rgba(0,0,0,0.08);
    padding: 18px;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.25s ease;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-links li {
    margin-bottom: 12px;
}

.mobile-nav-links a {
    text-decoration: none;
    color: var(--charcoal);
    font-weight: 500;
    font-size: 1rem;
    padding: 10px 0;
    display: block;
    border-bottom: 1px solid #f5f5f5;
}

.mobile-nav-cta {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.3)), url('https://images.unsplash.com/photo-1607778833979-4f77cece7ce7?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards 0.5s;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Poppins', sans-serif;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    border-top: 4px solid var(--primary-pink);
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover, .service-card:focus-within {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.service-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--charcoal);
}

.service-content p {
    color: var(--text-light);
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.service-price {
    font-weight: 600;
    color: var(--primary-pink);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

/* Gallery Section */
.gallery {
    background-color: var(--light-pink);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    height: 250px;
    background-color: #f0f0f0;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Nail Academy */
.academy {
    background: linear-gradient(135deg, var(--lavender) 0%, var(--light-pink) 100%);
    color: var(--charcoal);
}

.academy .section-title h2 {
    color: var(--charcoal);
}

.academy .section-title::after {
    background: var(--soft-purple);
}

.pricing-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.pricing-card {
    background: rgba(255,255,255,0.7);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(30px);
}

.pricing-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.pricing-card:hover, .pricing-card:focus-within {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.9);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.pricing-card.featured {
    background: rgba(255,255,255,0.9);
    border: 2px solid var(--soft-purple);
    position: relative;
}

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--soft-purple);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.pricing-header {
    margin-bottom: 20px;
}

.pricing-header h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.pricing-header p {
    font-family: 'Poppins', sans-serif;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--soft-purple);
    margin: 15px 0;
    font-family: 'Poppins', sans-serif;
}

.price span {
    font-size: 1rem;
    color: var(--text-light);
}

.pricing-features {
    list-style: none;
    margin: 20px 0;
}

.pricing-features li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    font-family: 'Poppins', sans-serif;
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* Social Media Section */
.social-media {
    background-color: var(--light-pink);
}

.social-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.social-header {
    text-align: center;
    max-width: 600px;
}

.social-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--charcoal);
}

.social-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    font-family: 'Poppins', sans-serif;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    width: 100%;
}

.social-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.social-card:hover, .social-card:focus-within {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.social-video {
    height: 400px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-family: 'Poppins', sans-serif;
}

.social-content {
    padding: 20px;
    text-align: center;
}

.social-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--charcoal);
}

.social-content p {
    color: var(--text-light);
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--primary-pink);
    border-radius: 50%;
    color: white;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover, .social-link:focus {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-link.tiktok {
    background: #000000;
}

.social-link.facebook {
    background: #3b5998;
}

/* Gift Shop */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    border-top: 4px solid var(--soft-purple);
}

.product-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.product-card:hover, .product-card:focus-within {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.product-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.product-content {
    padding: 20px;
}

.product-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.product-price {
    font-weight: 600;
    color: var(--soft-purple);
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

/* Testimonials */
.testimonials {
    background: linear-gradient(135deg, var(--lavender) 0%, var(--light-pink) 100%);
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 20px;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
}

.testimonial-author {
    font-weight: 600;
    color: var(--charcoal);
    font-family: 'Poppins', sans-serif;
}

.testimonial-rating {
    color: var(--gold);
    margin-bottom: 10px;
}

.slider-nav {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: background 0.3s ease;
}

.slider-dot.active {
    background: var(--primary-pink);
}

/* Contact */
.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--charcoal);
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: var(--primary-pink);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.contact-form {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    transition: border 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-pink);
    outline: none;
    box-shadow: 0 0 0 2px rgba(232, 164, 180, 0.2);
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Footer */
footer {
    background: var(--charcoal);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: white;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.footer-links a:hover, .footer-links a:focus {
    color: var(--primary-pink);
}

.footer-social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social-links a:hover, .footer-social-links a:focus {
    background: var(--primary-pink);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #bbb;
    font-size: 0.9rem;
    font-family: 'Poppins', sans-serif;
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Accessibility improvements */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles for better accessibility */
a:focus, button:focus, .btn:focus {
    outline: 2px solid var(--primary-pink);
    outline-offset: 2px;
}

/* Form validation styles */
.form-control.error {
    border-color: #ff6b6b;
}

.error-message {
    color: #ff6b6b;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

.form-control.error + .error-message {
    display: block;
}

.success-message {
    background-color: #d4edda;
    color: #155724;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: none;
}

/* Page specific styles */
.page-hero {
    height: 60vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.3)), url('https://images.unsplash.com/photo-1607778833979-4f77cece7ce7?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
}

.page-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.page-hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--charcoal);
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.about-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.service-detail {
    margin-bottom: 50px;
}

.service-detail h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--charcoal);
}

.service-detail p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.service-features {
    list-style: none;
    margin: 20px 0;
}

.service-features li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    font-family: 'Poppins', sans-serif;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li i {
    color: var(--primary-pink);
    margin-right: 10px;
}

/* Service Product Sections */
.service-product-section {
    margin-bottom: 80px;
    padding: 40px 0;
}

.service-product-section:nth-child(even) {
    background-color: rgba(248, 225, 230, 0.3);
    border-radius: 15px;
}

.service-product-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.service-product-content.reverse {
    direction: rtl;
}

.service-product-content.reverse > * {
    direction: ltr;
}

.service-product-text {
    padding: 20px;
}

.service-product-text h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--charcoal);
}

.service-product-text p {
    margin-bottom: 25px;
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.7;
}

.service-product-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-product-image:hover {
    transform: translateY(-5px);
}

.service-product-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.service-product-image:hover img {
    transform: scale(1.05);
}

/* Service Packages Featured Card */
.service-card.featured {
    border: 2px solid var(--primary-pink);
    position: relative;
    transform: scale(1.05);
}

.service-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-pink);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

/* Responsive Design for Service Product Sections */
@media (max-width: 992px) {
    .service-product-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-product-content.reverse {
        direction: ltr;
    }
    
    .service-product-image {
        order: -1;
    }
    
    .service-product-text h3 {
        font-size: 1.8rem;
    }
    
    .service-product-image img {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .service-product-section {
        margin-bottom: 60px;
        padding: 30px 0;
    }
    
    .service-product-text {
        padding: 15px;
    }
    
    .service-product-text h3 {
        font-size: 1.6rem;
    }
    
    .service-card.featured {
        transform: scale(1);
    }
}





/* TikTok Video Showcase Styles */
.video-showcase {
    margin: 50px 0;
    width: 100%;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.video-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.video-container {
    position: relative;
    width: 100%;
    height: 500px;
    background: #000;
    border-radius: 15px 15px 0 0;
    overflow: hidden;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-content {
    padding: 20px;
}

.video-content h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--charcoal);
}

.video-description {
    color: var(--text-dark);
    line-height: 1.5;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.video-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.video-stats span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.video-cta {
    text-align: center;
    margin-top: 30px;
}

.btn-tiktok {
    background: #000000;
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-tiktok:hover {
    background: #ff0050;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 0, 80, 0.3);
    color: white;
}

/* TikTok Embed Styling */
.tiktok-embed {
    border-radius: 15px 15px 0 0 !important;
    margin: 0 !important;
}

/* Fallback for when TikTok embeds don't load */
.video-fallback {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #ff0050, #00f2ea);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-direction: column;
    text-align: center;
    padding: 20px;
}

.video-fallback i {
    font-size: 3rem;
    margin-bottom: 15px;
}

.video-fallback p {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

/* Manual Video Grid for Backup */
.manual-video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.manual-video-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.manual-video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.manual-video-thumbnail {
    position: relative;
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.manual-video-thumbnail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
}

.manual-video-play {
    position: relative;
    z-index: 2;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff0050;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.manual-video-play:hover {
    transform: scale(1.1);
    background: white;
}

/* Loading State */
.video-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
}

.video-loading i {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--primary-pink);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .video-container {
        height: 400px;
    }
    
    .manual-video-thumbnail {
        height: 300px;
    }
    
    .video-stats {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .video-container {
        height: 350px;
    }
    
    .video-content {
        padding: 15px;
    }
    
    .video-content h4 {
        font-size: 1.1rem;
    }
}

/* TikTok Video Showcase Styles */
.video-showcase {
    margin: 50px 0;
    width: 100%;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.video-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.video-container {
    position: relative;
    width: 100%;
    height: 560px;
    background: #000;
    border-radius: 15px 15px 0 0;
    overflow: hidden;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    background: #000;
}

.video-content {
    padding: 20px;
    background: white;
}

.video-content h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--charcoal);
    font-weight: 600;
}

.video-description {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 1rem;
}

.video-stats {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.video-stats span {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--light-pink);
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 500;
}

.video-cta {
    text-align: center;
    margin-top: 40px;
}

.btn-tiktok {
    background: linear-gradient(45deg, #ff0050, #00f2ea);
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(255, 0, 80, 0.3);
}

.btn-tiktok:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 0, 80, 0.4);
    color: white;
}

/* Video Hover Effects */
.video-card {
    cursor: pointer;
}

.video-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,0,80,0.1), rgba(0,242,234,0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
    border-radius: 15px;
}

.video-card:hover::before {
    opacity: 1;
}

/* Fallback Styles */
.video-fallback {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #ff0050, #00f2ea);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-direction: column;
    text-align: center;
    padding: 40px;
}

.video-fallback i {
    font-size: 3rem;
    margin-bottom: 20px;
}

.video-fallback p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.video-fallback a {
    color: white;
    text-decoration: underline;
    margin-top: 15px;
    font-weight: 500;
}

/* Loading Animation */
.video-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: white;
    flex-direction: column;
}

.video-loading i {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #ff0050;
    animation: spin 1.5s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .video-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .video-container {
        height: 500px;
    }
    
    .video-stats {
        flex-direction: row;
        justify-content: flex-start;
        gap: 15px;
    }
    
    .video-stats span {
        font-size: 0.85rem;
        padding: 5px 10px;
    }
}

@media (max-width: 480px) {
    .video-container {
        height: 450px;
    }
    
    .video-content {
        padding: 15px;
    }
    
    .video-content h4 {
        font-size: 1.2rem;
    }
    
    .video-stats {
        gap: 10px;
    }
    
    .btn-tiktok {
        padding: 14px 28px;
        font-size: 1rem;
    }
}