/* ============================================
   RESET & VARIABLES
   ============================================ */

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

:root {
    /* Paleta Moderno com Personalidade */
    --primary-color: #FF1493;       /* Rosa vibrante — cor identidade */
    --primary-dark: #CC0070;        /* Rosa escuro — hover */
    --primary-light: #FFE4F0;       /* Rosa suave — backgrounds de cards */
    --primary-subtle: #FFF5F9;      /* Rosa quase imperceptível — seções alt */

    --text-dark: #2C2C2C;
    --text-light: #666666;
    --text-muted: #999999;

    --bg-white: #FAFAF8;            /* Off-white quente */
    --bg-light: #FFF5F9;            /* Rosa suave para seções alternadas */
    --bg-lighter: #F5F0F2;          /* Bege rosado */

    --border-color: #F0E8ED;        /* Rosado muito claro */
    --border-light: #F5EEF2;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.15);

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease-out;
    --transition-slow: all 0.5s cubic-bezier(0.2, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-white);
    background: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Lora', Georgia, serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

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

a:hover {
    color: var(--primary-dark);
}

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

/* ============================================
   BUTTONS & FORMS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 20, 147, 0.25);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
    box-shadow: 0 4px 12px rgba(255, 20, 147, 0.15);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 16px;
    width: 100%;
    display: block;
    text-align: center;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 13px;
}

/* ============================================
   FORMS
   ============================================ */

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group select {
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: var(--transition-fast);
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.form-group input::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 20, 147, 0.1);
}

/* ============================================
   MODAL
   ============================================ */

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    animation: slideUp 0.3s ease-out;
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition-fast);
}

.modal-close:hover {
    color: var(--text-dark);
}

.modal-content h2 {
    font-size: 1.8rem;
    margin-bottom: 8px;
    text-align: left;
}

.modal-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    text-align: left;
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    background: var(--bg-white);
    border-bottom: 2px solid var(--primary-color);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: var(--transition-fast);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    font-family: 'Lora', serif;
    text-decoration: none;
}

.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    color: var(--text-dark);
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition-fast);
}

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

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 5px 0;
    transition: var(--transition-fast);
    border-radius: 2px;
}

/* ============================================
   HERO SECTION - Full Screen
   ============================================ */

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    display: block;
}

@media (max-width: 768px) {
    .hero-bg img {
        object-position: center 30%;
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.15) 0%,
        rgba(0, 0, 0, 0.55) 60%,
        rgba(0, 0, 0, 0.75) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 7px 20px;
    border-radius: 20px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(4px);
}

.hero-title {
    font-family: 'Lora', Georgia, serif;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.hero-title span {
    color: var(--primary-color);
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    line-height: 1.8;
    font-weight: 300;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    background: var(--primary-color);
    color: #ffffff;
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    letter-spacing: 0.5px;
}

.btn-hero-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 20, 147, 0.4);
    color: #ffffff;
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    letter-spacing: 0.5px;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
    color: #ffffff;
    transform: translateY(-2px);
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255, 255, 255, 0.7);
    font-size: 20px;
    animation: bounce 2s infinite;
}

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

/* ============================================
   SECTIONS
   ============================================ */

.section {
    padding: 80px 20px;
}

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

/* About Section */
.about-section {
    background-color: var(--bg-light);
}

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

.about-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    width: 100%;
}

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

.credentials {
    list-style: none;
    margin-top: 30px;
}

.credentials li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--text-light);
}

.credentials i {
    color: var(--primary-color);
    font-size: 18px;
}

.about-contact a,
.about-contact .btn-link {
    color: var(--primary-color);
}

.about-contact a:hover,
.about-contact .btn-link:hover {
    color: var(--primary-dark);
}

/* Services Section */
.services-section {
    background-color: var(--bg-white);
}

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

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background: var(--bg-white);
    padding: 45px 35px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid var(--border-light);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 30px;
    right: 30px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 20, 147, 0.15);
}

.service-card:hover::after {
    transform: scaleX(1);
}

/* Base do ícone de serviço */
.service-icon {
    margin: 0 auto 24px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

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

/* Variante A: ícone com borda circular rosa — minimalista */
.icon-style-a {
    width: 72px;
    height: 72px;
    font-size: 30px;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
}

/* Variante B: ícone em círculo preenchido rosa suave */
.icon-style-b {
    width: 72px;
    height: 72px;
    font-size: 28px;
    color: var(--primary-color);
    background: var(--primary-light);
    border-radius: 50%;
}

/* Variante C: ícone grande sem fundo */
.icon-style-c {
    width: 72px;
    height: 72px;
    font-size: 48px;
    color: var(--primary-color);
}

.service-card h3 {
    font-family: 'Georgia', serif;
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 700;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 28px;
    line-height: 1.8;
    font-size: 0.98rem;
}

/* Transformations Section */
.transformations-section {
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-lighter) 100%);
    padding: 80px 20px;
}

.transformations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.transformation-card {
    background-color: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.transformation-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-bottom: 4px solid var(--primary-color);
}

.transformation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.transformation-card:hover .transformation-image img {
    transform: scale(1.05);
}

.transformation-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.transformation-category {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.transformation-card h3 {
    font-size: 1.6rem;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.transformation-quote {
    font-family: 'Georgia', serif;
    font-size: 0.95rem;
    font-style: italic;
    color: var(--primary-color);
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--bg-lighter);
}

.transformation-text {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
    flex-grow: 1;
}

.transformation-colors {
    display: flex;
    gap: 12px;
    margin-top: auto;
}

.color-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.transformation-card:hover .color-dot {
    transform: scale(1.1);
}

/* Portfolio Section */
.portfolio-section {
    background-color: var(--bg-light);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.portfolio-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    cursor: pointer;
    aspect-ratio: 1;
    group: 'portfolio';
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(61, 61, 61, 0.85) 0%, rgba(92, 92, 92, 0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    color: var(--bg-white);
    opacity: 0;
    transition: var(--transition);
}

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

.portfolio-item:hover img {
    transform: scale(1.08);
    filter: brightness(0.9);
}

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

.portfolio-overlay h3 {
    color: var(--bg-white);
    font-family: 'Georgia', serif;
    font-size: 1.4rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.portfolio-overlay p {
    color: var(--primary-light);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.portfolio-cta {
    text-align: center;
    margin-top: 50px;
}

.portfolio-cta p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--bg-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border-left: 5px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    font-size: 80px;
    color: var(--primary-color);
    opacity: 0.1;
    top: -20px;
    right: 20px;
    font-family: 'Georgia', serif;
}

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

.stars {
    color: #F4B83E;
    margin-bottom: 20px;
    font-size: 18px;
    letter-spacing: 2px;
}

.testimonial-text {
    color: var(--text-dark);
    margin-bottom: 25px;
    font-style: italic;
    line-height: 1.9;
    font-size: 1.05rem;
}

.testimonial-name {
    font-family: 'Georgia', serif;
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-weight: 700;
    color: var(--text-dark);
}

.testimonial-service {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* How It Works Section */
.how-it-works {
    background-color: var(--bg-light);
}

.steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 30px;
    align-items: center;
    margin-top: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.step {
    text-align: center;
    padding: 30px;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    margin-bottom: 10px;
}

.step p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.step-arrow {
    display: flex;
    justify-content: center;
    color: var(--primary-color);
    font-size: 24px;
}

/* Blog Section */
.blog-section {
    background-color: var(--bg-white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.blog-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    background: var(--bg-light);
}

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

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.blog-card:hover img {
    transform: scale(1.05);
}

.blog-content {
    padding: 25px;
}

.blog-category {
    display: inline-block;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 12px;
}

.blog-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.blog-card h3 a {
    color: var(--text-dark);
    transition: var(--transition-fast);
}

.blog-card h3 a:hover {
    color: var(--primary-color);
}

.blog-card p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition-fast);
}

.read-more:hover {
    color: var(--primary-dark);
}

.blog-cta {
    text-align: center;
    margin-top: 40px;
}

/* CTA Final Section */
.cta-final {
    background: var(--bg-gradient);
    color: var(--bg-white);
    text-align: center;
    padding: 80px 20px;
}

.cta-final h2 {
    color: var(--bg-white);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-final p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-final .btn-primary {
    background-color: var(--bg-white);
    color: var(--primary-color);
}

.cta-final .btn-primary:hover {
    background-color: var(--bg-light);
}


/* ============================================
   ANIMATIONS
   ============================================ */

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

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

/* ============================================
   UTILITIES
   ============================================ */

.hidden {
    display: none !important;
}

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

.mt-20 {
    margin-top: 20px;
}

.mt-40 {
    margin-top: 40px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}

/* ============================================
   VIDEO SECTION
   ============================================ */

.video-section {
    background: linear-gradient(135deg, #FFFFFF 0%, rgba(255, 20, 147, 0.05) 100%);
}

.video-container {
    margin: 40px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.video-player {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 12px;
}

.video-description {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-top: 30px;
    font-style: italic;
    opacity: 0.9;
}

/* ============================================
   FOOTER ENHANCED
   ============================================ */

.footer {
    background: #111111;
    color: #ffffff;
    padding: 70px 20px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
    align-items: start;
}

.footer-logo {
    height: 52px;
    width: auto;
    object-fit: contain;
    margin-bottom: 20px;
    display: block;
}

.footer-tagline {
    color: #888888;
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a,
.footer-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 50%;
    background: #2a2a2a;
    border: 1px solid #333333;
    color: #cccccc !important;
    font-size: 0;
    line-height: 0;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    cursor: pointer;
}

.footer-social a:hover,
.footer-social-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff !important;
}

.footer-social a svg,
.footer-social-btn svg {
    display: block;
    flex-shrink: 0;
}

.btn-link {
    background: none;
    border: none;
    padding: 0;
    color: inherit;
    font: inherit;
    cursor: pointer;
    text-decoration: underline;
    text-align: left;
}

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.footer-section p,
.footer-section a,
.footer-section .btn-link {
    color: #888888;
    font-size: 0.9rem;
    line-height: 1;
    margin: 0 0 14px 0;
}

.footer-section a,
.footer-section .btn-link {
    display: block;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-section a:hover,
.footer-section .btn-link:hover {
    color: var(--primary-color);
}

.footer-section i {
    margin-right: 8px;
    color: var(--primary-color);
    font-size: 0.85rem;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid #222222;
    padding-top: 28px;
    text-align: center;
    color: #444444;
    font-size: 0.82rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.flabs-credit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.flabs-credit:hover {
    opacity: 1;
}

.flabs-credit span {
    font-size: 0.75rem;
    color: #fff;
    white-space: nowrap;
}

.flabs-credit img {
    display: block;
    height: 42px;
    width: auto;
    filter: brightness(0) invert(1);
}

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

    .footer {
        padding: 50px 20px 24px;
    }

    .footer-logo {
        height: 44px;
    }
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
    background-color: var(--bg-white);
}

.contact-card {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-white);
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.contact-items {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 50px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.contact-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 14px;
    transition: var(--transition);
}

.contact-item:hover .contact-icon {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

.contact-item-text h3 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dark);
    margin-bottom: 6px;
    font-family: 'Poppins', sans-serif;
}

.contact-item-text a,
.contact-item-text span,
.contact-item-text .btn-link {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 4px;
    text-decoration: none;
}

.contact-item-text a:hover,
.contact-item-text .btn-link:hover {
    color: var(--primary-dark);
}

.contact-item-text p {
    color: var(--text-muted);
    font-size: 0.82rem;
    margin: 0;
}

.contact-divider {
    width: 1px;
    height: 80px;
    background: var(--border-color);
    flex-shrink: 0;
    margin: 0 10px;
}

.contact-cta {
    background: var(--primary-light);
    padding: 28px 50px;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.contact-cta .btn-lg {
    width: auto;
    display: inline-flex;
    padding: 16px 48px;
    font-size: 16px;
}

/* ============================================
   STATS SECTION
   ============================================ */

.stats-section {
    background: var(--primary-color);
    padding: 50px 20px;
}

.stats-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

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

.stat-value {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}

.stat-number {
    font-family: 'Lora', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.stat-suffix {
    font-family: 'Lora', serif;
    font-size: 2rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
}

.stat-label {
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 8px;
}

.stat-text {
    font-family: 'Lora', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials-section {
    background: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin-top: 50px;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 36px 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(255, 20, 147, 0.1);
}

.testimonial-quote {
    font-size: 28px;
    color: var(--primary-color);
    opacity: 0.4;
    line-height: 1;
}

.testimonial-card p {
    font-size: 0.98rem;
    color: var(--text-light);
    line-height: 1.8;
    font-style: italic;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
}

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

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

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================
   FADE-IN SCROLL ANIMATION
   ============================================ */

.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.2s; }
.fade-in:nth-child(4) { transition-delay: 0.3s; }
