/*
 * Mobil Lastikçi İstanbul - Custom Styles
 * Siyah + Sarı Tema - Otomotiv Tarzı
 */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;900&display=swap');

:root {
    --primary-yellow: #FFD700;
    --dark-yellow: #FFC700;
    --black: #000000;
    --dark-gray: #1a1a1a;
    --light-gray: #f5f5f5;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    line-height: 1.6;
}

/* TOP BAR */
.top-bar {
    background: var(--black);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1001;
}

.emergency-text {
    color: var(--primary-yellow);
    font-weight: 700;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.top-phone, .top-whatsapp {
    color: var(--white);
    margin-left: 20px;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.top-phone:hover {
    color: var(--primary-yellow);
}

.top-whatsapp:hover {
    color: #25D366;
}

/* NAVBAR */
.navbar {
    background: var(--dark-gray);
    border: none;
    margin-bottom: 0;
    margin-top: 44px;
    border-radius: 0;
}

.navbar-brand {
    padding: 15px;
}

.brand-text {
    color: var(--primary-yellow) !important;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.navbar-default .navbar-nav > li > a {
    color: var(--white);
    font-weight: 600;
    padding: 20px 15px;
    transition: all 0.3s;
}

.navbar-default .navbar-nav > li > a:hover {
    background: var(--black);
    color: var(--primary-yellow);
}

.btn-call-nav {
    background: var(--primary-yellow) !important;
    color: var(--black) !important;
    font-weight: 700;
    padding: 10px 25px !important;
    border-radius: 25px;
    margin: 10px 0 10px 15px;
}

.btn-call-nav:hover {
    background: var(--dark-yellow) !important;
    transform: scale(1.05);
}

/* HERO SECTION */
.hero-section {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../img/slide/slide1.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 200px 0 150px;
    margin-top: 100px;
    position: relative;
    color: var(--white);
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(26,26,26,0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-title .highlight {
    color: var(--primary-yellow);
    display: block;
    font-size: 64px;
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 40px;
    font-weight: 400;
}

.hero-buttons {
    margin-bottom: 40px;
}

.btn-call, .btn-whatsapp {
    font-size: 20px;
    padding: 18px 40px;
    margin: 10px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s;
    border: none;
}

.btn-call {
    background: var(--primary-yellow);
    color: var(--black);
    animation: shake 3s infinite;
}

.btn-call:hover {
    background: var(--dark-yellow);
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(255,215,0,0.5);
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: scale(1.1);
}

.trust-badges {
    margin-top: 30px;
}

.badge-item {
    display: inline-block;
    background: rgba(255,215,0,0.2);
    border: 2px solid var(--primary-yellow);
    color: var(--primary-yellow);
    padding: 10px 20px;
    margin: 5px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 16px;
}

/* SERVICE AREAS */
.service-areas {
    padding: 80px 0;
    background: var(--light-gray);
}

.section-title {
    text-align: center;
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 50px;
    color: var(--black);
    text-transform: uppercase;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: var(--primary-yellow);
    margin: 20px auto;
}

.area-box {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
    height: 100%;
}

.area-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255,215,0,0.3);
}

.area-box h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--black);
}

.area-box p {
    font-size: 16px;
    line-height: 1.8;
}

/* SERVICES SECTION */
.services-section {
    padding: 80px 0;
    background: var(--white);
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
    color: #666;
}

.service-box {
    background: var(--light-gray);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 30px;
    transition: all 0.3s;
    height: 100%;
    border: 3px solid transparent;
}

.service-box:hover {
    background: var(--black);
    color: var(--white);
    border-color: var(--primary-yellow);
    transform: translateY(-10px);
}

.service-icon {
    font-size: 60px;
    margin-bottom: 20px;
    color: var(--primary-yellow);
    transition: all 0.3s;
}

.service-box:hover .service-icon {
    transform: scale(1.1);
    color: var(--white);
}

.service-icon i {
    display: block;
}

.service-box h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-box p {
    font-size: 15px;
    line-height: 1.6;
}

/* WHY US SECTION */
.why-us-section {
    padding: 80px 0;
    background: var(--dark-gray);
    color: var(--white);
}

.why-us-section .section-title {
    color: var(--white);
}

.feature-box {
    text-align: center;
    padding: 30px 20px;
    margin-bottom: 30px;
}

.feature-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary-yellow);
    margin-bottom: 20px;
}

.feature-box h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.feature-box p {
    font-size: 15px;
    color: #ccc;
}

/* CTA SECTION */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--dark-yellow) 100%);
    text-align: center;
}

.cta-title {
    font-size: 48px;
    font-weight: 900;
    color: var(--black);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.cta-text {
    font-size: 22px;
    color: var(--dark-gray);
    margin-bottom: 40px;
    font-weight: 600;
}

.btn-cta {
    background: var(--black);
    color: var(--primary-yellow);
    font-size: 24px;
    padding: 20px 50px;
    border-radius: 50px;
    font-weight: 900;
    border: none;
    animation: pulse-cta 2s infinite;
}

.btn-cta:hover {
    background: var(--dark-gray);
    transform: scale(1.1);
}

@keyframes pulse-cta {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0,0,0,0.7); }
    50% { box-shadow: 0 0 0 20px rgba(0,0,0,0); }
}

/* FOOTER */
footer {
    background: var(--black);
    color: var(--white);
    padding: 60px 0 20px;
}

footer h4 {
    color: var(--primary-yellow);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 20px;
}

footer p, footer a {
    color: #ccc;
    font-size: 15px;
    text-decoration: none;
}

footer a:hover {
    color: var(--primary-yellow);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #333;
}

/* FLOATING BUTTONS */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 100px;
    right: 30px;
    background-color: #25D366;
    color: var(--white);
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    color: var(--white);
}

.call-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: var(--primary-yellow);
    color: var(--black);
    border-radius: 50%;
    text-align: center;
    font-size: 28px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    animation: ring 3s infinite;
}

.call-float:hover {
    background-color: var(--dark-yellow);
    transform: scale(1.1);
    color: var(--black);
}

@keyframes ring {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-15deg); }
    20%, 40% { transform: rotate(15deg); }
}

/* RESPONSIVE - MOBILE FIRST */

/* Tablet ve küçük ekranlar */
@media (max-width: 991px) {
    .navbar-brand {
        padding: 10px 15px;
    }
    
    .brand-text {
        font-size: 18px;
    }
    
    .hero-section {
        padding: 120px 0 80px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-title .highlight {
        font-size: 48px;
    }
    
    .service-box, .area-box, .feature-box {
        margin-bottom: 20px;
    }
}

/* Mobil cihazlar */
@media (max-width: 768px) {
    /* Top Bar */
    .top-bar {
        padding: 8px 0;
        font-size: 12px;
    }
    
    .emergency-text {
        font-size: 11px;
        display: block;
        text-align: center;
    }
    
    .top-phone, .top-whatsapp {
        font-size: 12px;
        margin-left: 10px;
        display: inline-block;
    }
    
    /* Navbar */
    .navbar {
        margin-top: 40px;
    }
    
    .brand-text {
        font-size: 16px;
    }
    
    .navbar-default .navbar-nav > li > a {
        padding: 15px;
        text-align: center;
    }
    
    .btn-call-nav {
        margin: 10px 15px;
        display: block;
        text-align: center;
    }
    
    /* Hero Section */
    .hero-section {
        padding: 100px 0 60px;
        margin-top: 80px;
    }
    
    .hero-title {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .hero-title .highlight {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
        padding: 0 15px;
    }
    
    .hero-buttons {
        margin-bottom: 30px;
    }
    
    .btn-call, .btn-whatsapp {
        font-size: 16px;
        padding: 15px 25px;
        display: block;
        width: 90%;
        margin: 10px auto;
    }
    
    .trust-badges {
        margin-top: 20px;
    }
    
    .badge-item {
        font-size: 12px;
        padding: 8px 12px;
        margin: 5px 3px;
        display: inline-block;
    }
    
    /* Sections */
    .service-areas, .services-section, .why-us-section, .gallery-section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 30px;
        padding: 0 15px;
    }
    
    .section-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
        padding: 0 15px;
    }
    
    /* Service Areas */
    .area-box {
        padding: 25px;
        margin-bottom: 20px;
    }
    
    .area-box h3 {
        font-size: 22px;
    }
    
    .area-box p {
        font-size: 14px;
    }
    
    /* Services */
    .service-box {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    .service-icon {
        font-size: 50px;
    }
    
    .service-box h3 {
        font-size: 20px;
    }
    
    .service-box p {
        font-size: 14px;
    }
    
    /* Why Us */
    .feature-box {
        padding: 25px 15px;
        margin-bottom: 20px;
    }
    
    .feature-number {
        font-size: 36px;
    }
    
    .feature-box h4 {
        font-size: 20px;
    }
    
    .feature-box p {
        font-size: 14px;
    }
    
    /* CTA Section */
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-title {
        font-size: 28px;
        margin-bottom: 15px;
        padding: 0 15px;
    }
    
    .cta-text {
        font-size: 18px;
        margin-bottom: 30px;
        padding: 0 15px;
    }
    
    .btn-cta {
        font-size: 18px;
        padding: 15px 30px;
        width: 90%;
        margin: 0 auto;
        display: block;
    }
    
    /* Footer */
    footer {
        padding: 40px 0 20px;
        text-align: center;
    }
    
    footer h4 {
        font-size: 18px;
        margin-top: 20px;
    }
    
    footer p, footer a {
        font-size: 14px;
    }
    
    .footer-links {
        text-align: center;
    }
    
    /* Floating Buttons */
    .whatsapp-float, .call-float {
        width: 55px;
        height: 55px;
        font-size: 26px;
        right: 15px;
    }
    
    .whatsapp-float {
        bottom: 85px;
    }
    
    .call-float {
        bottom: 20px;
    }
    
    /* Gallery */
    .gallery-item {
        height: 250px;
        margin-bottom: 20px;
    }
    
    .gallery-overlay h4 {
        font-size: 18px;
    }
    
    .gallery-overlay p {
        font-size: 13px;
    }
    
    /* Page Header */
    .page-header {
        padding: 120px 0 50px;
        margin-top: 80px;
    }
    
    .page-header h1 {
        font-size: 32px;
        padding: 0 15px;
    }
    
    .page-header p {
        font-size: 16px;
        padding: 0 15px;
    }
    
    /* Services Detail */
    .services-detail {
        padding: 50px 0;
    }
    
    .service-item {
        margin-bottom: 40px;
        padding-bottom: 40px;
    }
    
    .service-detail-icon {
        font-size: 60px;
    }
    
    .service-item h2 {
        font-size: 26px;
        padding: 0 15px;
    }
    
    .service-item p {
        font-size: 15px;
        padding: 0 15px;
    }
    
    .service-features li {
        font-size: 14px;
        padding: 8px 15px;
    }
    
    .service-process {
        padding: 20px;
        margin-top: 30px;
    }
    
    .service-process h3 {
        font-size: 20px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 20px;
        margin-right: 15px;
    }
    
    .step-content h4 {
        font-size: 16px;
    }
    
    .step-content p {
        font-size: 13px;
    }
    
    .emergency-box {
        padding: 30px 20px;
        margin-top: 20px;
    }
    
    .emergency-box h3 {
        font-size: 24px;
    }
    
    .emergency-box p {
        font-size: 15px;
    }
    
    /* Regions */
    .regions-section {
        padding: 50px 0;
    }
    
    .intro-text {
        font-size: 16px;
        margin-bottom: 40px;
        padding: 0 15px;
    }
    
    .region-detail {
        margin-bottom: 30px;
    }
    
    .region-box {
        padding: 25px 20px;
    }
    
    .region-box h2 {
        font-size: 26px;
    }
    
    .region-box h3 {
        font-size: 20px;
    }
    
    .region-box p {
        font-size: 15px;
    }
    
    .region-list li {
        font-size: 14px;
        padding: 10px 0 10px 25px;
    }
    
    .other-region-box {
        padding: 20px;
    }
    
    .other-region-box h3 {
        font-size: 20px;
    }
    
    .compact-list {
        column-count: 1;
    }
    
    .compact-list li {
        font-size: 14px;
    }
    
    /* About */
    .about-section {
        padding: 50px 0;
    }
    
    .lead-text {
        font-size: 16px;
        margin-bottom: 30px;
        padding: 0 15px;
    }
    
    .about-content {
        margin-bottom: 40px;
    }
    
    .about-content h3 {
        font-size: 24px;
        padding: 0 15px;
    }
    
    .about-content p {
        font-size: 15px;
        padding: 0 15px;
    }
    
    .about-features li {
        font-size: 14px;
        padding: 12px 15px;
    }
    
    .value-box {
        padding: 25px 15px;
        margin-bottom: 20px;
    }
    
    .value-icon {
        font-size: 50px;
    }
    
    .value-box h4 {
        font-size: 20px;
    }
    
    .value-box p {
        font-size: 14px;
    }
    
    .stats-section {
        margin-top: 40px;
        padding: 40px 0;
    }
    
    .stat-number {
        font-size: 42px;
    }
    
    .stat-label {
        font-size: 16px;
    }
    
    /* Contact */
    .contact-section {
        padding: 50px 0;
    }
    
    .contact-methods {
        margin: 40px 0;
    }
    
    .contact-box {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    .contact-icon {
        font-size: 60px;
    }
    
    .contact-box h3 {
        font-size: 22px;
    }
    
    .contact-box p {
        font-size: 15px;
    }
    
    .contact-note {
        font-size: 13px;
    }
    
    .info-box {
        padding: 25px 20px;
        margin: 30px 0;
    }
    
    .info-box h3 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .info-list li {
        font-size: 14px;
        padding: 10px 0;
    }
    
    .map-container {
        margin-bottom: 15px;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .map-note {
        font-size: 14px;
        padding: 0 15px;
    }
    
    .faq-box {
        padding: 25px 20px;
        margin-top: 30px;
    }
    
    .faq-box h3 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .faq-item {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
    
    .faq-item h4 {
        font-size: 18px;
    }
    
    .faq-item p {
        font-size: 15px;
    }
}

/* Küçük mobil cihazlar */
@media (max-width: 480px) {
    .top-bar {
        font-size: 11px;
    }
    
    .emergency-text {
        font-size: 10px;
    }
    
    .top-phone, .top-whatsapp {
        font-size: 11px;
        margin-left: 5px;
    }
    
    .brand-text {
        font-size: 14px;
    }
    
    .hero-title {
        font-size: 26px;
    }
    
    .hero-title .highlight {
        font-size: 30px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .btn-call, .btn-whatsapp {
        font-size: 14px;
        padding: 12px 20px;
    }
    
    .badge-item {
        font-size: 11px;
        padding: 6px 10px;
        margin: 3px 2px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .cta-title {
        font-size: 24px;
    }
    
    .cta-text {
        font-size: 16px;
    }
    
    .btn-cta {
        font-size: 16px;
        padding: 12px 20px;
    }
    
    .whatsapp-float, .call-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        right: 10px;
    }
    
    .whatsapp-float {
        bottom: 75px;
    }
    
    .call-float {
        bottom: 15px;
    }
    
    .page-header h1 {
        font-size: 26px;
    }
    
    .service-item h2 {
        font-size: 22px;
    }
    
    .region-box h2 {
        font-size: 22px;
    }
    
    .stat-number {
        font-size: 36px;
    }
}

/* Landscape mode için özel ayarlar */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-section {
        padding: 80px 0 50px;
    }
    
    .page-header {
        padding: 100px 0 40px;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .btn-call, .btn-whatsapp, .btn-cta, .btn-call-nav {
        min-height: 48px;
        min-width: 48px;
    }
    
    .navbar-default .navbar-nav > li > a {
        min-height: 48px;
    }
    
    .whatsapp-float, .call-float {
        min-width: 56px;
        min-height: 56px;
    }
}


/* PAGE HEADER */
.page-header {
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
    padding: 150px 0 80px;
    margin-top: 100px;
    text-align: center;
    color: var(--white);
}

.page-header h1 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.page-header p {
    font-size: 20px;
    color: var(--primary-yellow);
}

/* SERVICES DETAIL PAGE */
.services-detail {
    padding: 80px 0;
}

.service-item {
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 2px solid var(--light-gray);
}

.service-item:last-child {
    border-bottom: none;
}

.service-detail-icon {
    font-size: 80px;
    margin-bottom: 20px;
    color: var(--primary-yellow);
}

.service-detail-icon i {
    display: block;
}

.service-item h2 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--black);
}

.service-item p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    font-size: 16px;
    padding: 10px 0;
    border-bottom: 1px solid var(--light-gray);
}

.service-process {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 10px;
}

.service-process h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.step-number {
    background: var(--primary-yellow);
    color: var(--black);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    flex-shrink: 0;
    margin-right: 20px;
}

.step-content h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.step-content p {
    font-size: 14px;
    margin: 0;
}

.emergency-box {
    background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
    color: var(--white);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    margin-top: 30px;
}

.emergency-box h3 {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 15px;
}

.emergency-box p {
    font-size: 16px;
    margin-bottom: 25px;
}

.emergency-box .btn {
    background: var(--white);
    color: #cc0000;
    font-weight: 900;
}

/* REGIONS PAGE */
.regions-section {
    padding: 80px 0;
}

.intro-text {
    font-size: 18px;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 60px;
    color: #666;
}

.region-detail {
    margin-bottom: 40px;
}

.region-box {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.region-box h2 {
    font-size: 32px;
    font-weight: 900;
    color: var(--black);
    margin-bottom: 20px;
}

.region-box h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.region-box p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.region-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.region-list li {
    font-size: 16px;
    padding: 12px 0;
    border-bottom: 1px solid var(--light-gray);
    padding-left: 25px;
    position: relative;
}

.region-list li:before {
    content: '📍';
    position: absolute;
    left: 0;
}

.other-region-box {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    height: 100%;
}

.other-region-box h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.compact-list {
    list-style: none;
    padding: 0;
    column-count: 2;
    column-gap: 20px;
}

.compact-list li {
    font-size: 15px;
    padding: 8px 0;
    break-inside: avoid;
}

/* ABOUT PAGE */
.about-section {
    padding: 80px 0;
}

.lead-text {
    font-size: 20px;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 50px;
    color: #666;
}

.about-content {
    margin-bottom: 60px;
}

.about-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 20px;
    color: var(--black);
}

.about-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-features {
    list-style: none;
    padding: 0;
}

.about-features li {
    font-size: 16px;
    padding: 15px 0;
    border-bottom: 1px solid var(--light-gray);
    line-height: 1.6;
}

.value-box {
    text-align: center;
    padding: 30px 20px;
    background: var(--light-gray);
    border-radius: 10px;
    margin-bottom: 30px;
    height: 100%;
    transition: all 0.3s;
}

.value-box:hover {
    background: var(--primary-yellow);
    transform: translateY(-10px);
}

.value-icon {
    font-size: 60px;
    margin-bottom: 20px;
    color: var(--primary-yellow);
    transition: all 0.3s;
}

.value-box:hover .value-icon {
    transform: scale(1.2) rotate(5deg);
}

.value-icon i {
    display: block;
}

.value-box h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.value-box p {
    font-size: 15px;
    line-height: 1.6;
}

.stats-section {
    margin-top: 60px;
    padding: 60px 0;
    background: var(--dark-gray);
    border-radius: 10px;
}

.stat-box {
    text-align: center;
    color: var(--white);
}

.stat-number {
    font-size: 56px;
    font-weight: 900;
    color: var(--primary-yellow);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    font-weight: 600;
}

/* CONTACT PAGE */
.contact-section {
    padding: 80px 0;
}

.contact-methods {
    margin: 60px 0;
}

.contact-box {
    text-align: center;
    padding: 40px 30px;
    background: var(--light-gray);
    border-radius: 10px;
    margin-bottom: 30px;
    height: 100%;
}

.contact-icon {
    font-size: 80px;
    margin-bottom: 20px;
    color: var(--primary-yellow);
}

.contact-icon i {
    display: block;
}

.contact-box h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-box p {
    font-size: 16px;
    margin-bottom: 20px;
}

.contact-note {
    font-size: 14px;
    color: #666;
    margin-top: 15px;
}

.info-box {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 10px;
    margin: 40px 0;
}

.info-box h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.info-list {
    list-style: none;
    padding: 0;
}

.info-list li {
    font-size: 16px;
    padding: 12px 0;
    border-bottom: 1px solid #ddd;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.map-note {
    font-size: 16px;
    color: #666;
    margin-top: 20px;
}

.faq-box {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-top: 40px;
}

.faq-box h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.faq-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--light-gray);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--black);
}

.faq-item p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

/* RESPONSIVE ADDITIONS */
@media (max-width: 768px) {
    .gallery-item {
        height: 250px;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
    
    .service-item h2 {
        font-size: 28px;
    }
    
    .region-box h2 {
        font-size: 26px;
    }
    
    .compact-list {
        column-count: 1;
    }
    
    .stat-number {
        font-size: 42px;
    }
}


/* GALLERY SECTION */
.gallery-section {
    padding: 80px 0;
    background: var(--white);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    cursor: pointer;
    height: 300px;
}

.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;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 70%, transparent 100%);,0,0,0.9) 0%, rgba(0,0,0,0.7) 70%, transparent 100%);
    color: var(--white);
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--primary-yellow);
}

.gallery-overlay p {
    font-size: 14px;
    margin: 0;
    color: var(--white);
}

/* Placeholder image styling */
.gallery-item img[src*="galeri"] {
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--black) 100%);
}

@media (max-width: 768px) {
    .gallery-item {
        height: 250px;
    }
}


/* Prevent text size adjustment on orientation change */
html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Better tap highlighting */
* {
    -webkit-tap-highlight-color: rgba(255, 215, 0, 0.3);
}

/* Prevent horizontal scroll */
body {
    overflow-x: hidden;
}

/* Better button touch targets */
a, button, input, select, textarea {
    touch-action: manipulation;
}

/* Optimize images for mobile */
img {
    max-width: 100%;
    height: auto;
}

/* Container padding for mobile */
@media (max-width: 768px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}


/* WhatsApp SVG icon styling */
.whatsapp-float svg {
    display: block;
}

.call-float svg {
    display: block;
}


/* PREMIUM ENHANCEMENTS */

/* Gradient overlays for premium look */
.service-box {
    position: relative;
    overflow: hidden;
}

.service-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,215,0,0.1), transparent);
    transition: left 0.5s;
}

.service-box:hover::before {
    left: 100%;
}

/* Premium shadows */
.area-box, .region-box, .value-box, .contact-box {
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.area-box:hover, .region-box:hover, .value-box:hover, .contact-box:hover {
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

/* Premium borders */
.service-box, .area-box, .region-box {
    border-left: 4px solid transparent;
    transition: all 0.3s;
}

.service-box:hover, .area-box:hover, .region-box:hover {
    border-left-color: var(--primary-yellow);
}

/* Premium typography */
h1, h2, h3, h4 {
    letter-spacing: -0.5px;
}

.section-title {
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    background: linear-gradient(90deg, transparent, var(--primary-yellow), transparent);
}

/* Premium buttons */
.btn-primary, .btn-success {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before, .btn-success::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.btn-primary:hover::before, .btn-success:hover::before {
    width: 300px;
    height: 300px;
}

/* Premium navbar */
.navbar {
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
}

/* Premium footer */
footer {
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-yellow), transparent);
}

/* Premium gallery */
.gallery-item {
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-item:hover {
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

/* Premium CTA section */
.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Premium mobile adjustments */
@media (max-width: 768px) {
    .service-icon {
        font-size: 50px;
    }
    
    .service-detail-icon {
        font-size: 60px;
    }
    
    .contact-icon {
        font-size: 60px;
    }
    
    .value-icon {
        font-size: 50px;
    }
}


/* STRATEGIC LOCATIONS SECTION */
.strategic-locations {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-top: 30px;
}

.strategic-locations h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--black);
    text-align: center;
}

.strategic-locations h3 i {
    color: var(--primary-yellow);
    margin-right: 10px;
}

.location-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.location-list li {
    font-size: 16px;
    padding: 10px 0;
    border-bottom: 1px solid var(--light-gray);
    transition: all 0.3s;
}

.location-list li:hover {
    padding-left: 10px;
    color: var(--primary-yellow);
}

.location-list li i {
    color: var(--primary-yellow);
    margin-right: 10px;
}

.strategic-note {
    background: var(--light-gray);
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
    font-size: 15px;
    line-height: 1.8;
    border-left: 4px solid var(--primary-yellow);
}

.strategic-note strong {
    color: var(--black);
    font-weight: 700;
}

@media (max-width: 768px) {
    .strategic-locations {
        padding: 25px 20px;
    }
    
    .strategic-locations h3 {
        font-size: 22px;
    }
    
    .location-list li {
        font-size: 14px;
    }
    
    .strategic-note {
        font-size: 14px;
        padding: 15px;
    }
}


/* HIGHLIGHT BOX FOR IMPORTANT SECTIONS */
.highlight-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 2px solid var(--primary-yellow);
}

.highlight-box h2 i {
    color: var(--primary-yellow);
    margin-right: 10px;
}

.emergency-note {
    background: linear-gradient(135deg, #fff3cd 0%, #fff8e1 100%);
    border-left: 5px solid #ffc107;
    padding: 30px;
    border-radius: 10px;
    margin-top: 30px;
}

.emergency-note h4 {
    font-size: 22px;
    font-weight: 700;
    color: #856404;
    margin-bottom: 15px;
}

.emergency-note h4 i {
    color: #ffc107;
    margin-right: 10px;
}

.emergency-note p {
    font-size: 16px;
    line-height: 1.8;
    color: #856404;
    margin-bottom: 20px;
}

.emergency-note .btn {
    background: #ffc107;
    color: #000;
    font-weight: 700;
    border: none;
}

.emergency-note .btn:hover {
    background: #ffb300;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .emergency-note {
        padding: 20px;
    }
    
    .emergency-note h4 {
        font-size: 18px;
    }
    
    .emergency-note p {
        font-size: 14px;
    }
}


/* DEVELOPER CREDIT */
.developer-credit {
    margin-top: 10px;
    font-size: 14px;
    color: #999;
}

.developer-credit a {
    color: var(--primary-yellow);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.developer-credit a:hover {
    color: var(--white);
    text-decoration: none;
}

@media (max-width: 768px) {
    .developer-credit {
        font-size: 12px;
    }
}
