/* =====================================================
   Kuleyapı İnşaat - Ana Stil Dosyası
   Modern İnşaat Firması Teması
   ===================================================== */

:root {
    --primary: #1a1a2e;
    --primary-light: #16213e;
    --accent: #c9a84c;
    --accent-hover: #b8933a;
    --text-dark: #1a1a2e;
    --text-light: #6c757d;
    --text-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #1a1a2e;
    --bg-section: #f5f5f5;
    --border-color: #e0e0e0;
    --shadow: 0 2px 15px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    background: #fff;
    -webkit-text-size-adjust: 100%;
}

body.menu-open {
    overflow: hidden;
}

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

/* =====================================================
   HEADER
   ===================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

.header-top {
    background: var(--primary);
    padding: 8px 0;
    font-size: 13px;
    color: rgba(255,255,255,0.8);
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-top-left a {
    color: rgba(255,255,255,0.8);
    margin-right: 20px;
}

.header-top-left a:hover {
    color: var(--accent);
}

.header-top-left i {
    margin-right: 5px;
}

.header-top-right a {
    color: rgba(255,255,255,0.8);
    margin-left: 15px;
    font-size: 15px;
}

.header-top-right a:hover {
    color: var(--accent);
}

.header-main {
    background: rgba(255,255,255,0.97);
    padding: 0;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    flex-shrink: 0;
}

.header-logo img {
    height: 80px;
    width: auto;
    max-width: 260px;
    padding: 8px 0;
    transition: var(--transition);
    object-fit: contain;
}

.site-header.scrolled .header-logo img {
    height: 60px;
}

.header-nav {
    display: flex;
    align-items: center;
}

.header-nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.header-nav > ul > li {
    position: relative;
}

.header-nav > ul > li > a {
    display: block;
    padding: 22px 18px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.header-nav > ul > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--accent);
    transition: var(--transition);
}

.header-nav > ul > li:hover > a::after,
.header-nav > ul > li.active > a::after {
    width: 100%;
}

.header-nav > ul > li:hover > a,
.header-nav > ul > li.active > a {
    color: var(--accent);
}

/* Dropdown */
.header-nav .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    box-shadow: var(--shadow-hover);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
    border-top: 3px solid var(--accent);
    list-style: none;
    padding: 0;
}

.header-nav > ul > li:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-nav .dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    font-size: 13px;
    color: var(--text-dark);
    border-bottom: 1px solid var(--bg-section);
    font-weight: 400;
}

.header-nav .dropdown-menu li:last-child a {
    border-bottom: none;
}

.header-nav .dropdown-menu li a:hover {
    background: var(--bg-section);
    color: var(--accent);
    padding-left: 25px;
}

.header-instagram {
    display: flex;
    align-items: center;
    margin-left: 20px;
    padding-left: 20px;
    border-left: 1px solid var(--border-color);
}

.header-instagram a {
    display: flex;
    align-items: center;
    color: var(--text-dark);
    font-size: 13px;
    font-weight: 500;
}

.header-instagram a i {
    font-size: 18px;
    margin-right: 6px;
    color: #E1306C;
}

.header-instagram a:hover {
    color: var(--accent);
}

/* Mobile Toggle */
.header-toggle {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: var(--text-dark);
    padding: 10px;
}

/* =====================================================
   HERO SLIDER
   ===================================================== */
.hero-slider {
    position: relative;
    margin-top: 130px;
}

.hero-slide {
    position: relative;
    height: 85vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(26,26,46,0.8) 0%, rgba(26,26,46,0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 0 60px;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 30px;
    line-height: 1.6;
}

.btn-primary-custom {
    display: inline-block;
    padding: 14px 35px;
    background: var(--accent);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--accent);
    transition: var(--transition);
    cursor: pointer;
}

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

.btn-outline-custom {
    display: inline-block;
    padding: 14px 35px;
    background: transparent;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #fff;
    transition: var(--transition);
    cursor: pointer;
}

.btn-outline-custom:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

/* Slider Project Badges */
.hero-slider .owl-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.hero-slider .owl-dot span {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
}

.hero-slider .owl-dot.active span {
    background: var(--accent);
    width: 30px;
    border-radius: 6px;
}

/* Project Name Badges (Floating) */
.project-badges {
    position: absolute;
    bottom: 100px;
    right: 60px;
    z-index: 10;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 500px;
    justify-content: flex-end;
}

.project-badge {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255,255,255,0.3);
    transition: var(--transition);
    cursor: pointer;
}

.project-badge:hover,
.project-badge.active {
    background: var(--accent);
    border-color: var(--accent);
}

/* =====================================================
   SECTIONS - GENERAL
   ===================================================== */
.section {
    padding: 80px 0;
}

.section-light {
    background: var(--bg-section);
}

.section-dark {
    background: var(--primary);
    color: #fff;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title .subtitle {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 10px;
}

.section-title h2 {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-dark .section-title h2 {
    color: #fff;
}

.section-title p {
    max-width: 650px;
    margin: 0 auto;
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.8;
}

.section-title-left {
    text-align: left;
    margin-bottom: 30px;
}

.section-title-left h2 {
    font-size: 28px;
}

.section-title-left p {
    margin: 0;
}

.section-dark .section-title p {
    color: rgba(255,255,255,0.7);
}

/* =====================================================
   VIZYON SECTION
   ===================================================== */
.vizyon-section {
    padding: 80px 0;
    background: #fff;
}

.vizyon-inner {
    display: flex;
    align-items: center;
    gap: 60px;
}

.vizyon-image {
    flex: 1;
    position: relative;
}

.vizyon-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.vizyon-image::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--accent);
    z-index: -1;
}

.vizyon-content {
    flex: 1;
}

.vizyon-content .subtitle {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 10px;
}

.vizyon-content h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.vizyon-content p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.vizyon-reverse {
    flex-direction: row-reverse;
}

/* =====================================================
   PROJECT CARDS
   ===================================================== */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.project-card {
    background: #fff;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.project-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.project-card-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.project-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-card-image img {
    transform: scale(1.05);
}

.project-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(26,26,46,0.8) 0%, transparent 50%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.project-card:hover .project-card-overlay {
    opacity: 1;
}

.project-card-overlay a {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 2px;
}

.project-card-body {
    padding: 25px;
}

.project-card-body h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.project-card-body p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.project-card-category {
    display: inline-block;
    padding: 4px 14px;
    background: var(--bg-section);
    color: var(--accent);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* =====================================================
   PAGE HEADER (Inner Pages)
   ===================================================== */
.page-header-section {
    position: relative;
    height: 350px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    margin-top: 130px;
}

.page-header-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26,26,46,0.75);
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.page-header-content h1 {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 700;
    color: #fff;
    word-wrap: break-word;
    overflow-wrap: break-word;
    margin-bottom: 15px;
}

.page-header-content .breadcrumb {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 0;
    margin: 0;
}

.page-header-content .breadcrumb li {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

.page-header-content .breadcrumb li a {
    color: var(--accent);
}

.page-header-content .breadcrumb li + li::before {
    content: '/';
    margin-right: 10px;
    color: rgba(255,255,255,0.4);
}

/* =====================================================
   ABOUT / HAKKIMIZDA
   ===================================================== */
.about-section {
    padding: 80px 0;
}

.about-inner {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-content {
    flex: 1;
}

.about-content .subtitle {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 10px;
}

.about-content h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* =====================================================
   CONTACT
   ===================================================== */
.contact-section {
    padding: 80px 0;
}

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

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 30px;
}

.contact-info-item i {
    font-size: 20px;
    color: var(--accent);
    margin-top: 3px;
    min-width: 24px;
    text-align: center;
}

.contact-info-item h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-info-item p,
.contact-info-item a {
    color: var(--text-light);
    font-size: 14px;
}

.contact-info-item a:hover {
    color: var(--accent);
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border-color);
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-dark);
    background: #fff;
    transition: var(--transition);
    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--accent);
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

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

.contact-map {
    margin-top: 60px;
}

.contact-map iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer {
    background: var(--primary);
    color: rgba(255,255,255,0.8);
}

.footer-main {
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-widget h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent);
}

.footer-about p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-about .footer-logo {
    margin-bottom: 15px;
}

.footer-about .footer-logo img {
    height: 65px;
    max-width: 220px;
    width: auto;
    object-fit: contain;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-contact-info li {
    list-style: none;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
}

.footer-contact-info li i {
    color: var(--accent);
    margin-top: 3px;
    min-width: 16px;
}

.footer-social {
    margin-top: 20px;
}

.footer-social a {
    display: inline-flex;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    margin-right: 8px;
    font-size: 14px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.footer-instagram-feed {
    margin-top: 10px;
}

.footer-instagram-feed .instagram-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    margin-bottom: 15px;
}

.footer-instagram-feed .instagram-link i {
    color: #E1306C;
    font-size: 18px;
}

.footer-instagram-feed .instagram-link:hover {
    color: var(--accent);
}

.footer-instagram-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin: 0;
}

.footer-bottom a {
    color: var(--accent);
}

/* =====================================================
   BACK TO TOP
   ===================================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    border: none;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary);
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 55px;
    height: 55px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(37,211,102,0.4);
    transition: var(--transition);
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    color: #fff;
}

/* =====================================================
   PROJECT DETAIL PAGE
   ===================================================== */
.project-detail-section {
    padding: 80px 0;
}

.project-detail-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    margin-bottom: 40px;
    display: block;
}

.project-detail-info {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.project-detail-content {
    min-width: 0;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.project-detail-content h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    margin-bottom: 20px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.project-detail-content p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.project-detail-sidebar {
    background: var(--bg-section);
    padding: 30px;
    min-width: 0;
}

.project-detail-sidebar h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent);
}

.project-detail-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.project-detail-sidebar ul li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    flex-wrap: wrap;
    gap: 5px 10px;
    font-size: 14px;
}

.project-detail-sidebar ul li strong {
    color: var(--text-dark);
    flex-shrink: 0;
    min-width: 80px;
}

.project-detail-sidebar ul li span {
    color: var(--text-light);
    flex: 1;
    text-align: right;
    word-break: break-word;
    overflow-wrap: break-word;
    min-width: 0;
}

.project-detail-cta {
    margin-top: 25px;
}

.project-detail-cta .btn-primary-custom {
    display: block;
    text-align: center;
    width: 100%;
}

/* Project Gallery */
.project-gallery {
    margin-bottom: 40px;
}

.project-gallery-main {
    margin-bottom: 15px;
    overflow: hidden;
}

.project-gallery-main .project-detail-image {
    margin-bottom: 0;
}

.project-gallery-thumbs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.gallery-thumb {
    width: 100px;
    height: 75px;
    cursor: pointer;
    border: 3px solid transparent;
    transition: var(--transition);
    overflow: hidden;
    opacity: 0.6;
    flex-shrink: 0;
}

.gallery-thumb.active {
    border-color: var(--accent);
    opacity: 1;
}

.gallery-thumb:hover {
    opacity: 1;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =====================================================
   STATS SECTION
   ===================================================== */
.stats-section {
    background: var(--primary);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item h3 {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 5px;
}

.stat-item p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =====================================================
   ANIMATIONS
   ===================================================== */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* =====================================================
   RESPONSIVE - TABLET LANDSCAPE (1024px)
   ===================================================== */
@media (max-width: 1024px) {
    .container {
        padding: 0 25px;
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .vizyon-inner,
    .vizyon-reverse,
    .about-inner {
        flex-direction: column;
        gap: 40px;
    }

    .vizyon-image img,
    .about-image img {
        height: 350px;
    }

    .vizyon-content h2,
    .about-content h2 {
        font-size: 30px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .hero-content h1 {
        font-size: 42px;
    }

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

    .header-nav > ul > li > a {
        padding: 22px 14px;
        font-size: 13px;
    }

    .project-detail-image {
        height: 400px;
    }

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

/* =====================================================
   RESPONSIVE - TABLET PORTRAIT (768px)
   ===================================================== */
@media (max-width: 768px) {
    /* Header Mobile */
    .header-top {
        display: none;
    }

    .header-main {
        padding: 5px 0;
    }

    .header-logo img {
        height: 55px;
        max-width: 180px;
        padding: 6px 0;
    }

    .site-header.scrolled .header-logo img {
        height: 45px;
    }

    .hero-slider {
        margin-top: 72px;
    }

    .page-header-section {
        margin-top: 72px;
        height: 220px;
    }

    .header-nav {
        display: none;
        position: fixed;
        top: 72px;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        box-shadow: var(--shadow-hover);
        max-height: calc(100vh - 72px);
        overflow-y: auto;
        z-index: 999;
        -webkit-overflow-scrolling: touch;
    }

    .header-nav.active {
        display: flex;
    }

    .header-nav ul {
        flex-direction: column;
        width: 100%;
    }

    .header-nav > ul > li > a {
        padding: 16px 20px;
        border-bottom: 1px solid var(--bg-section);
        font-size: 14px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .header-nav > ul > li > a::after {
        display: none;
    }

    .header-nav > ul > li > a i {
        transition: var(--transition);
    }

    .header-nav > ul > li.dropdown-open > a i {
        transform: rotate(180deg);
    }

    .header-nav .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-top: none;
        display: none;
        background: var(--bg-section);
        min-width: 100%;
    }

    .header-nav > ul > li.dropdown-open > .dropdown-menu {
        display: block;
    }

    .header-nav .dropdown-menu li a {
        padding: 14px 35px;
        font-size: 13px;
    }

    .header-instagram {
        border-left: none;
        margin: 0;
        padding: 16px 20px;
        border-top: 1px solid var(--bg-section);
    }

    .header-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        border-radius: 4px;
    }

    .header-toggle:active {
        background: var(--bg-section);
    }

    /* Hero Slider Mobile */
    .hero-slide {
        height: 55vh;
        min-height: 380px;
    }

    .hero-content {
        padding: 0 20px;
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .hero-content p {
        font-size: 14px;
        margin-bottom: 20px;
        line-height: 1.5;
    }

    .btn-primary-custom,
    .btn-outline-custom {
        padding: 12px 25px;
        font-size: 13px;
    }

    .project-badges {
        display: none;
    }

    .hero-slider .owl-nav button {
        width: 40px;
        height: 40px;
        font-size: 16px !important;
    }

    .hero-slider .owl-nav .owl-prev {
        left: 10px;
    }

    .hero-slider .owl-nav .owl-next {
        right: 10px;
    }

    /* Sections Mobile */
    .section {
        padding: 50px 0;
    }

    .section-title {
        margin-bottom: 35px;
    }

    .section-title .subtitle {
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    .section-title h2 {
        font-size: 26px;
    }

    .section-title p {
        font-size: 14px;
        padding: 0 10px;
    }

    /* Vizyon Mobile */
    .vizyon-section {
        padding: 50px 0;
    }

    .vizyon-inner {
        flex-direction: column;
        gap: 30px;
    }

    .vizyon-image img {
        height: 250px;
    }

    .vizyon-image::after {
        display: none;
    }

    .vizyon-content h2 {
        font-size: 26px;
    }

    .vizyon-content p {
        font-size: 14px;
    }

    /* Project Cards Mobile */
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .project-card-image {
        height: 220px;
    }

    .project-card-body {
        padding: 20px;
    }

    .project-card-body h3 {
        font-size: 20px;
    }

    .project-card-body p {
        font-size: 13px;
    }

    .project-card-overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(26,26,46,0.6) 0%, transparent 40%);
    }

    /* About Mobile */
    .about-section {
        padding: 50px 0;
    }

    .about-inner {
        flex-direction: column;
        gap: 30px;
    }

    .about-image img {
        height: 280px;
    }

    .about-content h2 {
        font-size: 26px;
    }

    .about-content p {
        font-size: 14px;
    }

    /* Stats Mobile */
    .stats-section {
        padding: 40px 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .stat-item h3 {
        font-size: 34px;
    }

    .stat-item p {
        font-size: 12px;
    }

    /* Page Header Mobile */
    .page-header-content h1 {
        font-size: 22px;
        padding: 0 10px;
        line-height: 1.3;
        word-break: break-word;
    }

    .page-header-content .breadcrumb {
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px;
    }

    .page-header-content .breadcrumb li {
        font-size: 11px;
        word-break: break-word;
    }

    /* Contact Mobile */
    .contact-section {
        padding: 50px 0;
    }

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

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

    .contact-form input,
    .contact-form textarea {
        padding: 12px 15px;
        font-size: 14px;
    }

    .contact-map {
        margin-top: 40px;
    }

    .contact-map iframe {
        height: 300px;
    }

    /* Project Detail Mobile */
    .project-detail-section {
        padding: 40px 0;
    }

    .project-detail-image {
        height: auto;
        max-height: 300px;
        margin-bottom: 20px;
        object-fit: cover;
    }

    .project-detail-info {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .project-detail-content h2 {
        font-size: 22px;
        line-height: 1.3;
        word-break: break-word;
    }

    .project-detail-content p {
        font-size: 14px;
        line-height: 1.7;
    }

    .project-detail-sidebar {
        padding: 20px;
    }

    .project-detail-sidebar h4 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .project-detail-sidebar ul li {
        padding: 10px 0;
        font-size: 13px;
        flex-direction: column;
        gap: 3px;
    }

    .project-detail-sidebar ul li strong {
        font-size: 13px;
        min-width: unset;
    }

    .project-detail-sidebar ul li span {
        text-align: left;
        font-size: 13px;
    }

    .project-detail-cta {
        margin-top: 20px;
    }

    .project-detail-cta .btn-primary-custom {
        padding: 12px 20px;
        font-size: 13px;
    }

    .gallery-thumb {
        width: 70px;
        height: 55px;
    }

    .project-gallery-thumbs {
        gap: 8px;
    }

    .project-gallery {
        margin-bottom: 20px;
    }

    /* Footer Mobile */
    .footer-main {
        padding: 40px 0 30px;
    }

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

    .footer-about .footer-logo img {
        height: 50px;
        max-width: 170px;
    }

    .footer-widget h4 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .footer-bottom {
        padding: 15px 0;
    }

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

    .footer-bottom p {
        font-size: 12px;
    }

    /* Fixed Buttons Mobile */
    .whatsapp-btn {
        width: 48px;
        height: 48px;
        font-size: 24px;
        bottom: 20px;
        left: 20px;
    }

    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 16px;
        bottom: 20px;
        right: 20px;
    }
}

/* =====================================================
   RESPONSIVE - SMALL PHONES (480px)
   ===================================================== */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .header-logo img {
        height: 45px;
        max-width: 150px;
    }

    .footer-about .footer-logo img {
        height: 42px;
        max-width: 140px;
    }

    .hero-slide {
        height: 50vh;
        min-height: 320px;
    }

    .hero-content h1 {
        font-size: 24px;
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 13px;
        margin-bottom: 18px;
    }

    .btn-primary-custom,
    .btn-outline-custom {
        padding: 10px 20px;
        font-size: 12px;
        letter-spacing: 0.5px;
    }

    .section {
        padding: 40px 0;
    }

    .section-title h2 {
        font-size: 22px;
    }

    .section-title p {
        font-size: 13px;
    }

    .vizyon-image img,
    .about-image img {
        height: 200px;
    }

    .vizyon-content h2,
    .about-content h2 {
        font-size: 22px;
    }

    .project-card-image {
        height: 190px;
    }

    .project-card-body {
        padding: 15px;
    }

    .project-card-body h3 {
        font-size: 18px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-item h3 {
        font-size: 28px;
    }

    .stat-item p {
        font-size: 11px;
        letter-spacing: 0.5px;
    }

    .page-header-section {
        height: 180px;
    }

    .page-header-content h1 {
        font-size: 18px;
        line-height: 1.3;
    }

    .project-detail-image {
        height: auto;
        max-height: 220px;
    }

    .project-detail-content h2 {
        font-size: 20px;
    }

    .project-detail-content p {
        font-size: 13px;
    }

    .project-detail-sidebar {
        padding: 15px;
    }

    .project-detail-sidebar h4 {
        font-size: 16px;
    }

    .project-detail-sidebar ul li {
        font-size: 12px;
    }

    .gallery-thumb {
        width: 60px;
        height: 45px;
    }

    .contact-info-item {
        margin-bottom: 20px;
    }

    .contact-info-item h4 {
        font-size: 14px;
    }

    .footer-social a {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }
}

/* =====================================================
   RESPONSIVE - VERY SMALL (360px)
   ===================================================== */
@media (max-width: 360px) {
    .hero-content h1 {
        font-size: 20px;
    }

    .hero-content p {
        font-size: 12px;
    }

    .section-title h2 {
        font-size: 20px;
    }

    .hero-slide {
        min-height: 280px;
    }

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

    .stat-item h3 {
        font-size: 24px;
    }
}

/* =====================================================
   TOUCH DEVICE IMPROVEMENTS
   ===================================================== */
@media (hover: none) and (pointer: coarse) {
    .project-card-overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(26,26,46,0.6) 0%, transparent 40%);
    }

    .project-card:hover {
        transform: none;
    }

    .header-nav .dropdown-menu li a:hover {
        padding-left: 20px;
    }

    a, button {
        -webkit-tap-highlight-color: transparent;
    }
}

/* =====================================================
   LANDSCAPE PHONES
   ===================================================== */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-slide {
        height: 90vh;
        min-height: 300px;
    }

    .hero-content h1 {
        font-size: 26px;
        margin-bottom: 10px;
    }

    .hero-content p {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .page-header-section {
        height: 180px;
    }
}

/* =====================================================
   OWL CAROUSEL OVERRIDES
   ===================================================== */
.owl-theme .owl-nav {
    margin-top: 0;
}

.hero-slider .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2) !important;
    color: #fff !important;
    font-size: 20px !important;
    border-radius: 0 !important;
    margin: 0 !important;
    transition: var(--transition);
}

.hero-slider .owl-nav button:hover {
    background: var(--accent) !important;
}

.hero-slider .owl-nav .owl-prev {
    left: 20px;
}

.hero-slider .owl-nav .owl-next {
    right: 20px;
}

/* Utility */
.text-accent {
    color: var(--accent);
}

.mb-0 { margin-bottom: 0; }
.mt-30 { margin-top: 30px; }
.mt-50 { margin-top: 50px; }

/* Checkbox for forms */
.form-check {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 20px;
}

.form-check input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.form-check label {
    font-size: 13px;
    color: var(--text-light);
}

.form-check a {
    color: var(--accent);
    text-decoration: underline;
}
