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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #11152a;
    color: #fff;
    overflow: hidden;
    line-height: 1.6;
    height: 100vh;
}

/* Main Wrapper */
.main-wrapper {
    position: relative;
    z-index: 1;
    height: 100vh;
    display: flex;
    overflow: hidden;
}

/* Background Image */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

/* Dark Overlay */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 21, 42, 0.85);
    z-index: 0;
}

/* Background Logo Watermark - Removed for cleaner design */
.bg-logo {
    display: none;
}

/* Left Panel */
.left-panel {
    flex: 0 0 40%;
    background: rgba(17, 21, 42, 0.75);
    backdrop-filter: blur(20px);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-right: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
    height: 100vh;
    overflow: hidden;
    z-index: 2;
}

.left-panel::before {
    content: '';
    position: absolute;
    top: 0;
    right: -1px;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent);
    animation: lineMove 3s ease-in-out infinite;
}

@keyframes lineMove {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

.logo-wrapper {
    animation: fadeInDown 1s ease-out;
    display: inline-block;
}

.logo-wrapper img {
    max-width: 240px;
    height: auto;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.6))
            drop-shadow(0 0 40px rgba(255, 255, 255, 0.1));
}

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

/* Hero Content */
.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    animation: fadeIn 1.2s ease-out 0.3s both;
}

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

.main-title {
    font-size: clamp(3.5rem, 9vw, 6.5rem);
    font-weight: 900;
    letter-spacing: 0.15em;
    color: #ffffff;
    margin-bottom: 0.8rem;
    line-height: 1;
    text-shadow:
        0 0 60px rgba(255, 255, 255, 0.3),
        0 4px 20px rgba(0, 0, 0, 0.8);
}

.tagline {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: #f0f0f0;
    font-weight: 400;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.location {
    font-size: clamp(1rem, 1.8vw, 1.3rem);
    color: #d8d8d8;
    font-weight: 300;
    letter-spacing: 0.03em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

/* Contact Grid */
.contact-grid {
    display: grid;
    gap: 1rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

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

.contact-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    text-decoration: none;
    color: #f0f0f0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

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

.contact-box:hover::before {
    left: 100%;
}

.contact-box:hover {
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.contact-box i {
    font-size: 1.3rem;
    width: 40px;
    text-align: center;
}

.contact-box span {
    font-size: 1rem;
    font-weight: 500;
}

.instagram-box:hover {
    border-color: #E1306C;
    color: #E1306C;
    background: rgba(225, 48, 108, 0.1);
}

/* Right Panel */
.right-panel {
    flex: 1;
    background: rgba(17, 21, 42, 0.6);
    backdrop-filter: blur(20px);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow-y: auto;
    z-index: 2;
}

/* Custom Scrollbar */
.right-panel::-webkit-scrollbar {
    width: 8px;
}

.right-panel::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.right-panel::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

.right-panel::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

.services-container {
    flex: 1;
}

.section-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
    color: #ffffff;
    position: relative;
    padding-bottom: 1rem;
    animation: fadeInRight 1s ease-out 0.4s both;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #ffffff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.service-box {
    padding: 1.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    animation: fadeInScale 0.6s ease-out both;
    backdrop-filter: blur(10px);
}

.service-box:nth-child(1) { animation-delay: 0.5s; }
.service-box:nth-child(2) { animation-delay: 0.6s; }
.service-box:nth-child(3) { animation-delay: 0.7s; }
.service-box:nth-child(4) { animation-delay: 0.8s; }
.service-box:nth-child(5) { animation-delay: 0.9s; }
.service-box:nth-child(6) { animation-delay: 1s; }
.service-box:nth-child(7) { animation-delay: 1.1s; }
.service-box:nth-child(8) { animation-delay: 1.2s; }

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.service-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity 0.4s;
}

.service-box:hover::before {
    opacity: 1;
}

.service-box:hover {
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    margin-bottom: 1.2rem;
    transition: all 0.4s;
}

.service-box:hover .service-icon {
    background: rgba(255, 255, 255, 0.95);
    transform: rotate(10deg) scale(1.1);
}

.service-icon i {
    font-size: 1.8rem;
    color: #ffffff;
    transition: color 0.4s;
}

.service-box:hover .service-icon i {
    color: #11152a;
}

.service-box h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-weight: 600;
}

.service-box p {
    font-size: 0.9rem;
    color: #e0e0e0;
    line-height: 1.5;
}

/* Footer */
.footer {
    margin-top: auto;
    padding: 1.5rem 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 1024px) {
    body {
        overflow-y: auto;
        height: auto;
    }

    .main-wrapper {
        flex-direction: column;
        height: auto;
    }

    .left-panel {
        flex: none;
        border-right: none;
        border-bottom: 2px solid rgba(255, 255, 255, 0.1);
        height: auto;
        min-height: 100vh;
    }

    .left-panel::before {
        width: 100%;
        height: 2px;
        top: auto;
        bottom: -1px;
        background: linear-gradient(to right,
            transparent,
            rgba(255, 255, 255, 0.3),
            transparent);
    }

    .right-panel {
        padding: 3rem 2rem;
        height: auto;
        overflow-y: visible;
    }
}

@media (max-width: 768px) {
    .left-panel,
    .right-panel {
        padding: 2rem 1.5rem;
    }

    .main-title {
        font-size: 3rem;
    }

    .logo-wrapper img {
        max-width: 180px;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }

    .service-box {
        padding: 1.5rem 1rem;
    }

    .service-icon {
        width: 50px;
        height: 50px;
    }

    .service-icon i {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact-box {
        padding: 1rem;
    }

    .contact-box span {
        font-size: 0.9rem;
    }

    .main-title {
        font-size: 2.5rem;
    }

    .logo-wrapper img {
        max-width: 150px;
    }
}