/* Reset & Base */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', Arial, sans-serif; overflow-x: hidden; }

/* Header */
header { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    z-index: 1000;
    background: transparent;
}
.header-inner {
    border-bottom: 2px solid #0f3460;
    padding: 15px 0;
    padding-bottom: 0px !important;
}
.main-menu ul { 
    list-style: none; 
    display: flex; 
    gap: 30px;
    justify-content: center;
}
.main-menu a { 
    text-decoration: none; 
    color: #fff; 
    font-size: 14px; 
    font-weight: 500;
    text-transform: uppercase;
    transition: color 0.3s;
}

/* Sol menü - sağa yaslı */
.main-menu-left ul {
    justify-content: flex-end;
}

/* Sağ menü - sola yaslı */
.main-menu-right ul {
    justify-content: flex-start;
}



.sector-photo {
    width: 100% !important;
    object-fit: none;
    height: 212px;
    border-radius: 6px;
    margin-bottom: 20px;
}


.main-menu a:hover { color: #0f3460; }

/* Dropdown */
.dropdown-menu-parrent { position: relative; }
.dropdown-menu-parrent:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
}
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #000;
    min-width: 220px;
    padding: 15px 0;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 1001;
    flex-direction: column !important;
    gap: 0px !important;
}
.dropdown-menu li { list-style: none; }
.dropdown-menu a {
    display: block;
    padding: 8px 20px;
    font-size: 13px;
    color: #fff;
    white-space: nowrap;
}
.dropdown-menu a:hover { color: #0f3460; }

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    max-height: 800px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: 50px;
}

@media (min-width: 1600px) {
    .hero {
        height: 60vh;
        max-height: 700px;
    }


    .hero-content {
        position: absolute !important;
        bottom: 0px !important;
    }

}

/* Video Background */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

/* Video Overlay */
.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding-left: 50px;
}

.hero .container-fluid {
    position: relative;
    z-index: 2;
}
.hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 25px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
    letter-spacing: 3px;
    color: #fff;
}
.hero-content p {
    font-size: 18px;
    line-height: 1.9;
    max-width: 800px;
    background: rgb(15 52 96 / 11%);
    padding: 25px 30px;
    border-radius: 10px;
    border-left: 4px solid #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    backdrop-filter: blur(5px);
}

/* Hero Card */
.hero-card {
    position: relative;
    bottom: auto;
    right: auto;
    background: rgba(255, 255, 255, 0.95);
    padding: 25px 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    z-index: 3;
    max-width: 380px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-left: auto;
    margin-top: 30px;
}

.hero-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.4);
}

.hero-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0f3460 0%, #16213e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-card-icon i {
    color: #fff;
    font-size: 24px;
}

.hero-card-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: #0f3460;
    margin-bottom: 5px;
}

.hero-card-content p {
    font-size: 14px;
    color: #666;
    margin: 0;
    background: none;
    padding: 0;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
}

/* Breadcrumb */
.breadcrumb-section {
    background: #f8f9fa;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}
.breadcrumb a {
    color: #0f3460;
    text-decoration: none;
}
.breadcrumb span {
    color: #999;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: #fff;
}
.about-left h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #333;
    line-height: 1.3;
}
.about-left p {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}
.about-feature {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}
.about-feature-icon {
    width: 50px;
    height: 50px;
    background: #0f3460;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    flex-shrink: 0;
}
.about-feature h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}
.btn-red {
    background: #0f3460;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-weight: 500;
    margin-top: 20px;
    display: inline-block;
    text-decoration: none;
}
.btn-red:hover { background: #16213e; color: #fff; }

/* About Images */
.about-images {
    position: relative;
}
.about-img-large {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
}
.about-img-small {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
}
.stat-box {
    background: #0f3460;
    color: #fff;
    padding: 25px;
    text-align: center;
    border-radius: 10px;
    margin-top: 20px;
}
.stat-box h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 5px;
}
.stat-box p {
    font-size: 14px;
    margin: 0;
}
.stat-box-dark {
    background: #16213e;
}

/* CTA Section */
.cta-section {
    background: #0f3460;
    color: #fff;
    padding: 60px 0;
}
.cta-section h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
}
.cta-section p {
    font-size: 15px;
    line-height: 1.8;
    opacity: 0.95;
}

/* Services */
.services-section {
    padding: 80px 0;
    background: #f8f9fa;
}
.section-title {
    text-align: center;
    margin-bottom: 50px;
}
.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}
.section-title p {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}
.service-box {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    margin-bottom: 30px;
}
.service-box:hover { transform: translateY(-10px); }
.service-box img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.service-box-content {
    padding: 25px;
    background: #f9f9f9;
}
.service-box-content h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}
.service-box-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Precision Section */
.precision-section {
    padding: 80px 0;
    background: #fff;
}
.precision-feature h5 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #0f3460;
}

/* Workflow Section */
.workflow-section {
    padding: 80px 0;
    background: #f8f9fa;
}
.workflow-box {
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    height: 100%;
}
.workflow-icon {
    width: 60px;
    height: 60px;
    background: #0f3460;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.workflow-icon i {
    color: #fff;
    font-size: 24px;
}
.workflow-box h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}
.workflow-box p {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
}

/* Page Banner */
.page-banner {
    position: relative;
    height: 40vh;
    background: url('images/bg.jpg') no-repeat top center;
    background-size: cover;
    display: flex;
    align-items: center;
}
.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}
.page-banner-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    width: 100%;
}
.page-banner-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}
.page-banner-content p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

/* Service Detail */
.service-detail {
    padding: 80px 0;
    background: #fff;
}
.service-detail h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #333;
}
.service-detail p {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}
.service-detail-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 30px;
}
.service-features {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    margin-top: 40px;
}
.service-features h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #333;
}
.service-features ul {
    list-style: none;
}
.service-features li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-size: 15px;
    color: #666;
}
.service-features li:last-child {
    border-bottom: none;
}
.service-features i {
    color: #0f3460;
    margin-right: 10px;
}

/* Footer */
.footer {
    background: #000;
    color: #fff;
    padding: 60px 0 30px;
}
.footer h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
}
.footer p, .footer a {
    color: #ccc;
    font-size: 15px;
    line-height: 1.8;
    text-decoration: none;
}
.footer a:hover { color: #0f3460; }
.footer ul { list-style: none; padding: 0; }
.footer li { margin-bottom: 10px; }
.footer-contact {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}
.footer-contact i {
    color: #0f3460;
    font-size: 18px;
    margin-top: 3px;
}
.copyright {
    background: #111;
    padding: 20px 0;
    text-align: center;
    color: #999;
    font-size: 14px;
}

/* WhatsApp */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    z-index: 9999;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    text-decoration: none;
}

.whatsapp-btn i {
    position: relative;
    z-index: 2;
}

/* WhatsApp Pulse Animation */
.whatsapp-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(37, 211, 102, 0.6);
    border-radius: 50%;
    animation: whatsapp-radar 2s ease-out infinite;
    z-index: 1;
}

.whatsapp-pulse:nth-child(2) {
    animation-delay: 0.5s;
}

@keyframes whatsapp-radar {
    0% {
        width: 60px;
        height: 60px;
        opacity: 0.8;
    }
    100% {
        width: 120px;
        height: 120px;
        opacity: 0;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1, .page-banner-content h1 {
        font-size: 32px;
    }
    .hero-content {
        padding-left: 20px;
        padding-right: 20px;
    }
    .hero-content h1 {
        font-size: 36px;
        letter-spacing: 1px;
    }
    .hero-content p {
        font-size: 15px;
        padding: 20px;
    }
    .hero-card {
        position: relative;
        bottom: auto;
        right: auto;
        margin: 30px 20px 0;
        max-width: 100%;
    }
    .hero {
        height: 100vh;
        min-height: 600px;
        padding: 140px 0 40px;
        align-items: flex-end;
    }
    .main-menu ul {
        gap: 15px;
    }
    .main-menu a {
        font-size: 12px;
    }
}

/* Service Sidebar */
.service-sidebar {
    position: sticky;
    top: 100px;
}
.service-sidebar-box {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
}
.service-sidebar-box h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}
.service-sidebar-box p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}
.service-sidebar-box ul {
    list-style: none;
    padding: 0;
}
.service-sidebar-box ul li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    color: #666;
}
.service-sidebar-box ul li:last-child {
    border-bottom: none;
}
.service-sidebar-box ul li i {
    color: #0f3460;
    margin-right: 8px;
}

/* ============================================
   MOBILE MENU STYLES
   ============================================ */

/* Hamburger Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover .hamburger-line {
    background: #0f3460;
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: #000;
    z-index: 10002;
    transition: right 0.3s ease;
    overflow-y: auto;
    padding: 20px 0;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px 20px;
    border-bottom: 1px solid #333;
}

.mobile-nav-title {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

.mobile-nav-close {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
}

.mobile-nav-close:hover {
    color: #0f3460;
}

/* Mobile Menu */
.mobile-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu > li {
    border-bottom: 1px solid #222;
}

.mobile-menu > li > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.mobile-menu > li > a:hover {
    color: #0f3460;
    background: rgba(255,255,255,0.05);
}

/* Mobile Dropdown */
.mobile-dropdown-toggle i {
    transition: transform 0.3s ease;
}

.mobile-dropdown.active .mobile-dropdown-toggle i {
    transform: rotate(180deg);
}

.mobile-dropdown-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    background: #111;
    transition: max-height 0.3s ease;
}

.mobile-dropdown.active .mobile-dropdown-menu {
    max-height: 500px;
}

.mobile-dropdown-menu li a {
    display: block;
    padding: 12px 20px 12px 35px;
    color: #ccc;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
}

.mobile-dropdown-menu li a:hover {
    color: #0f3460;
    background: rgba(255,255,255,0.03);
}

/* Mobile Nav Languages */
.mobile-nav-langs {
    padding: 20px;
    border-top: 1px solid #333;
    margin-top: 20px;
    display: flex;
    gap: 20px;
}

.mobile-nav-langs a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-nav-langs a:hover {
    color: #0f3460;
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ============================================
   HEADER LOGO RESPONSIVE
   ============================================ */

.header-logo {
    width: 256px;
    border-radius: 12px;
    transition: width 0.3s ease;
    margin-left: -10px;
}

/* ============================================
   COMPREHENSIVE RESPONSIVE STYLES
   ============================================ */

/* Large Tablets and Small Desktops */
@media (max-width: 1200px) {
    .main-menu ul {
        gap: 20px;
    }
    
    .main-menu a {
        font-size: 13px;
    }
    
    .header-logo {
        width: 200px;
    }
}

/* Tablets */
@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-logo {
        width: 180px;
    }
    
    .hero {
        min-height: 500px;
        padding: 120px 0 40px;
    }
    
    .hero-content h1 {
        font-size: 32px;
        letter-spacing: 1px;
    }
    
    .hero-content p {
        font-size: 14px;
        padding: 15px 20px;
    }
    
    .about-section {
        padding: 60px 0;
    }
    
    .about-left h2 {
        font-size: 28px;
    }
    
    .about-img-large,
    .about-img-small {
        height: 200px;
    }
    
    .stat-box {
        padding: 15px;
    }
    
    .stat-box h3 {
        font-size: 28px;
    }
    
    .cta-section {
        padding: 50px 0;
    }
    
    .cta-section h2 {
        font-size: 26px;
    }
    
    .section-title h2 {
        font-size: 26px;
    }
    
    .service-detail-image {
        height: 300px;
    }
    
    .page-banner {
        height: 35vh;
    }
    
    .page-banner-content h1 {
        font-size: 36px;
    }
}

/* Mobile Landscape */
@media (max-width: 768px) {
    .header-logo {
        width: 150px;
    }
    
    .header-inner {
        padding: 10px 0;
    }
    
    .hero {
        min-height: 100vh;
        max-height: none;
        height: auto;
        padding: 100px 0 40px;
        align-items: flex-end;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .hero-content p {
        font-size: 13px;
        line-height: 1.7;
        padding: 15px;
    }
    
    .hero-card {
        margin: 20px 15px 0;
        padding: 20px;
        max-width: 100%;
    }
    
    .hero-card-icon {
        width: 50px;
        height: 50px;
    }
    
    .hero-card-icon i {
        font-size: 20px;
    }
    
    .hero-card-content h4 {
        font-size: 14px;
    }
    
    .hero-card-content p {
        font-size: 12px;
    }
    
    .about-section {
        padding: 50px 0;
    }
    
    .about-left {
        margin-bottom: 30px;
    }
    
    .about-left h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .about-left p {
        font-size: 14px;
    }
    
    .about-feature {
        flex-direction: column;
        text-align: center;
    }
    
    .about-feature-icon {
        margin-bottom: 10px;
    }
    
    .about-images {
        margin-top: 30px;
    }
    
    .about-img-large,
    .about-img-small {
        height: 180px;
        margin-bottom: 15px;
    }
    
    .stat-box {
        margin-top: 15px;
    }
    
    .cta-section {
        padding: 40px 0;
    }
    
    .cta-section h2 {
        font-size: 22px;
        margin-bottom: 15px;
    }
    
    .cta-section p {
        font-size: 14px;
    }
    
    .services-section,
    .precision-section,
    .workflow-section {
        padding: 50px 0;
    }
    
    .section-title h2 {
        font-size: 22px;
        margin-bottom: 10px;
    }
    
    .section-title p {
        font-size: 14px;
    }
    
    .service-box img {
        height: 180px;
    }
    
    .service-box-content {
        padding: 20px;
    }
    
    .service-box-content h4 {
        font-size: 18px;
    }
    
    .workflow-box {
        padding: 20px;
    }
    
    .workflow-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .workflow-icon i {
        font-size: 20px;
    }
    
    .workflow-box h4 {
        font-size: 18px;
    }
    
    .page-banner {
        height: 30vh;
    }
    
    .page-banner-content h1 {
        font-size: 28px;
    }
    
    .page-banner-content p {
        font-size: 14px;
    }
    
    .service-detail {
        padding: 50px 0;
    }
    
    .service-detail h2 {
        font-size: 24px;
    }
    
    .service-detail-image {
        height: 250px;
    }
    
    .service-features {
        padding: 25px;
    }
    
    .service-features h3 {
        font-size: 20px;
    }
    
    .breadcrumb-section {
        padding: 10px 0;
    }
    
    .breadcrumb {
        font-size: 12px;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer h3 {
        font-size: 16px;
        margin-bottom: 15px;
        margin-top: 20px;
    }
    
    .footer p,
    .footer a {
        font-size: 14px;
    }
    
    .footer-contact {
        margin-bottom: 10px;
    }
    
    .copyright {
        padding: 15px 0;
        font-size: 13px;
    }
    
    /* WhatsApp Button Mobile */
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        bottom: 20px;
        left: 20px;
        font-size: 24px;
    }
    
    .whatsapp-pulse {
        width: 50px;
        height: 50px;
    }
    
    @keyframes whatsapp-radar {
        0% {
            width: 50px;
            height: 50px;
            opacity: 0.8;
        }
        100% {
            width: 100px;
            height: 100px;
            opacity: 0;
        }
    }
}

/* Mobile Portrait */
@media (max-width: 576px) {
    .header-logo {
        width: 193px;
    }
    
    .hero-content h1 {
        font-size: 24px;
    }
    
    .hero-content p {
        font-size: 12px;
        padding: 12px 15px;
    }
    
    .hero-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .hero-card-icon {
        margin: 0 auto;
    }
    
    .about-left h2 {
        font-size: 20px;
    }
    
    .about-feature h5 {
        font-size: 16px;
    }
    
    .btn-red {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .cta-section h2 {
        font-size: 20px;
    }
    
    .section-title h2 {
        font-size: 20px;
    }
    
    .service-box img {
        height: 160px;
    }
    
    .service-box-content h4 {
        font-size: 16px;
    }
    
    .service-box-content p {
        font-size: 13px;
    }
    
    .precision-feature h5 {
        font-size: 18px;
    }
    
    .page-banner-content h1 {
        font-size: 24px;
    }
    
    .service-detail h2 {
        font-size: 20px;
    }
    
    .service-detail p {
        font-size: 14px;
    }
    
    .service-features {
        padding: 20px;
    }
    
    .service-sidebar-box {
        padding: 20px;
    }
    
    .service-sidebar-box h4 {
        font-size: 16px;
    }
}

/* Very Small Screens */
@media (max-width: 400px) {
    .header-logo {
        width: 110px;
    }
    
    .hero-content h1 {
        font-size: 20px;
    }
    
    .mobile-nav {
        width: 260px;
        right: -280px;
    }
    
    .mobile-menu > li > a {
        padding: 12px 15px;
        font-size: 13px;
    }
    
    .mobile-dropdown-menu li a {
        padding: 10px 15px 10px 25px;
        font-size: 12px;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .dropdown-menu-parrent:hover .dropdown-menu {
        display: none;
    }
    
    .service-box:hover {
        transform: none;
    }
    
    .hero-card:hover {
        transform: none;
    }
}

/* Landscape Orientation on Mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding-top: 80px;
    }
    
    .hero-content h1 {
        font-size: 24px;
    }
    
    .hero-content p {
        max-height: 150px;
        overflow-y: auto;
    }
}

/* High DPI Screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .header-logo {
        image-rendering: -webkit-optimize-contrast;
    }
}

/* Print Styles */
@media print {
    .mobile-menu-toggle,
    .mobile-nav,
    .mobile-nav-overlay,
    .whatsapp-btn {
        display: none !important;
    }
    
    header {
        position: relative !important;
        background: #fff !important;
    }
    
    .main-menu a {
        color: #000 !important;
    }
}

/* ============================================
   MACHINE PARK SECTION
   ============================================ */

.machine-park-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.machine-park-section .section-header {
    margin-bottom: 50px;
}

.machine-park-section .section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0f3460;
    margin-bottom: 15px;
}

.machine-park-section .section-header p {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.machine-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.machine-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.machine-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.machine-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.machine-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.machine-card:hover .machine-image img {
    transform: scale(1.05);
}

.machine-info {
    padding: 25px;
}

.machine-name {
    font-size: 20px;
    font-weight: 600;
    color: #0f3460;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e93940;
}

.machine-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 15px;
    background: #f8f9fa;
    border-radius: 6px;
    font-size: 14px;
}

.spec-label {
    color: #666;
    font-weight: 500;
}

.spec-value {
    color: #0f3460;
    font-weight: 600;
}

/* Machine Park Responsive */
@media (max-width: 768px) {
    .machine-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .machine-park-section {
        padding: 50px 0;
    }
    
    .machine-park-section .section-header h2 {
        font-size: 28px;
    }
    
    .machine-image {
        height: 200px;
    }
    
    .machine-info {
        padding: 20px;
    }
    
    .machine-name {
        font-size: 18px;
    }
    
    .spec-item {
        padding: 8px 12px;
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .machine-park-section .section-header h2 {
        font-size: 24px;
    }
    
    .machine-specs {
        grid-template-columns: 1fr;
    }
}
