/* PERFORMANS OPTİMİZASYONU - Scroll davranışlarını düzenlemek için */
html, body {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Video performans optimizasyonları */
video {
    will-change: transform;
    transform: translateZ(0); /* Hardware acceleration */
}

/* Hero video lazy loading */
.hero-slider .ms-video {
    background: #000;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hero-slider .ms-video.loaded {
    opacity: 1;
}

/* Gallery video lazy loading */
.gallery-item video[loading="lazy"] {
    background: #000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item video[loading="lazy"].loaded {
    opacity: 1;
}

/* Intersection Observer için optimize edilmiş stiller */
.gallery-item video {
    background-color: #111;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23333"><path d="M8 5v14l11-7z"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 60px 60px;
}

.gallery-item video.loaded {
    background-image: none;
}

/* Devamını Oku butonu efektli ve modern */
.btn-minimal {
    background: linear-gradient(90deg, #e6b35a 0%, #f7d774 40%, #fff6c3 60%, #e6b35a 100%);
    color: #222;
    border: none;
    border-radius: 999px;
    font-weight: 600;
    padding: 12px 24px;
    font-size: 1.08em;
    letter-spacing: 0.02em;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(230, 179, 90, 0.3);
    background-size: 200% auto;
    transition: all 0.3s ease;
    position: relative;
}

.btn-minimal:hover, .btn-minimal:focus {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(247, 215, 116, 0.4), 0 0 8px #f7d77488;
    background-position: right center;
}
/* Açılır içerik animasyonu */
.animated-fadein {
	opacity: 0;
	transform: translateY(32px) scale(0.98);
	transition: opacity 0.6s cubic-bezier(.4,1.4,.6,1), transform 0.6s cubic-bezier(.4,1.4,.6,1);
}

/* Başlık merkez hizalama */
.section-title-center {
    text-align: center;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.fade-in-active {
	opacity: 1 !important;
	transform: none !important;
}
/* Hakkımızda Devamını Oku butonu ve açılır içerik */
.about-readmore-row {
	display: flex;
	justify-content: center;
	margin: 2rem 0 1.2rem 0;
}
#aboutReadMoreBtn {
	font-size: 1.08rem;
	padding: 0.7em 2.2em;
	border-radius: 999px;
	font-weight: 700;
}
#aboutExtraSections {
	margin-top: 2.5rem;
	animation: fadeIn 0.5s;
}
/* Biten projeler hover efekti */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item video,
.gallery-item img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.04);
    box-shadow: 0 0 24px 4px #ffe066, 0 0 32px 8px #ffd6e0;
}

.gallery-item:hover video,
.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
    color: white;
    transition: all 0.3s ease;
}

.gallery-item:hover figcaption {
    background: linear-gradient(90deg, rgba(255,224,102,0.9) 0%, rgba(255,214,224,0.9) 100%);
    color: #222;
}

.gallery-item .proj-caption {
    margin-bottom: 10px;
    font-size: 1.1em;
    font-weight: 500;
    transition: color 0.3s ease;
}

.gallery-item .details-btn {
    background: rgba(255,255,255,0.15);
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.gallery-item:hover .details-btn {
    background: rgba(0,0,0,0.1);
    color: #222;
    border-color: rgba(0,0,0,0.2);
}

.gallery-item .proj-details {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.gallery-item .proj-details[hidden="false"] {
    max-height: 200px;
    opacity: 1;
}

/* Finished card styles */
.finished-card {
    cursor: pointer;
    transition: background 0.3s, color 0.3s, box-shadow 0.3s, transform 0.2s;
}

.finished-card:hover {
    background: linear-gradient(90deg, #ffe066 0%, #ffd6e0 100%);
    color: #222;
    box-shadow: 0 0 24px 4px #ffe066, 0 0 32px 8px #ffd6e0;
    transform: scale(1.04);
}

.finished-card:hover h3,
.finished-card:hover p {
    color: #222;
}
/* Hakkımızda ana metin ortalı */
.about-main-centered {
	text-align: center;
	margin: 0 auto 1.2rem auto;
	font-size: 1.08rem;
	color: #fffbe6;
}
/* Misyon sol üst, vizyon sağ alt çapraz düzen - Çerçeveli */
.mission-vision-diagonal {
	display: flex;
	flex-direction: column;
	position: relative;
	min-height: 800px;
	gap: 100px;
	align-items: stretch;
	width: fit-content;
	margin: 0 auto;
	margin-left: 200px;
}


.mission-section {
	display: flex;
	align-items: center;
	gap: 120px;
	width: fit-content;
	max-width: 1400px;
	margin: 0 auto;
	padding: 40px 30px;
	justify-content: center;
}

.vision-section {
	display: flex;
	align-items: center;
	gap: 120px;
	width: fit-content;
	max-width: 1400px;
	margin: 0 auto;
	padding: 40px 30px;
	justify-content: center;
}
.mission-diag-left {
	flex: 0 0 500px;
	text-align: right;
	padding: 20px 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-left: auto;
}

.vision-diag-right {
	flex: 0 0 500px;
	text-align: left;
	padding: 20px 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
}


/* Misyon ve Vizyon başlık ve paragraf stilleri */
.mission-diag-left h2 {
	margin: 0 0 20px 0;
	font-size: 2.2rem;
	line-height: 1.1;
	font-weight: 700;
	color: #ffa500;
	text-shadow: 0 0 10px rgba(255, 165, 0, 0.5), 0 0 20px rgba(255, 165, 0, 0.3);
	text-align: right;
}

.vision-diag-right h2 {
	margin: 0 0 20px 0;
	font-size: 2.2rem;
	line-height: 1.1;
	font-weight: 700;
	color: #ffa500;
	text-shadow: 0 0 10px rgba(255, 165, 0, 0.5), 0 0 20px rgba(255, 165, 0, 0.3);
}

.mission-diag-left p {
	margin: 0 0 16px 0;
	font-size: 1.1rem;
	line-height: 1.4;
	text-align: right;
	color: #e0e0e0;
	max-width: 100%;
}

.vision-diag-right p {
	margin: 0 0 16px 0;
	font-size: 1.1rem;
	line-height: 1.4;
	text-align: left;
	color: #e0e0e0;
	max-width: 100%;
}

.mission-diag-left p:last-child,
.vision-diag-right p:last-child {
	margin-bottom: 0;
}

/* Misyon ve Vizyon Resimleri - Altın Kenarlık ve Gölgeli */
.mission-image {
	width: 420px;
	height: 300px;
	object-fit: cover;
	border-radius: 25px;
	border: 3px solid #ffa500;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 15px rgba(255, 165, 0, 0.2);
	flex-shrink: 0;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.mission-image::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(45deg, rgba(230, 179, 90, 0.1), transparent);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.mission-image:hover {
	transform: scale(1.08) rotate(2deg);
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
	border-color: rgba(230, 179, 90, 0.8);
}

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

.vision-image {
	width: 420px;
	height: 300px;
	object-fit: cover;
	border-radius: 25px;
	border: 3px solid #ffa500;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 15px rgba(255, 165, 0, 0.2);
	flex-shrink: 0;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.vision-image::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(45deg, rgba(230, 179, 90, 0.1), transparent);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.vision-image:hover {
	transform: scale(1.08) rotate(-2deg);
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
	border-color: rgba(230, 179, 90, 0.8);
}

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

@media (max-width: 900px) {
	.mission-vision-diagonal {
		min-height: 0;
	}
	.vision-diag-right {
		margin-top: 32px;
		text-align: left;
		align-self: flex-start;
	}
}
/* FAQ Stilleri */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(230, 179, 90, 0.2);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1rem;
    cursor: pointer;
    border: none;
    background: transparent;
    color: #fffbe6;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question:hover {
    color: #e6b35a;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #e6b35a;
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"]::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    padding: 0 1rem 1rem 1rem;
    color: #fffbe6;
    line-height: 1.6;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer:not([hidden]) {
    opacity: 1;
    max-height: 500px;
}

/* Hizmetlerimiz kart hover efekti */
.service-card {
    cursor: pointer;
}
.service-card:hover {
	background: linear-gradient(90deg, #ffe066 0%, #ffd6e0 100%);
	color: #222;
	box-shadow: 0 0 24px 4px #ffe066, 0 0 32px 8px #ffd6e0;
	transform: scale(1.04);
}
.service-card:hover h3,
.service-card:hover p {
	color: #222;
}
/* Hizmetlerimiz kart grid yapısı */
.services-filter {
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin: 2rem 0;
	flex-wrap: wrap;
}

.filter-btn {
	background: transparent;
	border: 2px solid #ffe066;
	color: #ffe066;
	padding: 10px 20px;
	border-radius: 25px;
	cursor: pointer;
	transition: all 0.3s ease;
	font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
	background: #ffe066;
	color: #222;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(255, 224, 102, 0.3);
}

.services-cards-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-top: 2.5rem;
}

@media (max-width: 768px) {
	.services-cards-grid {
		grid-template-columns: 1fr;
	}
}

@media (min-width: 769px) and (max-width: 1024px) {
	.services-cards-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
.service-card {
	background: #181818;
	border-radius: 1.2rem;
	box-shadow: 0 4px 24px 0 rgba(0,0,0,0.10);
	padding: 2rem 1.2rem 1.5rem 1.2rem;
	text-align: center;
	transition: transform 0.18s, box-shadow 0.18s;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.service-card img {
	width: 100%;
	max-width: 220px;
	height: 140px;
	object-fit: cover;
	border-radius: 0.8rem;
	margin-bottom: 1.2rem;
	box-shadow: 0 2px 12px 0 rgba(0,0,0,0.10);
}
.service-card h3 {
	font-size: 1.2rem;
	margin: 0.5rem 0 0.7rem 0;
	color: #fff;
	font-weight: 600;
}
.service-card p {
	color: #e0e0e0;
	font-size: 1rem;
	margin: 0;
}
.service-card:hover {
	transform: translateY(-8px) scale(1.03);
	box-shadow: 0 8px 32px 0 rgba(0,0,0,0.18);
}
/* Misyon & Vizyon yan yana çapraz düzen */
.mission-vision-row {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: 64px;
	flex-wrap: wrap;
}
.mission-col, .vision-col {
	flex: 1 1 340px;
	max-width: 480px;
}
.mission-col {
	margin-top: 0;
}
.vision-col {
	margin-top: 60px;
}
@media (max-width: 900px) {
	.mission-vision-row {
		flex-direction: column;
		gap: 32px;
	}
	.vision-col {
		margin-top: 0;
	}
}
/* Misyon & Vizyon yan yana ve sağa hizalı */
.mission-vision-flex {
	display: flex;
	align-items: flex-start;
	justify-content: flex-end;
	gap: 48px;
	position: relative;
	margin-bottom: 1.2rem;
}
.mission-block {
	flex: 1 1 320px;
	max-width: 420px;
}
.vision-block {
	flex: 1 1 320px;
	max-width: 420px;
	margin-top: 60px;
}
.mission-title-centered {
	text-align: center;
	margin: 0 0 12px 0;
	font-size: 2.2rem;
}
.mission-img-right-big {
	height: 170px;
	max-width: 220px;
	width: auto;
	object-fit: contain;
	display: block;
	border-radius: 5px;
	box-shadow: 0 4px 32px 0 rgba(0,0,0,0.10);
	margin-left: 24px;
}
@media (max-width: 1100px) {
	.mission-vision-flex {
		flex-direction: column;
		align-items: center;
		gap: 24px;
	}
	.vision-block {
		margin-top: 24px;
	}
	.mission-img-right-big {
		margin-left: 0;
		height: 90px;
		max-width: 120px;
	}
}
/* Misyonumuz başlığı ortalı, sağda büyük görsel */
.mission-header-centered {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	margin-bottom: 1.2rem;
}
.mission-title-centered {
	flex: 1;
	text-align: center;
	margin: 0 auto;
	font-size: 2.2rem;
}
.mission-img-right {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	height: 160px;
	max-width: 340px;
	width: auto;
	object-fit: contain;
	display: block;
	border-radius: 10px;
	box-shadow: 0 4px 32px 0 rgba(0,0,0,0.10);
}
@media (max-width: 700px) {
	.mission-header-centered {
		flex-direction: column;
		align-items: center;
	}
	.mission-img-right {
		position: static;
		transform: none;
		margin-top: 12px;
		height: 56px;
		max-width: 120px;
	}
}
/* Misyonumuz başlığı ve görseli hizalı, büyük ve yan yana */
.mission-header-flex {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	margin-bottom: 1.2rem;
}
.mission-header-flex h2 {
	margin: 0;
	font-size: 2.2rem;
}
.mission-img-large {
	height: 80px;
	max-width: 180px;
	width: auto;
	object-fit: contain;
	display: block;
}
@media (max-width: 600px) {
	.mission-header-flex {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}
	.mission-img-large {
		height: 56px;
		max-width: 120px;
	}
}
/* Hizmetler listesi için efektli hover */
.service-item-effect {
	color: #fff;
	background: rgba(30,30,30,0.7);
	border-radius: 18px;
	margin: 12px 0;
	padding: 18px 22px;
	box-shadow: 0 2px 12px 0 rgba(0,0,0,0.08);
	transition: background 0.3s, color 0.3s, box-shadow 0.3s, transform 0.2s;
	cursor: pointer;
}
.service-item-effect:hover {
	background: linear-gradient(90deg, #ffe066 0%, #ffd6e0 100%);
	color: #222;
	box-shadow: 0 0 24px 4px #ffe066, 0 0 32px 8px #ffd6e0;
	transform: scale(1.04);
}
.service-item-effect strong {
	font-weight: 700;
	letter-spacing: 0.01em;
	color: inherit;
}
/* Minimalist dil butonları */
.minimalist-lang {
    font-family: 'Times New Roman', Times, serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    background: transparent;
    color: rgba(230,179,90,0.7);
    border: none;
    padding: 0.25em 0.5em;
    margin: 0;
    cursor: pointer;
    transition: all 0.2s ease;
    outline: none;
}

.minimalist-lang[aria-pressed="true"] {
    color: #e6b35a;
    background: transparent;
}

.minimalist-lang:hover {
    color: #e6b35a;
    background: transparent;
}

.lang-switch {
	display: flex;
	gap: 0.2em;
	align-items: center;
}
/* Renkli parlak efektli başlık */
.colorful-glow {
    background: linear-gradient(90deg, #e6b35a 0%, #f7d774 40%, #fff6c3 60%, #e6b35a 100%);
    color: #e6b35a;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 8px #f7d77488);
    font-weight: 800;
}
/* Hakkımızda başlığı ve açıklaması */
.about-lead-title {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 2.2rem;
	gap: 0.3rem;
}
.about-lead-brand {
	font-size: 1.35rem;
	font-weight: 700;
	color: #222;
	letter-spacing: 0.04em;
	font-family: 'Montserrat', 'Poppins', Arial, sans-serif;
}
.about-lead-desc {
	font-size: 1.08rem;
	color: #666;
	font-weight: 500;
	text-align: center;
	font-family: 'Poppins', Arial, sans-serif;
}
/* --- Hakkımızda (About) Modern Kart Grid --- */
.about-cards-grid {
	max-width: 1200px;
	margin: 0 auto;
	padding: 3rem 1rem 2rem 1rem;
}
.about-title {
	text-align: center;
	font-size: 2.2rem;
	font-weight: 700;
	margin-bottom: 2.5rem;
	letter-spacing: 0.01em;
}
.about-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 2rem;
	margin-bottom: 2.5rem;
}
.about-card {
    background: rgba(230, 233, 238, 0.92);
    border-radius: 18px;
    border: none;
    box-shadow: none;
    padding: 2rem 1.2rem 1.5rem 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 340px;
    transition: background 0.2s;
}

.about-card:hover {
    background: rgba(220, 223, 228, 0.98);
}

.about-card-img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1.1rem;
    background: #f3f3f3;
    box-shadow: none;
    border: none;
}

.about-card h3 {
    font-size: 1.18rem;
    font-weight: 600;
    margin-bottom: 0.7rem;
    text-align: center;
}

.about-card p {
    font-size: 1rem;
    color: #444;
    text-align: center;
    margin-bottom: 0.5rem;
}

/* --- Yeni Bölümler: Değerler, Tasarım Yaklaşımı, SSS, Kurucu/Ekip, Hizmetler, Detaylı Hakkımızda, Misyon/Vizyon --- */
.about-extra, .about-detailed, .founder-team, .services-detailed, .mission-vision, .faq {
	margin-top: 48px;
	margin-bottom: 48px;
	background: rgba(34, 36, 38, 0.88); /* antrasit şeffaf koyu gri */
	border-radius: 22px;
	box-shadow: 0 4px 32px 0 rgba(199,163,111,0.10);
	padding: 2.5rem 1.5rem;
	border: 1.5px solid rgba(230,179,90,0.13);
}
.about-extra h2, .about-detailed h2, .founder-team h2, .services-detailed h2, .mission-vision h2, .faq h2 {
	text-align: center;
	margin-bottom: 1.8rem;
	font-size: 2rem;
}
.values-list, .services-list {
	list-style: none;
	padding: 0;
	margin: 0 0 1.5rem 0;
	display: grid;
	gap: 1.1rem;
}
.values-list li, .services-list li {
	font-size: 1.08rem;
	color: #fff;
	background: rgba(44,46,48,0.92);
	border-radius: 12px;
	padding: 1rem 1.2rem;
	box-shadow: 0 1px 6px 0 rgba(230,179,90,0.07);
	border: 1.2px solid rgba(230,179,90,0.10);
	transition: box-shadow 0.18s, background 0.18s, color 0.18s, transform 0.18s;
	cursor: pointer;
}
.values-list li:hover {
    background: #fffbe6;
    color: #b48a2c;
    box-shadow: 0 4px 18px 0 rgba(230,179,90,0.18), 0 0 0 2px #f7d77444;
    transform: scale(1.07);
    font-weight: 700;
}

.about-approach {
	font-size: 1.08rem;
	color: #fffbe6;
	margin: 1.2rem 0 0 0;
	line-height: 1.7;
	text-align: center;
}

/* SSS (FAQ) Akordeon */
.faq-list {
	display: flex;
	flex-direction: column;
	gap: 1.1rem;
	max-width: 700px;
	margin: 0 auto;
}
.faq-item {
	background: rgba(44,46,48,0.92);
	border-radius: 12px;
	box-shadow: 0 1px 6px 0 rgba(230,179,90,0.07);
	overflow: hidden;
	border: 1.2px solid rgba(230,179,90,0.10);
}
.faq-question {
	width: 100%;
	background: none;
	border: none;
	outline: none;
	font-size: 1.08rem;
	font-weight: 700;
	color: #f7d774;
	padding: 1.1rem 1.2rem;
	text-align: left;
	cursor: pointer;
	transition: background 0.18s;
}
.faq-question[aria-expanded="true"] {
	background: rgba(230,179,90,0.08);
}
.faq-answer {
	padding: 0 1.2rem 1.1rem 1.2rem;
	font-size: 1.04rem;
	color: #fffbe6;
	animation: fadeIn 0.3s;
}
@keyframes fadeIn {
	from { opacity: 0; transform: translateY(-8px); }
	to { opacity: 1; transform: none; }
}

.founder-team p, .about-detailed p, .mission-vision p {
    font-size: 1.08rem;
    color: #fffbe6;
    text-align: center;
    margin-bottom: 0;
}

.about-card ul {
	list-style: none;
	padding: 0;
	margin: 0;
	text-align: center;
}
.about-values li, .about-why li {
	font-size: 0.98rem;
	color: #555;
	margin-bottom: 0.3rem;
}
.about-highlights-row {
	display: flex;
	justify-content: center;
	gap: 1.5rem;
	margin-top: 1.5rem;
	flex-wrap: wrap;
}
.about-highlights-row span {
	background: #f5f5f5;
	color: #222;
	border-radius: 12px;
	padding: 0.5rem 1.2rem;
	font-size: 0.98rem;
	font-weight: 500;
	margin-bottom: 0.5rem;
	transition: box-shadow 0.18s, background 0.18s, color 0.18s, transform 0.18s;
	cursor: pointer;
}
.about-highlights-row span:hover {
    background: #fffbe6;
    color: #b48a2c;
    box-shadow: 0 4px 18px 0 rgba(230,179,90,0.18), 0 0 0 2px #f7d77444;
    transform: scale(1.07);
    font-weight: 700;
}

@media (max-width: 700px) {
	.about-cards {
		grid-template-columns: 1fr;
	}
	.about-cards-grid {
		padding: 2rem 0.2rem 1.5rem 0.2rem;
	}
}
/* RAN MİMARLIK - Basit, modern, responsive stil dosyası */

/* Utility Classes */
.text-center {
    text-align: center !important;
}

:root {
	--bg: #0e0f11;
	--surface: #121416;
	--text: #e8eaed;
	--muted: #b0b6bf;
	--primary: #c7a36f; /* bronz/sarı ton */
	--accent: #8fb4ff;
	--border: #23262a;
	--max: 1200px;
    --strip-h: 60px;
    --intro-duration: 900ms;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html, body { overflow-x: hidden; }
html { -webkit-text-size-adjust: 100%; }
body {
	font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	background: var(--bg);
	color: var(--text);
	line-height: 1.6;
    padding-bottom: calc(var(--strip-h) + env(safe-area-inset-bottom, 0px));
}

/* Intro overlay */
.intro { position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center; background: radial-gradient(1200px 600px at 50% 20%, rgba(199,163,111,0.08), transparent 60%), #0b0c0e; color: #fff; }
.intro-inner { text-align: center; display: grid; gap: 20px; align-items: center; justify-items: center; padding: 20px; }
.intro-logo { width: 320px; height: 320px; border-radius: 0; overflow: hidden; border: 0; background: transparent; box-shadow: none; position: relative; }
.intro-logo img { width: 100%; height: 100%; object-fit: contain; display: block; padding: 0; position: relative; z-index: 1; }
.intro-logo::after { content: ""; position: absolute; top: -120%; left: -30%; width: 60%; height: 300%; transform: rotate(25deg); background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,.28), rgba(255,255,255,0)); filter: blur(12px); opacity: 0; animation: shine 7s ease-in-out infinite; }
.intro-title {
	margin: 12px 0 0;
	font-family: 'Times New Roman', Times, serif;
	letter-spacing: .18em;
	font-weight: 700;
	font-size: 32px;
	color: #e6b35a;
	text-transform: none;
}
.intro-sub { margin: 0; color: var(--muted); font-weight: 500; font-size: 18px; }

/* Motion states */
.intro { 
    opacity: 1; 
    transform: scale(1); 
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(.2,.8,.2,1);
    animation: introFadeIn 0.5s ease-out;
}
.intro.hide { 
    opacity: 0; 
    transform: scale(0.95); 
    pointer-events: none; 
}
.intro[style*="display: none"] { display: none !important; }

/* Intro fade in animation */
@keyframes introFadeIn {
    0% { 
        opacity: 0; 
        transform: scale(0.9); 
    }
    100% { 
        opacity: 1; 
        transform: scale(1); 
    }
}

/* Force hide intro overlay if needed */
.intro[style*="display: none"],
.intro.force-hide,
body.no-intro .intro {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

/* Hide page completely until intro is done */
body.intro-active .site-header,
body.intro-active .hero,
body.intro-active .section,
body.intro-active .site-footer,
body.intro-active .bottom-strip { 
    opacity: 0; 
    visibility: hidden; 
    transition: none; 
}

body:not(.intro-active) .site-header,
body:not(.intro-active) .hero,
body:not(.intro-active) .section,
body:not(.intro-active) .site-footer,
body:not(.intro-active) .bottom-strip { 
    opacity: 1; 
    visibility: visible; 
    transition: none; 
}

@media (prefers-reduced-motion: reduce) {
	.intro { transition: none; }
	body.intro-active .site-header,
	body.intro-active .hero,
	body.intro-active .section,
	body.intro-active .site-footer,
	body.intro-active .bottom-strip { transition: none; }
}

/* Decorative subtle background for sections */
.section { position: relative; }
.section::before { content: ""; position: absolute; inset: 0; background: radial-gradient(1200px 400px at 10% -10%, rgba(199,163,111,0.08), transparent 60%), radial-gradient(900px 300px at 90% 110%, rgba(199,163,111,0.06), transparent 60%); pointer-events: none; }
img, video { max-width: 100%; height: auto; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 20px; }
.grid.two { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: center; }

/* Header */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 50; background: rgba(14,15,17,0.7); backdrop-filter: blur(8px); border-bottom: 1px solid var(--border); overflow: visible; }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; overflow: visible; }
.logo { display: block; width: 160px; height: 92px; position: relative; transition: transform .3s ease; overflow: visible; text-decoration: none; }
.logo::before { content: ""; position: absolute; inset: -10px; border-radius: 16px; background: radial-gradient(closest-side, rgba(199,163,111,.45), rgba(199,163,111,0.0) 70%); opacity: 0; filter: blur(10px); transition: opacity .3s ease, transform .3s ease; }
.logo:hover { transform: scale(1.08); }
.logo:hover::before { opacity: 1; }
.logo::after { content: none; }
.logo img { position: absolute; left: 50%; top: 0; transform: translate(-50%, 6%); width: 440px; height: auto; display: block; border-radius: 0; object-fit: contain; object-position: center; border: 0; background: transparent; padding: 0; box-shadow: none; overflow: visible; z-index: 1; }
/* Handwritten tagline under logo */
.logo-tag { position: absolute; left: 50%; top: 100%; transform: translate(-50%, 34px); white-space: nowrap; font-family: 'Dancing Script', cursive; font-size: 28px; color: var(--primary); text-shadow: 0 2px 10px rgba(0,0,0,.45); letter-spacing: .02em; }
@keyframes shine {
	0% { left: -40%; opacity: 0; }
	6% { left: -30%; opacity: .0; }
	10% { left: -10%; opacity: .35; }
	14% { left: 30%; opacity: .35; }
	18% { left: 80%; opacity: 0; }
	100% { left: 130%; opacity: 0; }
}
.nav { display: flex; gap: 20px; }
.nav a { color: var(--text); text-decoration: none; font-weight: 500; opacity: 0.9; }
.nav a:hover { color: var(--primary); }
.lang-switch { display: inline-flex; align-items: center; gap: 2px; margin-left: 12px; padding: 3px; border: 1px solid var(--border); border-radius: 999px; background: rgba(11,12,14,0.5); backdrop-filter: blur(8px); box-shadow: 0 6px 20px rgba(0,0,0,.25); }
.lang-switch .sep { display: none; }
.lang-switch .lang { background: transparent; border: 0; color: var(--muted); font-weight: 800; letter-spacing: .1em; cursor: pointer; padding: 6px 10px; border-radius: 999px; transition: background .2s ease, color .2s ease; }
.lang-switch .lang.active { background: var(--primary); color: #111; }
.lang-switch .lang:hover { color: var(--text); }
.hamburger { 
    display: none; 
    background: transparent; 
    border: 0; 
    width: 42px; 
    height: 42px; 
    padding: 0; 
    cursor: pointer; 
    position: relative;
    z-index: 1001;
}
.hamburger span { 
    display: block; 
    height: 3px; 
    margin: 6px 8px; 
    background: var(--text); 
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero */
.hero { position: relative; height: 100vh; min-height: 520px; display: grid; place-items: center; text-align: center; overflow: hidden; }

/* Hero Slider */
.hero-slider { 
    position: absolute; 
    inset: 0; 
    overflow: hidden; 
}

.media-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.media-slide.active {
    opacity: 1;
}

.ms-video, .ms-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Mobile Video/Image Optimization */
@media (max-width: 480px) {
    .hero {
        padding: 0;
        margin: 0;
    }
    
    .hero-slider {
        width: 100vw;
        height: 60vh;
        position: relative;
        overflow: hidden;
        margin: 0;
        padding: 0;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .media-slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;
    }
    
    .ms-video, .ms-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
        display: block;
        margin: 0;
        padding: 0;
    }
}

/* Hero Navigation */
.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(5px);
}

.hero-nav:hover {
    background: rgba(0,0,0,0.8);
    transform: translateY(-50%) scale(1.1);
}

.hero-prev {
    left: 20px;
}

.hero-next {
    right: 20px;
}

/* Hero Dots */
.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dot.active {
    background: #ffe066;
    border-color: #ffe066;
}

.hero-dot:hover {
    border-color: #ffe066;
    transform: scale(1.2);
}
.hero-single img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    display: block; 
}

/* Hero Video */
.hero-single .media-slide {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-single .ms-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hero { background: transparent; }
.hero .overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.1), rgba(0,0,0,0.2)); }
.hero-content { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr; gap: 20px; align-items: center; }
.hero-content h1, .hero-content p, .hero-cta { text-align: center; justify-self: center; }
.hero h1 { font-family: 'Montserrat', sans-serif; font-size: 44px; letter-spacing: 2px; margin: 0 0 10px; text-transform: uppercase; }
.hero p { color: var(--muted); margin: 0 0 20px; font-size: 18px; }
.hero-cta { display: flex; gap: 12px; justify-content: center; }
/* Removed hero-brand block after revert */
.hero-panel { position: absolute; left: 50%; bottom: 46px; transform: translateX(-50%); background: #000; border: 1px solid var(--primary); border-radius: 14px; padding: 12px 14px; box-shadow: 0 12px 40px rgba(0,0,0,.45), 0 0 0 1px rgba(0,0,0,.6) inset; max-width: min(92vw, 720px); }
.hero-badges { margin: 0; display: flex; flex-direction: column; gap: 8px; align-items: center; color: #fff; }
.hero-badges span { display: inline-block; background: linear-gradient(180deg, rgba(20,20,20,1), rgba(10,10,10,1)); border: 1px solid var(--border); padding: 8px 14px; border-radius: 999px; font-weight: 800; font-size: 13px; letter-spacing: .08em; color: #fff; box-shadow: 0 6px 16px rgba(0,0,0,.35); }

@media (max-width: 740px) {
	.hero-content { grid-template-columns: 1fr; }
	.hero-badges { align-items: center; }
}
.accent { color: var(--primary); text-shadow: 0 0 10px rgba(199,163,111,0.38), 0 0 22px rgba(199,163,111,0.22); }
/* Media slider (after hero) */
.media-slider { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 0; background: transparent; }
.media-slider-inner { position: relative; padding: 10px 0; }
.media-track { overflow-x: auto; display: grid; grid-auto-flow: column; grid-auto-columns: 100%; scroll-snap-type: x mandatory; gap: 8px; scrollbar-width: none; margin: 0 auto; }
.media-track::-webkit-scrollbar { display: none; }
.media-slider .media-slide { position: relative; scroll-snap-align: start; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; background: #0b0c0e; }
.media-slider .media-slide img, .media-slider .media-slide .ms-video { width: 100%; height: clamp(260px, 48vw, 520px); object-fit: cover; display: block; max-width: 100%; }
.ms-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(11,12,14,0.75); color: var(--text); border: 1px solid var(--border); width: 44px; height: 44px; border-radius: 50%; cursor: pointer; font-size: 22px; display: grid; place-items: center; z-index: 2; }
.ms-prev { left: 10px; }
.ms-next { right: 10px; }
.ms-arrow:hover { border-color: var(--primary); color: var(--primary); }

/* Sections */
.section { padding: 96px 0; border-top: 1px solid var(--border); }
.section h2 { font-family: 'Montserrat', sans-serif; font-size: 32px; margin: 0 0 18px; }
.section p { color: var(--muted); }
.link-arrow { color: var(--primary); text-decoration: none; font-weight: 600; }

/* About */
.about-media { position: relative; }
.about-photo { width: 100%; height: 260px; object-fit: cover; display: block; border: 1px solid var(--border); border-radius: 12px; }
.why-ran { margin-top: 12px; background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 12px; }
.why-ran h3 { margin: 0 0 6px; font-size: 18px; color: var(--primary); letter-spacing: .05em; }
.why-ran ul { margin: 0; padding-left: 18px; color: var(--text); }
.about-text { background: linear-gradient(180deg, rgba(18,20,22,.65), rgba(12,13,15,.65)); border: 1px solid var(--border); border-radius: 14px; padding: 16px; box-shadow: 0 10px 28px rgba(0,0,0,.25); }
.about-text h2 { position: relative; font-size: 34px; }
.about-text h2::after { content: ""; position: absolute; left: 0; bottom: -8px; width: 72px; height: 3px; background: var(--primary); border-radius: 2px; }
.about-panel { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 14px; }
.about-sub { margin: 0 0 8px; font-size: 16px; color: var(--primary); letter-spacing: .06em; text-transform: uppercase; }
.about-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.about-badges span { background: linear-gradient(180deg,#141518,#0d0e10); color: #fff; border: 1px solid var(--border); padding: 8px 12px; border-radius: 999px; font-weight: 800; font-size: 12px; letter-spacing: .09em; box-shadow: 0 6px 18px rgba(0,0,0,.28), inset 0 0 0 1px rgba(255,255,255,.03); transition: transform .2s ease, box-shadow .2s ease; }
.about-badges span:hover { transform: translateY(-1px); box-shadow: 0 12px 28px rgba(0,0,0,.35), inset 0 0 0 1px rgba(255,255,255,.06); }
.about-highlights { list-style: none; padding: 0; margin: 18px 0; display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 10px; }
.about-highlights li { background: var(--surface); border: 1px solid var(--border); padding: 10px 12px; border-radius: 8px; text-align: center; color: var(--text); }
/* Expertise row */
.expertise { margin-top: 14px; }
.expertise-title { margin: 0 0 8px; font-size: 16px; color: var(--primary); letter-spacing: .06em; text-transform: uppercase; }
.about-badges--row { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.about-badges--row span { padding: 10px 14px; font-size: 12px; white-space: nowrap; }

/* Mission & Vision */
.mission-vision { margin-top: 14px; display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; align-items: start; }
.mission-vision .mv-item { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 12px; overflow: hidden; display: block; }
.mission-vision .mv-media { margin: -16px -16px 12px; border-bottom: 1px solid var(--border); border-radius: 12px 12px 0 0; overflow: hidden; }
.mission-vision .mv-media img { width: 100%; height: 240px; object-fit: cover; display: block; filter: saturate(.98); }
.mission-vision .mv-item .mv-media, .mission-vision .mv-item .mv-body { order: initial; }
.mission-vision .mv-item h3 { margin: 0 0 8px; font-size: 22px; color: var(--primary); font-weight: 800; letter-spacing: .02em; }
.mission-vision .mv-item p { margin: 0; color: var(--muted); }
.mission-vision .mv-points { margin: 10px 0 0; padding: 0; list-style: none; display: grid; gap: 6px; }
.mission-vision .mv-points li { position: relative; padding-left: 18px; color: var(--text); }
.mission-vision .mv-points li::before { content: ""; position: absolute; left: 0; top: 9px; width: 8px; height: 8px; background: var(--primary); border-radius: 50%; box-shadow: 0 0 0 3px rgba(199,163,111,.12); }
/* Values layout */
.mission-vision .values { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: center; }
.mission-vision .values .mv-media img { height: 220px; border-radius: 12px; }
.mission-vision .values-list { grid-template-columns: 1fr 1fr; }
@media (max-width: 740px) {
	.mission-vision .values { grid-template-columns: 1fr; }
	.mission-vision .values-list { grid-template-columns: 1fr; }
    .ms-arrow { width: 40px; height: 40px; }
}

/* About features row */
.about-features { margin-top: 18px; display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.feat { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 18px; display: grid; grid-template-columns: auto 1fr; gap: 10px 16px; align-items: start; }
.feat-icon { grid-row: span 2; color: var(--primary); filter: drop-shadow(0 6px 16px rgba(0,0,0,.35)); background: #0b0c0e; border: 1px solid var(--border); border-radius: 12px; padding: 10px; }
.feat h3 { margin: 0; font-size: 20px; letter-spacing: .01em; }
.feat p { margin: 0; color: var(--muted); grid-column: 1 / -1; }

@media (max-width: 740px) {
    .mission-vision { grid-template-columns: 1fr; }
    .about-photo { height: 200px; }
    .about-features { grid-template-columns: 1fr; }
}

/* Contact list icons */
.contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.contact-list li { display: grid; grid-template-columns: auto 1fr; align-items: start; gap: 8px; background: var(--surface); border: 1px solid var(--border); padding: 10px 12px; border-radius: 10px; }
.contact-list .ci { width: 22px; height: 22px; display: inline-grid; place-items: center; color: var(--primary); }


/* Experience */
.experience .eyebrow { color: var(--muted); font-weight: 700; letter-spacing: .25em; text-transform: uppercase; margin: 0 0 8px; }
.experience h2 { font-size: 42px; margin-bottom: 10px; }
.years { display: grid; grid-template-columns: 1fr; justify-items: center; gap: 12px; }
.years-figure { position: relative; display: grid; justify-items: center; align-items: center; }
/* Odometer-style */
.odometer { display: inline-flex; gap: 6px; filter: drop-shadow(0 14px 28px rgba(0,0,0,.35)); }
.odometer .column { position: relative; width: clamp(80px, 10vw, 140px); height: clamp(160px, 22vw, 300px); overflow: hidden; border-radius: 10px; background: linear-gradient(180deg,#1a1c1f,#101214); border: 1px solid var(--border); box-sizing: content-box; padding: 2px 0; }
.odometer .reel { position: absolute; left: 0; right: 0; top: 0; will-change: transform; transition: transform 700ms cubic-bezier(.2,.7,.1,1); }
.odometer .digit { display: grid; place-items: center; height: clamp(160px, 22vw, 300px); line-height: 1; font-family: 'Bebas Neue', 'Montserrat', sans-serif; font-weight: 800; font-size: clamp(160px, 22vw, 300px); color: #f2eadf; text-shadow: 0 2px 0 #b08b57, 0 4px 0 #9b7a4c, 0 6px 18px rgba(0,0,0,.45); }
.odometer.glow .column { box-shadow: inset 0 0 28px rgba(199,163,111,.12); }
.years-label { text-align: center; }
.years-label strong { font-size: 28px; }
.years-label p { color: var(--muted); margin: 4px 0 0; }

/* Cards / Services */
.cards { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; }
.card { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; transition: transform .2s ease, box-shadow .2s ease; }
.card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,0.25); }
.card img { width: 100%; height: 200px; object-fit: cover; display: block; }
.card h3 { margin: 14px 14px 6px; font-size: 18px; }
.card p { margin: 0 14px 16px; color: var(--muted); }

/* Projects Section */
#projects {
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
}

#projectsGrid {
    visibility: visible !important;
    opacity: 1 !important;
    display: grid !important;
}

/* Gallery */
.gallery { 
    display: grid; 
    grid-template-columns: repeat(3, minmax(0,1fr)); 
    gap: 12px; 
    visibility: visible !important;
    opacity: 1 !important;
}
.gallery-item { position: relative; border-radius: 10px; overflow: hidden; display: block; border: 1px solid var(--border); background: #0b0c0e; }
.gallery-item img, .gallery-item video { width: 100%; height: 400px; object-fit: cover; display: block; filter: saturate(0.9); transition: transform .3s ease, filter .3s ease; }
.gallery-item:hover img, .gallery-item:hover video { transform: scale(1.02); filter: saturate(1); }
.gallery-item figcaption { 
    position: absolute; 
    bottom: 0; 
    left: 0; 
    right: 0; 
    padding: 20px; 
    color: white; 
    font-weight: 600; 
    background: linear-gradient(transparent, rgba(0,0,0,0.8)); 
    border: none; 
}
.gallery-item figcaption .proj-caption { margin-bottom: 8px; color: white; font-size: 14px; line-height: 1.4; }
.details-btn { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.3); color: white; padding: 8px 16px; font-size: 13px; margin-top: 8px; border-radius: 20px; transition: all 0.3s ease; }
.details-btn:hover { background: rgba(255,255,255,0.3); transform: translateY(-2px); }
.proj-details { margin-top: 8px; color: rgba(255,255,255,0.9); border-top: 1px dashed rgba(255,255,255,0.3); padding-top: 8px; }

/* Projects slider */
/* removed slider styles (reverted to gallery) */

/* Project filters */
.filters { display: flex; gap: 8px; margin-bottom: 14px; flex-wrap: wrap; }
.filter-btn { background: var(--surface); color: var(--text); border: 1px solid var(--border); padding: 8px 12px; border-radius: 999px; cursor: pointer; font: inherit; }
.filter-btn.active, .filter-btn:hover { background: var(--primary); color: #111; border-color: transparent; }

/* Video Lightbox Styles */
.video-lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.video-lightbox.show {
    display: flex;
    opacity: 1;
    visibility: visible;
    align-items: center;
    justify-content: center;
}

.video-lightbox-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.video-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #fff;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    background: rgba(0,0,0,0.7);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-close:hover {
    background: rgba(0,0,0,0.9);
    transform: scale(1.1);
}

#lightboxVideo {
    width: 100%;
    height: auto;
    max-height: 70vh;
    display: block;
    object-fit: contain;
}

.video-info {
    padding: 20px;
    background: #111;
    color: #fff;
}

.video-info h3 {
    margin: 0 0 10px 0;
    font-size: 24px;
    color: #ffe066;
}

.video-info p {
    margin: 0;
    color: #ccc;
    line-height: 1.6;
    font-size: 16px;
}

/* Finished projects */
.finished-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; }
.finished-card { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 16px; transition: transform .2s ease, box-shadow .2s ease; }

.project-image {
	margin-bottom: 15px;
	border-radius: 8px;
	overflow: hidden;
}

.project-image img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}

.finished-card:hover .project-image img {
	transform: scale(1.05);
}
.finished-card:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0,0,0,.25); }
.finished-card h3 { margin: 4px 0 8px; font-size: 18px; color: var(--text); letter-spacing: .02em; }
.finished-card p { margin: 0; color: var(--muted); }
.finished-card .details-btn { 
    margin-top: 10px; 
    background: #333 !important; 
    color: white !important; 
    border-color: #333 !important; 
    padding: 8px 16px; 
    border-radius: 20px; 
    transition: all 0.3s ease; 
}
.finished-card .details-btn:hover { 
    background: #555 !important; 
    transform: translateY(-2px); 
}
.finished-card .proj-details { margin-top: 8px; }

/* Contact */
.contact-form { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 16px; }
.contact-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.contact-form label { display: grid; gap: 6px; font-weight: 600; font-size: 14px; }
.contact-form input, .contact-form textarea { background: #0b0c0e; color: var(--text); border: 1px solid var(--border); border-radius: 8px; padding: 10px 12px; font: inherit; }
.contact-form button { margin-top: 10px; }
.contact-details { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 16px; }
.contact-cta { display: flex; gap: 10px; margin-top: 12px; }
.form-status { margin-top: 8px; min-height: 20px; color: var(--accent); }

/* Map */
.map-embed { border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.map-embed iframe { width: 100%; height: 380px; border: 0; display: block; }
.map-subtitle { color: var(--muted); margin-top: -6px; margin-bottom: 12px; }

/* Footer */
.site-footer { border-top: 1px solid var(--border); padding: 20px 0; background: #0b0c0e; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.socials { display: flex; gap: 10px; align-items: center; }
.social { display: inline-flex; gap: 6px; align-items: center; color: var(--muted); text-decoration: none; padding: 6px 10px; border: 1px solid var(--border); border-radius: 999px; }
.social:hover { color: var(--text); border-color: var(--primary); }
.social .handle { font-weight: 600; }
.footer-brand img { height: 80px; display: block; margin-bottom: 6px; border-radius: 8px; transition: box-shadow .2s ease, transform .2s ease; }
.footer-brand img:hover { box-shadow: 0 0 18px rgba(199,163,111,.35), 0 0 34px rgba(199,163,111,.18); transform: translateY(-1px); }
.footer-nav { display: flex; gap: 14px; }
.footer-nav a { color: var(--muted); text-decoration: none; }
.footer-nav a:hover { color: var(--primary); }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 999px;
    border: 1px solid var(--border);
    color: var(--text);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn:hover {
    background: var(--surface);
}

.btn.primary {
    background: linear-gradient(90deg, #e6b35a 0%, #f7d774 40%, #fff6c3 60%, #e6b35a 100%);
    color: #222;
    border: none;
    font-weight: 600;
    letter-spacing: 0.02em;
    position: relative;
    box-shadow: 0 4px 15px rgba(230, 179, 90, 0.3);
    background-size: 200% auto;
    transition: all 0.3s ease;
}

.btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(247, 215, 116, 0.4), 0 0 8px #f7d77488;
    background-position: right center;
}

/* Lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.85); display: none; align-items: center; justify-content: center; flex-direction: column; gap: 10px; padding: 20px; z-index: 100; }
.lightbox img { max-width: 92vw; max-height: 70vh; border-radius: 10px; }
.lightbox p { color: var(--muted); margin: 0; }
.lightbox.show { display: flex; }
.lightbox-close { position: absolute; top: 16px; right: 16px; width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--border); background: var(--surface); color: var(--text); cursor: pointer; font-size: 20px; }
.lightbox-prev, .lightbox-next { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--border); background: var(--surface); color: var(--text); cursor: pointer; font-size: 24px; }
.lightbox-prev { left: 18px; }
.lightbox-next { right: 18px; }

/* Utilities */
.header-spacer { height: 68px; }

/* Bottom strip */
.bottom-strip { position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; background: rgba(11,12,14,0.62); backdrop-filter: blur(10px); border-top: 1px solid var(--border); padding-bottom: env(safe-area-inset-bottom, 0px); }
.bottom-strip-inner { display: flex; gap: 20px; align-items: center; justify-content: space-between; padding: 10px 0; flex-wrap: wrap; min-height: var(--strip-h); }
.inline-info { display: flex; align-items: center; gap: 8px; color: var(--muted); }
.inline-info .label { color: var(--text); font-weight: 600; }
.inline-info .value { color: var(--text); text-decoration: none; }
.inline-info .value:hover { color: var(--primary); }
.inline-info .sep { opacity: .6; }
.icon-phone { color: #2ecc71; }
.ig { color: #e1306c; }

/* Responsive */
@media (max-width: 1024px) {
	.cards { grid-template-columns: repeat(2, minmax(0,1fr)); }
	.grid.two { grid-template-columns: 1fr; }
    body { background-size: auto, 100% auto; }
	/* Scale down large header logo on tablets */
	.logo { width: 140px; height: 68px; }
	.logo img { width: 360px; transform: translate(-50%, 4%); }
	.logo-tag { font-size: 24px; transform: translate(-50%, 24px); }
}

@media (max-width: 740px) {
    .nav { 
        position: fixed; 
        top: 0; 
        right: 0; 
        left: 0; 
        bottom: 0;
        background: rgba(11,12,14,0.98); 
        backdrop-filter: blur(10px);
        padding: 80px 20px 20px; 
        display: none; 
        flex-direction: column; 
        gap: 0;
        z-index: 1000;
        justify-content: flex-start;
        align-items: center;
    }
	.nav.show { display: flex; }
	.hamburger { 
        display: inline-block; 
        z-index: 1001;
        position: relative;
    }
    
    .nav a {
        padding: 20px 0;
        font-size: 18px;
        color: #fff;
        text-align: center;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }
    
    .nav a:hover {
        color: #ffe066;
        transform: translateX(10px);
    }
    
    .nav a:last-child {
        border-bottom: none;
    }
    
    /* Hero Slider Mobile */
    .hero-nav {
        width: 40px;
        height: 40px;
        z-index: 10;
    }
    
    .hero-prev {
        left: 10px;
    }
    
    .hero-next {
        right: 10px;
    }
    
    .hero-dots {
        bottom: 10px;
        z-index: 10;
    }
    
    .hero-dot {
        width: 10px;
        height: 10px;
    }
    
    .lang-switch { position: absolute; right: 66px; top: 14px; }
	.hero h1 { font-size: 30px; }
	.hero p { font-size: 16px; }
	.cards { grid-template-columns: 1fr; }
	.gallery { grid-template-columns: 1fr 1fr; }
	.contact-form .row { grid-template-columns: 1fr; }
	.footer-inner { flex-direction: column; align-items: flex-start; }
    .section { padding: 72px 0; }
    .nav a { padding: 8px 0; }
    .btn { width: 100%; text-align: center; }
    .hero { height: 75vh; }
	/* Mobile logo sizing & position */
	.logo { width: 120px; height: 64px; }
	.logo img { width: min(70vw, 300px); transform: translate(-50%, 2%); }
	.logo-tag { font-size: 22px; transform: translate(-50%, 18px); }
	/* So intro logo doesn't overflow small screens */
	.intro-logo { width: 220px; height: 220px; }
}

@media (max-width: 420px) {
	.gallery { grid-template-columns: 1fr; }
    .odometer .column { width: 88px; height: 180px; }
    .odometer .digit { height: 180px; font-size: 180px; }
	/* Tiny phones: keep logo tidy */
	.logo img { width: min(78vw, 240px); transform: translate(-50%, 2%); }
	.logo-tag { font-size: 20px; transform: translate(-50%, 14px); }
}

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

/* Mobile First Approach - Base styles for mobile */
@media (max-width: 768px) {
    /* Typography */
    .hero h1 { 
        font-size: 28px !important; 
        line-height: 1.2; 
        margin-bottom: 15px;
        padding: 0 20px;
    }
    
    .hero p { 
        font-size: 16px !important; 
        padding: 0 20px;
        margin-bottom: 25px;
    }
    
    .section-title-center { 
        font-size: 24px !important; 
        margin-bottom: 30px;
    }
    
    /* Hero Section */
    .hero { 
        min-height: 100vh; 
        padding: 20px 0;
    }
    
    .hero-content { 
        padding: 0 20px; 
        gap: 15px;
    }
    
    .hero-cta { 
        flex-direction: column; 
        gap: 15px;
        align-items: center;
    }
    
    .btn { 
        padding: 12px 24px; 
        font-size: 14px;
        width: 100%;
        max-width: 280px;
    }
    
    /* Navigation */
    .site-header { 
        padding: 15px 20px; 
    }
    
    .nav { 
        position: fixed; 
        top: 70px; 
        left: 0; 
        right: 0; 
        background: rgba(11,12,14,0.98); 
        backdrop-filter: blur(10px);
        padding: 20px;
        display: none;
        flex-direction: column;
        gap: 15px;
        z-index: 1000;
    }
    
    .nav.show { display: flex; }
    
    .nav a { 
        padding: 12px 0; 
        font-size: 16px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .hamburger { display: block; }
    
    /* Container */
    .container { 
        padding: 0 20px; 
    }
    
    /* Sections */
    .section { 
        padding: 60px 0; 
    }
    
    /* About Section */
    .about-cards { 
        grid-template-columns: 1fr; 
        gap: 20px;
    }
    
    .about-card { 
        padding: 20px; 
    }
    
    /* Services Section */
    .services-cards-grid { 
        grid-template-columns: 1fr; 
        gap: 20px;
    }
    
    .service-card { 
        padding: 20px 15px; 
    }
    
    .services-filter { 
        flex-direction: column; 
        gap: 10px;
        align-items: center;
    }
    
    .filter-btn { 
        width: 100%; 
        max-width: 200px;
        padding: 12px 20px;
    }
    
    /* Projects Section */
    .gallery { 
        grid-template-columns: 1fr; 
        gap: 20px;
    }
    
    .gallery-item { 
        border-radius: 15px;
    }
    
    .gallery-item img, 
    .gallery-item video { 
        height: 450px; 
    }
    
    .gallery-item figcaption { 
        padding: 15px; 
    }
    
    .proj-caption { 
        font-size: 16px !important; 
        line-height: 1.4;
    }
    
    /* Finished Projects */
    .finished-grid { 
        grid-template-columns: 1fr; 
        gap: 20px;
    }
    
    .finished-card { 
        padding: 20px; 
    }
    
    .project-image img { 
        height: 200px; 
    }
    
    /* Mission Vision */
    .mission-vision-diagonal { 
        margin-left: 0 !important; 
        padding: 40px 20px;
    }
    
    .mission-vision-row { 
        flex-direction: column; 
        gap: 30px;
    }
    
    .mission-vision-flex { 
        flex-direction: column; 
        gap: 20px;
    }
    
    .mission-header-centered { 
        flex-direction: column; 
        gap: 15px;
        text-align: center;
    }
    
    .mission-header-flex { 
        flex-direction: column; 
        gap: 10px;
    }
    
    .values-list { 
        grid-template-columns: 1fr; 
        gap: 15px;
    }
    
    /* Contact Section */
    .contact-form .row { 
        grid-template-columns: 1fr; 
        gap: 15px;
    }
    
    .contact-form input, 
    .contact-form textarea { 
        padding: 12px 15px; 
        font-size: 16px;
    }
    
    /* Footer */
    .footer-content { 
        flex-direction: column; 
        gap: 30px;
        text-align: center;
    }
    
    .footer-nav { 
        flex-direction: column; 
        gap: 15px;
    }
    
    .socials { 
        justify-content: center; 
    }
    
    /* Video Lightbox */
    .video-lightbox-content { 
        width: 95%; 
        max-height: 90vh;
        margin: 5% auto;
    }
    
    .video-info { 
        padding: 15px; 
    }
    
    .video-info h3 { 
        font-size: 18px; 
        margin-bottom: 8px;
    }
    
    .video-info p {
        font-size: 14px;
        line-height: 1.5;
    }
    
    #lightboxVideo { 
        max-height: 65vh; 
        width: 100%;
    }
    
    .video-close { 
        width: 44px; 
        height: 44px;
        font-size: 20px;
        top: 10px;
        right: 15px;
        background: rgba(0,0,0,0.8);
    }
}

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero h1 { 
        font-size: 36px; 
    }
    
    .gallery { 
        grid-template-columns: repeat(2, 1fr); 
    }
    
    .finished-grid { 
        grid-template-columns: repeat(2, 1fr); 
    }
    
    .about-cards { 
        grid-template-columns: repeat(2, 1fr); 
    }
    
    .mission-vision-diagonal { 
        margin-left: 100px !important; 
    }
}

/* Large Mobile Styles */
@media (max-width: 480px) {
    .hero h1 { 
        font-size: 24px !important; 
    }
    
    .hero p { 
        font-size: 14px !important; 
    }
    
    .section-title-center { 
        font-size: 20px !important; 
    }
    
    .container { 
        padding: 0 15px; 
    }
    
    .section { 
        padding: 40px 0; 
    }
    
    .gallery-item img, 
    .gallery-item video { 
        height: 380px; 
    }
    
    .service-card { 
        padding: 15px 10px; 
    }
    
    .finished-card { 
        padding: 15px; 
    }
    
    .project-image img { 
        height: 150px; 
    }
}

/* iPhone Specific Styles */
@media (max-width: 414px) {
    .hero { 
        min-height: 70vh;
        padding: 0;
    }
    
    .hero h1 { 
        font-size: 20px !important; 
        letter-spacing: 0.5px;
        line-height: 1.3;
        margin-bottom: 12px;
        padding: 0 10px;
    }
    
    .hero p {
        font-size: 14px !important;
        margin-bottom: 15px;
        padding: 0 10px;
    }
    
    .btn { 
        padding: 10px 20px; 
        font-size: 13px;
        margin: 3px;
        min-height: 40px;
        width: auto;
        display: inline-block;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 8px;
        padding: 0 10px;
    }
    
    .hero-content {
        position: absolute;
        bottom: 20px;
        left: 0;
        right: 0;
        width: 100%;
        padding: 0 15px;
        z-index: 5;
        text-align: center;
    }
    
    .gallery { 
        grid-template-columns: 1fr; 
        gap: 15px;
    }
    
    .gallery-item figcaption { 
        padding: 12px; 
    }
    
    .proj-caption { 
        font-size: 14px !important; 
        line-height: 1.3;
        margin-bottom: 8px;
    }
    
    .details-btn {
        padding: 8px 14px;
        font-size: 12px;
        min-height: 36px;
    }
    
    .site-header {
        padding: 8px 0;
    }
    
    .nav a {
        padding: 15px 0;
        font-size: 16px;
    }
    
    .section {
        padding: 30px 0;
    }
    
    .container {
        padding: 0 12px;
    }
    
    .about-title {
        font-size: 24px !important;
        margin-bottom: 20px;
    }
    
    .about-main-centered {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 15px;
    }
    
    .about-highlights-row {
        flex-direction: column;
        gap: 8px;
        margin: 15px 0;
    }
    
    .about-highlights-row span {
        font-size: 13px;
        padding: 8px 12px;
    }
    
    .services-cards-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .service-card {
        padding: 15px;
    }
    
    .service-card h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .service-card p {
        font-size: 13px;
        line-height: 1.4;
    }
    
    .finished-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .finished-card {
        padding: 15px;
    }
    
    .finished-card h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .finished-card p {
        font-size: 13px;
        line-height: 1.4;
    }
    
    .contact-form .row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-form label {
        font-size: 14px;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 12px;
        font-size: 14px;
    }
    
    .contact-list li {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .footer-inner {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 10px;
    }
    
    .socials {
        justify-content: center;
    }
    
    /* Bottom Strip Mobile */
    .bottom-strip-inner {
        flex-direction: column;
        gap: 8px;
        padding: 8px 0;
        min-height: auto;
    }
    
    .inline-info {
        font-size: 12px;
        gap: 6px;
        justify-content: center;
        flex-wrap: nowrap;
    }
    
    .inline-info .label {
        font-size: 11px;
    }
    
    .inline-info .value {
        font-size: 12px;
    }
    
    .inline-info .sep {
        display: none;
    }
    
    /* Mission Vision Mobile */
    .mission-vision-diagonal {
        margin-left: 0 !important;
        padding: 5px 15px;
        gap: 3px;
        min-height: auto;
    }
    
    .mission-section,
    .vision-section {
        flex-direction: column;
        gap: 5px;
        padding: 3px 15px;
        text-align: center;
    }
    
    .mission-image,
    .vision-image {
        width: 100%;
        max-width: 250px;
        height: 200px;
        object-fit: cover;
        border-radius: 12px;
        margin: 0 auto;
    }
    
    .mission-diag-left,
    .vision-diag-right {
        text-align: center;
        margin: 0;
    }
    
    .mission-diag-left h2,
    .vision-diag-right h2 {
        font-size: 20px !important;
        margin-bottom: 15px;
    }
    
    .mission-diag-left p,
    .vision-diag-right p {
        font-size: 14px;
        line-height: 1.5;
        text-align: center;
    }
}

/* Android Specific Styles */
@media (max-width: 360px) {
    .hero { 
        min-height: 65vh;
        padding: 0;
    }
    
    .hero h1 { 
        font-size: 18px !important; 
        line-height: 1.2;
        margin-bottom: 10px;
        padding: 0 8px;
    }
    
    .hero p {
        font-size: 13px !important;
        margin-bottom: 12px;
        padding: 0 8px;
    }
    
    .container { 
        padding: 0 10px; 
    }
    
    .gallery-item img, 
    .gallery-item video { 
        height: 280px; 
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 12px;
        min-height: 36px;
        margin: 2px;
    }
    
    .hero-cta {
        gap: 6px;
        padding: 0 8px;
    }
    
    .hero-content {
        position: absolute;
        bottom: 15px;
        left: 0;
        right: 0;
        width: 100%;
        padding: 0 12px;
        text-align: center;
    }
    
    .nav a {
        padding: 12px 0;
        font-size: 15px;
    }
    
    .proj-caption {
        font-size: 13px !important;
        line-height: 1.2;
    }
    
    .details-btn {
        padding: 6px 12px;
        font-size: 11px;
        min-height: 32px;
    }
    
    .section {
        padding: 25px 0;
    }
    
    .about-title {
        font-size: 22px !important;
        margin-bottom: 15px;
    }
    
    .about-main-centered {
        font-size: 13px;
        line-height: 1.4;
    }
    
    .service-card h3 {
        font-size: 15px;
    }
    
    .service-card p {
        font-size: 12px;
    }
    
    .finished-card h3 {
        font-size: 15px;
    }
    
    .finished-card p {
        font-size: 12px;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 10px;
        font-size: 13px;
    }
    
    .contact-list li {
        font-size: 13px;
    }
    
    /* Bottom Strip Android */
    .bottom-strip-inner {
        flex-direction: column;
        gap: 6px;
        padding: 6px 0;
    }
    
    .inline-info {
        font-size: 11px;
        gap: 4px;
        justify-content: center;
    }
    
    .inline-info .label {
        font-size: 10px;
    }
    
    .inline-info .value {
        font-size: 11px;
    }
    
    .inline-info .sep {
        display: none;
    }
    
    /* Mission Vision Android */
    .mission-vision-diagonal {
        margin-left: 0 !important;
        padding: 3px 10px;
        gap: 2px;
        min-height: auto;
    }
    
    .mission-section,
    .vision-section {
        flex-direction: column;
        gap: 4px;
        padding: 2px 10px;
        text-align: center;
    }
    
    .mission-image,
    .vision-image {
        width: 100%;
        max-width: 220px;
        height: 180px;
        object-fit: cover;
        border-radius: 10px;
        margin: 0 auto;
    }
    
    .mission-diag-left,
    .vision-diag-right {
        text-align: center;
        margin: 0;
    }
    
    .mission-diag-left h2,
    .vision-diag-right h2 {
        font-size: 18px !important;
        margin-bottom: 12px;
    }
    
    .mission-diag-left p,
    .vision-diag-right p {
        font-size: 13px;
        line-height: 1.4;
        text-align: center;
    }
}

/* Large Mobile Devices (iPhone Plus, etc.) */
@media (min-width: 415px) and (max-width: 480px) {
    .hero { 
        min-height: 75vh;
        padding: 0;
    }
    
    .hero h1 {
        font-size: 24px !important;
        line-height: 1.3;
        margin-bottom: 15px;
        padding: 0 15px;
    }
    
    .hero p {
        font-size: 16px !important;
        margin-bottom: 18px;
        padding: 0 15px;
    }
    
    .gallery { 
        grid-template-columns: 1fr; 
        gap: 20px;
    }
    
    .gallery-item img,
    .gallery-item video {
        height: 350px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 14px;
        min-height: 44px;
    }
    
    .hero-cta {
        gap: 10px;
        padding: 0 15px;
    }
    
    .hero-content {
        position: absolute;
        bottom: 25px;
        left: 0;
        right: 0;
        width: 100%;
        padding: 0 20px;
        text-align: center;
    }
    
    .proj-caption {
        font-size: 15px !important;
        line-height: 1.4;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .section {
        padding: 35px 0;
    }
    
    .about-title {
        font-size: 26px !important;
    }
    
    .service-card h3 {
        font-size: 17px;
    }
    
    .finished-card h3 {
        font-size: 17px;
    }
    
    /* Bottom Strip Large Mobile */
    .bottom-strip-inner {
        flex-direction: column;
        gap: 10px;
        padding: 10px 0;
    }
    
    .inline-info {
        font-size: 13px;
        gap: 8px;
        justify-content: center;
    }
    
    .inline-info .label {
        font-size: 12px;
    }
    
    .inline-info .value {
        font-size: 13px;
    }
    
    .inline-info .sep {
        display: none;
    }
    
    /* Mission Vision Large Mobile */
    .mission-vision-diagonal {
        margin-left: 0 !important;
        padding: 8px 20px;
        gap: 6px;
        min-height: auto;
    }
    
    .mission-section,
    .vision-section {
        flex-direction: column;
        gap: 6px;
        padding: 5px 20px;
        text-align: center;
    }
    
    .mission-image,
    .vision-image {
        width: 100%;
        max-width: 280px;
        height: 220px;
        object-fit: cover;
        border-radius: 14px;
        margin: 0 auto;
    }
    
    .mission-diag-left,
    .vision-diag-right {
        text-align: center;
        margin: 0;
    }
    
    .mission-diag-left h2,
    .vision-diag-right h2 {
        font-size: 22px !important;
        margin-bottom: 18px;
    }
    
    .mission-diag-left p,
    .vision-diag-right p {
        font-size: 15px;
        line-height: 1.5;
        text-align: center;
    }
}

/* Landscape Mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero { 
        min-height: 100vh; 
        padding: 10px 0;
    }
    
    .hero h1 { 
        font-size: 24px !important; 
        margin-bottom: 10px;
    }
    
    .hero p { 
        font-size: 14px !important; 
        margin-bottom: 15px;
    }
    
    .section { 
        padding: 30px 0; 
    }
    
    .gallery-item img,
    .gallery-item video {
        height: 200px;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    .btn:hover {
        transform: none;
    }
    
    .gallery-item:hover {
        transform: none;
    }
    
    .gallery-item:active {
        transform: scale(0.98);
    }
    
    .btn:active {
        transform: scale(0.95);
    }
    
    /* Larger touch targets */
    .nav a {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .details-btn {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}


