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

:root {
    --bg-color: #05070a;
    --surface-color: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --primary: #0084ff;
    --primary-glow: rgba(0, 132, 255, 0.4);
    --secondary: #ff6b00;
    --secondary-glow: rgba(255, 107, 0, 0.4);
    --photo-accent: #d4af37; /* Gold for photography */
    --photo-accent-glow: rgba(212, 175, 55, 0.4);
    --text-main: #ffffff;
    --text-dim: #a0a0a0;
    --nav-height: 80px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

/* Glassmorphism Utility */
.glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
}

/* Navbar */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    height: var(--nav-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    z-index: 1000;
    background: rgba(5, 7, 10, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
}

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a:hover {
    color: var(--primary);
}

.btn-cta {
    background: var(--primary);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px var(--primary-glow);
    transition: 0.4s;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--primary-glow);
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)), url('assets/hero-bg.png');
    background-size: cover;
    background-position: center;
    padding: 0 5%;
}

.hero-content h1 {
    font-size: clamp(3rem, 10vw, 6rem);
    margin-bottom: 20px;
    line-height: 1.1;
    animation: fadeInUp 1s ease-out;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-dim);
    max-width: 700px;
    margin: 0 auto 30px;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

/* Services */
.services {
    padding: 100px 5%;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

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

.service-card {
    padding: 0;
    overflow: hidden;
    transition: 0.4s;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.service-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-info {
    padding: 30px;
}

.service-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.service-info p {
    color: var(--text-dim);
    font-size: 0.95rem;
}

/* Features */
.features {
    padding: 100px 5%;
    background: rgba(255, 255, 255, 0.02);
}

.features-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.feature-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

/* Contact Form */
.contact {
    padding: 100px 5%;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px;
}

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

input, textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: white;
    font-size: 1rem;
    outline: none;
}

input:focus, textarea:focus {
    border-color: var(--primary);
}

button {
    width: 100%;
    padding: 15px;
    background: var(--primary);
    border: none;
    border-radius: 10px;
    color: white;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    filter: brightness(1.2);
}

/* Selection Page (New index) */
.split-screen {
    display: flex;
    height: 100vh;
    width: 100%;
}

.split-part {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
}

.split-part::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: 0.8s ease;
    z-index: 1;
}

.split-part.tech::before {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.8)), url('assets/real-tech-2.png');
}

.split-part.photo::before {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.8)), url('assets/real-photo-3.png');
}

.split-part:hover::before {
    transform: scale(1.1);
}

.split-part:hover {
    flex: 1.2;
}

.split-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 40px;
}

.split-content h2 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 20px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.split-content p {
    color: var(--text-dim);
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.8;
}

.btn-select {
    display: inline-block;
    padding: 15px 40px;
    border: 1px solid white;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    transition: 0.4s;
}

.tech .btn-select:hover {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 20px var(--primary-glow);
}

.photo .btn-select:hover {
    background: var(--photo-accent);
    border-color: var(--photo-accent);
    box-shadow: 0 0 20px var(--photo-accent-glow);
}

/* Selection Page Footer */
.selection-footer {
    position: absolute;
    bottom: 30px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 40px;
    z-index: 10;
}

.social-link {
    color: white;
    opacity: 0.7;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.social-link i {
    font-size: 1.8rem;
}

.social-link span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 300;
}

.social-link:hover {
    opacity: 1;
    transform: translateY(-3px);
    color: var(--primary);
}

.photo-theme .social-link:hover {
    color: var(--photo-accent);
}

/* Photography Specifics */
.photo-theme {
    --primary: var(--photo-accent);
    --primary-glow: var(--photo-accent-glow);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
    padding: 20px;
}

.gallery-item {
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Footer */
footer {
    padding: 60px 5%;
    border-top: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    color: var(--text-dim);
}

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

@media (max-width: 768px) {
    nav {
        padding: 10px 3%;
        justify-content: space-between;
    }

    .nav-links {
        display: flex;
        gap: 10px;
    }

    .nav-links li:not(:first-child) {
        display: none;
    }

    .nav-home-btn {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 8px 15px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 20px;
        color: white !important;
        font-size: 0.85rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .nav-home-btn i {
        font-size: 1rem;
        color: var(--primary);
    }

    .logo {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }

    .btn-cta {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
}
