@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@300;400;500;600;700;800&display=swap');

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Heebo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.8;
    color: #ffffff;
    background-color: #0A2540;
    direction: rtl;
    overflow-x: hidden;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ==================== HEADER ==================== */
.header {
    background: transparent;
    padding: 20px;
    position: fixed;
    top: 20px;
    left: 20px;
    right: auto;
    z-index: 1000;
    transition: all 0.3s ease;
    width: auto;
}

.header.scrolled {
    background: transparent;
}

/* Header on light sections */
.header.light-section .mobile-menu-btn span {
    background: #1F2A3A;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.header .container {
    padding: 0;
    width: auto;
}

.logo {
    display: none;
}

.logo h1 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2px;
    letter-spacing: -0.5px;
}

.tagline {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    letter-spacing: 0.3px;
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background: rgba(10, 37, 64, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background: rgba(10, 37, 64, 0.8);
    border-color: rgba(255, 255, 255, 0.25);
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: #ffffff;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1),
.header:hover .mobile-menu-btn span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2),
.header:hover .mobile-menu-btn span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3),
.header:hover .mobile-menu-btn span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Header on light sections */
.header.light-section .mobile-menu-btn {
    background: rgba(255, 255, 255, 0.6);
    border-color: rgba(31, 42, 58, 0.15);
}

.header.light-section .mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.8);
}

.header.light-section .mobile-menu-btn span {
    background: #1F2A3A;
}

.nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 300px;
    height: 100vh;
    background: rgba(10, 37, 64, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 100px 40px 40px;
    gap: 8px;
    box-shadow: 10px 0 40px rgba(0, 0, 0, 0.3);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    display: flex;
}

.nav.active,
.header:hover .nav,
.nav:hover {
    left: 0;
}

.nav a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    letter-spacing: 0.5px;
    padding: 16px 20px;
    border-radius: 12px;
    background: transparent;
}

.nav a:hover {
    color: #FF69B4;
    background: rgba(233, 30, 140, 0.1);
}

.nav a::after {
    display: none;
}

/* Menu overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    pointer-events: none;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.header:hover ~ .menu-overlay,
.nav:hover ~ .menu-overlay {
    opacity: 1;
    visibility: visible;
}

/* ==================== HERO SECTION ==================== */
.hero {
    background:
        radial-gradient(ellipse 80% 50% at 50% 100%, rgba(0, 200, 180, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 20% 80%, rgba(0, 180, 160, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 50% 30% at 80% 90%, rgba(0, 200, 180, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, #0A2540 0%, #0D3055 50%, #0A2540 100%);
    color: #ffffff;
    padding: 140px 0 100px;
    text-align: right;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle 800px at 20% 80%, rgba(0, 200, 180, 0.08) 0%, transparent 50%),
        radial-gradient(circle 600px at 80% 20%, rgba(0, 180, 160, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: transparent;
    pointer-events: none;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
}

.shape-1 {
    width: 800px;
    height: 800px;
    top: -300px;
    right: -200px;
    background: radial-gradient(circle, rgba(0, 200, 180, 0.1) 0%, rgba(0, 200, 180, 0.04) 35%, transparent 65%);
    filter: blur(50px);
}

.shape-2 {
    width: 700px;
    height: 700px;
    bottom: -250px;
    left: -200px;
    background: radial-gradient(circle, rgba(0, 180, 160, 0.12) 0%, rgba(0, 180, 160, 0.05) 35%, transparent 65%);
    filter: blur(60px);
}

.shape-3 {
    width: 500px;
    height: 500px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(0, 200, 180, 0.07) 0%, rgba(0, 200, 180, 0.03) 40%, transparent 60%);
    filter: blur(70px);
    animation: breathe 8s ease-in-out infinite;
}

@keyframes breathe {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.9; transform: translate(-50%, -50%) scale(1.2); }
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 28px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 28px;
    letter-spacing: -1.5px;
}

.hero-title .highlight {
    background: linear-gradient(90deg, #fff, rgba(255,255,255,0.85));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 40px;
    max-width: 600px;
    font-weight: 300;
    letter-spacing: 0.2px;
    opacity: 0.95;
}

.hero-split {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-container {
    position: relative;
    width: 420px;
    height: 420px;
}

.hero-profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid rgba(255, 255, 255, 0.3);
    box-shadow:
        0 25px 60px rgba(31, 42, 58, 0.4),
        0 10px 30px rgba(31, 42, 58, 0.2),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.hero-profile-image:hover {
    transform: scale(1.03);
    box-shadow:
        0 30px 70px rgba(31, 42, 58, 0.5),
        0 15px 40px rgba(31, 42, 58, 0.25),
        inset 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.hero-image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}

.hero-image-container::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    z-index: 0;
    animation: rotateBorder 20s linear infinite;
}

.hero-image-container::after {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    right: -30px;
    bottom: -30px;
    border: 1px dashed rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 0;
    animation: rotateBorder 30s linear infinite reverse;
}

@keyframes rotateBorder {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-badge-float {
    position: absolute;
    bottom: 10px;
    right: -20px;
    background: linear-gradient(135deg, #E91E8C 0%, #FF69B4 100%);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 32px rgba(233, 30, 140, 0.4), 0 2px 8px rgba(0,0,0,0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    z-index: 10;
    animation: floatBadge 3s ease-in-out infinite;
}

.hero-badge-float i {
    color: #ffffff;
    font-size: 0.9rem;
    animation: heartbeat 1.5s ease-in-out infinite;
}

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

.hero-cta-group {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.cta-btn.primary {
    background: linear-gradient(135deg, #E91E8C 0%, #FF69B4 100%);
    color: #ffffff;
    box-shadow: 0 12px 40px rgba(233, 30, 140, 0.4);
}

.cta-btn.primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(233, 30, 140, 0.5);
}

.cta-btn.primary i {
    transition: transform 0.3s ease;
}

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

.cta-btn.secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

/* ==================== TOOLS BAR ==================== */
.tools-bar {
    background: #0A2540;
    padding: 60px 0;
}

.tools-title {
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 24px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.tools-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.tool-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.tool-item:hover {
    background: rgba(233, 30, 140, 0.2);
    transform: translateY(-2px);
    border-color: rgba(233, 30, 140, 0.4);
}

.tool-item i {
    font-size: 1.2rem;
    color: #FF69B4;
}

/* ==================== ABOUT SECTION ==================== */
.about {
    padding: 140px 0 120px;
    background: #ffffff;
    position: relative;
    clip-path: polygon(0 100px, 100% 0, 100% 100%, 0 100%);
    margin-top: -100px;
}

.about-wrapper {
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.about-wrapper.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.about-image {
    position: relative;
}

.profile-image {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    display: block;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(79, 109, 154, 0.25);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    object-fit: cover;
}

.profile-image:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 60px rgba(79, 109, 154, 0.35);
}

.about-badge {
    position: absolute;
    bottom: -15px;
    right: 20px;
    background: linear-gradient(135deg, #fff 0%, #F5F7FA 100%);
    color: #4F6D9A;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 32px rgba(79, 109, 154, 0.25), 0 2px 8px rgba(0,0,0,0.08);
    border: 2px solid rgba(79, 109, 154, 0.3);
    transition: all 0.3s ease;
}

.about-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(79, 109, 154, 0.35), 0 4px 12px rgba(0,0,0,0.1);
}

.about-badge i {
    color: #6F87A8;
    font-size: 1rem;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

.section-title {
    text-align: center;
    font-size: 2.75rem;
    margin-bottom: 56px;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title.align-right {
    text-align: right;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    right: 50%;
    transform: translateX(50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #E91E8C, #FF69B4);
    border-radius: 2px;
}

.section-title.align-right::after {
    right: 0;
    transform: none;
}

.section-subtitle {
    text-align: center;
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: -40px;
    margin-bottom: 56px;
    font-weight: 400;
}

/* Light section modifiers */
.about .section-title,
.process .section-title {
    color: #1F2A3A;
}

.about .section-subtitle,
.process .section-subtitle {
    color: #666666;
}

.about-content {
    margin-bottom: 32px;
}

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

.about-content p {
    font-size: 1.15rem;
    line-height: 2;
    color: #1F2A3A;
    margin-bottom: 24px;
    letter-spacing: 0.2px;
    text-align: right;
}

.about-content p strong {
    font-weight: 700;
    color: #1F2A3A;
}

.about-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #E91E8C 0%, #FF69B4 100%);
    color: #fff;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(233, 30, 140, 0.4);
}

.about-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(233, 30, 140, 0.5);
}

.about-cta i {
    transition: transform 0.3s ease;
}

.about-cta:hover i {
    transform: translateX(-5px);
}

/* ==================== SERVICES SECTION ==================== */
.services {
    padding: 140px 0 120px;
    background: #0A2540;
    position: relative;
    clip-path: polygon(0 0, 100% 100px, 100% 100%, 0 100%);
    margin-top: -100px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 20px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 48px 36px;
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.service-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.service-card.featured {
    border: 2px solid #E91E8C;
    background: linear-gradient(180deg, rgba(233, 30, 140, 0.1), rgba(255, 105, 180, 0.05));
}

.service-card.framed {
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.service-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
    font-weight: 500;
}

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #E91E8C 0%, #FF69B4 100%);
    color: #fff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #E91E8C, #FF69B4);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
    border-color: rgba(233, 30, 140, 0.4);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(145deg, rgba(233, 30, 140, 0.15), rgba(255, 105, 180, 0.08));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.service-icon i {
    font-size: 1.8rem;
    color: #FF69B4;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #E91E8C, #FF69B4);
}

.service-card:hover .service-icon i {
    color: #fff;
}

.service-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(233, 30, 140, 0.2);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -2px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #E91E8C;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.service-description {
    margin-bottom: 24px;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    letter-spacing: 0.1px;
}

.service-for {
    display: block;
    margin-bottom: 24px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.service-for strong {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: #FF69B4;
}

.service-for i {
    color: #FF69B4;
    font-size: 1rem;
}

.service-footer {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.service-price {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: #ffffff;
    font-size: 1.1rem;
}

.service-price i {
    font-size: 0.9rem;
    color: #FF69B4;
}

.service-note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 12px;
    line-height: 1.5;
}

/* ==================== PROCESS SECTION ==================== */
.process {
    padding: 140px 0 120px;
    background: #ffffff;
    position: relative;
    clip-path: polygon(0 100px, 100% 0, 100% 100%, 0 100%);
    margin-top: -100px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
    margin-top: 20px;
    position: relative;
}

.step {
    text-align: center;
    padding: 32px 20px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
}

.step.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.step-connector {
    display: none;
}

@media (min-width: 769px) {
    .step:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 72px;
        left: -12px;
        width: calc(100% - 56px);
        height: 2px;
        background: linear-gradient(90deg, #E91E8C, #FF69B4);
        z-index: 0;
    }
}

.step:hover {
    transform: translateY(-6px);
}

.step-number {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #E91E8C 0%, #FF69B4 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 auto 24px;
    box-shadow: 0 12px 32px rgba(233, 30, 140, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 16px 48px rgba(233, 30, 140, 0.5);
}

.step-content h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: #1F2A3A;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.step-content p {
    color: #666666;
    line-height: 1.7;
    font-size: 0.95rem;
    letter-spacing: 0.1px;
}

.step-content p a {
    color: #E91E8C;
    text-decoration: underline;
    font-weight: 500;
}

.step-content p a:hover {
    color: #FF69B4;
}

.step.alternate {
    grid-column: 1 / -1;
    max-width: 400px;
    margin: 20px auto 0;
    background: linear-gradient(145deg, rgba(233, 30, 140, 0.1), rgba(255, 105, 180, 0.05));
    border-radius: 16px;
    padding: 32px;
}

.step.alternate .step-number {
    background: linear-gradient(145deg, #1F2A3A, #2D3B4F);
}

.step.alternate .step-content h3 {
    color: #E91E8C;
}

/* ==================== CONTACT SECTION ==================== */
.contact {
    padding: 140px 0 120px;
    background: #0A2540;
    position: relative;
    clip-path: polygon(0 0, 100% 100px, 100% 100%, 0 100%);
    margin-top: -100px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: start;
}

.contact-info {
    padding-top: 20px;
}

.contact-intro {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 32px;
}

.contact-features {
    margin-bottom: 40px;
}

.contact-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.contact-feature i {
    color: #FF69B4;
    font-size: 1.2rem;
}

.contact-direct {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-direct p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.whatsapp-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4);
}

.whatsapp-link i {
    font-size: 1.3rem;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 48px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.form-group {
    margin-bottom: 28px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #ffffff;
    font-size: 1rem;
    letter-spacing: 0.2px;
}

.form-group label .optional {
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    font-size: 1rem;
    font-family: 'Heebo', sans-serif;
    background-color: rgba(255, 255, 255, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.2px;
    color: #ffffff;
}

.form-group 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='%23FF69B4' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 16px center;
    padding-left: 40px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #FF69B4;
    box-shadow: 0 0 0 4px rgba(233, 30, 140, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #E91E8C 0%, #FF69B4 100%);
    color: #ffffff;
    padding: 18px;
    border: none;
    border-radius: 14px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 12px 32px rgba(233, 30, 140, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(233, 30, 140, 0.5);
}

.submit-btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(-5px);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.form-message {
    display: none;
    margin-top: 15px;
    padding: 15px 20px;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-message.success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}

.form-message.error {
    background: #ffebee;
    color: #c62828;
    border: 1px solid #ef9a9a;
}

/* ==================== FOOTER ==================== */
.footer {
    background: linear-gradient(180deg, #0D3055 0%, #061525 100%);
    color: #ffffff;
    padding: 64px 0 32px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(233, 30, 140, 0.3), transparent);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.footer-tagline {
    font-size: 0.95rem;
    opacity: 0.7;
    letter-spacing: 0.3px;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FF69B4;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.6;
}

/* ==================== FLOATING ELEMENTS ==================== */
.whatsapp-float {
    position: fixed;
    bottom: 32px;
    left: 32px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: #0A2540;
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #E91E8C 0%, #FF69B4 100%);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(233, 30, 140, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 998;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(233, 30, 140, 0.5);
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 1024px) {
    .container {
        padding: 0 32px;
    }

    .hero-split {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .hero-image-container {
        width: 280px;
        height: 280px;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .section-title {
        font-size: 2.25rem;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-image {
        max-width: 300px;
        margin: 0 auto;
    }

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

    .section-title.align-right {
        text-align: center;
    }

    .section-title.align-right::after {
        right: 50%;
        transform: translateX(50%);
    }

    .about-cta {
        margin: 0 auto;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

    .contact-features {
        display: inline-block;
        text-align: right;
    }

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

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }

    .main-content {
        display: flex;
        flex-direction: column;
    }

    .hero { order: 1; }
    .about { order: 2; }
    .services { order: 3; }
    .process { order: 4; }
    .contact { order: 5; }
    .tools-bar { order: 6; }

    .nav {
        width: 80%;
        max-width: 320px;
    }

    .hero {
        padding: 80px 0 120px;
        text-align: center;
    }

    .hero-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-image-wrapper {
        order: -1;
    }

    .hero-image-container {
        width: 280px;
        height: 280px;
    }

    .hero-image-container::before {
        top: -10px;
        left: -10px;
        right: -10px;
        bottom: -10px;
    }

    .hero-image-container::after {
        top: -20px;
        left: -20px;
        right: -20px;
        bottom: -20px;
    }

    .hero-badge-float {
        padding: 10px 18px;
        font-size: 0.8rem;
        right: -10px;
        bottom: 5px;
    }

    .hero-title {
        font-size: 1.8rem;
        letter-spacing: -1px;
    }

    .hero-subtitle {
        font-size: 1rem;
        max-width: 100%;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .cta-btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        padding: 16px 32px;
        font-size: 1rem;
    }

    .tools-list {
        gap: 16px;
    }

    .tool-item {
        padding: 10px 16px;
        font-size: 0.85rem;
    }

    .about {
        padding: 100px 0 80px;
        clip-path: polygon(0 60px, 100% 0, 100% 100%, 0 100%);
        margin-top: -60px;
    }

    .services {
        padding: 100px 0 80px;
        clip-path: polygon(0 0, 100% 60px, 100% 100%, 0 100%);
        margin-top: -60px;
    }

    .process {
        padding: 100px 0 80px;
        clip-path: polygon(0 60px, 100% 0, 100% 100%, 0 100%);
        margin-top: -60px;
    }

    .contact {
        padding: 100px 0 80px;
        clip-path: polygon(0 0, 100% 60px, 100% 100%, 0 100%);
        margin-top: -60px;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .section-subtitle {
        margin-top: -28px;
        margin-bottom: 40px;
    }

    .about-content p {
        font-size: 1.05rem;
    }

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

    .service-card {
        padding: 40px 28px;
    }

    .service-number {
        font-size: 2.5rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .step::after {
        display: none;
    }

    .contact-form {
        padding: 36px 28px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .whatsapp-float {
        bottom: 24px;
        left: 24px;
        width: 54px;
        height: 54px;
        font-size: 1.5rem;
    }

    .back-to-top {
        bottom: 24px;
        right: 24px;
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .hero-image-container {
        width: 240px;
        height: 240px;
    }

    .hero-image-container::before {
        top: -8px;
        left: -8px;
        right: -8px;
        bottom: -8px;
    }

    .hero-image-container::after {
        top: -16px;
        left: -16px;
        right: -16px;
        bottom: -16px;
    }

    .hero-badge {
        padding: 8px 18px;
        font-size: 0.8rem;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .about-content p {
        font-size: 1rem;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .step-content h3 {
        font-size: 1.1rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 0.95rem;
    }

    .submit-btn {
        padding: 16px;
        font-size: 1rem;
    }
}

.service-card:nth-child(1) { transition-delay: 0.1s; }
.service-card:nth-child(2) { transition-delay: 0.2s; }
.service-card:nth-child(3) { transition-delay: 0.3s; }
.service-card:nth-child(4) { transition-delay: 0.4s; }

.step:nth-child(1) { transition-delay: 0.1s; }
.step:nth-child(2) { transition-delay: 0.2s; }
.step:nth-child(3) { transition-delay: 0.3s; }
.step:nth-child(4) { transition-delay: 0.4s; }

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

.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

.fade-in:nth-child(1) { animation-delay: 0.2s; }
.fade-in:nth-child(2) { animation-delay: 0.4s; }
.fade-in:nth-child(3) { animation-delay: 0.6s; }
.fade-in:nth-child(4) { animation-delay: 0.8s; }
.fade-in:nth-child(5) { animation-delay: 1s; }
