:root {
    --bg-main: #fafbfc;
    --bg-surface: #ffffff;
    --bg-card: #f5f7fa;
    --bg-soft: #eef2f5;

    --accent: #d4af37;
    --accent-strong: #b8860b;
    --accent-muted: rgba(212, 175, 55, 0.1);

    --text-main: #1a1f2e;
    --text-soft: #52596d;
    --text-muted: #8a92a2;

    --stroke: rgba(26, 31, 46, 0.1);
    --stroke-strong: rgba(26, 31, 46, 0.15);

    --shadow-sm: 0 2px 8px rgba(26, 31, 46, 0.06);
    --shadow-md: 0 4px 16px rgba(26, 31, 46, 0.08);
    --shadow-lg: 0 8px 32px rgba(26, 31, 46, 0.1);

    --radius-xl: 18px;
    --radius-lg: 12px;
    --radius-md: 8px;
    --radius-sm: 4px;

    --container: 1360px;
    --section-space: clamp(60px, 8vw, 100px);

    --font-display: 'Syne', sans-serif;
    --font-serif: 'Cinzel', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    --transition: all 0.3s ease-out;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: linear-gradient(135deg, #fafbfc 0%, #ffffff 50%, #f5f7fa 100%);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
    letter-spacing: 0;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    transition: var(--transition);
}

::selection {
    background: var(--accent);
    color: #ffffff;
}

/* HEADER */
header {
    position: fixed;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: min(var(--container), calc(100% - 28px));
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid var(--stroke);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
}

.navbar {
    min-height: 66px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 0 22px;
}

/* LOGO */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-main);
    font-family: var(--font-serif);
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.logo span {
    color: var(--accent-strong);
}

.logo-wrapper {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: var(--accent-muted);
    border: 1px solid rgba(212, 175, 55, 0.15);
    overflow: hidden;
}

.logo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-serif);
    color: var(--text-main);
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* NAV LINKS */
.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 18px;
}

.nav-links a {
    color: var(--text-soft);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    position: relative;
    padding: 6px 0;
    transition: color var(--transition);
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--accent-strong);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--accent-strong);
}

.nav-links a:hover::after {
    width: 100%;
}

/* HERO */
#hero {
    max-width: var(--container);
    margin: 0 auto;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: clamp(24px, 4vw, 56px);
    padding: 120px 28px 48px;
    position: relative;
    background-color: #ffffff;
}

.hero-left {
    max-width: 680px;
}

.hero-left h1 {
    font-family: var(--font-serif);
    font-size: clamp(36px, 4.6vw, 56px);
    line-height: 1.15;
    color: var(--text-main);
    margin-bottom: 18px;
    letter-spacing: -0.5px;
    font-weight: 700;
}

.hero-left h1 span {
    color: var(--accent-strong);
}

.hero-left p {
    font-size: clamp(15px, 1.1vw, 16px);
    color: var(--text-soft);
    max-width: 60ch;
    margin-bottom: 28px;
    line-height: 1.8;
}

.hero-right {
    position: relative;
    width: 100%;
    min-height: 420px;
    height: min(65vh, 620px);
    
    /* Daha keskin ve modern büyük köşeler */
    border-radius: 40px; 
    overflow: hidden;
    
    /* Altın kenarlık ve ışık efekti */
    border: 3px solid #d4af37; 
    background: #0b0f19;
    
    /* Derinlik veren ışık gölgesi */
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.25), 
                inset 0 0 20px rgba(212, 175, 55, 0.15);
    
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Şık bir degrade geçişi (Fotoğrafın üzerine) */
.hero-right::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(11, 15, 25, 0.7) 100%);
    pointer-events: none;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    filter: brightness(1.05) contrast(1.05); /* Fotoğrafı daha canlı gösterir */
}

/* Hover olduğunda parlamayı artır */
.hero-right:hover {
    border-color: #aa841b;
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.4), 
                inset 0 0 30px rgba(212, 175, 55, 0.2);
    transform: translateY(-5px);
}

.hero-right:hover img {
    transform: scale(1.06); /* Fotoğraf daha akıcı büyür */
}
/* BUTTON */
.btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 30px;
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.12em;
    border: 1px solid transparent;
    border-radius: 999px;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.2);
    transition: var(--transition);
    cursor: pointer;
}

.btn-gold:hover {
    background: linear-gradient(135deg, #e8c950, #c49a2c);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(212, 175, 55, 0.3);
}
.btn-detail {
    text-decoration: none;
    color: #d4af37;
    font-weight: 600;
    border: 2px solid #d4af37;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
}

.btn-detail:hover {
    background-color: #d4af37;
    color: #ffffff;
}

/* GENERAL SECTION */
section {
    max-width: var(--container);
    margin: 0 auto;
    padding: var(--section-space) 28px;
    scroll-margin-top: 90px;
    position: relative;
}

section + section {
    border-top: 1px solid var(--stroke);
}

/* SECTION HEADER */
.section-header {
    display: grid;
    grid-template-columns: 1fr minmax(240px, 450px);
    align-items: end;
    gap: 20px;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--stroke);
}

.section-header h2 {
    font-family: var(--font-serif);
    font-size: clamp(26px, 2.6vw, 38px);
    color: var(--text-main);
    line-height: 1.2;
    letter-spacing: -0.3px;
    font-weight: 700;
}

.section-header h2 span {
    color: var(--accent-strong);
}

.section-header p {
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.7;
    text-align: right;
}

/* SERVICES */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.service-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 280px;
    padding: 28px;
    background: var(--bg-surface);
    border: 1px solid var(--stroke);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, var(--accent-muted), transparent 50%);
    opacity: 0;
    transition: opacity var(--transition);
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.2);
    box-shadow: var(--shadow-md);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card .card-num {
    position: absolute;
    top: 20px;
    right: 24px;
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 800;
    color: rgba(212, 175, 55, 0.08);
    transition: var(--transition);
    line-height: 1;
}

.service-card:hover .card-num {
    color: rgba(212, 175, 55, 0.15);
}

.icon-box {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: var(--accent-muted);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--accent-strong);
    font-size: 22px;
    transition: var(--transition);
}

.service-card:hover .icon-box {
    background: rgba(212, 175, 55, 0.15);
}

.service-card .icon-box i {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    color: inherit !important;
    font-size: 20px !important;
}

.service-card h3 {
    font-family: var(--font-body);
    font-size: 17px;
    color: var(--text-main);
    font-weight: 600;
    line-height: 1.3;
}

.service-card p {
    color: var(--text-soft);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
}

/* PROJECTS */
.project-showcase {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 56px;
}

.project-brutal-card {
    background: var(--bg-surface);
    border: 1px solid var(--stroke);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.project-brutal-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.2);
    box-shadow: var(--shadow-md);
}

.img-container {
    position: relative;
    aspect-ratio: 4 / 3;
    min-height: 200px;
    overflow: hidden;
    background: var(--bg-card);
}

.img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease-out;
}

.project-brutal-card:hover .img-container img {
    transform: scale(1.03);
}

.project-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--text-main);
    padding: 5px 11px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 999px;
    border: 1px solid var(--stroke);
    backdrop-filter: blur(6px);
    box-shadow: var(--shadow-sm);
}

.project-details-wrap {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.project-details-wrap h3 {
    font-family: var(--font-serif);
    font-size: 19px;
    color: var(--text-main);
    margin-bottom: 5px;
    font-weight: 700;
}

.company-label {
    font-size: 12px;
    color: var(--accent-strong);
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.project-details-wrap p {
    color: var(--text-soft);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 16px;
}

.project-footer-spec {
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--stroke);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: var(--text-muted);
}

/* FILTERS */
.filter-section {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}

.filter-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--bg-surface);
    border: 1px solid var(--stroke);
    color: var(--text-soft);
    padding: 9px 16px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    border-radius: 999px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.filter-btn:hover {
    color: var(--accent-strong);
    border-color: rgba(212, 175, 55, 0.3);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    color: #ffffff;
    border-color: var(--accent);
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.2);
}

.status-filters {
    border-bottom: 1px solid var(--stroke);
    padding-bottom: 10px;
    gap: 20px;
}

.status-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 3px 0;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    border-radius: 0;
    position: relative;
    transition: color var(--transition);
}

.status-btn::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -11px;
    width: 0;
    height: 2px;
    background: var(--accent-strong);
    transition: var(--transition);
}

.status-btn:hover,
.status-btn.active {
    color: var(--accent-strong);
}

.status-btn.active::after {
    width: 100%;
}

/* GALLERY */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 4 / 3.2;
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid var(--stroke);
    background: var(--bg-card);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.gallery-item:hover {
    transform: translateY(-3px);
    border-color: rgba(212, 175, 55, 0.2);
    box-shadow: var(--shadow-md);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease-out;
}

.gallery-item:hover img {
    transform: scale(1.03);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 31, 46, 0.85) 0%, rgba(26, 31, 46, 0.3) 60%, transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3 {
    font-family: var(--font-body);
    font-size: 16px;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 4px;
    transform: translateY(8px);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay h3 {
    transform: translateY(0);
}

/* CONTACT */
.contact-container {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 24px;
    background: var(--bg-surface);
    padding: 24px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--stroke);
    box-shadow: var(--shadow-md);
    margin-top: -140px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-intro-text h3 {
    font-family: var(--font-serif);
    font-size: clamp(24px, 2.1vw, 32px);
    line-height: 1.25;
    margin-bottom: 10px;
    color: var(--text-main);
    font-weight: 700;
}

.contact-intro-text p {
    color: var(--text-soft);
    font-weight: 400;
    line-height: 1.7;
    font-size: 14px;
}

.info-cards-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    padding: 12px 14px;
    background: var(--bg-card);
    border: 1px solid var(--stroke);
    border-radius: 8px;
    transition: var(--transition);
}

.contact-card:hover {
    border-color: rgba(212, 175, 55, 0.2);
    background: var(--bg-soft);
}

.contact-card i {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 6px;
    background: var(--accent-muted);
    color: var(--accent-strong);
    font-size: 15px;
    flex-shrink: 0;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.contact-card h4 {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 3px;
    font-weight: 700;
}

.contact-card p,
.contact-card a {
    font-size: 14px;
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
}

.contact-card a:hover {
    color: var(--accent-strong);
}

.map-wrapper {
    height: 180px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--stroke);
}

/* FORM */
.contact-form-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--stroke);
    padding: 24px;
    border-radius: var(--radius-lg);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group {
    position: relative;
    width: 100%;
}

.form-control {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--stroke-strong);
    padding: 12px 0 9px;
    color: var(--text-main);
    font-size: 14px;
    transition: var(--transition);
}

.form-control::placeholder {
    color: transparent;
}

.form-control:focus {
    outline: none;
    border-bottom-color: var(--accent-strong);
}

.form-group label {
    position: absolute;
    left: 0;
    top: 12px;
    color: var(--text-muted);
    pointer-events: none;
    transition: var(--transition);
    font-size: 13px;
    font-weight: 500;
}

.form-control:focus ~ label,
.form-control:not(:placeholder-shown) ~ label {
    top: -6px;
    font-size: 11px;
    color: var(--accent-strong);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 700;
}

textarea.form-control {
    resize: vertical;
    min-height: 90px;
}

.contact-form .btn-gold {
    width: 100%;
    margin-top: 4px;
    padding: 12px 18px;
    border-radius: 8px;
}

/* WHATSAPP */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.25);
    z-index: 999;
    transition: var(--transition);
    border: 1px solid transparent;
}

.whatsapp-float:hover {
    background: var(--accent-strong);
    transform: scale(1.08);
    box-shadow: 0 6px 28px rgba(212, 175, 55, 0.35);
}

/* FOOTER */
footer {
    background: linear-gradient(180deg, #ffffff 0%, var(--bg-card) 100%);
    padding: 42px 28px 24px;
    margin-top: 40px;
    border-top: 1px solid var(--stroke);
}

.footer-inner.footer-grid {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 0.9fr 0.9fr 1fr;
    gap: 32px;
    align-items: start;
    margin-bottom: 24px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-brand {
    gap: 14px;
}

.footer-brand > div:first-child {
    display: flex;
    align-items: center;
    gap: 9px;
}

.footer-brand .logo-wrapper {
    width: 40px;
    height: 40px;
}

.footer-brand > div:first-child > div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-brand > div:first-child > div:first-child {
    font-family: var(--font-serif);
    letter-spacing: 0.4px;
    color: var(--text-main);
    font-weight: 700;
    font-size: 12px;
}

.footer-brand > div:first-child > div:first-child span {
    color: var(--accent-strong);
}

.footer-brand > div:first-child > div:last-child {
    color: var(--text-muted);
    font-size: 10px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 600;
}

.footer-brand > p {
    color: var(--text-soft);
    font-size: 13px;
    line-height: 1.65;
    margin: 2px 0 0 0;
}

.footer-title {
    font-family: var(--font-serif);
    color: var(--text-main);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-soft);
    font-size: 13px;
    transition: var(--transition);
    line-height: 1.6;
}

.footer-links a:hover {
    color: var(--accent-strong);
}

.footer-social {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.footer-social-item {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: grid;
    place-items: center;
    text-decoration: none;
    color: var(--accent-strong);
    background: var(--accent-muted);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition);
    font-size: 13px;
}

.footer-social-item:hover {
    color: #ffffff;
    background: var(--accent-strong);
    border-color: var(--accent-strong);
    transform: translateY(-1px);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-contact-row {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: var(--text-soft);
    font-size: 13px;
    line-height: 1.5;
}

.footer-contact-row i {
    color: var(--accent-strong);
    width: 13px;
    flex-shrink: 0;
    margin-top: 1px;
    font-size: 11px;
}

.footer-contact-row a {
    color: var(--text-soft);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact-row a:hover {
    color: var(--accent-strong);
}

.footer-col .btn-gold {
    margin-top: 2px;
    padding: 10px 16px;
    font-size: 9px;
}

.footer-bottom {
    border-top: 1px solid var(--stroke);
    padding-top: 12px;
}

.footer-bottom-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--text-muted);
    font-size: 12px;
}
/* Ortak grid yapısı */
.responsive-grid {
    display: grid;
    /* 300px ekran genişliğinde tek sütun, yer varsa 2 veya daha fazla sütun */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    #hero {
        grid-template-columns: 1fr;
        padding-top: 130px;
    }

    .hero-left {
        max-width: 100%;
        text-align: center;
        margin: 0 auto;
    }

    .hero-left p {
        margin-inline: auto;
    }

    .hero-right {
        height: min(50vh, 480px);
    }

    .section-header {
        grid-template-columns: 1fr;
    }

    .section-header p {
        text-align: left;
        max-width: 65ch;
    }

    .services-grid,
    .project-showcase,
    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-container {
        grid-template-columns: 1fr;
        margin-top: -110px;
    }

    .footer-inner.footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
}

@media (max-width: 992px) {
    header {
        width: calc(100% - 20px);
        top: 10px;
    }

    .navbar {
        padding: 0 16px;
        min-height: 60px;
    }

    .nav-links {
        gap: 14px;
    }

    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    header {
        top: 0;
        width: 100%;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }

    .navbar {
        min-height: 60px;
        padding: 0 14px;
    }

    .nav-links {
        display: none;
    }

    #hero,
    section {
        padding-inline: 16px;
    }

    #hero {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 32px;
    }

    .hero-left h1 {
        font-size: clamp(30px, 7.5vw, 42px);
    }

    .hero-right {
        min-height: 260px;
        height: 38vh;
    }

    section {
        padding-block: 56px;
    }

    .services-grid,
    .project-showcase,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .service-card,
    .project-details-wrap,
    .contact-form-wrapper {
        padding: 18px;
    }

.contact-container {
        display: grid;
        grid-template-columns: 1fr; /* Yan yanadan tek sütuna geçiş */
        gap: 30px;
        padding: 20px;
    }

    .info-cards-block {
        grid-template-columns: 1fr; /* İletişim kartlarını mobilde tek sütun yap */
        display: grid;
        gap: 15px;
    }

    .contact-card {
        padding: 15px;
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .map-wrapper {
        height: 250px; /* Mobil için harita yüksekliğini sabitle */
        margin-top: 20px;
    }

    .footer-inner.footer-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        padding: 0 16px;
        gap: 8px;
    }
    .references-grid {
    display: grid;
    /* 300px ekran genişliğinde tek sütuna düşer, alan varsa 3 sütuna yayılır */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
}

@media (max-width: 576px) {
    .logo-wrapper {
        width: 44px;
        height: 44px;
    }

    .logo-text {
        font-size: 11px;
    }

    .btn-gold {
        width: 100%;
        padding: 11px 18px;
        font-size: 9px;
    }

    .section-header {
        margin-bottom: 28px;
    }

    .section-header h2 {
        font-size: 22px;
    }

    .service-card .card-num {
        font-size: 32px;
        top: 16px;
        right: 18px;
    }

    .filter-btn {
        padding: 7px 12px;
        font-size: 9px;
    }

    .contact-card {
        padding: 10px 12px;
    }

    .map-wrapper {
        height: 140px;
    }

    .whatsapp-float {
        width: 48px;
        height: 48px;
        right: 14px;
        bottom: 14px;
        font-size: 20px;
    }
    
}