/* ===================================
   Reset & Base Styles
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a202c;
    background-color: #fff;
}

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

section {
    scroll-margin-top: 80px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

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

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(10px);
    }
    60% {
        transform: translateY(5px);
    }
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

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

.btn--primary {
    background: linear-gradient(135deg, #ec4899, #f472b6, #db2777);
    color: #fff;
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.3);
}

.btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(236, 72, 153, 0.4);
}

.btn--secondary {
    background: rgba(255, 255, 255, 0.9);
    color: #1f2937;
    border: 2px solid rgba(236, 72, 153, 0.3);
    backdrop-filter: blur(10px);
}

.btn--secondary:hover {
    background: rgba(236, 72, 153, 0.1);
    border-color: rgba(236, 72, 153, 0.5);
    color: #ec4899;
    transform: translateY(-2px);
}

.btn--full {
    width: 100%;
    justify-content: center;
}

.btn__icon {
    transition: transform 0.3s ease;
}

.btn--primary:hover .btn__icon {
    transform: translateX(5px);
}

/* ===================================
   Section Headers
   =================================== */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1.5rem;
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.6), rgba(244, 114, 182, 0.6), rgba(219, 39, 119, 0.6));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
}

/* ===================================
   Header
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header--scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.header--scrolled .nav-link {
    color: #1a202c;
}

.header--scrolled .logo-text {
    color: #374151;
}

.header--scrolled .nav-link:hover {
    color: #ec4899;
    background: rgba(236, 72, 153, 0.1);
}

.header__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.header__logo .logo-wrapper {
    cursor: pointer;
    margin: 0;
}

.logo-text {
    font-size: 2.2rem;
    font-weight: 800;
    color: #374151;
    transition: all 0.3s ease;
    display: inline-block;
}

.header__nav {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    color: #1f2937;
    cursor: pointer;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.nav-link:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #ff6b6b, #ff9ff3);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover {
    color: #ec4899;
    background: none;
}

.nav-link:hover:before {
    width: 80%;
}

.header__mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.header__mobile-toggle span {
    width: 28px;
    height: 3px;
    background: #1a202c;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.header__mobile-toggle:hover span {
    background: #ec4899;
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 100px;
}

.hero__background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #f9fafb, #f3f4f6, #e5e7eb, #f8fafc, #f1f5f9);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1), rgba(156, 163, 175, 0.05), rgba(244, 114, 182, 0.08));
}

.hero__particles {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    animation: float 20s ease-in-out infinite;
}

.hero__content {
    position: relative;
    z-index: 2;
    color: #1f2937;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.hero__badge {
    display: inline-block;
    background: rgba(236, 72, 153, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(236, 72, 153, 0.2);
    border-radius: 50px;
    padding: 0.75rem 2rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease-out;
}

.hero__badge-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: #ec4899;
}

.hero__title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.1;
    color: #1f2937;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero__title-highlight {
    color: #6b7280;
    position: relative;
    display: inline-block;
}

.hero__title-highlight:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 4px;
    background: #9ca3af;
    border-radius: 2px;
    opacity: 0.7;
}

.hero__subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: #4b5563;
    opacity: 0.9;
    font-weight: 400;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero__stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero__stat {
    text-align: center;
}

.hero__stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
    color: #4b5563;
}

.hero__stat-label {
    font-size: 0.9rem;
    color: #6b7280;
    opacity: 0.9;
    font-weight: 500;
}

.hero__buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.hero__btn-primary {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 16px 32px;
    font-size: 1.1rem;
}

.hero__btn-secondary {
    font-size: 1.1rem;
    padding: 16px 32px;
}

.hero__features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 1s both;
}

.hero__feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(236, 72, 153, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(236, 72, 153, 0.15);
    border-radius: 16px;
    padding: 1.25rem 2rem;
    transition: all 0.3s ease;
}

.hero__feature:hover {
    background: rgba(236, 72, 153, 0.12);
    transform: translateY(-3px);
}

.hero__feature-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.hero__feature-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hero__feature-title {
    font-weight: 600;
    font-size: 1rem;
    color: #1f2937;
}

.hero__feature-desc {
    font-size: 0.85rem;
    color: #6b7280;
    opacity: 0.9;
}

.hero__scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: #6b7280;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    z-index: 3;
    animation: fadeInUp 0.8s ease-out 1.2s both;
}

.hero__scroll-indicator:hover {
    opacity: 1;
}

.hero__scroll-indicator svg,
.hero__scroll-arrow {
    width: 20px;
    height: 20px;
    animation: bounce 2s infinite;
}

.hero__scroll-indicator span {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===================================
   Services Section
   =================================== */
.services {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f9fafb, #fff, #f3f4f6);
    position: relative;
}

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

.service-card {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    min-height: 320px;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.12);
}

.service-card__header {
    position: relative;
    padding: 2rem 2rem 1rem;
    text-align: center;
}

.service-card__gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    border-radius: 24px 24px 0 0;
    opacity: 0.8;
}

.service-card__icon {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

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

.service-card__content {
    padding: 0 2rem 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card__title {
    font-size: 1.4rem;
    color: #1a202c;
    margin-bottom: 1rem;
    font-weight: 700;
    text-align: center;
}

.service-card__description {
    color: #64748b;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
}

.service-card__features {
    list-style: none;
    margin-top: auto;
}

.service-card__features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.6rem;
    color: #475569;
    font-weight: 500;
    font-size: 0.9rem;
}

.check-icon {
    color: #ec4899;
    font-weight: 700;
    background: rgba(236, 72, 153, 0.1);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}

/* Gradient backgrounds for service cards */
.bg-gradient-pink {
    background: linear-gradient(135deg, #f9a8d4, #f472b6);
}

.bg-gradient-gray {
    background: linear-gradient(135deg, #d1d5db, #9ca3af);
}

.bg-gradient-pink-light {
    background: linear-gradient(135deg, #fbcfe8, #f9a8d4);
}

.bg-gradient-gray-light {
    background: linear-gradient(135deg, #e5e7eb, #d1d5db);
}

.bg-gradient-pink-dark {
    background: linear-gradient(135deg, #be185d, #ec4899);
}

.bg-gradient-gray-dark {
    background: linear-gradient(135deg, #374151, #6b7280);
}

.services__cta {
    text-align: center;
    background: #fff;
    padding: 4rem 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 2;
    border: 1px solid rgba(236, 72, 153, 0.1);
    overflow: hidden;
}

.services__cta:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #ec4899, #f472b6, #db2777);
    border-radius: 20px 20px 0 0;
}

.services__cta p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #2d3748;
    font-weight: 600;
}

/* ===================================
   About Section
   =================================== */
.about {
    padding: 8rem 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.about:before {
    content: '';
    position: absolute;
    top: 0;
    right: -50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.03), rgba(156, 163, 175, 0.03), rgba(244, 114, 182, 0.03));
    border-radius: 50%;
    z-index: 1;
}

.about__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about__text {
    padding-right: 2rem;
}

.about__description p {
    font-size: 1.15rem;
    color: #4a5568;
    margin-bottom: 1.8rem;
    line-height: 1.8;
}

.about__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.stat {
    text-align: center;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.02), rgba(244, 114, 182, 0.02));
    border-radius: 20px;
    border: 1px solid rgba(236, 72, 153, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.3), rgba(244, 114, 182, 0.3), rgba(219, 39, 119, 0.3));
}

.stat:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(236, 72, 153, 0.08);
}

.stat__icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.stat__number {
    font-size: 3.2rem;
    font-weight: 800;
    color: #4b5563;
    margin-bottom: 0.75rem;
    line-height: 1;
}

.stat__label {
    color: #4a5568;
    font-size: 1.05rem;
    font-weight: 600;
}

.about__values {
    position: relative;
}

.about__values h3 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a202c;
    font-weight: 700;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.value-card {
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.02), rgba(244, 114, 182, 0.02));
    border-radius: 20px;
    border: 1px solid rgba(236, 72, 153, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.value-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.4), rgba(244, 114, 182, 0.4), rgba(219, 39, 119, 0.4));
}

.value-card:hover {
    transform: translateX(8px);
    box-shadow: 0 15px 40px rgba(236, 72, 153, 0.08);
}

.value-card__header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.value-card__icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.value-card__title-section {
    flex-grow: 1;
}

.value-card__title {
    font-size: 1.4rem;
    color: #1a202c;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.value-card__highlight {
    display: inline-block;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.8), rgba(244, 114, 182, 0.8));
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.value-card__description {
    color: #4a5568;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* ===================================
   FAQ Section
   =================================== */
.faq {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f9fafb, #ffffff, #f3f4f6);
    position: relative;
    overflow: hidden;
}

.faq:before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f472b6' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='3'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

.faq .container {
    position: relative;
    z-index: 2;
}

.faq__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.faq-item {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(236, 72, 153, 0.12);
    box-shadow: 0 12px 40px rgba(236, 72, 153, 0.08);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.35), rgba(244, 114, 182, 0.35), rgba(219, 39, 119, 0.35));
}

.faq-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 50px rgba(236, 72, 153, 0.12);
}

.faq-item__toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    text-align: left;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a202c;
    transition: color 0.3s ease;
}

.faq-item__toggle:hover,
.faq-item__toggle:focus {
    color: #db2777;
}

.faq-item__toggle:focus-visible {
    outline: 3px solid rgba(236, 72, 153, 0.35);
    outline-offset: 6px;
}

.faq-item__title {
    flex: 1;
    display: block;
}

.faq-item__icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ec4899, #f472b6, #db2777);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.3s ease, background 0.3s ease;
}

.faq-item__icon::before {
    content: '+';
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1;
}

.faq-item--open .faq-item__icon {
    transform: none;
    background: linear-gradient(135deg, #db2777, #ec4899);
}

.faq-item--open .faq-item__icon::before {
    content: '−';
}

.faq-item__content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding-top: 0;
    transition: max-height 0.35s ease, opacity 0.35s ease, padding-top 0.35s ease;
}

.faq-item--open .faq-item__content {
    opacity: 1;
    padding-top: 1.25rem;
}

.faq-item__answer {
    color: #4a5568;
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0;
}

/* ===================================
   Contact Section
   =================================== */
.contact {
    padding: 8rem 0;
    background: linear-gradient(135deg, #fefefe, #f9fafb, #fff);
    position: relative;
}

.contact:before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ff9ff3' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.contact__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
    position: relative;
    z-index: 2;
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    padding: 2.5rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 107, 107, 0.1);
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
}

.contact-item__icon {
    font-size: 2rem;
    width: 50px;
    text-align: center;
    color: #ff6b6b;
}

.contact-item__content h3 {
    color: #1a202c;
    margin-bottom: 0.75rem;
    font-weight: 700;
    font-size: 1.2rem;
}

.contact-item__content p {
    color: #4a5568;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.contact__form {
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(236, 72, 153, 0.1);
    position: relative;
    overflow: hidden;
}

.contact__form:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #ec4899, #f472b6, #db2777);
    border-radius: 20px 20px 0 0;
}

.form-group {
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    color: #1a202c;
    font-weight: 600;
    font-size: 1.05rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #f8fafc;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ec4899;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #e53e3e;
    background: rgba(229, 62, 62, 0.05);
}

.error-message {
    color: #e53e3e;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: block;
    font-weight: 500;
}

.form-error {
    padding: 1rem;
    background: #fee;
    border: 1px solid #fcc;
    border-radius: 0.5rem;
    color: #e53e3e;
    margin-bottom: 1rem;
}

.form-note {
    font-size: 0.9rem;
    color: #4a5568;
    text-align: center;
    margin-top: 1.5rem;
    line-height: 1.6;
}

.contact__success {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 5rem 3rem;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid rgba(236, 72, 153, 0.1);
    position: relative;
    overflow: hidden;
}

.contact__success:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #ec4899, #f472b6, #db2777);
    border-radius: 20px 20px 0 0;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #ec4899, #f472b6, #db2777);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 2.5rem;
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.3);
}

.contact__success h2 {
    color: #1a202c;
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-size: 2rem;
}

.contact__success p {
    color: #4a5568;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: linear-gradient(135deg, #1f2937, #374151, #4b5563);
    color: #fff;
    padding: 4rem 0 0;
    position: relative;
}

.footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 107, 107, 0.3) 50%, transparent 100%);
}

.footer__main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer__brand {
    max-width: 350px;
}

.footer__title {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 800;
    color: #9ca3af;
}

.footer__description {
    color: #94a3b8;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

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

.footer__nav-group h4 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer__nav-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer__nav-group a,
.footer__nav-group span {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    font-weight: 400;
}

.footer__nav-group a:hover {
    color: #ec4899;
}

.footer__location {
    color: #64748b;
    font-size: 0.95rem;
}

.footer__bottom {
    border-top: 1px solid #1e293b;
    padding: 2rem 0;
}

.footer__bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer__copyright {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
}

.footer__social {
    display: flex;
    gap: 1rem;
}

.footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #1e293b;
    border-radius: 10px;
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #334155;
}

.footer__social-link:hover {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1), rgba(244, 114, 182, 0.1));
    color: #ec4899;
    border-color: rgba(236, 72, 153, 0.3);
    transform: translateY(-2px);
}

.footer__legal {
    display: flex;
    gap: 2rem;
}

.footer__legal a {
    color: #64748b;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer__legal a:hover {
    color: #ec4899;
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1024px) {
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .faq__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about__content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .about__text {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .services__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .faq {
        padding: 6rem 0;
    }

    .faq-item {
        padding: 2rem;
    }
    
    .header__nav {
        display: none;
    }
    
    .header__nav--open {
        display: flex !important;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        padding: 2rem;
        gap: 0.5rem;
        border-radius: 0 0 20px 20px;
        z-index: 999;
    }
    
    .header__nav--open .nav-link {
        color: #1a202c;
        padding: 1rem 1.5rem;
        border-radius: 12px;
        width: 100%;
        text-align: left;
    }
    
    .header__nav--open .nav-link:hover {
        background: rgba(236, 72, 153, 0.1);
        color: #ec4899;
    }
    
    .header__mobile-toggle {
        display: flex;
    }
    
    .hero {
        min-height: 100vh;
        padding: 6rem 0 8rem;
    }
    
    .hero__title {
        font-size: 2.8rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }
    
    .hero__subtitle {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }
    
    .hero__stats {
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }
    
    .hero__stat-number {
        font-size: 2rem;
    }
    
    .hero__buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-bottom: 3rem;
        width: 100%;
    }
    
    .hero__buttons .btn {
        width: 100%;
    }
    
    .hero__features {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 4rem;
    }
    
    .hero__feature {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .hero__feature-title {
        font-size: 0.9rem;
    }
    
    .hero__feature-desc {
        font-size: 0.8rem;
    }
    
    .hero__scroll-indicator {
        bottom: 1.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .contact__content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .form-row,
    .about__stats {
        grid-template-columns: 1fr;
    }
    
    .footer__main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer__nav {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer__bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer__legal {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    body {
        font-size: 14px;
    }
    
    .hero {
        padding: 5rem 0 6rem;
    }
    
    .hero__title {
        font-size: 2.2rem;
        line-height: 1.15;
    }
    
    .hero__subtitle {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .hero__badge-text {
        font-size: 12px;
    }
    
    .hero__stats {
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero__stat-number {
        font-size: 1.8rem;
    }
    
    .hero__stat-label {
        font-size: 12px;
    }
    
    .hero__buttons {
        margin-bottom: 2.5rem;
    }
    
    .hero__features {
        margin-bottom: 3rem;
    }
    
    .hero__feature {
        padding: 0.75rem 1rem;
        font-size: 12px;
    }
    
    .hero__feature-content {
        gap: 0.1rem;
    }
    
    .hero__feature-title {
        font-size: 12px;
    }
    
    .hero__feature-desc {
        font-size: 11px;
    }

    .faq-item {
        padding: 1.75rem;
    }

    .faq-item__toggle {
        font-size: 1.1rem;
    }

    .faq-item__icon {
        width: 32px;
        height: 32px;
    }

    .faq-item__answer {
        font-size: 0.95rem;
    }
    
    .hero__scroll-indicator {
        bottom: 1rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .service-card__description {
        font-size: 14px;
    }
    
    .contact__form {
        padding: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle,
    .about__description p,
    .value-card__description,
    .contact-item__content p,
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 14px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .footer__nav {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer__description,
    .footer__nav-group a {
        font-size: 14px;
    }
    
    .footer__social {
        justify-content: center;
    }
    
    .footer__legal {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .footer__legal a,
    .footer__copyright {
        font-size: 12px;
    }
}
