/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #111827;
    line-height: 1.6;
    background: linear-gradient(180deg, #1e1b4b 0%, #312e81 50%, #1e1b4b 100%);
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    cursor: pointer;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(30, 27, 75, 0.8);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(139, 92, 246, 0.3);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    color: #ffffff;
    transition: color 0.3s ease;
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
}

.nav-logo:hover {
    color: #c4b5fd;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #c4b5fd;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: #ffffff;
    transition: all 0.3s ease;
}

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

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

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

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(130deg, #667eea 10%, #764ba2 60%, #4c1d95 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.15) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    animation: float 10s ease-in-out infinite reverse;
}

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

.hero-content {
    padding: 3rem 1rem;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 300;
    letter-spacing: 0.0em;
    color: #ffffff;
    margin-bottom: 2rem;
    text-shadow: 0 2px 20px rgba(236, 72, 153, 0.3);
}

.hero-subtitle {
    font-size: clamp(1.5rem, 4.5vw, 2.5rem);
    line-height: 1.3;
    font-weight: 300;
    letter-spacing: 0.01em;
    color: rgba(255, 255, 255, 0.9);
    max-width: 48rem;
    margin: 0 auto 3rem;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: #ffffff;
    background: none;
    border: none;
    transition: all 0.3s ease;
    padding: 0.5rem;
}

.hero-button:hover {
    color: #ec4899;
    transform: translateY(2px);
}

.hero-button svg {
    transition: transform 0.3s ease;
}

.hero-button:hover svg {
    transform: translateY(4px);
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 8rem 0;
    background: transparent;
}

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

.section-title {
    font-size: clamp(2.5rem, 5vw, 3rem);
    font-weight: 300;
    letter-spacing: 0.05em;
    color: #ffffff;
    margin-bottom: 2rem;
}

.about-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    text-align: justify;
}

.about-text .lead {
    font-size: 1.125rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: #a78bfa;
    margin-top: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.btn-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #c4b5fd, #f0abfc);
    transition: width 0.3s ease;
}

.btn-link:hover {
    color: #c4b5fd;
}

.btn-link:hover::after {
    width: calc(100% - 24px);
}

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

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

.about-image {
    display: flex;
    justify-content: center;
}

.image-wrapper {
    position: relative;
    width: 320px;
    height: 400px;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}3ll//////////////////////////////////////////////////////////////////////////////

/* ===== SERVICES SECTION ===== */
.services {
    padding: 8rem 0;
    background: transparent;
}

.services-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 42rem;
    margin: 0 auto;
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.2), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.4), 0 0 40px rgba(236, 72, 153, 0.3);
    border-color: rgba(139, 92, 246, 0.5);
    transform: translateY(-8px) scale(1.02);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #f3e8ff 0%, #ede9fe 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
    transform: scale(1.1);
}

.service-icon svg {
    stroke: #7c3aed;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon svg {
    stroke: #ffffff;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: #ffffff;
    margin-bottom: 1rem;
}

.service-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 2rem;
    min-height: 80px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: #c4b5fd;
    transition: all 0.3s ease;
    position: relative;
}

.service-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #c4b5fd, #f0abfc);
    transition: width 0.3s ease;
}

.service-link:hover {
    color: #ffffff;
}

.service-link:hover::after {
    width: calc(100% - 24px);
}

.service-link svg {
    transition: transform 0.3s ease;
    stroke: currentColor;
}

.service-link:hover svg {
    transform: translateX(4px);
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 8rem 0;
    background: transparent;
}

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

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 64rem;
    margin: 0 auto;
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    border-radius: 16px;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(139, 92, 246, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(139, 92, 246, 0.3);
}

.contact-icon {
    width: 64px;
    height: 64px;
    background: rgba(139, 92, 246, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.4s ease;
}

.contact-card:hover .contact-icon {
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.5);
    transform: scale(1.1);
}

.contact-icon svg {
    stroke: #c4b5fd;
}

.contact-card:hover .contact-icon svg {
    stroke: #ffffff;
}

.contact-title {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.contact-info {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ===== FOOTER ===== */
.footer {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 0;
    text-align: center;
}

.footer p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.05em;
}

/* ===== SUBPAGES ===== */
.page-header {
    padding: 6rem 0 1.5rem;
    text-align: center;
    background: transparent;
    position: relative;
}

.page-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3) 0%, rgba(236, 72, 153, 0.3) 100%);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.page-icon:hover {
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    box-shadow: 0 15px 50px rgba(139, 92, 246, 0.5), 0 0 40px rgba(236, 72, 153, 0.4);
    transform: scale(1.1) rotate(5deg);
}

.page-icon svg {
    stroke: #c4b5fd;
    transition: all 0.3s ease;
}

.page-icon:hover svg {
    stroke: #ffffff;
}

.page-title {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 300;
    letter-spacing: 0.02em;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
}

.page-subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.5;
}

.content-section {
    padding: 1rem 0 5rem;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.content-wrapper h2 {
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: #ffffff;
    margin: 2rem 0 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.content-wrapper h2:first-of-type {
    margin-top: 0;
}

.content-wrapper h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 70%;
    background: linear-gradient(180deg, #8b5cf6 0%, #ec4899 100%);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

.content-wrapper p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 1.25rem;
    font-size: 1rem;
}

.content-wrapper ul {
    list-style: none;
    margin: 1rem 0;
}

.content-wrapper li {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 0.5rem;
    font-size: 1rem;
}

.content-wrapper li::before {
    content: '✦';
    color: #c4b5fd;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    font-size: 1em;
    text-shadow: 0 0 10px rgba(196, 181, 253, 0.5);
}

.info-box {
    background: rgba(139, 92, 246, 0.15);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    margin: 2rem 0;
    color: white;
    border: 2px solid rgba(139, 92, 246, 0.3);
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.2);
    position: relative;
    overflow: hidden;
}

.info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #8b5cf6 0%, #ec4899 100%);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.6);
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item svg {
    flex-shrink: 0;
    margin-top: 0.25rem;
    stroke: #c4b5fd;
    background: rgba(139, 92, 246, 0.3);
    padding: 0.6rem;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.info-item h3 {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: #ffffff;
    margin-bottom: 0.35rem;
}

.info-item p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.95rem;
}

.cta-box {
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 2rem 2.5rem;
    text-align: center;
    margin-top: 3rem;
    box-shadow: 0 20px 50px rgba(139, 92, 246, 0.4), 0 0 30px rgba(236, 72, 153, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

.cta-box::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite reverse;
}

.cta-box h2 {
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: #ffffff;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.cta-box p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    font-size: 0.95rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: #ffffff;
    color: #7c3aed;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

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

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

.btn-primary:hover {
    background: #f8f7ff;
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.5), 0 0 30px rgba(255, 255, 255, 0.3);
    transform: translateY(-4px) scale(1.05);
    color: #6d28d9;
}

.btn-primary svg {
    stroke: currentColor;
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
}

.btn-primary:hover svg {
    transform: translateX(3px);
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.back-button:hover {
    color: #c4b5fd;
}

/* ===== SCROLL REVEAL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

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

.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease;
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s ease;
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s ease;
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* ===== PAGE TRANSITIONS ===== */
.page-transition {
    animation: slideUp 0.6s ease-out;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

.nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(30, 27, 75, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 0;
        padding: 1.5rem;
        border-bottom: 1px solid rgba(139, 92, 246, 0.3);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-link {
        display: block;
        width: 100%;
        text-align: left;
        padding: 1rem 0;
    }

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

    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .content-wrapper {
        padding: 2rem 1.5rem;
    }

    .about-image {
        order: -1;
    }
}
