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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #0f0f23 0%, #1a0b2e 25%, #16213e 50%, #0f3460 75%, #0e4b99 100%);
    min-height: 100vh;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 20, 147, 0.3);
}

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

.logo {
    font-weight: 700;
    font-size: 24px;
    color: #ff1493;
    text-shadow: 0 0 10px rgba(255, 20, 147, 0.5);
}

.book-meeting-btn {
    background: linear-gradient(135deg, #ff1493, #8a2be2);
    color: white;
    border: 2px solid transparent;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    box-shadow: 0 0 20px rgba(255, 20, 147, 0.3);
}

.book-meeting-btn:hover {
    background: linear-gradient(135deg, #8a2be2, #ff1493);
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(255, 20, 147, 0.6);
    border-color: #ff1493;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(ellipse at center, rgba(255, 20, 147, 0.1) 0%, transparent 50%), 
                linear-gradient(135deg, #0f0f23 0%, #1a0b2e 25%, #16213e 50%, #0f3460 75%, #0e4b99 100%);
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ff1493" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hero-name {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ff1493, #8a2be2, #00ffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    text-shadow: 0 0 30px rgba(255, 20, 147, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 20px rgba(255, 20, 147, 0.5);
    }
    to {
        text-shadow: 0 0 40px rgba(255, 20, 147, 0.8);
    }
}

.hero-title {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 400;
    color: #ff1493;
    margin-bottom: 30px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(255, 20, 147, 0.3);
}

.hero-description {
    font-size: 18px;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
    opacity: 0.9;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a0b2e 50%, #16213e 100%);
    position: relative;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #ff1493, #8a2be2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(255, 20, 147, 0.3);
}

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

.service-card {
    background: rgba(255, 20, 147, 0.1);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 20, 147, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 20, 147, 0.3);
    border-color: #ff1493;
}

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

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ff1493;
    text-shadow: 0 0 10px rgba(255, 20, 147, 0.3);
}

.service-card p {
    color: #cccccc;
    line-height: 1.6;
    opacity: 0.9;
}

/* Experience Section */
.experience {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a0b2e 0%, #16213e 50%, #0f3460 100%);
    color: white;
    position: relative;
}

.experience::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255, 20, 147, 0.1) 0%, transparent 50%);
}

.experience .section-title {
    color: white;
}

.experience-content {
    margin-top: 60px;
}

.experience-item {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 40px;
    margin-bottom: 50px;
    padding: 30px;
    border-bottom: 1px solid rgba(255, 20, 147, 0.3);
    background: rgba(255, 20, 147, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 20, 147, 0.1);
    transition: all 0.3s ease;
}

.experience-item:hover {
    background: rgba(255, 20, 147, 0.1);
    border-color: rgba(255, 20, 147, 0.3);
    transform: translateX(10px);
}

.experience-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.experience-year {
    font-weight: 600;
    font-size: 1.1rem;
    color: #ff1493;
    text-shadow: 0 0 10px rgba(255, 20, 147, 0.3);
}

.experience-details h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
}

.company {
    font-weight: 500;
    opacity: 0.9;
    margin-bottom: 15px;
}

.description {
    line-height: 1.7;
    opacity: 0.8;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0f0f23 0%, #1a0b2e 100%);
    color: white;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 20, 147, 0.3);
}

.footer p {
    opacity: 0.7;
    color: #cccccc;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 15, 35, 0.9);
    backdrop-filter: blur(10px);
    overflow-y: auto;
}

.modal-content {
    position: relative;
    background: linear-gradient(135deg, #0f0f23 0%, #1a0b2e 50%, #16213e 100%);
    margin: 10% auto;
    padding: 40px;
    width: 66.67%; /* 2/3 of page width */
    max-width: 1000px;
    border-radius: 20px;
    border: 2px solid rgba(255, 20, 147, 0.3);
    box-shadow: 0 0 50px rgba(255, 20, 147, 0.2);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #ff1493;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
}

.close-btn:hover {
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 20, 147, 0.8);
    transform: scale(1.1);
}

.modal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.modal-block {
    background: rgba(255, 20, 147, 0.1);
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 20, 147, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
}

.modal-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 20, 147, 0.1), transparent);
    transition: left 0.5s;
}

.modal-block:hover {
    border-color: #ff1493;
    box-shadow: 0 10px 30px rgba(255, 20, 147, 0.3);
    transform: translateY(-5px);
}

.modal-block:hover::before {
    left: 100%;
}

.modal-block h3 {
    color: #ff1493;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 20, 147, 0.3);
}

.duration {
    font-size: 1.2rem;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 15px;
}

.consultation-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.consultation-list li {
    color: #cccccc;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.project-labels {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 25px;
}

.project-label {
    background: rgba(138, 43, 226, 0.6);
    color: #e0e0e0;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 400;
    border: 1px solid rgba(138, 43, 226, 0.4);
}

.other-text {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.modal-btn {
    background: linear-gradient(135deg, #ff1493, #8a2be2);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    box-shadow: 0 0 20px rgba(255, 20, 147, 0.3);
    width: 100%;
}

.modal-btn:hover {
    background: linear-gradient(135deg, #8a2be2, #ff1493);
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(255, 20, 147, 0.6);
}

.price-btn {
    font-size: 1.3rem;
    font-weight: 700;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-content {
        padding: 0 15px;
    }
    
    .logo {
        font-size: 20px;
    }
    
    .book-meeting-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .hero {
        padding-top: 100px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .experience-item {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .experience-year {
        font-size: 1rem;
    }
    
    .modal-content {
        width: 95%;
        margin: 20px auto;
        padding: 30px 20px;
        min-height: calc(100vh - 40px);
        box-sizing: border-box;
    }
    
    .modal-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .close-btn {
        font-size: 30px;
        right: 20px;
        top: 15px;
    }
}
