/* ================================
   CSS RESET & BASE STYLES
   ================================ */

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

:root {
    --color-primary: #0A4D4E;
    --color-secondary: #D4AF37;
    --color-charcoal: #2A2A2A;
    --color-cream: #F5F1E8;
    --color-text: #2A2A2A;
    --color-text-light: #5A5A5A;
    --color-white: #ffffff;
    --font-primary: 'Cormorant Garamond', serif;
    --font-secondary: 'Montserrat', sans-serif;
    --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-soft: 0 8px 32px rgba(10, 77, 78, 0.12);
    --shadow-medium: 0 16px 48px rgba(10, 77, 78, 0.18);
    --shadow-strong: 0 24px 64px rgba(10, 77, 78, 0.24);
    --glow-gold: 0 0 20px rgba(212, 175, 55, 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--color-cream);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ================================
   NAVIGATION
   ================================ */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, rgba(10, 77, 78, 0.97) 0%, rgba(10, 77, 78, 0.95) 100%);
    backdrop-filter: blur(20px);
    transition: var(--transition);
    box-shadow: 0 4px 24px rgba(10, 77, 78, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.nav.scrolled {
    background: linear-gradient(135deg, rgba(10, 77, 78, 0.98) 0%, rgba(10, 77, 78, 0.96) 100%);
    box-shadow: 0 8px 32px rgba(10, 77, 78, 0.3);
    border-bottom: 1px solid rgba(212, 175, 55, 0.4);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 28px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-primary);
    font-size: 32px;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--color-secondary);
    text-shadow: 0 2px 12px rgba(212, 175, 55, 0.4);
    transition: var(--transition);
}

.logo:hover {
    text-shadow: var(--glow-gold);
    transform: scale(1.05);
}

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

.nav-link {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-cream);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-secondary), transparent);
    box-shadow: var(--glow-gold);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--color-secondary);
}

.nav-link:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    width: 30px;
    height: 24px;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-secondary), var(--color-cream));
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    transition: var(--transition);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, var(--color-primary) 0%, rgba(10, 77, 78, 0.95) 100%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    transition: var(--transition);
}

.mobile-menu.active {
    right: 0;
}

.mobile-link {
    font-family: var(--font-primary);
    font-size: 36px;
    font-weight: 500;
    color: var(--color-secondary);
    text-shadow: 0 2px 16px rgba(212, 175, 55, 0.4);
    transition: var(--transition);
}

.mobile-link:hover {
    color: var(--color-cream);
    text-shadow: var(--glow-gold);
    transform: scale(1.1);
}

/* ================================
   HERO SECTION
   ================================ */

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-charcoal) 0%, var(--color-primary) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--color-white);
    padding: 0 20px;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: clamp(52px, 8vw, 100px);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: 3px;
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-secondary) 50%, var(--color-cream) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 24px rgba(212, 175, 55, 0.3);
}

.hero-subtitle {
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 300;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 50px;
    color: var(--color-secondary);
    text-shadow: 0 2px 16px rgba(212, 175, 55, 0.4);
}

.cta-button {
    display: inline-block;
    padding: 20px 60px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-primary);
    background: linear-gradient(135deg, var(--color-secondary) 0%, #E8C55B 100%);
    border: 2px solid var(--color-secondary);
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: var(--transition);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: linear-gradient(135deg, #E8C55B 0%, var(--color-secondary) 100%);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(212, 175, 55, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.5);
    color: var(--color-charcoal);
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(10, 77, 78, 0.3) 0%, rgba(10, 77, 78, 0.7) 50%, rgba(42, 42, 42, 0.9) 100%);
    z-index: 2;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: 32px;
    height: 54px;
    border: 2px solid var(--color-secondary);
    border-radius: 24px;
    display: flex;
    justify-content: center;
    padding-top: 10px;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.scroll-indicator span {
    width: 4px;
    height: 12px;
    background: linear-gradient(180deg, var(--color-secondary), transparent);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(22px);
    }
}

/* ================================
   ANIMATIONS
   ================================ */

.fade-in {
    animation: fadeIn 1.4s ease-out;
}

.fade-in-delay {
    animation: fadeIn 1.4s ease-out 0.3s backwards;
}

.fade-in-delay-2 {
    animation: fadeIn 1.4s ease-out 0.6s backwards;
}

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

/* ================================
   PORTFOLIO SECTION
   ================================ */

.portfolio {
    padding: 140px 0;
    background: linear-gradient(180deg, var(--color-cream) 0%, #EBE7DD 100%);
}

.section-title {
    font-family: var(--font-primary);
    font-size: clamp(48px, 6vw, 80px);
    font-weight: 500;
    text-align: center;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-charcoal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 3px;
    color: var(--color-text-light);
    margin-bottom: 90px;
    text-transform: uppercase;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    grid-auto-flow: dense;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.portfolio-item:hover {
    box-shadow: var(--shadow-strong);
    transform: translateY(-8px);
}

.portfolio-item.wide {
    grid-column: span 2;
}

.portfolio-item.tall {
    grid-row: span 2;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    filter: contrast(1.05) saturate(1.1);
}

.portfolio-item:hover img {
    transform: scale(1.15);
    filter: contrast(1.1) saturate(1.2) brightness(1.05);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, 
        rgba(10, 77, 78, 0.95) 0%, 
        rgba(10, 77, 78, 0.7) 40%, 
        rgba(10, 77, 78, 0) 70%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    opacity: 0;
    transition: var(--transition);
    color: var(--color-white);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h3 {
    font-family: var(--font-primary);
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-secondary);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.portfolio-overlay p {
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-cream);
    font-weight: 500;
}

/* ================================
   ABOUT SECTION
   ================================ */

.about {
    padding: 140px 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, rgba(10, 77, 78, 0.92) 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 150%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-strong), 0 0 60px rgba(212, 175, 55, 0.2);
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid var(--color-secondary);
    border-radius: 16px;
    z-index: 2;
    opacity: 0;
    transition: var(--transition);
    box-shadow: inset 0 0 40px rgba(212, 175, 55, 0.3);
}

.about-image:hover::before {
    opacity: 1;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
    filter: contrast(1.05) saturate(1.1);
}

.about-image:hover img {
    transform: scale(1.08);
}

.about-text {
    padding: 40px;
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 40px;
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-cream) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text p {
    font-size: 18px;
    line-height: 1.9;
    color: var(--color-cream);
    margin-bottom: 28px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-top: 70px;
}

.stat {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.stat:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.3);
    border-color: var(--color-secondary);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.08) 100%);
}

.stat h3 {
    font-family: var(--font-primary);
    font-size: 56px;
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: 12px;
    text-shadow: 0 2px 16px rgba(212, 175, 55, 0.5);
}

.stat p {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-cream);
    margin: 0;
    font-weight: 500;
}

/* ================================
   CONTACT SECTION
   ================================ */

.contact {
    padding: 140px 0;
    background: linear-gradient(180deg, #EBE7DD 0%, var(--color-cream) 100%);
}

.contact-form {
    max-width: 850px;
    margin: 0 auto;
    padding: 60px;
    background: var(--color-white);
    border-radius: 16px;
    box-shadow: var(--shadow-medium);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 32px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 22px 24px;
    border: 2px solid rgba(10, 77, 78, 0.2);
    background: linear-gradient(135deg, var(--color-cream) 0%, #F8F5EE 100%);
    font-family: var(--font-secondary);
    font-size: 16px;
    color: var(--color-text);
    transition: var(--transition);
    border-radius: 8px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-secondary);
    background: var(--color-white);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2), inset 0 0 0 1px rgba(212, 175, 55, 0.3);
}

.form-group label {
    position: absolute;
    top: 22px;
    left: 24px;
    font-size: 16px;
    color: var(--color-text-light);
    pointer-events: none;
    transition: var(--transition);
    background: transparent;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -12px;
    left: 20px;
    font-size: 12px;
    background: var(--color-white);
    padding: 2px 8px;
    color: var(--color-secondary);
    font-weight: 600;
    border-radius: 4px;
}

.submit-button {
    width: 100%;
    padding: 22px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-white);
    background: linear-gradient(135deg, var(--color-primary) 0%, rgba(10, 77, 78, 0.85) 100%);
    border: 2px solid var(--color-primary);
    transition: var(--transition);
    margin-top: 24px;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(10, 77, 78, 0.3);
    position: relative;
    overflow: hidden;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    transition: var(--transition);
}

.submit-button:hover::before {
    left: 100%;
}

.submit-button:hover {
    background: linear-gradient(135deg, rgba(10, 77, 78, 0.95) 0%, var(--color-primary) 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(10, 77, 78, 0.4), 0 0 30px rgba(212, 175, 55, 0.2);
    border-color: var(--color-secondary);
}

.form-message {
    margin-top: 24px;
    padding: 18px;
    text-align: center;
    border-radius: 8px;
    font-size: 14px;
    display: none;
    font-weight: 500;
}

.form-message.success {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(76, 175, 80, 0.05) 100%);
    color: #2e7d32;
    border: 2px solid rgba(76, 175, 80, 0.3);
    display: block;
}

.form-message.error {
    background: linear-gradient(135deg, rgba(244, 67, 54, 0.1) 0%, rgba(244, 67, 54, 0.05) 100%);
    color: #c62828;
    border: 2px solid rgba(244, 67, 54, 0.3);
    display: block;
}

/* ================================
   FOOTER
   ================================ */

.footer {
    padding: 90px 0 50px;
    background: linear-gradient(135deg, var(--color-charcoal) 0%, rgba(42, 42, 42, 0.95) 100%);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-secondary), transparent);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 70px;
    flex-wrap: wrap;
    gap: 50px;
}

.footer-logo {
    font-family: var(--font-primary);
    font-size: 36px;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--color-secondary);
    text-shadow: 0 2px 16px rgba(212, 175, 55, 0.4);
}

.footer-links {
    display: flex;
    gap: 45px;
}

.footer-links a {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition);
    color: var(--color-cream);
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--color-secondary);
    text-shadow: var(--glow-gold);
    transform: translateY(-2px);
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 50%;
    transition: var(--transition);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(212, 175, 55, 0.02) 100%);
}

.footer-social a:hover {
    background: linear-gradient(135deg, var(--color-secondary) 0%, #E8C55B 100%);
    border-color: var(--color-secondary);
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
}

.footer-social a:hover svg {
    stroke: var(--color-charcoal);
}

.footer-bottom {
    text-align: center;
    padding-top: 50px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(245, 241, 232, 0.6);
    letter-spacing: 1px;
}

/* ================================
   LIGHTBOX
   ================================ */

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 77, 78, 0.97) 0%, rgba(42, 42, 42, 0.97) 100%);
    backdrop-filter: blur(20px);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-close {
    position: absolute;
    top: 40px;
    right: 40px;
    font-size: 50px;
    color: var(--color-cream);
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    cursor: pointer;
    z-index: 2001;
    transition: var(--transition);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    color: var(--color-charcoal);
    background: var(--color-secondary);
    border-color: var(--color-secondary);
    transform: rotate(90deg);
    box-shadow: var(--glow-gold);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    color: var(--color-cream);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.1) 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    cursor: pointer;
    padding: 24px 30px;
    transition: var(--transition);
    z-index: 2001;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: linear-gradient(135deg, var(--color-secondary) 0%, #E8C55B 100%);
    color: var(--color-charcoal);
    border-color: var(--color-secondary);
    box-shadow: var(--glow-gold);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 40px;
}

.lightbox-next {
    right: 40px;
}

#lightboxImage {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: var(--shadow-strong), 0 0 60px rgba(212, 175, 55, 0.3);
}

.lightbox-caption {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-cream);
    font-family: var(--font-primary);
    font-size: 26px;
    text-align: center;
    background: linear-gradient(135deg, rgba(10, 77, 78, 0.9) 0%, rgba(42, 42, 42, 0.9) 100%);
    padding: 20px 50px;
    border-radius: 50px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.lightbox-caption strong {
    color: var(--color-secondary);
    text-shadow: var(--glow-gold);
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */

@media (max-width: 1024px) {
    .portfolio-item.wide,
    .portfolio-item.tall {
        grid-column: auto;
        grid-row: auto;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-text {
        padding: 0;
    }

    .about-text .section-title {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .nav-container {
        padding: 24px 20px;
    }

    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 52px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .portfolio {
        padding: 100px 0;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .section-title {
        font-size: 48px;
    }

    .about {
        padding: 100px 0;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact {
        padding: 100px 0;
    }

    .contact-form {
        padding: 40px 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 20px;
    }

    .lightbox-prev {
        left: 20px;
        padding: 20px 24px;
    }

    .lightbox-next {
        right: 20px;
        padding: 20px 24px;
    }

    .lightbox-close {
        top: 20px;
        right: 20px;
        width: 60px;
        height: 60px;
        font-size: 40px;
    }

    .lightbox-caption {
        font-size: 20px;
        padding: 16px 30px;
        bottom: 30px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 42px;
    }

    .section-title {
        font-size: 38px;
    }

    .stat h3 {
        font-size: 44px;
    }

    .cta-button {
        padding: 18px 50px;
    }
}