:root {
    --gold: #c5a059;
    --gold-light: #d4b87a;
    --gold-dark: #a8893f;
    --dark: #0a0a0a;
    --dark-card: #141414;
    --dark-menu: rgba(10, 10, 10, 0.95);
    --gray: #f0f0f0;
    --gray-light: #f8f8f8;
    --gray-dark: #e8e8e8;
    --white: #ffffff;
    --shadow: 0 20px 60px rgba(0,0,0,0.08);
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --radius: 12px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #f0f0f0;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
}

/* ===== ARKA PLAN - KURUMSAL GRİ (TÜM SAYFALAR) ===== */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
            radial-gradient(ellipse at 20% 50%, rgba(197, 160, 89, 0.04) 0%, transparent 60%),
            radial-gradient(ellipse at 80% 50%, rgba(197, 160, 89, 0.04) 0%, transparent 60%),
            #f0f0f0;
    z-index: -2;
    pointer-events: none;
}

/* ===== SCROLL BAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-light); }

/* ========================================= */
/* HEADER - TÜM SAYFALARDA KOYU ARKA PLAN   */
/* ========================================= */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    padding: 18px 6%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--dark-menu);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(197, 160, 89, 0.15);
    box-shadow: 0 5px 30px rgba(0,0,0,0.3);
    transition: var(--transition);
}

/* SADECE INDEX SAYFASINDA HEADER ŞEFFAF BAŞLASIN */
body.index-page header {
    background: transparent;
    border-bottom: none;
    box-shadow: none;
}
body.index-page header.scrolled {
    background: var(--dark-menu);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(197, 160, 89, 0.15);
    box-shadow: 0 5px 30px rgba(0,0,0,0.3);
}

header.scrolled {
    padding: 12px 6%;
}
header.scrolled .logo-container img {
    height: 45px;
}

.logo-container img {
    height: 55px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(197, 160, 89, 0.2));
    transition: var(--transition);
}

nav {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: nowrap;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
    margin: 0;
    flex-wrap: nowrap;
}

nav ul li {
    white-space: nowrap;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}
nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}
nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}
nav ul li a:hover,
nav ul li a.active {
    color: var(--gold);
}

.lang-btn {
    background: transparent;
    color: var(--gold);
    border: 1.5px solid var(--gold);
    padding: 8px 18px;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 50px;
    transition: var(--transition);
    letter-spacing: 1px;
    white-space: nowrap;
    flex-shrink: 0;
}
.lang-btn:hover {
    background: var(--gold);
    color: var(--dark);
    box-shadow: 0 0 30px rgba(197, 160, 89, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 2001;
    gap: 5px;
}
.hamburger span {
    width: 28px;
    height: 2.5px;
    background: var(--gold);
    transition: 0.4s;
    border-radius: 2px;
}

/* ========================================= */
/* HERO - MOBİLDE TAM EKRAN                 */
/* ========================================= */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    z-index: 2;
}

.slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    transform: scale(1);
}
.slide.active {
    opacity: 1;
    animation: zoomOutEffect 6s ease-out forwards;
}
@keyframes zoomOutEffect {
    0% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

.slide-caption {
    position: absolute;
    bottom: 12%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    padding: 14px 35px;
    border-radius: 50px;
    border: 1px solid rgba(197, 160, 89, 0.4);
    color: var(--gold);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0;
    transition: opacity 1.5s ease 0.8s;
    white-space: nowrap;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.slide.active .slide-caption { opacity: 1; }

.hero-content {
    position: relative;
    text-align: center;
    color: var(--white);
    z-index: 10;
    max-width: 85%;
    padding: 50px 40px;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: var(--radius);
    box-shadow: 0 30px 80px rgba(0,0,0,0.6);
    margin-top: 30px;
}
.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2vw;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    line-height: 1.2;
    text-shadow: 0 5px 30px rgba(0,0,0,0.5);
}
.hero-content h1 span {
    color: var(--gold);
}
.hero-content p {
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-light);
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* HERO YAZISI 3 SANİYE SONRA KAYBOLACAK (SADECE INDEX) */
.hero-content {
    animation: heroFadeOut 1.5s ease-in-out forwards 3s;
    opacity: 1;
}
@keyframes heroFadeOut {
    0% { opacity: 1; transform: scale(1); }
    100% { opacity: 0; transform: scale(0.95); visibility: hidden; pointer-events: none; }
}

/* ========================================= */
/* BÖLÜMLER - KURUMSAL GRİ ARKA PLAN       */
/* ========================================= */
section {
    padding: 100px 8%;
    position: relative;
    background: transparent;
}

.section-header {
    margin-bottom: 60px;
    text-align: center;
}
.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: var(--dark);
    position: relative;
    display: inline-block;
}
.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
    border-radius: 2px;
}
.section-header .subtitle {
    color: #888;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 20px;
    display: block;
}

/* ========================================= */
/* VİZYON & MİSYON - GRİ ARKA PLAN          */
/* ========================================= */
.vm-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--white);
    color: var(--dark);
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.04);
}
.vm-item {
    padding: 80px 10%;
    border-right: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}
.vm-item:last-child { border-right: none; }
.vm-item:hover {
    background: rgba(197, 160, 89, 0.03);
}
.vm-item h2 {
    color: var(--gold);
    font-size: 28px;
    margin-bottom: 25px;
    font-family: 'Playfair Display', serif;
    display: flex;
    align-items: center;
    gap: 15px;
}
.vm-item h2 .icon {
    font-size: 32px;
}
.vm-item p {
    opacity: 0.85;
    font-weight: 400;
    font-size: 15px;
    line-height: 2;
    text-align: justify;
    color: #444;
}

/* ========================================= */
/* KARTLAR - BEYAZ KART KURUMSAL           */
/* ========================================= */
.card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 5px 30px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.04);
    transition: var(--transition);
    padding: 40px;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
}

/* KURUMSAL */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.text-block p {
    font-size: 15px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.9;
    text-align: justify;
}
.text-block .highlight {
    color: var(--gold);
    font-weight: 600;
}

.chairman-box {
    background: var(--white);
    padding: 45px;
    border-radius: var(--radius);
    border-top: 5px solid var(--gold);
    box-shadow: 0 5px 30px rgba(0,0,0,0.04);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}
.chairman-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
}
.chairman-box::before {
    content: "TAY-KAR";
    position: absolute;
    right: -10px;
    bottom: -10px;
    font-size: 70px;
    font-weight: 700;
    color: rgba(0,0,0,0.02);
    z-index: 0;
}
.chairman-box .avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #fff;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}
.chairman-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    margin-bottom: 5px;
    position: relative;
    z-index: 1;
}
.chairman-box .title {
    color: var(--gold);
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.chairman-box p {
    position: relative;
    z-index: 1;
    color: #666;
    line-height: 1.8;
    font-size: 14px;
}

/* PROJELER */
.portfolio-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 70px;
    padding: 35px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 5px 30px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.04);
    transition: var(--transition);
}
.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
}
.portfolio-item:nth-child(even) { direction: rtl; }
.portfolio-item:nth-child(even) .p-content { direction: ltr; }

.p-image {
    position: relative;
    height: 320px;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
}
.p-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}
.p-image:hover img { transform: scale(1.05); }
.p-image .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 30px;
}
.p-image:hover .overlay { opacity: 1; }
.p-image .overlay span {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.p-image .overlay span::after {
    content: ' \2192';
}

.p-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--dark);
    margin-bottom: 15px;
}
.p-content p {
    color: #666;
    line-height: 1.9;
    margin-bottom: 25px;
    font-size: 14px;
    text-align: justify;
}

.btn-outline {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid var(--gold);
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 2px;
    transition: var(--transition);
    cursor: pointer;
    background: transparent;
    border-radius: 50px;
}
.btn-outline:hover {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.3);
}

/* İLETİŞİM */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: var(--white);
    padding: 50px;
    border-radius: var(--radius);
    box-shadow: 0 5px 30px rgba(0,0,0,0.04);
    border-top: 4px solid var(--gold);
}
.contact-info h3 {
    color: var(--gold);
    font-size: 24px;
    margin-bottom: 5px;
    font-family: 'Playfair Display', serif;
}
.contact-info .c-company {
    font-weight: 600;
    font-size: 13px;
    color: var(--dark);
    margin-bottom: 25px;
    display: block;
    letter-spacing: 1px;
}
.contact-info ul { list-style: none; }
.contact-info ul li {
    margin-bottom: 15px;
    font-size: 14px;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.contact-info ul li .icon {
    color: var(--gold);
    font-size: 18px;
    width: 30px;
    text-align: center;
}
.contact-info ul li strong {
    color: var(--dark);
    font-weight: 600;
}
.contact-map {
    width: 100%;
    height: 100%;
    min-height: 320px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    border: 2px solid var(--gold);
}

/* ========================================= */
/* FOOTER                                   */
/* ========================================= */
footer {
    background: #050505;
    color: var(--white);
    padding: 60px 8% 25px;
    text-align: center;
    border-top: 1px solid rgba(197, 160, 89, 0.1);
    margin-top: 0;
}
.footer-logo {
    height: 50px;
    margin-bottom: 20px;
    opacity: 0.7;
    transition: var(--transition);
}
.footer-logo:hover { opacity: 1; }
.footer-nav {
    margin: 25px 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}
.footer-nav a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition);
}
.footer-nav a:hover {
    opacity: 1;
    color: var(--gold);
}
.prepared-by {
    margin-top: 30px;
    font-size: 11px;
    opacity: 0.3;
    border-top: 1px solid #1a1a1a;
    padding-top: 20px;
    letter-spacing: 1px;
}
.prepared-by a {
    color: inherit;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
}
.prepared-by a:hover {
    opacity: 1;
    color: var(--gold);
}

/* ========================================= */
/* GALERİ MODAL                             */
/* ========================================= */
.modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.97);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
}
.modal-content {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.close-lb {
    position: absolute;
    top: 20px;
    right: 40px;
    color: var(--white);
    font-size: 45px;
    font-weight: 300;
    transition: var(--transition);
    cursor: pointer;
    z-index: 3001;
}
.close-lb:hover { color: var(--gold); transform: rotate(90deg); }
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 20px;
    transform: translateY(-50%);
    color: white;
    font-weight: bold;
    font-size: 28px;
    transition: var(--transition);
    background: rgba(0,0,0,0.5);
    user-select: none;
    z-index: 3001;
}
.next { right: 0; border-radius: 4px 0 0 4px; }
.prev { left: 0; border-radius: 0 4px 4px 0; }
.prev:hover, .next:hover { background: var(--gold); }
.counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 14px;
    letter-spacing: 2px;
    z-index: 3001;
    background: rgba(0,0,0,0.5);
    padding: 8px 20px;
    border-radius: 50px;
}

/* ========================================= */
/* SCROLL TOP BUTTON                        */
/* ========================================= */
#scrollTopBtn {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 2500;
    background: var(--gold);
    color: var(--white);
    border: none;
    outline: none;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 22px;
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.3);
    transition: var(--transition);
    line-height: 50px;
    text-align: center;
}
#scrollTopBtn:hover {
    background: var(--dark);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

/* ========================================= */
/* WATERMARK                                */
/* ========================================= */
.watermark-bg {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70vw;
    max-width: 700px;
    height: 70vh;
    background: url('logo.png') no-repeat center center;
    background-size: contain;
    opacity: 0.02;
    z-index: -1;
    pointer-events: none;
}

/* ========================================= */
/* MOBİL UYUM - UYGULAMA GİBİ              */
/* ========================================= */
@media (max-width: 992px) {
    body { padding-top: 0; }

    header {
        padding: 15px 5%;
        background: var(--dark-menu);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(197, 160, 89, 0.1);
    }
    body.index-page header {
        background: var(--dark-menu);
    }
    header.scrolled { padding: 12px 5%; }
    .logo-container img { height: 40px; }

    .hamburger { display: flex; }
    .hamburger.active span:nth-child(1) { transform: rotate(-45deg) translate(-5px, 5px); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: rotate(45deg) translate(-5px, -5px); }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        padding: 40px;
        transition: right 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0);
        box-shadow: -10px 0 40px rgba(0,0,0,0.5);
        z-index: 2000;
    }
    nav.active { right: 0; }
    nav ul {
        flex-direction: column;
        gap: 25px;
        margin: 0;
        align-items: center;
    }
    nav ul li a {
        font-size: 18px;
        letter-spacing: 3px;
        color: #fff;
    }
    nav ul li a::after { display: none; }
    nav ul li a.active { color: var(--gold); }
    .lang-btn {
        margin-top: 30px;
        font-size: 13px;
        padding: 12px 30px;
    }

    /* HERO - MOBİL TAM EKRAN */
    .hero {
        height: 100vh !important;
        min-height: 100vh !important;
        max-height: 100vh !important;
    }
    .hero-content {
        padding: 30px 20px;
        margin: 0 15px;
        background: rgba(0,0,0,0.5);
    }
    .hero-content h1 {
        font-size: 22px;
        letter-spacing: 0;
    }
    .hero-content p {
        font-size: 11px;
        letter-spacing: 2px;
    }
    .slide {
        background-size: cover !important;
        background-position: center center !important;
    }
    .slide-caption {
        font-size: 9px;
        padding: 8px 16px;
        bottom: 15%;
        white-space: normal;
        text-align: center;
        width: 85%;
        letter-spacing: 2px;
    }

    /* Bölümler */
    section { padding: 60px 5%; }
    .section-header h2 { font-size: 28px; }
    .section-header h2::after { width: 50px; }

    .vm-container {
        grid-template-columns: 1fr;
        border-radius: var(--radius);
    }
    .vm-item {
        padding: 50px 6%;
        border-right: none;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    .vm-item:last-child { border-bottom: none; }
    .vm-item h2 { font-size: 22px; }
    .vm-item p { font-size: 14px; }

    .grid-2 { grid-template-columns: 1fr; gap: 30px; }
    .chairman-box { padding: 30px; }

    .portfolio-item {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 20px;
        margin-bottom: 40px;
    }
    .portfolio-item:nth-child(even) { direction: ltr; }
    .p-image { height: 220px; }
    .p-content h3 { font-size: 22px; }

    .contact-grid {
        grid-template-columns: 1fr;
        padding: 25px;
        gap: 30px;
    }
    .contact-map { min-height: 250px; }

    /* Galeri Mobil */
    .modal { background-color: #000; backdrop-filter: none; }
    .modal-content {
        max-width: 100vw;
        max-height: 100dvh;
        width: 100%;
        border: none;
        border-radius: 0;
        box-shadow: none;
    }
    .prev, .next { display: none !important; }
    .close-lb { top: 15px; right: 20px; font-size: 35px; }
    .counter {
        top: 20px;
        bottom: auto;
        background: rgba(0,0,0,0.6);
        padding: 5px 16px;
        border-radius: 20px;
        font-size: 12px;
    }

    footer { padding: 40px 5% 20px; }
    .footer-nav { gap: 12px; }
    .footer-nav a { font-size: 10px; letter-spacing: 1px; }
    .prepared-by { font-size: 10px; }

    #scrollTopBtn {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
        font-size: 18px;
        line-height: 44px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 18px; }
    .hero-content p { font-size: 10px; letter-spacing: 1px; }
    .p-image { height: 180px; }
    .portfolio-item { padding: 15px; }
    .section-header h2 { font-size: 22px; }
}