* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #F5F0FF 0%, #E8E0FF 50%, #DDD0FF 100%);
    color: #2D2A4A;
    line-height: 1.5;
    overflow-x: hidden;
}

h1, h2, h3, .logo, .section-title {
    font-family: 'Playfair Display', serif;
}

:root {
    --primary-purple: #6C63FF;
    --primary-violet: #9D8AFF;
    --dark: #2D2A4A;
    --white: #FFFFFF;
    --shadow-sm: 0 10px 30px -10px rgba(108, 99, 255, 0.15);
    --shadow-md: 0 20px 40px -15px rgba(108, 99, 255, 0.2);
    --shadow-lg: 0 30px 50px -20px rgba(108, 99, 255, 0.25);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ========== PRELOADER ========== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #F5F0FF, #E8E0FF);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s;
}

.loader {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(108, 99, 255, 0.2);
    border-top-color: var(--primary-purple);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ========== BACK TO TOP ========== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-violet));
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 99;
    box-shadow: var(--shadow-sm);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

/* ========== NAVBAR ========== */
.navbar {
    padding: 20px 0;
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.navbar.hide {
    transform: translateY(-100%);
}

.navbar.show {
    transform: translateY(0);
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
    text-decoration: none;
}

.logo span {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-violet));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0 auto;
}

.nav-links a {
    text-decoration: none;
    font-weight: 500;
    color: var(--dark);
    transition: color 0.3s;
    font-size: 1rem;
}

.nav-links a:hover {
    color: var(--primary-purple);
}

/* Dropdown Menu */
.nav-item {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -250px;
    width: 720px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 100;
    padding: 20px;
    margin-top: 15px;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-height: 400px;
    overflow-y: auto;
}

.dropdown-grid::-webkit-scrollbar {
    width: 4px;
}

.dropdown-grid::-webkit-scrollbar-track {
    background: rgba(108, 99, 255, 0.1);
    border-radius: 4px;
}

.dropdown-grid::-webkit-scrollbar-thumb {
    background: var(--primary-purple);
    border-radius: 4px;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.08), rgba(157, 138, 255, 0.08));
    transform: translateX(5px);
}

.dropdown-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.15), rgba(157, 138, 255, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.2rem;
    color: var(--primary-purple);
}

.dropdown-item h4 {
    font-size: 0.95rem;
    margin-bottom: 4px;
    color: var(--dark);
}

.dropdown-item p {
    font-size: 0.75rem;
    color: #6b5a68;
}

/* Navbar CTA Button */
.nav-cta-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-violet));
    color: white;
    padding: 10px 24px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-cta-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.nav-cta-btn:hover::before {
    width: 300px;
    height: 300px;
}

.nav-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(108, 99, 255, 0.4);
}

.nav-cta-btn i {
    transition: transform 0.3s;
}

.nav-cta-btn:hover i {
    transform: translateX(5px);
}

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--dark);
}

/* ========== BUTTONS ========== */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-violet));
    color: white;
    padding: 12px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(108, 99, 255, 0.3);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-purple);
    color: var(--primary-purple);
    padding: 10px 30px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary-purple);
    color: white;
    transform: translateY(-3px);
}

/* ========== HERO ========== */
.hero {
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-left {
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.1), rgba(157, 138, 255, 0.1));
    color: var(--primary-purple);
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 0.8rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.hero-left h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 20px;
}

.hero-gradient {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-violet));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: 1rem;
    color: #5a4a68;
    margin-bottom: 28px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Hero Right - Rocket Animation */
.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.rocket-animation {
    position: relative;
    width: 280px;
    height: 280px;
}

.rocket {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    animation: floatRocket 2s ease-in-out infinite;
}

.rocket-body {
    width: 70px;
    height: 90px;
    background: linear-gradient(135deg, #6C63FF, #9D8AFF);
    border-radius: 35px 35px 20px 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rocket-body i {
    font-size: 2.5rem;
    color: white;
    animation: rocketShake 0.3s ease-in-out infinite alternate;
}

.rocket-window {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
}

.rocket-fire {
    width: 25px;
    height: 35px;
    background: linear-gradient(135deg, #FF8C42, #FFB347);
    border-radius: 0 0 12px 12px;
    position: absolute;
    bottom: -32px;
    left: 50%;
    transform: translateX(-50%);
    animation: fireAnimation 0.1s ease-in-out infinite alternate;
}

@keyframes floatRocket {
    0%, 100% { transform: translateX(-50%) translateY(0px); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes rocketShake {
    from { transform: translateX(-1px); }
    to { transform: translateX(1px); }
}

@keyframes fireAnimation {
    from { height: 30px; opacity: 0.8; }
    to { height: 40px; opacity: 1; }
}

.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-icons i {
    position: absolute;
    color: rgba(108, 99, 255, 0.3);
    animation: floatIcon 3s ease-in-out infinite;
}

.star-1 {
    top: 20px;
    left: 20px;
    font-size: 1rem;
    animation-delay: 0s;
}

.star-2 {
    bottom: 40px;
    right: 30px;
    font-size: 0.8rem;
    animation-delay: 1s;
}

.circle-1 {
    top: 100px;
    right: 50px;
    font-size: 0.6rem;
    animation-delay: 0.5s;
}

.circle-2 {
    bottom: 120px;
    left: 40px;
    font-size: 0.5rem;
    animation-delay: 1.5s;
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.3; }
    50% { transform: translateY(-15px) rotate(180deg); opacity: 0.6; }
}

/* ========== SECTION HEADER ========== */
section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-violet));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.2rem;
    color: var(--dark);
    position: relative;
}

/* ========== SERVICES ========== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    background: white;
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(108, 99, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-purple), var(--primary-violet));
    transform: scaleX(0);
    transition: transform 0.4s;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.1), rgba(157, 138, 255, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.service-icon i {
    font-size: 2rem;
    color: var(--primary-purple);
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-violet));
    transform: scale(1.05);
}

.service-card:hover .service-icon i {
    color: white;
    animation: iconBounce 0.5s ease;
}

@keyframes iconBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--dark);
}

.service-card p {
    color: #6b5a68;
    line-height: 1.5;
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.service-link {
    color: var(--primary-purple);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s;
}

.service-link:hover {
    gap: 10px;
}

/* ========== ABOUT ========== */
.about-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: var(--dark);
}

.brush-stroke {
    margin: 16px auto 32px;
    max-width: 240px;
}

.brush-stroke svg {
    width: 100%;
    height: auto;
}

.about-text p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #5a4a68;
    line-height: 1.6;
    text-align: left;
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--dark);
    background: rgba(108, 99, 255, 0.08);
    padding: 8px 16px;
    border-radius: 40px;
    font-size: 0.85rem;
}

.feature i {
    color: var(--primary-purple);
    font-size: 0.9rem;
}

/* ========== PORTFOLIO ========== */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-btn {
    background: transparent;
    border: 1px solid rgba(108, 99, 255, 0.3);
    padding: 8px 20px;
    border-radius: 40px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
    color: var(--dark);
    font-size: 0.85rem;
}

.filter-btn.active,
.filter-btn:hover {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-violet));
    border-color: transparent;
    color: white;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.portfolio-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.95), rgba(157, 138, 255, 0.9));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s;
    color: white;
    text-align: center;
    padding: 20px;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

.portfolio-overlay h4 {
    font-size: 1.2rem;
    margin-bottom: 6px;
    font-family: 'Playfair Display', serif;
}

.portfolio-overlay p {
    font-size: 0.8rem;
}

.portfolio-footer {
    text-align: center;
}

.load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 2px solid var(--primary-purple);
    color: var(--primary-purple);
    padding: 10px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.load-more-btn:hover {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-violet));
    color: white;
    gap: 16px;
    transform: translateY(-2px);
    border-color: transparent;
}

/* ========== CLIENTS ========== */
.clients-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    row-gap: 30px;
}

.logo-item {
    transition: all 0.3s;
    cursor: pointer;
}

.logo-item img {
    filter: grayscale(100%);
    transition: all 0.3s;
    max-width: 100px;
    height: auto;
    opacity: 0.6;
}

.logo-item:hover {
    transform: scale(1.05);
}

.logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ========== CONTACT ========== */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.contact-info {
    padding-right: 20px;
}

.contact-desc {
    color: #5a4a68;
    margin-bottom: 28px;
    line-height: 1.6;
    font-size: 0.9rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 28px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: rgba(108, 99, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.1rem;
    transition: all 0.3s;
    color: var(--primary-purple);
}

.contact-item:hover .contact-icon {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-violet));
    color: white;
}

.contact-item h4 {
    font-size: 0.9rem;
    margin-bottom: 4px;
    color: var(--dark);
}

.contact-item p {
    color: #5a4a68;
    font-size: 0.85rem;
}

.contact-social h4 {
    margin-bottom: 14px;
    font-size: 0.9rem;
    color: var(--dark);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 38px;
    height: 38px;
    background: rgba(108, 99, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
    color: var(--primary-purple);
    text-decoration: none;
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-violet));
    color: white;
    transform: translateY(-2px);
}

.contact-form {
    background: linear-gradient(135deg, #F5F0FF, #EDE5FF);
    padding: 28px;
    border-radius: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    position: relative;
    margin-bottom: 16px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px 12px 40px;
    border: 1px solid rgba(108, 99, 255, 0.2);
    border-radius: 10px;
    font-family: inherit;
    transition: all 0.3s;
    background: white;
    font-size: 0.9rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.1);
}

.form-group i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-purple);
    font-size: 0.9rem;
}

.form-group textarea + i {
    top: 18px;
    transform: none;
}

.submit-btn {
    width: 100%;
    justify-content: center;
    padding: 12px !important;
}

.form-message {
    margin-top: 14px;
    padding: 10px;
    border-radius: 8px;
    display: none;
    text-align: center;
    font-size: 0.85rem;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    display: block;
}

/* ========== FOOTER ========== */
footer {
    background: linear-gradient(135deg, #2D2A4A, #1A1738);
    color: #d4cfc8;
    padding: 50px 0 30px;
    margin-top: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-violet));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.footer-col p, .footer-col a {
    color: #d4cfc8;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s;
    font-size: 0.85rem;
}

.footer-col a:hover {
    color: var(--primary-purple);
}

.footer-col i {
    margin-right: 8px;
    color: var(--primary-purple);
}

.copyright {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.8rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .dropdown-menu {
        width: 600px;
        left: -220px;
    }
    .hero-left h1 {
        font-size: 3rem;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .hero-left {
        max-width: 100%;
    }
    .hero-buttons {
        justify-content: center;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-wrapper {
        grid-template-columns: 1fr;
        padding: 30px;
    }
    .contact-info {
        padding-right: 0;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    section {
        padding: 50px 0;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        background: white;
        width: 85%;
        height: 100vh;
        flex-direction: column;
        padding: 30px 24px;
        gap: 20px;
        transition: 0.3s;
        box-shadow: 5px 0 20px rgba(0,0,0,0.1);
        z-index: 999;
        overflow-y: auto;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-cta-btn {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .dropdown-menu {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        padding: 20px 0 0 20px;
        display: none;
        margin-top: 10px;
    }
    
    .nav-item.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-grid {
        grid-template-columns: 1fr;
        max-height: 300px;
    }
    
    .hero {
        padding: 100px 0 50px;
    }
    
    .hero-left h1 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .clients-logos {
        gap: 25px;
    }
    
    .logo-item img {
        max-width: 80px;
    }
    
    .contact-wrapper {
        padding: 25px 20px;
    }
    
    .service-card {
        padding: 25px 20px;
    }
    
    .hero-right .rocket-animation {
        width: 220px;
        height: 220px;
    }
}