/* =============================================
   STAR EVENT - Premium Dark Mode CSS
   ============================================= */

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

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* =============================================
   TOP UTILITY BAR
   ============================================= */
.top-bar {
    background: #fff;
    color: #000;
    padding: 8px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 500;
    position: relative;
    z-index: 200;
}

.top-bar-left a {
    color: #000;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: opacity 0.2s;
}

.top-bar-left a:hover {
    opacity: 0.6;
}

.top-bar-right {
    display: flex;
    gap: 28px;
    align-items: center;
}

.top-bar-right a {
    color: #000;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: opacity 0.2s;
}

.top-bar-right a:hover {
    opacity: 0.6;
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 20px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.3s;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.96);
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar-logo a {
    display: flex;
    align-items: center;
    line-height: 0;
}

.navbar-logo-img {
    height: 140px;
    width: auto;
    display: block;
    border-radius: 8px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.navbar-logo-img:hover {
    transform: scale(1.04);
    opacity: 0.9;
}

.footer-logo-img {
    height: 90px;
    width: auto;
    display: block;
    margin-bottom: 16px;
    border-radius: 10px;
    opacity: 0.95;
}

.logo-text {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -1px;
    color: #fff;
    line-height: 1;
}

.logo-text span {
    color: #c9a84c;
}

.logo-sub {
    font-size: 10px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 2px;
}

.navbar-links {
    display: flex;
    list-style: none;
    gap: 36px;
    align-items: center;
}

.navbar-links a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
    position: relative;
    transition: color 0.2s;
}

.navbar-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #c9a84c;
    transition: width 0.3s ease;
}

.navbar-links a:hover {
    color: #fff;
}

.navbar-links a:hover::after {
    width: 100%;
}

.navbar-links a.active {
    color: #fff;
}

.navbar-links a.active::after {
    width: 100%;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    transition: all 0.3s;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #000;
}

/* Animated wave background */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: radial-gradient(ellipse at 70% 50%, #0d0d1a 0%, #000 60%);
}

/* Star canvas */
#starCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hero-glow {
    position: absolute;
    right: -10%;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 168, 76, 0.12);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 600;
    color: #c9a84c;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 28px;
    animation: fadeInUp 0.6s ease both;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #c9a84c;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.hero h1 {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    max-width: 600px;
    margin-bottom: 24px;
    animation: fadeInUp 0.7s ease 0.1s both;
}

.hero-sub {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    max-width: 420px;
    margin-bottom: 44px;
    line-height: 1.7;
    animation: fadeInUp 0.7s ease 0.2s both;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.7s ease 0.3s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: all 0.25s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.btn-primary:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.btn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.btn-gold {
    background: #c9a84c;
    color: #000;
    border-color: #c9a84c;
}

.btn-gold:hover {
    background: transparent;
    color: #c9a84c;
    border-color: #c9a84c;
}

/* Stats row */
.hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 64px;
    flex-wrap: wrap;
    animation: fadeInUp 0.7s ease 0.4s both;
}

.stat-item {
    border-left: 2px solid rgba(201, 168, 76, 0.4);
    padding-left: 16px;
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
    color: #c9a84c;
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

/* =============================================
   SECTIONS COMMON
   ============================================= */
section {
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c9a84c;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    max-width: 520px;
}

/* Fade in on scroll */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   SERVICES SECTION (dark)
   ============================================= */
.services-section {
    background-color: #f5f5f5;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Ctext x='30' y='38' text-anchor='middle' font-size='18' fill='%23000' opacity='0.07' font-family='serif'%3E%E2%98%85%3C/text%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 60px 60px;
    padding: 100px 0;
    color: #000;
}

.services-section .section-title {
    color: #000;
}

.services-section .section-desc {
    color: rgba(0, 0, 0, 0.55);
}

.services-section .section-header {
    margin-bottom: 64px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: rgba(0, 0, 0, 0.06);
}

.service-card {
    background: #fff;
    padding: 48px 36px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
    cursor: default;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #c9a84c;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    background: #fafafa;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(201, 168, 76, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    font-size: 24px;
    color: #c9a84c;
    transition: background 0.3s;
}

.service-card:hover .service-icon {
    background: rgba(201, 168, 76, 0.2);
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #000;
}

.service-card p {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.55);
    line-height: 1.7;
}

/* =============================================
   STAR GALERİ SECTION
   ============================================= */
.gallery-section {
    background: #080808;
    padding: 100px 0;
    position: relative;
}

.gallery-header {
    margin-bottom: 56px;
}

/* 3 sütunlu grid, kare kartlar */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    background: #111;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease, filter 0.45s ease;
    filter: brightness(0.85);
}

.gallery-item:hover img {
    transform: scale(1.12);
    filter: brightness(0.4);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    /* açıklama alta yaslanır */
    padding: 24px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

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

.gallery-zoom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    font-size: 26px;
    background: rgba(0, 0, 0, 0.45);
    border-radius: 50%;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    transition: transform 0.35s ease;
}

.gallery-item:hover .gallery-zoom {
    transform: translate(-50%, -50%);
}

/* Caption - fotoğrafın altına kayan yazı */
.gallery-caption {
    width: 100%;
    color: #fff;
    text-align: center;
    transform: translateY(12px);
    transition: transform 0.35s ease;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

.gallery-caption h4 {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 4px;
    letter-spacing: 0.3px;
}

.gallery-caption p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.4;
}

/* ── LIGHTBOX ── */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9000;
    background: rgba(0, 0, 0, 0.93);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
}

.lightbox.open {
    display: flex;
}

.lightbox-content {
    max-width: 88vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 10px;
    object-fit: contain;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.7);
    animation: lbIn 0.3s ease;
}

@keyframes lbIn {
    from {
        opacity: 0;
        transform: scale(0.94);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: fixed;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    line-height: 1;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(201, 168, 76, 0.25);
    border-color: rgba(201, 168, 76, 0.4);
}

.lightbox-close {
    top: 24px;
    right: 24px;
    font-size: 18px;
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
}

/* Responsive galeri */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .lightbox-prev {
        left: 8px;
    }

    .lightbox-next {
        right: 8px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}



/* =============================================
   PORTFOLIO / HIZMETLER DETAIL SECTION
   ============================================= */
.portfolio-section {
    background: #000;
    padding: 100px 0;
}

.portfolio-header {
    margin-bottom: 64px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.portfolio-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    background: #111;
}

.portfolio-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: brightness(0.7);
}

.portfolio-card:hover img {
    transform: scale(1.06);
    filter: brightness(0.5);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 60%);
    transition: background 0.3s;
}

.portfolio-card:hover .portfolio-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.portfolio-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #c9a84c;
    margin-bottom: 8px;
}

.portfolio-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.portfolio-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.portfolio-card:hover p {
    max-height: 80px;
}

/* =============================================
   TEAM / EKİBİMİZ SECTION
   ============================================= */
.team-section {
    background: #080808;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.team-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(30, 50, 120, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.team-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 72px;
    position: relative;
    z-index: 1;
}

.team-feature {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.team-feature-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #c9a84c;
}

.team-feature h3 {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.team-feature p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
}

/* =============================================
   CONTACT SECTION
   ============================================= */
.contact-section {
    background: #111;
    padding: 100px 0;
}

.contact-simple {
    text-align: center;
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    /* Başlık, Email, Telefon arası boşluk */
}

.contact-simple h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 8px;
    /* Gap kullanıldığı için alt boşluğu azaltıldı */
    letter-spacing: -0.5px;
}

.contact-email {
    display: inline-block;
    font-size: clamp(16px, 2.5vw, 24px);
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}

.contact-email:hover {
    color: #c9a84c;
}

.contact-phone {
    display: inline-block;
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 800;
    color: #c9a84c;
    letter-spacing: -1px;
    transition: opacity 0.2s;
    border-bottom: 3px solid rgba(201, 168, 76, 0.3);
    padding-bottom: 4px;
}

.contact-phone:hover {
    opacity: 0.8;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-detail-item h4 {
    font-size: 13px;
    font-weight: 700;
    color: #c9a84c;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.contact-detail-item p,
.contact-detail-item a {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s;
}

.contact-detail-item a:hover {
    color: #fff;
}

.contact-form-area h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.contact-form-area p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 36px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.form-group input,
.form-group textarea,
.form-group select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 14px 16px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
    resize: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: rgba(201, 168, 76, 0.5);
    background: rgba(255, 255, 255, 0.08);
}

.form-group select option {
    background: #222;
}

.form-group textarea {
    min-height: 120px;
}

/* =============================================
   FOOTER
   ============================================= */
footer {
    background: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 60px 60px 30px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    margin-bottom: 30px;
}

.footer-brand .logo-text {
    font-size: 24px;
}

.footer-brand .logo-sub {
    margin-top: 4px;
}

.footer-brand p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
    margin-top: 16px;
    max-width: 240px;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.2s;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.social-btn:hover {
    background: rgba(201, 168, 76, 0.15);
    color: #c9a84c;
    border-color: rgba(201, 168, 76, 0.3);
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul li a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: #c9a84c;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.3);
    transition: color 0.2s;
}

.footer-bottom a:hover {
    color: rgba(255, 255, 255, 0.6);
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .navbar {
        padding: 18px 32px;
    }

    .container {
        padding: 0 32px;
    }

    .hero-content {
        padding: 0 32px;
    }

    footer {
        padding: 60px 32px 30px;
    }

    .top-bar {
        padding: 8px 32px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .contact-grid {
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .top-bar-right .email-link {
        display: none;
    }

    .navbar {
        padding: 16px 20px;
    }

    .navbar-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .navbar-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.97);
        padding: 20px;
        gap: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .hero {
        min-height: 80vh;
    }

    .hero-content {
        padding: 60px 20px;
    }

    .hero-stats {
        gap: 28px;
    }

    .container {
        padding: 0 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

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

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

    .team-features {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    footer {
        padding: 48px 20px 24px;
    }

    .top-bar {
        padding: 8px 20px;
    }
}