/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333; line-height: 1.6; overflow-x: hidden;
    background: #f8f9fa;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-title {
    text-align: center; font-size: 2.2rem; font-weight: 700;
    margin-bottom: 10px; color: #1a1a2e;
}
.section-subtitle {
    text-align: center; font-size: 1.05rem; color: #6c757d;
    margin-bottom: 50px; max-width: 600px; margin-left: auto; margin-right: auto;
}
.btn {
    display: inline-block; padding: 14px 32px; border-radius: 50px;
    font-weight: 600; font-size: 0.95rem; cursor: pointer;
    transition: all 0.3s ease; border: none; outline: none;
}
.btn-primary { background: #e63946; color: #fff; }
.btn-primary:hover { background: #c1121f; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(230,57,70,0.4); }
.btn-outline { background: transparent; color: #e63946; border: 2px solid #e63946; }
.btn-outline:hover { background: #e63946; color: #fff; transform: translateY(-2px); }
.btn-secondary { background: #1a1a2e; color: #fff; }
.btn-secondary:hover { background: #16213e; transform: translateY(-2px); }
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }

/* ===== HEADER / NAVBAR ===== */
/* ===== HEADER - PROFESSIONAL TWO-ROW ===== */
.header {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    transition: all 0.3s ease;
}
.header.scrolled { box-shadow: 0 2px 30px rgba(0,0,0,0.15); }
.header.scrolled .header-main { background: rgba(26,26,46,0.98); }

/* Top Bar */
.header-top {
    background: #0d0d1a; border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 7px 0; display: block;
}
.header-top-inner {
    display: flex; align-items: center; justify-content: space-between; gap: 15px;
}
.header-top-left, .header-top-right {
    display: flex; align-items: center; gap: 20px;
}
.header-top-item {
    display: flex; align-items: center; gap: 7px;
    color: rgba(255,255,255,0.55); font-size: 0.82rem; transition: color 0.3s;
    text-decoration: none;
}
.header-top-item i { color: #e63946; font-size: 0.75rem; }
.header-top-item:hover { color: #fff; }
.header-top-item span { line-height: 1.3; }

/* Main Navigation */
.header-main {
    background: rgba(26,26,46,0.95); backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: background 0.3s;
}
.navbar {
    display: flex; align-items: center; justify-content: space-between;
    padding: 12px 0; height: 66px;
}
.nav-brand {
    display: flex; align-items: center; gap: 10px; z-index: 1001;
}
.nav-logo {
    width: 42px; height: 42px; background: linear-gradient(135deg, #e63946, #c1121f);
    border-radius: 10px; display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; color: #fff; box-shadow: 0 4px 15px rgba(230,57,70,0.3);
}
.nav-brand-text { font-size: 1.4rem; font-weight: 800; color: #fff; }
.nav-brand-text span { color: #e63946; }
.nav-brand img { height: 50px; width: auto; display: block; }
.nav-menu { display: flex; align-items: center; gap: 24px; }
.nav-link {
    color: rgba(255,255,255,0.85); font-weight: 500; font-size: 0.93rem;
    transition: color 0.3s; position: relative; padding: 5px 0;
}
.nav-link::after {
    content: ''; position: absolute; bottom: -2px; left: 0; width: 0;
    height: 2px; background: #e63946; transition: width 0.3s;
}
.nav-link:hover { color: #fff; }
.nav-link:hover::after { width: 100%; }
.nav-right {
    display: flex; align-items: center; gap: 12px; z-index: 1001;
}
.nav-cta {
    padding: 8px 20px; font-size: 0.88rem; border-radius: 8px;
}
.nav-mobile-only { display: none; }
.nav-toggle {
    display: none; flex-direction: column; gap: 5px; cursor: pointer;
    z-index: 1001; background: none; border: none; padding: 5px;
}
.nav-toggle span {
    width: 26px; height: 3px; background: #fff; border-radius: 3px;
    transition: all 0.3s ease; display: block;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* ===== HERO SLIDER ===== */
.hero-slider {
    position: relative; min-height: 100vh; overflow: hidden;
    background: #1a1a2e; max-height: 650px;
}
.hero-slide {
    position: absolute; inset: 0; display: flex; align-items: center;
    opacity: 0; transition: opacity 0.8s ease; z-index: 1;
}
.hero-slide.active { opacity: 1; z-index: 2; }
.hero-slide::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(26,26,46,0.92) 0%, rgba(22,33,62,0.85) 50%, rgba(15,52,96,0.8) 100%);
}
.hero-slide-bg {
    position: absolute; inset: 0; background-size: cover; background-position: center 20%;
    animation: heroZoom 12s ease forwards;
}
.hero-slide.active .hero-slide-bg { animation: heroZoom 10s ease forwards; }
.hero-slide.has-image::before {
    background: linear-gradient(to bottom, rgba(26,26,46,0.05) 0%, rgba(26,26,46,0.15) 40%, rgba(26,26,46,0.5) 80%, rgba(26,26,46,0.7) 100%);
}
@media (max-width: 768px) {
    .hero-slide-bg, .hero-slide.active .hero-slide-bg { animation: none; }
}
@keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.03); }
}
.hero-content {
    position: relative; z-index: 3; text-align: center; max-width: 800px;
    margin: 0 auto; padding: 150px 20px 60px;
}
.hero-badge {
    display: inline-block; padding: 8px 20px; background: rgba(230,57,70,0.15);
    border: 1px solid rgba(230,57,70,0.3); border-radius: 50px;
    color: #e63946; font-size: 0.85rem; font-weight: 600;
    margin-bottom: 25px; letter-spacing: 1px; animation: fadeInUp 0.6s ease;
}
.hero-title {
    font-size: 3.5rem; font-weight: 800; color: #fff;
    line-height: 1.15; margin-bottom: 20px; animation: fadeInUp 0.6s ease 0.1s both;
}
.hero-title span { color: #e63946; }
.hero-subtitle {
    font-size: 1.15rem; color: rgba(255,255,255,0.7);
    margin-bottom: 35px; line-height: 1.8; max-width: 650px; margin-left: auto; margin-right: auto;
    animation: fadeInUp 0.6s ease 0.2s both;
}
.hero-buttons { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; animation: fadeInUp 0.6s ease 0.3s both; }
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.hero-stats {
    display: flex; justify-content: center; gap: 60px; margin-top: 60px; flex-wrap: wrap;
    animation: fadeInUp 0.6s ease 0.4s both;
}
.hero-stat-item { text-align: center; }
.hero-stat-number { font-size: 2.5rem; font-weight: 800; color: #fff; }
.hero-stat-number span { color: #e63946; }
.hero-stat-label { font-size: 0.9rem; color: rgba(255,255,255,0.6); margin-top: 5px; }

/* Slider Navigation */
.slider-dots {
    position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 12px; z-index: 10;
}
.slider-dot {
    width: 14px; height: 14px; border-radius: 50%; background: rgba(255,255,255,0.3);
    cursor: pointer; transition: all 0.3s; border: 2px solid transparent;
}
.slider-dot.active { background: #e63946; border-color: rgba(255,255,255,0.5); transform: scale(1.2); }
.slider-dot:hover { background: rgba(255,255,255,0.6); }
.slider-arrow {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
    width: 55px; height: 55px; border-radius: 50%; background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.15); color: #fff; font-size: 1.4rem;
    cursor: pointer; transition: all 0.3s; display: flex; align-items: center; justify-content: center;
    backdrop-filter: blur(5px);
}
.slider-arrow:hover { background: #e63946; border-color: #e63946; transform: translateY(-50%) scale(1.1); }
.slider-arrow.prev { left: 20px; }
.slider-arrow.next { right: 20px; }
.slider-progress {
    position: absolute; bottom: 0; left: 0; height: 4px; background: #e63946;
    z-index: 10; width: 0; transition: width 0.1s linear;
}

/* ===== ABOUT ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image {
    border-radius: 20px; overflow: hidden; position: relative;
    min-height: 400px; background: linear-gradient(135deg, #e63946, #c1121f);
    display: flex; align-items: center; justify-content: center;
}
.about-image img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.about-image-placeholder { color: #fff; text-align: center; padding: 40px; }
.about-image-placeholder i { font-size: 4rem; margin-bottom: 15px; }
.about-image-placeholder p { font-size: 1.1rem; opacity: 0.8; }
.about-text h2 { font-size: 2.2rem; font-weight: 700; margin-bottom: 20px; color: #1a1a2e; }
.about-text h2 span { color: #e63946; }
.about-text p { color: #6c757d; line-height: 1.8; margin-bottom: 15px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-top: 25px; }
.about-feature {
    display: flex; align-items: center; gap: 12px; padding: 12px 15px;
    background: #fff; border-radius: 10px; box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.about-feature i { color: #e63946; font-size: 1.1rem; }
.about-feature span { font-weight: 500; font-size: 0.95rem; }

/* ===== SERVICES ===== */
.services { background: #fff; }
.services-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px;
}
.service-card {
    background: #fff; border-radius: 16px; overflow: hidden;
    box-shadow: 0 5px 30px rgba(0,0,0,0.06);
    transition: all 0.4s ease; border: 1px solid #f0f0f0;
    position: relative;
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 15px 50px rgba(0,0,0,0.12); }
/* ===== SERVICE CARD IMAGE BG ===== */
.service-card-image {
    height: 200px; background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
    display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden;
}
.service-card-image::after {
    content: ''; position: absolute; inset: 0;
    background: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(230,57,70,0.03) 20px, rgba(230,57,70,0.03) 40px);
}
.service-card-image i {
    font-size: 4rem; color: rgba(255,255,255,0.12); z-index: 1;
}
.service-card-image .service-icon-badge {
    position: absolute; bottom: -25px; right: 20px; width: 60px; height: 60px;
    background: linear-gradient(135deg, #e63946, #d62828); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 5px 20px rgba(230,57,70,0.35); z-index: 2;
}
.service-card-image .service-icon-badge i { font-size: 1.5rem; color: #fff; }
.service-card-body { padding: 30px 25px 25px; }
.service-card-body h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 10px; color: #1a1a2e; }
.service-card-body p { color: #6c757d; font-size: 0.95rem; margin-bottom: 15px; line-height: 1.7; }
.service-capacity {
    display: inline-block; padding: 4px 14px; background: rgba(230,57,70,0.08);
    color: #e63946; border-radius: 50px; font-size: 0.85rem; font-weight: 600; margin-bottom: 15px;
}
.service-features { margin-bottom: 20px; }
.service-features li {
    display: flex; align-items: center; gap: 8px; padding: 5px 0;
    font-size: 0.9rem; color: #555;
}
.service-features li i { color: #e63946; font-size: 0.8rem; }

/* ===== GALLERY ===== */
.gallery-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px;
}
.gallery-item {
    border-radius: 12px; overflow: hidden; position: relative;
    height: 250px; cursor: pointer;
    background: linear-gradient(135deg, #16213e, #0f3460);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay {
    position: absolute; inset: 0; background: rgba(26,26,46,0.7);
    display: flex; align-items: center; justify-content: center; flex-direction: column;
    gap: 8px; opacity: 0; transition: opacity 0.3s; color: #fff;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { font-size: 2rem; }
.gallery-overlay span { font-weight: 600; }

/* ===== CONTACT ===== */
.contact { background: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-info { display: flex; flex-direction: column; gap: 25px; }
.contact-info-item {
    display: flex; align-items: flex-start; gap: 18px;
    padding: 20px; background: #f8f9fa; border-radius: 12px;
    transition: all 0.3s;
}
.contact-info-item:hover { transform: translateX(5px); }
.contact-info-icon {
    width: 55px; height: 55px; min-width: 55px; background: #e63946;
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
}
.contact-info-icon i { font-size: 1.3rem; color: #fff; }
.contact-info-text h4 { font-size: 1rem; font-weight: 700; margin-bottom: 5px; color: #1a1a2e; }
.contact-info-text p { color: #6c757d; font-size: 0.95rem; }
.contact-form { background: #f8f9fa; padding: 40px; border-radius: 16px; }
.contact-form h3 { font-size: 1.5rem; margin-bottom: 10px; color: #1a1a2e; }
.contact-form p { color: #6c757d; margin-bottom: 25px; font-size: 0.95rem; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; margin-bottom: 6px; font-weight: 600; font-size: 0.9rem; color: #1a1a2e; }
.form-group label span { color: #e63946; }
.form-control {
    width: 100%; padding: 14px 18px; border: 2px solid #e9ecef; border-radius: 10px;
    font-size: 0.95rem; transition: border-color 0.3s; background: #fff; font-family: inherit;
}
.form-control:focus { outline: none; border-color: #e63946; }
textarea.form-control { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

/* ===== FOOTER ===== */
.footer {
    background: #1a1a2e; color: rgba(255,255,255,0.7); padding: 60px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer-about h3 { font-size: 1.4rem; color: #fff; margin-bottom: 15px; }
.footer-about h3 span { color: #e63946; }
.footer-about p { font-size: 0.95rem; line-height: 1.8; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
    width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s; color: #fff; font-size: 1rem;
}
.footer-social a:hover { background: #e63946; transform: translateY(-3px); }
.footer h4 { color: #fff; font-size: 1.1rem; margin-bottom: 20px; position: relative; padding-bottom: 10px; }
.footer h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background: #e63946; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.6); transition: all 0.3s; font-size: 0.95rem; display: flex; align-items: center; gap: 8px; }
.footer-links a:hover { color: #e63946; padding-left: 5px; }
.footer-links a i { font-size: 0.7rem; }
.footer-contact li {
    display: flex; align-items: flex-start; gap: 12px; margin-bottom: 15px;
    font-size: 0.95rem; color: rgba(255,255,255,0.6);
}
.footer-contact li i { color: #e63946; margin-top: 4px; min-width: 16px; }
.footer-bottom {
    margin-top: 40px; padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center; font-size: 0.9rem; color: rgba(255,255,255,0.5);
}

/* ===== WHATSAPP FLOATING ===== */
.whatsapp-float {
    position: fixed; bottom: 100px; right: 25px; z-index: 999;
    width: 56px; height: 56px; background: #25D366; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: all 0.3s; cursor: pointer; color: #fff; font-size: 1.5rem;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.5); }

/* ===== MOBILE CALL BUTTON ===== */
.mobile-call-btn {
    display: none; position: fixed; bottom: 0; left: 0; width: 100%; z-index: 9999;
    background: linear-gradient(135deg, #e63946, #c1121f); color: #fff;
    padding: 14px 20px; text-align: center; font-weight: 700; font-size: 1.1rem;
    align-items: center; justify-content: center; gap: 10px;
    box-shadow: 0 -4px 20px rgba(230,57,70,0.3);
    border: none; cursor: pointer; text-decoration: none;
}
.mobile-call-btn i { font-size: 1.3rem; }
.mobile-call-text { font-size: 1rem; }
@media (max-width: 768px) {
    .mobile-call-btn { display: flex; }
    .whatsapp-float { bottom: 80px; right: 15px; width: 50px; height: 50px; font-size: 1.3rem; }
    .scroll-top { bottom: 150px; right: 15px; width: 44px; height: 44px; font-size: 1rem; }
    body { padding-bottom: 60px; }
}

@media (max-width: 480px) {
    .mobile-call-btn { padding: 12px 15px; font-size: 1rem; }
    .mobile-call-btn i { font-size: 1.1rem; }
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
    position: fixed; bottom: 100px; right: 30px; z-index: 999;
    width: 50px; height: 50px; background: #e63946; color: #fff; border: none;
    border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 15px rgba(230,57,70,0.3); font-size: 1.2rem;
    opacity: 0; visibility: hidden; transition: all 0.3s; 
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { transform: translateY(-3px); }

/* ===== PAGE HEADER / INNER HERO ===== */
.page-hero {
    padding: 170px 0 60px; position: relative; overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    text-align: center;
}
.page-hero h1 {
    font-size: 2.8rem; font-weight: 800; color: #fff; margin-bottom: 10px;
}
.page-hero h1 span { color: #e63946; }
.page-hero p {
    font-size: 1.1rem; color: rgba(255,255,255,0.7); max-width: 600px; margin: 0 auto;
}
.breadcrumb {
    display: flex; justify-content: center; gap: 8px; margin-top: 15px;
    font-size: 0.9rem; color: rgba(255,255,255,0.5);
}
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: #e63946; }

/* ===== VALUES SECTION ===== */
.values-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-top: 30px;
}
.value-card {
    background: #fff; border-radius: 12px; padding: 30px 20px; text-align: center;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05); border: 1px solid #f0f0f0;
    transition: all 0.3s;
}
.value-card:hover { transform: translateY(-5px); box-shadow: 0 8px 30px rgba(0,0,0,0.1); }
.value-card i {
    width: 60px; height: 60px; background: rgba(230,57,70,0.1); color: #e63946;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; margin: 0 auto 15px;
}
.value-card h4 { font-size: 1.1rem; font-weight: 700; color: #1a1a2e; }

/* ===== MISSION / VISION ===== */
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 40px; }
.mv-card {
    padding: 40px 35px; border-radius: 16px; background: #fff;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05); border: 1px solid #f0f0f0;
}
.mv-card .icon {
    width: 65px; height: 65px; border-radius: 16px; display: flex;
    align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 20px; color: #fff;
}
.mv-card .icon.mission { background: #e63946; }
.mv-card .icon.vision { background: #1a1a2e; }
.mv-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 12px; color: #1a1a2e; }
.mv-card p { color: #6c757d; line-height: 1.8; }

/* ===== SERVICE DETAIL ON PAGE ===== */
.service-detail { background: #fff; }
.service-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; margin-bottom: 40px; }
.service-detail-grid.reverse { direction: rtl; }
.service-detail-grid.reverse > * { direction: ltr; }
.service-detail-image {
    height: 300px; border-radius: 16px; overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e, #0f3460);
    display: flex; align-items: center; justify-content: center;
}
.service-detail-image i { font-size: 5rem; color: rgba(255,255,255,0.15); }
.service-detail-text h3 { font-size: 1.6rem; font-weight: 700; color: #1a1a2e; margin-bottom: 10px; }
.service-detail-text h3 span { color: #e63946; }
.service-detail-text .capacity-badge {
    display: inline-block; padding: 5px 16px; background: rgba(230,57,70,0.08);
    color: #e63946; border-radius: 50px; font-size: 0.9rem; font-weight: 600; margin-bottom: 15px;
}
.service-detail-text p { color: #6c757d; line-height: 1.8; margin-bottom: 15px; }
.service-detail-text ul { margin: 15px 0; }
.service-detail-text ul li {
    display: flex; align-items: center; gap: 10px; padding: 6px 0;
    font-size: 0.95rem; color: #555;
}
.service-detail-text ul li i { color: #e63946; }
.service-detail-features {
    display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: 20px 0;
}
.service-detail-features .feature-item {
    display: flex; align-items: center; gap: 10px; padding: 10px 14px;
    background: #f8f9fa; border-radius: 10px; font-size: 0.9rem; color: #444;
    transition: all 0.3s ease;
}
.service-detail-features .feature-item:hover {
    background: rgba(230,57,70,0.06); transform: translateX(4px);
}
.service-detail-features .feature-item i { color: #198754; font-size: 0.85rem; flex-shrink: 0; }
@media (max-width: 576px) {
    .service-detail-features { grid-template-columns: 1fr; }
}

/* ===== WHY US CARDS ===== */
.why-card {
    background: #fff; border-radius: 14px; padding: 30px 25px;
    box-shadow: 0 3px 20px rgba(0,0,0,0.04); border: 1px solid #f0f0f0;
    transition: all 0.4s ease;
}
.why-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.why-card-icon {
    width: 65px; height: 65px; background: rgba(230,57,70,0.1); color: #e63946;
    border-radius: 14px; display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; margin-bottom: 18px;
}
.why-card h3 { font-size: 1.15rem; font-weight: 700; color: #1a1a2e; margin-bottom: 8px; }
.why-card p { color: #6c757d; font-size: 0.92rem; line-height: 1.7; }

/* ===== SERVICE DETAIL BADGE ===== */
.service-capacity-lg {
    display: inline-block; padding: 8px 20px; background: rgba(230,57,70,0.08);
    color: #e63946; border-radius: 50px; font-size: 1.1rem; font-weight: 600; margin-bottom: 20px;
}

/* ===== REFERENCE LOGOS ===== */
.ref-card {
    background: #fff; border-radius: 12px; padding: 25px; width: 100%; text-align: center;
    box-shadow: 0 3px 15px rgba(0,0,0,0.04); border: 1px solid #f0f0f0;
    transition: all 0.3s;
}
.ref-card:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(0,0,0,0.08); }
.ref-card img { max-height: 60px; width: auto; margin: 0 auto; }
.ref-card i { font-size: 2rem; color: #6c757d; }

/* ===== SECTION LABEL ===== */
.section-label {
    display: block; text-align: center; padding: 5px 16px;
    background: rgba(230,57,70,0.08); color: #e63946; border-radius: 50px;
    font-size: 0.85rem; font-weight: 600; margin-bottom: 15px;
    width: fit-content; margin-left: auto; margin-right: auto;
}

/* ===== HIZMET BÖLGELERI ===== */
.areas-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px; margin-bottom: 20px;
}
.area-card {
    display: block; text-decoration: none; color: inherit;
    background: #fff; border-radius: 14px; overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,0.04); transition: all 0.35s;
    border: 1px solid #edf0f5;
}
.area-card:hover {
    transform: translateY(-5px); box-shadow: 0 12px 35px rgba(0,0,0,0.09);
    border-color: rgba(230,57,70,0.15);
}
.area-card-top {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 20px; background: #f8f9fb;
    border-bottom: 1px solid #edf0f5;
}
.area-city-badge {
    font-size: 0.78rem; font-weight: 600; color: #6c757d;
    display: inline-flex; align-items: center; gap: 5px;
}
.area-city-badge i { color: #e63946; font-size: 0.7rem; }
.area-arrow {
    font-size: 0.7rem; color: #adb5bd; transition: transform 0.3s, color 0.3s;
}
.area-card:hover .area-arrow {
    transform: translateX(3px); color: #e63946;
}
.area-card-body {
    padding: 22px 20px 24px;
    display: flex; flex-direction: column; align-items: center; text-align: center;
}
.area-icon-wrap {
    width: 56px; height: 56px; background: rgba(230,57,70,0.08);
    border-radius: 16px; display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: #e63946; margin-bottom: 14px;
    transition: transform 0.35s, background 0.35s;
}
.area-card:hover .area-icon-wrap {
    transform: scale(1.1); background: rgba(230,57,70,0.15);
}
.area-card-body h3 {
    font-size: 1.15rem; font-weight: 700; color: #1a1a2e;
    margin: 0 0 8px; line-height: 1.3;
}
.area-card-body p {
    font-size: 0.88rem; color: #6c757d; line-height: 1.6;
    margin: 0 0 16px; display: -webkit-box; -webkit-line-clamp: 2;
    -webkit-box-orient: vertical; overflow: hidden;
}
.area-link {
    font-size: 0.85rem; font-weight: 600; color: #e63946;
    display: inline-flex; align-items: center; gap: 6px;
    transition: gap 0.3s;
}
.area-link i { font-size: 0.75rem; transition: transform 0.3s; }
.area-card:hover .area-link i { transform: translateX(4px); }
.area-card:hover .area-link { gap: 10px; }
@media (max-width: 768px) {
    .areas-grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
    .area-card-top { padding: 12px 16px; }
    .area-card-body { padding: 18px 16px 20px; }
    .area-icon-wrap { width: 48px; height: 48px; font-size: 1.1rem; margin-bottom: 12px; }
    .area-card-body h3 { font-size: 1.05rem; }
}
@media (max-width: 480px) {
    .areas-grid { grid-template-columns: 1fr; gap: 14px; }
}

/* ===== GALLERY FILTER ===== */
.gal-filter { transition: all 0.3s; }
.gal-filter.btn-primary { background: #e63946; border-color: #e63946; color: #fff; }
.gal-filter.btn-outline { border-color: #e63946; color: #e63946; }
.gal-filter.btn-outline:hover { background: rgba(230,57,70,0.08); }

/* ===== CONTACT PAGE EXTRAS ===== */
.contact-page-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-hours {
    background: #fff; border-radius: 12px; padding: 25px; box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    margin-top: 20px;
}
.contact-hours h4 { font-size: 1.1rem; margin-bottom: 15px; color: #1a1a2e; }
.contact-hours h4 i { color: #e63946; margin-right: 8px; }
.contact-hours-item {
    display: flex; justify-content: space-between; padding: 8px 0;
    border-bottom: 1px solid #f0f0f0; font-size: 0.95rem;
}
.contact-hours-item:last-child { border-bottom: none; }
.contact-hours-item .day { font-weight: 600; color: #333; }
.contact-hours-item .time { color: #6c757d; }
.map-container {
    border-radius: 12px; overflow: hidden; height: 350px;
    background: #e9ecef; margin-top: 20px;
}

/* ===== SECTION BG ===== */
.section.bg-light { background: #f8f9fa; }
.section.bg-white { background: #fff; }

/* ===== LIGHTBOX ===== */
.lightbox {
    display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    z-index: 10000; background: rgba(0,0,0,0.92); backdrop-filter: blur(5px);
    align-items: center; justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox-img {
    max-width: 90%; max-height: 85vh; border-radius: 8px;
    box-shadow: 0 10px 60px rgba(0,0,0,0.5); object-fit: contain;
    animation: lightboxIn 0.3s ease;
}
@keyframes lightboxIn { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }
.lightbox-close {
    position: absolute; top: 20px; right: 30px; color: #fff; font-size: 2.5rem;
    cursor: pointer; transition: all 0.3s; background: none; border: none; z-index: 10001;
}
.lightbox-close:hover { color: #e63946; transform: rotate(90deg); }
.lightbox-prev, .lightbox-next {
    position: absolute; top: 50%; transform: translateY(-50%);
    color: #fff; font-size: 2.5rem; cursor: pointer; padding: 20px;
    transition: all 0.3s; background: none; border: none; z-index: 10001;
}
.lightbox-prev { left: 10px; }
.lightbox-next { right: 10px; }
.lightbox-prev:hover, .lightbox-next:hover { color: #e63946; transform: translateY(-50%) scale(1.2); }
.lightbox-counter {
    position: absolute; bottom: 25px; left: 50%; transform: translateX(-50%);
    color: rgba(255,255,255,0.6); font-size: 0.9rem; z-index: 10001;
}
.lightbox-caption {
    position: absolute; bottom: 55px; left: 50%; transform: translateX(-50%);
    color: #fff; font-size: 1rem; z-index: 10001; text-align: center;
    max-width: 80%; text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .header-top-right { display: none; }
    .hero-title { font-size: 2.6rem; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .hero-stats { gap: 40px; }
    .hero-stat-number { font-size: 2rem; }
    .page-hero h1 { font-size: 2.2rem; }
    .page-hero { padding: 150px 0 50px; }
    .service-detail-grid { grid-template-columns: 1fr; gap: 30px; }
    .service-detail-grid.reverse { direction: ltr; }
    .mv-grid { grid-template-columns: 1fr; }
    .contact-page-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .header-top { display: none; }
    .lightbox-prev, .lightbox-next { font-size: 1.8rem; padding: 10px; }
    .lightbox-close { top: 10px; right: 15px; font-size: 2rem; }
    .lightbox-img { max-width: 95%; max-height: 70vh; }
    .nav-menu {
        position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
        background: rgba(26,26,46,0.98); flex-direction: column; justify-content: center;
        gap: 25px; transform: translateX(100%); transition: transform 0.4s ease;
    }
    .nav-menu.active { transform: translateX(0); }
    .nav-link { font-size: 1.3rem; }
    .nav-mobile-only { display: block; }
    .nav-cta { display: none; }
    .section { padding: 60px 0; }
    .section-title { font-size: 1.8rem; }
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-stats { gap: 25px; }
    .hero-stat-number { font-size: 1.8rem; }
    .hero-slider { min-height: 90vh; max-height: 520px; }
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 1rem; }
    .slider-arrow { width: 40px; height: 40px; font-size: 1rem; }
    .slider-arrow.prev { left: 5px; }
    .slider-arrow.next { right: 5px; }
    .about-features { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form { padding: 25px; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .services-grid { grid-template-columns: 1fr; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .page-hero h1 { font-size: 1.8rem; }
    .page-hero { padding: 130px 0 40px; }
    .page-hero p { font-size: 1rem; }
    .service-detail-image { height: 200px; }
    .service-detail-text h3 { font-size: 1.3rem; }
    .values-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 576px) {
    .hero-slider { min-height: 70vh; max-height: 460px; }
    .hero-content { padding: 100px 15px 40px; }
}

@media (max-width: 480px) {
    .container { padding: 0 15px; }
    .hero-title { font-size: 1.5rem; }
    .hero-slider .hero-title { font-size: 1.5rem; }
    .hero-content { padding: 80px 15px 30px; }
    .hero-subtitle { font-size: 0.9rem; margin-bottom: 25px; }
    .hero-badge { font-size: 0.75rem; padding: 6px 16px; margin-bottom: 18px; }
    .hero-slider { min-height: 60vh; max-height: 400px; }
    .hero-stat-number { font-size: 1.5rem; }
    .hero-stats { gap: 20px; }
    .slider-arrow { display: none; }
    .btn { padding: 12px 25px; font-size: 0.9rem; }
    .section-title { font-size: 1.5rem; }
    .page-hero h1 { font-size: 1.5rem; }
    .page-hero p { font-size: 0.9rem; }
    .values-grid { grid-template-columns: 1fr; }
    .service-detail-text h3 { font-size: 1.2rem; }
}

/* ===== PAGINATION ===== */
.pagination {
    display: flex; justify-content: center; align-items: center; gap: 8px;
    margin: 45px 0 10px;
}
.page-link {
    display: inline-flex; align-items: center; justify-content: center;
    width: 42px; height: 42px; border-radius: 10px;
    background: #fff; color: #1a1a2e; font-weight: 600; font-size: 0.9rem;
    text-decoration: none; transition: all 0.25s;
    border: 1px solid #e9ecef;
}
.page-link:hover { border-color: #e63946; color: #e63946; background: rgba(230,57,70,0.04); }
.page-link.active { background: #e63946; color: #fff; border-color: #e63946; }
.page-link i { font-size: 0.75rem; }
@media (max-width: 480px) {
    .page-link { width: 36px; height: 36px; font-size: 0.82rem; }
    .pagination { gap: 5px; }
}
