/*
==============================================
ÇEKICI PREMIUM HOMEPAGE STYLES
Modern, responsive, acil hizmet odaklı tasarım
==============================================
*/

/* ==========================================
   1. HERO SECTION - Acil Çekici
   ========================================== */
.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../trex/assets/img/genel/30160.jpg') center/cover no-repeat;
    opacity: 0.6;
    z-index: 0;
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% {
        transform: scale(1) translateX(0);
    }

    100% {
        transform: scale(1.15) translateX(-3%);
    }
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.75) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 20px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 107, 53, 0.2);
    border: 1px solid rgba(255, 107, 53, 0.5);
    color: #ff6b35;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    animation: fadeInDown 0.8s ease;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-content h1 span {
    display: block;
    color: #ff6b35;
    font-size: 4.5rem;
}

.hero-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto 35px;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

/* Emergency Call Button */
.emergency-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    padding: 20px 50px;
    border-radius: 60px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease 0.6s backwards, pulse-glow 2s infinite;
}

.emergency-call-btn i {
    font-size: 1.8rem;
    animation: phone-ring 1s ease infinite;
}

.emergency-call-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 50px rgba(255, 107, 53, 0.6);
    color: #fff;
    text-decoration: none;
}

/* Phone number display */
.hero-phone {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #f88d21 !important;
    margin-top: 25px;
    animation: fadeInUp 0.8s ease 0.8s backwards;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-phone i {
    color: #ff6b35;
    margin-right: 10px;
    animation: phone-ring 1s ease infinite;
}

.hero-phone a {
    color: #fff;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 50px;
    animation: fadeInUp 1s ease 1s backwards;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #ff6b35;
}

.hero-stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================
   2. STICKY CONTACT BAR
   ========================================== */
.sticky-contact-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
    padding: 15px 0;
    z-index: 9999;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    gap: 15px;
    backdrop-filter: blur(10px);
}

.sticky-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sticky-contact-btn.call-btn {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #fff;
    animation: pulse-glow 2s infinite;
}

.sticky-contact-btn.whatsapp-btn {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #fff;
}

.sticky-contact-btn.location-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.sticky-contact-btn:hover {
    transform: translateY(-3px);
    text-decoration: none;
    color: #fff;
}

.sticky-contact-btn i {
    font-size: 18px;
}

/* Mobile sticky bar */
@media (max-width: 768px) {
    .sticky-contact-bar {
        padding: 10px 15px;
        gap: 10px;
    }

    .sticky-contact-btn {
        padding: 12px 18px;
        font-size: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 50px;
        min-height: 44px;
    }

    .sticky-contact-btn span {
        display: none;
    }

    .sticky-contact-btn i {
        margin: 0;
        font-size: 20px;
        display: inline-block !important;
    }
}

/* ==========================================
   3. GLASSMORPHISM CARDS
   ========================================== */
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* ==========================================
   4. SECTION IMPROVEMENTS
   ========================================== */
.section-block {
    position: relative;
    padding: 80px 0;
}

.section-heading h2,
.section-heading h3 {
    position: relative;
    font-weight: 700;
}

.section-heading h2::after,
.section-heading h3::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    margin: 15px auto 0;
    border-radius: 2px;
}

.left-holder .section-heading h2::after,
.left-holder .section-heading h3::after {
    margin: 15px 0 0;
}

/* Service Cards Enhancement */
.service-overlay {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.service-overlay:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

/* Team/Project Cards */
.team-member {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.team-member-name {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
    padding: 20px;
}

.team-member-name h4 {
    color: #fff;
    font-weight: 600;
}

/* Testimonial Enhancement */
.testmonial-box {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #ff6b35;
    transition: all 0.3s ease;
}

.testmonial-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.testmonial-box i.fas.fa-quote-left,
.testmonial-box i.fas.fa-quote-right {
    color: #ff6b35;
    font-size: 24px;
}

/* ==========================================
   5. ANIMATIONS
   ========================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 10px 40px rgba(255, 107, 53, 0.4);
    }

    50% {
        box-shadow: 0 10px 60px rgba(255, 107, 53, 0.7);
    }
}

@keyframes phone-ring {

    0%,
    100% {
        transform: rotate(0deg);
    }

    10%,
    30% {
        transform: rotate(-10deg);
    }

    20%,
    40% {
        transform: rotate(10deg);
    }

    50% {
        transform: rotate(0deg);
    }
}

/* ==========================================
   6. RESPONSIVE
   ========================================== */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content h1 span {
        font-size: 3rem;
    }

    .hero-stats {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 100vh;
        padding-bottom: 80px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }

    .hero-content h1 span {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .emergency-call-btn {
        padding: 15px 30px;
        font-size: 1.1rem;
    }

    .hero-phone {
        font-size: 1.8rem;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .hero-stat {
        flex: 0 0 40%;
    }
}

/* Body padding for sticky bar */
body {
    padding-bottom: 80px;
}

@media (max-width: 768px) {
    body {
        padding-bottom: 70px;
    }
}

/* ==========================================
   7. BÖLGE KARTLARI (Projeler)
   ========================================== */
.bolge-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.bolge-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    margin-bottom: 30px;
}

.bolge-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.bolge-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.4s ease;
}

.bolge-card:hover img {
    transform: scale(1.05);
}

.bolge-card-body {
    padding: 20px;
    text-align: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
}

.bolge-card-body h4 {
    color: #fff;
    font-weight: 600;
    margin: 0;
}

.bolge-card-body h4 i {
    color: #ff6b35;
    margin-right: 8px;
}

/* ==========================================
   8. HEADER IMPROVEMENTS
   ========================================== */
#top-bar {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
    padding: 10px 0;
}

#top-bar .top-bar-info li {
    color: #fff;
}

#top-bar .top-bar-info li i {
    color: #ff6b35;
}

#top-bar .social-icons li a {
    color: rgba(255, 255, 255, 0.8);
}

#top-bar .social-icons li a:hover {
    color: #ff6b35;
}

/* Mevcut footer kolay erişim butonunu gizle */
div[style*="position: fixed"][style*="bottom: 20px"][style*="left: 18px"] {
    display: none !important;
}

/* ==========================================
   9. HERO BUTTONS CONTAINER
   ========================================== */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

/* WhatsApp Hero Button */
.whatsapp-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    padding: 20px 50px;
    border-radius: 60px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.whatsapp-hero-btn i {
    font-size: 2rem;
}

.whatsapp-hero-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 50px rgba(37, 211, 102, 0.6);
    color: #fff;
    text-decoration: none;
}

@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .whatsapp-hero-btn {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
}

/* ==========================================
   10. BLOG IMAGES FIX - Standart Boyut
   ========================================== */
.blog-grid-simple img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

#blog-grid-simple .blog-grid-simple {
    padding: 0 10px;
}

.blog-grid-simple h5 {
    margin-top: 15px;
    font-size: 16px;
    font-weight: 600;
    color: #222;
    min-height: 40px;
}

.blog-grid-simple p {
    font-size: 13px;
    color: #777;
    line-height: 1.6;
    min-height: 60px;
}

.blog-grid-simple .btn {
    margin-top: 10px;
}

/* ==========================================
   11. TOP BAR - Telefon Beyaz
   ========================================== */
#top-bar .top-bar-info li {
    color: #fff !important;
}

#top-bar .top-bar-info li i {
    color: #ff6b35 !important;
    margin-right: 5px;
}

#top-bar .top-bar-info {
    color: #fff !important;
}

#top-bar .top-bar-info li a {
    color: #fff !important;
}

.top-bar-info li {
    color: #fff !important;
}

/* ==========================================
   12. PREMIUM FOOTER
   ========================================== */
.premium-footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
    color: #fff;
    padding-top: 60px;
}

.footer-main {
    padding-bottom: 40px;
}

.footer-widget {
    margin-bottom: 20px;
}

.footer-logo img {
    max-width: 200px;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.footer-logo:hover img {
    opacity: 0.8;
}

.footer-about {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.8;
    margin-top: 15px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #ff6b35;
    transform: translateY(-3px);
}

.footer-title {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 15px;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links li a i {
    font-size: 10px;
    color: #ff6b35;
    transition: all 0.3s ease;
}

.footer-links li a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-links li a:hover i {
    color: #fff;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-contact .contact-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 10px;
    flex-shrink: 0;
}

.footer-contact .contact-icon i {
    color: #fff;
    font-size: 18px;
}

.footer-contact .contact-info span {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 3px;
}

.footer-contact .contact-info a,
.footer-contact .contact-info p {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    transition: all 0.3s ease;
}

.footer-contact .contact-info a:hover {
    color: #ff6b35;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom .copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    margin: 0;
}

.footer-bottom .footer-credits {
    color: #ff6b35;
    font-size: 13px;
    font-weight: 600;
    margin: 0;
}

@media (max-width: 768px) {
    .footer-bottom .text-md-right {
        text-align: center !important;
        margin-top: 10px;
    }

    .footer-bottom .copyright {
        text-align: center;
    }

    .premium-footer {
        padding-top: 40px;
    }
}

/* ==========================================
   13. ABOUT SECTION - Hakkımızda
   ========================================== */
.about-section {
    background: #fff;
    padding: 80px 0;
}

.about-image-wrapper {
    position: relative;
    display: inline-block;
}

.about-main-image {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, #ff6b35 0%, #f88d21 100%);
    color: #fff;
    padding: 20px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.about-badge .badge-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.about-badge .badge-text {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-subtitle {
    display: inline-block;
    color: #ff6b35;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.about-subtitle i {
    margin-right: 8px;
}

.about-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-text {
    color: #666;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.about-text h3,
.about-text h4,
.about-text h5 {
    color: #1a1a2e;
    font-size: 16px;
    font-weight: 600;
    margin: 15px 0 8px;
}

.about-text p {
    margin-bottom: 10px;
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f8f9fa;
    padding: 12px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.about-feature i {
    color: #ff6b35;
    font-size: 16px;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #ff6b35 0%, #f88d21 100%);
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.about-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
    color: #fff;
    text-decoration: none;
}

@media (max-width: 768px) {
    .about-image-wrapper {
        margin-bottom: 50px;
    }

    .about-badge {
        right: 10px;
        bottom: -15px;
        padding: 15px 20px;
    }

    .about-badge .badge-number {
        font-size: 2rem;
    }

    .about-title {
        font-size: 1.8rem;
    }

    .about-features {
        flex-direction: column;
    }
}

/* ==========================================
   14. FLOATING WHATSAPP BUTTON
   ========================================== */
.floating-whatsapp {
    position: fixed;
    bottom: 100px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 32px;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.5);
    z-index: 9998;
    transition: all 0.3s ease;
    animation: whatsapp-pulse 2s infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.7);
    color: #fff;
    text-decoration: none;
}

.floating-whatsapp .whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background: #1a1a2e;
    color: #fff;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.floating-whatsapp .whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 8px;
    border-style: solid;
    border-color: transparent transparent transparent #1a1a2e;
}

.floating-whatsapp:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 70px;
}

@keyframes whatsapp-pulse {

    0%,
    100% {
        box-shadow: 0 5px 25px rgba(37, 211, 102, 0.5);
    }

    50% {
        box-shadow: 0 5px 35px rgba(37, 211, 102, 0.8), 0 0 0 15px rgba(37, 211, 102, 0.1);
    }
}

@media (max-width: 768px) {
    .floating-whatsapp {
        bottom: 85px;
        right: 15px;
        width: 55px;
        height: 55px;
        font-size: 28px;
    }

    .floating-whatsapp .whatsapp-tooltip {
        display: none;
    }
}

/* ==========================================
   15. MOBILE PERFORMANCE OPTIMIZATIONS
   ========================================== */
/* Reduce animations for better mobile performance */
@media (max-width: 768px) {
    .hero-section::before {
        animation: none !important;
    }

    .emergency-call-btn,
    .sticky-contact-btn.call-btn {
        animation: none !important;
    }

    .hero-phone i {
        animation: none !important;
    }

    /* Reduce box-shadows on mobile */
    .bolge-card,
    .service-overlay,
    .testmonial-box,
    .about-main-image {
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
    }
}

/* Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* GPU acceleration for smooth animations */
.hero-section::before,
.floating-whatsapp,
.sticky-contact-bar {
    will-change: transform;
    transform: translateZ(0);
}