* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

button {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    font: inherit;
    color: inherit;
    cursor: pointer;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

:root {
    --white: #FFFFFF;
    --black: #000000;
    --bg-dark: #2A2A2A;
    --bg-darker: #1F1F1F;
    --bg-light: #333333;
    --gray-light: #E0E0E0;
    --gray-medium: #CCCCCC;
    --gray-dark: #999999;
    --text-light: #FFFFFF;
    --text-medium: #CCCCCC;
    --text-dark: #999999;
    --accent: #FFFFFF;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.7;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: -0.01em;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(31, 31, 31, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 30px 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 60px;
    margin: 0;
    padding: 0;
    justify-content: center;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-medium);
    font-weight: 400;
    font-size: 13px;
    transition: all 0.3s ease;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 10px 20px;
    position: relative;
    display: block;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--text-light);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--text-light);
}

.nav-link:hover::before {
    width: 80%;
}

.nav-link.active {
    color: var(--text-light);
}

.nav-link.active::before {
    width: 100%;
}

.nav-link:active {
    transform: scale(0.95);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    position: absolute;
    right: 40px;
}

.hamburger span {
    width: 25px;
    height: 1.5px;
    background-color: var(--text-light);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    min-height: calc(50vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(31, 31, 31, 0.95) 0%, rgba(42, 42, 42, 0.9) 50%, rgba(31, 31, 31, 0.95) 100%);
    box-shadow: 
        inset 0 0 100px rgba(0, 0, 0, 0.5),
        0 10px 40px rgba(0, 0, 0, 0.3),
        0 -10px 40px rgba(0, 0, 0, 0.3);
}

.hero-contact-info {
    position: absolute;
    top: calc(35px + 5% + 20px);
    left: calc(-28px + 227px - 37px - 15px);
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 10;
    opacity: 0;
    transform: translateY(-10px) rotate(-5deg);
    animation: fadeInUpRotated 1s ease-out 0.6s both;
    transform-origin: top left;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3)) 
            drop-shadow(0 0 20px rgba(255, 255, 255, 0.2))
            drop-shadow(0 0 30px rgba(255, 255, 255, 0.1));
}

.hero-phone {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 300;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-style: italic;
    font-family: 'Georgia', 'Times New Roman', serif;
    padding: 8px 16px;
    background: rgba(31, 31, 31, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2),
                0 0 30px rgba(255, 255, 255, 0.1),
                inset 0 0 10px rgba(255, 255, 255, 0.05);
}

.hero-phone:hover {
    background: rgba(31, 31, 31, 0.8);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3),
                0 0 40px rgba(255, 255, 255, 0.2),
                0 0 60px rgba(255, 255, 255, 0.1),
                inset 0 0 15px rgba(255, 255, 255, 0.1);
}

.hero-location {
    font-size: 11px;
    color: var(--text-medium);
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-style: italic;
    font-family: 'Georgia', 'Times New Roman', serif;
    padding: 6px 16px;
    background: rgba(31, 31, 31, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.15),
                0 0 25px rgba(255, 255, 255, 0.08),
                inset 0 0 8px rgba(255, 255, 255, 0.03);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.02) 0%, transparent 50%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(200, 200, 200, 0.12) 2px,
            rgba(200, 200, 200, 0.12) 4px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 2px,
            rgba(200, 200, 200, 0.1) 2px,
            rgba(200, 200, 200, 0.1) 4px
        );
    animation: pulse 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.hero-wrapper {
    max-width: 800px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 54px;
    font-weight: 300;
    letter-spacing: 6px;
    margin-bottom: 15px;
    line-height: 1.1;
    color: var(--text-light);
    text-transform: uppercase;
    position: relative;
    animation: fadeInUp 1s ease-out;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUpRotated {
    from {
        opacity: 0;
        transform: translateY(-10px) rotate(-5deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotate(-5deg);
    }
}

.hero-subtitle {
    font-size: 14px;
    color: var(--text-medium);
    font-weight: 300;
    margin-bottom: 20px;
    line-height: 1.8;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-divider {
    width: 60px;
    height: 1px;
    background-color: var(--text-light);
    margin: 20px auto;
}

.cta-button {
    display: inline-block;
    padding: 14px 40px;
    background-color: transparent;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--text-light);
    text-transform: uppercase;
    margin-top: 15px;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background-color: var(--text-light);
    color: var(--bg-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.cta-button:active {
    transform: translateY(0);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #3a3a3a 0%, #2a2a2a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '📷';
    font-size: 48px;
    opacity: 0.3;
}

/* Portfolio Section */
.portfolio {
    padding: 150px 0;
    background-color: var(--bg-darker);
    position: relative;
}

.portfolio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.section-title {
    font-size: 42px;
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 20px;
    text-align: center;
    color: var(--text-light);
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-title.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-subtitle {
    font-size: 15px;
    color: var(--text-medium);
    text-align: center;
    margin-bottom: 80px;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-divider {
    width: 50px;
    height: 1px;
    background-color: var(--text-light);
    margin: 30px auto 60px;
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #CCCCCC !important;
    padding: 12px 30px !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    border-radius: 2px !important;
    font-family: 'Inter', sans-serif !important;
    outline: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    box-shadow: none !important;
    text-decoration: none !important;
}

.filter-btn:hover {
    border-color: rgba(255, 255, 255, 0.4) !important;
    color: #FFFFFF !important;
    transform: translateY(-2px);
}

.filter-btn.active {
    border-color: #FFFFFF !important;
    color: #FFFFFF !important;
    background: rgba(255, 255, 255, 0.05) !important;
}

.portfolio-item.hidden {
    display: none;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 80px;
}

.portfolio-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
    border-radius: 4px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.4s ease;
}

.portfolio-item::after {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 48px;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.portfolio-item:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.portfolio-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-item:nth-child(1) { transition-delay: 0.1s; }
.portfolio-item:nth-child(2) { transition-delay: 0.2s; }
.portfolio-item:nth-child(3) { transition-delay: 0.3s; }
.portfolio-item:nth-child(4) { transition-delay: 0.4s; }
.portfolio-item:nth-child(5) { transition-delay: 0.5s; }
.portfolio-item:nth-child(6) { transition-delay: 0.6s; }

.portfolio-item.visible:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.portfolio-image {
    width: 100%;
    height: 100%;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-image .image-placeholder {
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease;
}

.portfolio-item:hover .portfolio-image .image-placeholder {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.4), transparent);
    padding: 40px;
    color: var(--white);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-overlay h3 {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease 0.2s, transform 0.4s ease 0.2s;
}

.portfolio-item:hover .portfolio-overlay h3 {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-overlay h3 {
    font-size: 14px;
    font-weight: 400;
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* About Section */
.about {
    padding: 150px 0;
    background-color: var(--bg-dark);
}

.about-content {
    max-width: 700px;
    margin: 0 auto 80px;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.about-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-description {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-medium);
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.about-stats {
    display: flex;
    justify-content: center;
    gap: 100px;
    margin-top: 80px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.stat-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-item:nth-child(1) { transition-delay: 0.1s; }
.stat-item:nth-child(2) { transition-delay: 0.2s; }
.stat-item:nth-child(3) { transition-delay: 0.3s; }

.stat-number {
    font-size: 48px;
    font-weight: 300;
    color: var(--text-light);
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.stat-label {
    font-size: 11px;
    color: var(--text-medium);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
}

/* Contact Section */
.contact {
    padding: 150px 0;
    background-color: var(--bg-darker);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.contact-form {
    max-width: 700px;
    margin: 80px auto 0;
    background: linear-gradient(135deg, rgba(42, 42, 42, 0.6) 0%, rgba(31, 31, 31, 0.8) 100%);
    padding: 60px 50px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 
                0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.contact-form:hover {
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 
                0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 35px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 14px;
    font-size: 11px;
    font-weight: 400;
    color: var(--text-medium);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    transition: color 0.3s ease;
}

.form-group:focus-within label {
    color: var(--text-light);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(31, 31, 31, 0.4);
    font-family: inherit;
    font-size: 15px;
    color: var(--text-light);
    transition: all 0.3s ease;
    font-weight: 300;
    border-radius: 2px;
    backdrop-filter: blur(5px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
    font-weight: 300;
}

.form-group input:hover,
.form-group textarea:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background-color: rgba(31, 31, 31, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
    background-color: rgba(31, 31, 31, 0.6);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.05),
                0 2px 8px rgba(0, 0, 0, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}

.submit-button {
    padding: 18px 50px;
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
    text-transform: uppercase;
    display: block;
    margin: 50px auto 0;
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.submit-button:hover::before {
    left: 100%;
}

.submit-button:hover {
    background-color: var(--text-light);
    color: var(--bg-dark);
    border-color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.submit-button:active {
    transform: translateY(0);
}

.submit-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.submit-button.loading {
    position: relative;
    color: transparent;
}

.submit-button.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid var(--text-light);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.form-message {
    margin-top: 30px;
    padding: 18px 24px;
    text-align: center;
    display: none;
    font-size: 14px;
    font-weight: 300;
    border-radius: 2px;
    border: 1px solid;
    backdrop-filter: blur(5px);
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-message.success {
    color: var(--text-light);
    background-color: rgba(76, 175, 80, 0.15);
    border-color: rgba(76, 175, 80, 0.3);
    display: block;
}

.form-message.error {
    color: #ffcdd2;
    background-color: rgba(211, 47, 47, 0.15);
    border-color: rgba(211, 47, 47, 0.3);
    display: block;
}

/* Footer */
.footer {
    background-color: var(--bg-dark);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
    flex-direction: column;
    gap: 30px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-top: 10px;
}

.footer-phone,
.footer-location {
    font-size: 12px;
    color: var(--text-medium);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 300;
    font-family: inherit;
    font-style: normal;
}

.footer-brand {
    text-align: center;
}

.footer-brand h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-light);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-brand p {
    font-size: 12px;
    color: var(--text-medium);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 300;
}

.footer-links {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-medium);
    font-size: 12px;
    font-weight: 400;
    transition: color 0.3s ease;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-links a:hover {
    color: var(--text-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 11px;
    color: var(--text-medium);
    letter-spacing: 1px;
    font-weight: 300;
}

/* Lightbox Modal */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s ease;
    pointer-events: none;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.lightbox-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(31, 31, 31, 0.98);
    backdrop-filter: blur(20px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.lightbox.active .lightbox-backdrop {
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: scale(0.8);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10000;
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-image {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.4s ease 0.2s, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.lightbox.active .lightbox-image {
    opacity: 1;
    transform: scale(1);
}

.lightbox-title {
    margin-top: 30px;
    color: var(--text-light);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease 0.3s, transform 0.4s ease 0.3s;
}

.lightbox.active .lightbox-title {
    opacity: 1;
    transform: translateY(0);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-light);
    font-size: 36px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
    padding: 0;
    z-index: 10001;
    opacity: 0;
    transform: rotate(90deg);
}

.lightbox.active .lightbox-close {
    opacity: 1;
    transform: rotate(0deg);
    transition: all 0.4s ease 0.2s;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: rotate(90deg) scale(1.1);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(31, 31, 31, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    font-size: 48px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    opacity: 0;
    z-index: 10001;
    padding: 0;
    line-height: 1;
}

.lightbox.active .lightbox-prev,
.lightbox.active .lightbox-next {
    opacity: 1;
    transition: all 0.4s ease 0.3s;
}

.lightbox-prev {
    left: -80px;
}

.lightbox-next {
    right: -80px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev:active,
.lightbox-next:active {
    transform: translateY(-50%) scale(0.95);
}

/* Prevent body scroll when lightbox is open */
body.lightbox-open {
    overflow: hidden;
}

/* Responsive lightbox */
@media (max-width: 968px) {
    .lightbox-content {
        max-width: 95vw;
        padding: 20px;
    }
    
    .lightbox-image {
        max-height: 80vh;
    }
    
    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 28px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 50px;
        height: 50px;
        font-size: 36px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-title {
        margin-top: 20px;
        font-size: 12px;
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-contact-info {
        top: calc(25px + 5% + 20px);
        left: calc(-18px + 227px - 37px - 15px);
        gap: 6px;
        transform: translateY(-10px) rotate(-5deg);
    }
    
    .hero-phone {
        font-size: 11px;
        padding: 6px 12px;
        letter-spacing: 1px;
    }
    
    .hero-location {
        font-size: 10px;
        padding: 5px 12px;
        letter-spacing: 1.5px;
    }
    
    .container {
        padding: 0 30px;
    }

    .nav-container {
        padding: 0 30px;
    }

    .nav-menu {
        gap: 40px;
    }

    .hero {
        padding: 40px 30px;
        min-height: calc(40vh - 80px);
    }

    .hero-title {
        font-size: 56px;
        letter-spacing: 4px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 36px;
        letter-spacing: 2px;
    }

    .portfolio {
        padding: 100px 0;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin-top: 60px;
    }

    .about {
        padding: 100px 0;
    }

    .about-stats {
        gap: 60px;
    }

    .contact {
        padding: 100px 0;
    }

    .contact-form {
        padding: 50px 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

@media (max-width: 640px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 90px;
        flex-direction: column;
        background-color: rgba(31, 31, 31, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.5);
        padding: 30px 0;
        gap: 0;
        border-top: 2px solid rgba(255, 255, 255, 0.15);
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-link {
        width: 100%;
        padding: 20px;
        display: block;
    }
    
    .nav-link::before {
        display: none;
    }
    
    .nav-link.active {
        background-color: rgba(255, 255, 255, 0.05);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 15px 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero {
        padding: 30px 25px;
        min-height: calc(35vh - 80px);
    }
    
    .hero .hero-contact-info {
        display: none;
    }
    
    .mobile-contact-info {
        position: relative;
        top: auto;
        left: auto;
        margin-bottom: 30px;
        gap: 12px;
        transform: rotate(0deg);
        filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.25)) 
                drop-shadow(0 0 15px rgba(255, 255, 255, 0.15));
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        opacity: 1;
        animation: none;
    }
    
    .hero-phone {
        font-size: 11px;
        padding: 8px 14px;
        letter-spacing: 1px;
        box-shadow: 0 0 12px rgba(255, 255, 255, 0.2),
                    0 0 25px rgba(255, 255, 255, 0.1),
                    inset 0 0 8px rgba(255, 255, 255, 0.05);
    }
    
    .hero-phone:hover {
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.25),
                    0 0 30px rgba(255, 255, 255, 0.15),
                    inset 0 0 10px rgba(255, 255, 255, 0.08);
    }
    
    .hero-location {
        font-size: 10px;
        padding: 6px 14px;
        letter-spacing: 1.5px;
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.15),
                    0 0 20px rgba(255, 255, 255, 0.08),
                    inset 0 0 6px rgba(255, 255, 255, 0.03);
    }

    .hero-title {
        font-size: 42px;
        letter-spacing: 2px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .section-title {
        font-size: 32px;
        letter-spacing: 1px;
    }

    .portfolio-filters {
        gap: 12px;
        margin-bottom: 40px;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 12px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-stats {
        flex-direction: column;
        gap: 50px;
    }

    .footer-links {
        flex-direction: column;
        gap: 20px;
    }

    .container {
        padding: 0 25px;
    }

    .nav-container {
        padding: 0 25px;
    }

    .hamburger {
        right: 25px;
    }

    .contact-form {
        padding: 40px 30px;
    }
}