/* ═══════════════════════════════════════════════════════════════
   CSS VARIABLES & RESET
   ═══════════════════════════════════════════════════════════════ */

:root {
    --bg-dark: #1a1625;
    --bg-darker: #0f0a15;
    --bg-card: #2a2040;
    --primary: #d946ef;
    --primary-light: #e879f9;
    --accent: #a855f7;
    --accent-light: #d8b4fe;
    --text-white: #ffffff;
    --text-light: #e0e0e0;
    --text-gray: #a0a0a0;
    --border: #3a3050;
    --success: #10b981;
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.2);
    --transition: 0.3s ease;
    --radius: 16px;
    --radius-sm: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-light);
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    line-height: 1.6;
    font-size: 16px;
    font-weight: 400;
    min-height: 100vh;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    color: var(--text-white);
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: clamp(40px, 5vw, 64px);
}

h2 {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 16px;
}

h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

p {
    margin-bottom: 16px;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--primary-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ═══════════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════════ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: transparent;
    transition: all var(--transition);
}

.navbar.scrolled {
    background: rgba(15, 10, 21, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.logo {
    display: flex;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
    transition: transform var(--transition);
}

.logo:hover {
    transform: scale(1.05);
}

.logo-four {
    color: var(--text-white);
}

.logo-you {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
    flex: 1;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-light);
    position: relative;
    font-size: 14px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    transition: width var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white !important;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    transition: all var(--transition);
    box-shadow: 0 4px 16px rgba(217, 70, 239, 0.3);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 70, 239, 0.4);
    color: white !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-white);
    transition: all var(--transition);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ═══════════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════════ */

.hero {
    margin-top: 80px;
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.05) 0%, rgba(168, 85, 247, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(217, 70, 239, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    display: flex;
    flex-direction: column;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(217, 70, 239, 0.1);
    border: 1px solid var(--primary);
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    width: fit-content;
    margin-bottom: 24px;
}

.hero h1 {
    line-height: 1.15;
    margin-bottom: 24px;
    font-weight: 800;
    color: var(--text-white);
}

.hero-subtitle {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 16px;
    transition: all var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 4px 16px rgba(217, 70, 239, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(217, 70, 239, 0.4);
    color: white;
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background: rgba(217, 70, 239, 0.1);
    border-color: var(--primary-light);
}

.btn-light {
    background: white;
    color: var(--primary);
    border-color: white;
}

.btn-light:hover {
    background: var(--text-light);
}

.btn-outline-light {
    background: transparent;
    color: white;
    border-color: var(--text-light);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
}

.w-full {
    width: 100%;
}

.btn-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 16px;
    transition: all var(--transition);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.btn-link:hover {
    gap: 12px;
    color: var(--primary-light);
}

.hero-mockup {
    max-width: 100%;
    margin: 0 auto;
}

.hero-mockup img{
    width: 100%;
    height: auto;
    filter: drop-shadow(0 16px 32px rgba(217, 70, 239, 0.2));
}

/* ═══════════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════════ */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    opacity: 0;
    transform: translateY(20px);
}

.fade-up.visible {
    animation: fadeUp 0.6s ease forwards;
}

/* Stagger animation for multiple elements */
.fade-up:nth-child(1).visible { animation-delay: 0s; }
.fade-up:nth-child(2).visible { animation-delay: 0.1s; }
.fade-up:nth-child(3).visible { animation-delay: 0.2s; }
.fade-up:nth-child(4).visible { animation-delay: 0.3s; }
.fade-up:nth-child(5).visible { animation-delay: 0.2s; }
.fade-up:nth-child(6).visible { animation-delay: 0.4s; }
.fade-up:nth-child(7).visible { animation-delay: 0.6s; }

/* ═══════════════════════════════════════════════════════════════
   TRUST BADGES SECTION
   ═══════════════════════════════════════════════════════════════ */

.trust-badges {
    border-top: 1px solid var(--border);
    background: rgba(217, 70, 239, 0.03);
    padding: 60px 0;
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.badge-item {
    text-align: center;
    padding: 20px;
    background: rgba(42, 32, 64, 0.5);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.badge-item:hover {
    border-color: var(--primary);
    background: rgba(217, 70, 239, 0.1);
    transform: translateY(-4px);
}

.badge-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.badge-stat {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.badge-label {
    font-size: 14px;
    color: var(--text-gray);
}

/* ═══════════════════════════════════════════════════════════════
   SECTION HEADER
   ═══════════════════════════════════════════════════════════════ */

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 16px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════════
   SERVICES SECTION
   ═══════════════════════════════════════════════════════════════ */

.services {
    padding: 80px 0;
    background: transparent;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
}

.service-card {
    background: rgba(42, 32, 64, 0.6);
    border: 1px solid var(--border);
    padding: 32px;
    border-radius: var(--radius);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.service-card:hover {
    box-shadow: 0 8px 32px rgba(217, 70, 239, 0.15);
    transform: translateY(-4px);
    border-color: var(--primary);
}

.service-card.featured {
    border: 2px solid var(--primary);
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
    box-shadow: 0 8px 32px rgba(217, 70, 239, 0.2);
}

.service-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.service-card h3 {
    margin-bottom: 12px;
}

.service-card p {
    flex-grow: 1;
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.link-arrow {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    transition: gap var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.link-arrow:hover {
    gap: 10px;
    color: var(--primary-light);
}

/* ═══════════════════════════════════════════════════════════════
   PORTFOLIO SECTION
   ═══════════════════════════════════════════════════════════════ */

.portfolio {
    padding: 80px 0;
    background: rgba(217, 70, 239, 0.02);
}

.portfolio-subtitle {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 40px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.portfolio-card {
    border-radius: var(--radius);
    overflow: hidden;
    background: rgba(42, 32, 64, 0.6);
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
}

.portfolio-card:hover {
    box-shadow: 0 12px 40px rgba(217, 70, 239, 0.25);
    transform: translateY(-8px);
    border-color: var(--primary);
}

.portfolio-mockup {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
}

.portfolio-mockup img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.portfolio-card:hover .portfolio-mockup img {
    transform: scale(1.05);
}

.portfolio-info {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.portfolio-info h3 {
    margin-bottom: 8px;
    font-size: 18px;
}

.project-category {
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 16px;
}

/* Before/After Section */
.before-after-container {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: var(--bg-dark);
    display: flex;
}

.before-side,
.after-side {
    position: relative;
    flex: 1;
    overflow: hidden;
}

.before-side img,
.after-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.before-side::after,
.after-side::after {
    content: attr(data-label);
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
}

.before-label::after,
.after-label::after {
    content: attr(data-label);
}

.before-label::after {
    content: 'BEFORE';
}

.after-label::after {
    content: 'AFTER';
}

/* ═══════════════════════════════════════════════════════════════
   HOW IT WORKS SECTION
   ═══════════════════════════════════════════════════════════════ */

.how-it-works {
    padding: 80px 0;
    background: transparent;
}

.steps-timeline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    position: relative;
}

.step {
    flex: 1;
    background: rgba(42, 32, 64, 0.6);
    border: 1px solid var(--border);
    padding: 32px;
    border-radius: var(--radius);
    text-align: center;
    position: relative;
    z-index: 1;
    transition: all var(--transition);
    backdrop-filter: blur(10px);
}

.step:hover {
    background: rgba(217, 70, 239, 0.1);
    border-color: var(--primary);
    transform: translateY(-4px);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 16px;
    box-shadow: 0 4px 16px rgba(217, 70, 239, 0.3);
}

.step h3 {
    margin-bottom: 12px;
}

.step p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.step-icon {
    font-size: 32px;
    margin-top: 16px;
}

.step-connector {
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    position: relative;
    z-index: 0;
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════
   PRICING SECTION
   ═══════════════════════════════════════════════════════════════ */

.pricing {
    padding: 80px 0;
    background: var(--bg-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 40px;
}

.pricing-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    padding: 40px;
    border-radius: var(--radius);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.pricing-card.popular {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.05) 0%, rgba(124, 58, 237, 0.05) 100%);
    box-shadow: 0 8px 32px rgba(79, 70, 229, 0.15);
    transform: scale(1.02);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.pricing-header h3 {
    margin-bottom: 8px;
}

.price {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.price-description {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 24px;
}

.price-features {
    list-style: none;
    margin-bottom: 32px;
    flex-grow: 1;
}

.price-features li {
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-gray);
    border-bottom: 1px solid var(--border);
}

.price-features li:last-child {
    border-bottom: none;
}

.pricing-note {
    text-align: center;
    padding: 24px;
    background: white;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.pricing-note p {
    margin: 0;
}

/* ═══════════════════════════════════════════════════════════════
   TESTIMONIALS SECTION
   ═══════════════════════════════════════════════════════════════ */

.testimonials {
    padding: 80px 0;
    background: rgba(217, 70, 239, 0.02);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background: rgba(42, 32, 64, 0.6);
    border: 1px solid var(--border);
    padding: 32px;
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
    transition: all var(--transition);
    backdrop-filter: blur(10px);
}

.testimonial-card:hover {
    box-shadow: 0 8px 24px rgba(217, 70, 239, 0.2);
    transform: translateY(-4px);
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: var(--text-light);
    font-style: italic;
}

.testimonial-rating {
    color: #fbbf24;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    color: var(--text-white);
    margin-bottom: 4px;
}

.testimonial-author span {
    font-size: 13px;
    color: var(--text-gray);
}

/* ═══════════════════════════════════════════════════════════════
   FAQ SECTION
   ═══════════════════════════════════════════════════════════════ */

.faq {
    padding: 80px 0;
    background: transparent;
}

.faq-items {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: rgba(42, 32, 64, 0.6);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all var(--transition);
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-question {
    width: 100%;
    padding: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-white);
    transition: all var(--transition);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-toggle {
    font-size: 24px;
    color: var(--primary);
    transition: transform var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all var(--transition);
    color: var(--text-light);
}

.faq-item.active .faq-answer {
    padding: 0 24px 24px 24px;
    max-height: 500px;
}

.faq-answer p {
    margin: 0;
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════════════════════ */

.cta-section {
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.2) 0%, rgba(168, 85, 247, 0.2) 100%);
    border: 1px solid var(--primary);
    color: white;
    padding: 80px 0;
    text-align: center;
    border-radius: var(--radius);
    margin-bottom: 60px;
}

.cta-content h2 {
    color: var(--text-white);
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-light);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT FORM SECTION
   ═══════════════════════════════════════════════════════════════ */

.contact-form-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(217, 70, 239, 0.1) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full {
    grid-column: 1 / -1;
}

.contact-form label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-white);
    text-transform: capitalize;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-white);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: all var(--transition);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-gray);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(217, 70, 239, 0.2);
}

.contact-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23a0a0a0' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form button {
    align-self: flex-start;
    margin-top: 12px;
}

.form-message {
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    text-align: center;
    font-size: 14px;
    animation: slideIn 0.3s ease;
}

.form-message.success {
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid var(--success);
    color: #10b981;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid #ef4444;
    color: #ef4444;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */

.footer {
    background: rgba(0, 0, 0, 0.4);
    color: var(--text-light);
    padding: 60px 0 0;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--text-white);
    margin-bottom: 20px;
    font-size: 16px;
}

.footer-col a {
    color: var(--text-gray);
    font-size: 14px;
    transition: color var(--transition);
}

.footer-col a:hover {
    color: var(--primary);
}

.footer-logo {
    display: flex;
    gap: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 12px;
}

.footer-logo .logo-you {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-col > p {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 16px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(217, 70, 239, 0.2);
    border: 1px solid var(--primary);
    border-radius: 50%;
    color: var(--primary);
    transition: all var(--transition);
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    transform: translateY(-2px);
    border-color: var(--primary);
}

.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid var(--border);
    text-align: center;
    font-size: 14px;
    color: var(--text-gray);
}

/* ═══════════════════════════════════════════════════════════════
   STICKY WHATSAPP BUTTON
   ═══════════════════════════════════════════════════════════════ */

.whatsapp-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4);
    transition: all var(--transition);
    z-index: 999;
    animation: pulse 2s infinite;
}

.whatsapp-btn svg {
    width: 28px;
    height: 28px;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 28px rgba(16, 185, 129, 0.6);
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4), 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    50% {
        box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4), 0 0 0 10px rgba(16, 185, 129, 0);
    }
    100% {
        box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4), 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE DESIGN
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .steps-timeline {
        flex-direction: column;
        gap: 0;
    }

    .step-connector {
        width: 2px;
        height: 32px;
        transform: rotate(0deg);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .navbar {
        padding: 12px 0;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: rgba(26, 22, 37, 0.95);
        backdrop-filter: blur(10px);
        box-shadow: var(--shadow);
        padding: 16px;
        border-radius: 0 0 12px 12px;
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 12px 16px;
        display: block;
        color: var(--text-light);
    }

    .hamburger {
        display: flex;
    }

    .nav-cta {
        display: none;
    }

    .hero {
        padding: 60px 0;
        margin-top: 60px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .badge {
        flex-direction: column;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .services-grid,
    .portfolio-grid,
    .pricing-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .hero-buttons {
        gap: 16px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .badges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    h2 {
        font-size: 28px;
    }

    .trust-badges,
    .services,
    .portfolio,
    .how-it-works,
    .pricing,
    .testimonials,
    .faq,
    .cta-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 24px !important;
    }

    h2 {
        font-size: 24px;
    }

    h3 {
        font-size: 18px;
    }

    .hero {
        margin-top: 70px;
        padding: 40px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .service-card,
    .pricing-card,
    .testimonial-card,
    .portfolio-card {
        padding: 20px;
    }

    .price {
        font-size: 28px;
    }

    .badge-item {
        padding: 16px;
    }

    .step {
        padding: 20px;
    }

    .faq-question {
        padding: 16px;
        font-size: 14px;
    }

    .whatsapp-btn {
        width: 48px;
        height: 48px;
        bottom: 16px;
        right: 16px;
    }

    .whatsapp-btn svg {
        width: 24px;
        height: 24px;
    }

    .logo {
        font-size: 20px;
    }

    .nav-links {
        padding: 12px;
    }

    .cta-section {
        padding: 40px 0;
    }

    .cta-section h2 {
        font-size: 24px;
    }

    .cta-section p {
        font-size: 16px;
    }

    .logo-carousel {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .logo-item {
        font-size: 32px;
        padding: 16px;
    }

    .badges-grid-footer {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-badge {
        padding: 16px;
    }

    .badge-icon {
        font-size: 28px;
    }

    .badge-text {
        font-size: 12px;
    }
}
