/* SIFIR1 OTO LASTİK VE YOL YARDIM - Combined Mobile-First Design */

/* Design System */
:root {
    --primary-blue: #1e3a8a;
    --secondary-blue: #3b82f6;
    --dark-blue: #1e40af;
    --steel-gray: #64748b;
    --light-gray: #f1f5f9;
    --white: #ffffff;
    --danger-red: #dc2626;
    --success-green: #16a34a;
    --warning-orange: #ea580c;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --border-radius: 8px;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: #1f2937;
    background-color: var(--white);
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

h1 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
}

h2 {
    font-size: clamp(1.25rem, 3vw, 2rem);
}

h3 {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
}

h4 {
    font-size: clamp(1rem, 2vw, 1.25rem);
}

h5 {
    font-size: clamp(0.875rem, 1.8vw, 1.125rem);
}

h6 {
    font-size: clamp(0.75rem, 1.5vw, 1rem);
}

p {
    margin-bottom: 1rem;
    line-height: 1.7;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Mobile-First Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    overflow: hidden;
}

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}

/* Emergency Banner - Mobile Only */
.emergency-banner {
    background: linear-gradient(135deg, var(--danger-red) 0%, #b91c1c 100%);
    color: var(--white);
    text-align: center;
    padding: 0.75rem 1rem;
    font-weight: 600;
    font-size: 0.805rem;
    display: none;
    position: relative;
    z-index: 9997;
    box-shadow: var(--shadow-md);
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
}

.emergency-banner a {
    color: var(--white);
    text-decoration: underline;
    font-weight: 700;
    white-space: nowrap;
    padding-left: 10px;
}

/* Header & Navigation */
.header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
}

.top-bar {
    background: var(--primary-blue);
    color: var(--white);
    padding: 0.5rem 0;
    font-size: 0.875rem;
    width: 100%;
    overflow: hidden;
}

.top-bar .contact-info a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
}

.top-bar .btn-success {
    background: var(--success-green);
    border: none;
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
    border-radius: var(--border-radius);
    transition: all 0.2s ease;
}

.top-bar .btn-success:hover {
    background: #15803d;
    transform: translateY(-1px);
}

/* Main Navigation */
.navbar {
    /* padding: 1rem 0; */
    background: var(--white);
    width: 100%;
    overflow: hidden;
    border-bottom: 1px solid #e5e7eb;
}

.navbar-brand {
    text-decoration: none !important;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    max-width: 100%;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.navbar-brand:hover {
    transform: translateY(-1px);
}

/* Desktop logo centering */
@media (min-width: 768px) {
    .navbar-brand {
        justify-content: center;
        gap: 0;
    }

    .navbar-brand .me-3 {
        margin-right: 0 !important;
    }
}

.logo-img {
    height: 80px;
    width: auto;
    border-radius: var(--border-radius);
    max-width: 100%;
    transition: all 0.3s ease;
}

.navbar-brand:hover .logo-img {
    transform: scale(1.05);
}

.brand-text {
    line-height: 1.2;
    max-width: 100%;
    overflow: hidden;
}

.brand-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.125rem;
    line-height: 1.1;
}

.brand-tagline {
    font-size: 0.75rem;
    color: var(--steel-gray);
    font-weight: 400;
    line-height: 1.2;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-collapse {
    justify-content: flex-end;
    align-items: center;
    /* margin-top: 1rem; */
    max-width: 100%;
    overflow: hidden;
    border-radius: var(--border-radius);
    background: var(--white);
}

/* Enhanced Navigation Menu */
.navbar-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
}

.navbar-nav .nav-item {
    position: relative;
    margin: 0 0.25rem;
}

.navbar-nav .nav-link {
    font-weight: 600;
    padding: 0.875rem 1.25rem;
    color: var(--primary-blue);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    word-wrap: break-word;
    overflow-wrap: break-word;
    position: relative;
    font-size: 0.95rem;
    letter-spacing: 0.025em;
    border: 2px solid transparent;
    background: transparent;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    overflow: hidden;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: left 0.5s ease;
}

.navbar-nav .nav-link:hover::before {
    left: 100%;
}

.navbar-nav .nav-link:hover {
    background: linear-gradient(135deg, var(--light-gray) 0%, #e2e8f0 100%);
    color: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    /* border-color: var(--secondary-blue); */
}

.navbar-nav .nav-link:active {
    transform: translateY(0);
    box-shadow: var(--shadow-sm);
}

.navbar-nav .nav-link.active {
    background: var(--primary-blue);
    color: var(--white);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-blue);
}

.navbar-nav .nav-link.active:hover {
    background: var(--dark-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 15px -3px rgba(30, 58, 138, 0.3);
}

/* Navigation Icons */
.navbar-nav .nav-link i {
    transition: transform 0.3s ease;
}

.navbar-nav .nav-link:hover i {
    transform: scale(1.1);
}

.navbar-nav .nav-link.active i {
    transform: scale(1.1);
}

/* Hide service areas dropdown on desktop */
@media (min-width: 768px) {
    .nav-item.dropdown {
        display: none !important;
    }
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.9) 0%, rgba(30, 64, 175, 0.9) 100%), url('../../images/505135813_17848628145489010_9162162104803695416_n..jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.2) 0%, rgba(59, 130, 246, 0.6) 100%);
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem;
}

.page-header .lead {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    opacity: 0.95;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    color: white !important;
}

.page-header .breadcrumb-item.active {
    color: white !important;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: white !important;
}

/* Mobile optimizations for page header */
@media (max-width: 767px) {
    .page-header {
        min-height: 250px;
        background-attachment: scroll;
    }
    
    .page-header h1 {
        font-size: 2rem !important;
    }
    
    .page-header .lead {
        font-size: 1rem;
    }
}

/* Dropdown Menu Enhancements */
.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: var(--border-radius);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    min-width: 200px;
    background: var(--white);
    border: 1px solid #e5e7eb;
    animation: dropdownFadeIn 0.3s ease;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    border: none;
    background: transparent;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
    text-align: left;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, var(--light-gray) 0%, #e2e8f0 100%);
    color: var(--dark-blue);
    transform: translateX(5px);
}

.dropdown-item:active {
    background: var(--primary-blue);
    color: var(--white);
}

.dropdown-item.active {
    background: var(--primary-blue);
    color: var(--white);
    font-weight: 600;
}

.dropdown-item.active:hover {
    background: var(--dark-blue);
    color: var(--white);
    transform: translateX(5px);
}

/* Dropdown Toggle Icon */
.dropdown-toggle::after {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.dropdown.show .dropdown-toggle::after {
    transform: rotate(180deg);
}

/* Call Button Enhancement */
.navbar .btn-danger {
    background: linear-gradient(135deg, var(--danger-red) 0%, #b91c1c 100%);
    border: none;
    padding: 0.875rem 1.5rem;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 140px;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.navbar .btn-danger::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.navbar .btn-danger:hover {
    background: linear-gradient(135deg, #b91c1c 0%, var(--danger-red) 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px -5px rgba(220, 38, 38, 0.4);
    color: var(--white);
}

.navbar .btn-danger:hover::before {
    left: 100%;
}

.navbar .btn-danger:active {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* Sticky Call Button */
.sticky-call-button {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    display: none;
    background: var(--danger-red);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: var(--shadow-lg);
    text-decoration: none;
    animation: pulse 2s infinite;
    min-width: 200px;
    max-width: calc(100vw - 2rem);
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
}

.sticky-call-button:hover {
    background: #b91c1c;
    color: var(--white);
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

/* Sticky WhatsApp Button */
.sticky-whatsapp {
    display:none;
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 9998;
    display: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--success-green);
    color: var(--white);
    text-align: center;
    font-size: 1.5rem;
    line-height: 60px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    text-decoration: none;
}

.sticky-whatsapp:hover {
    transform: scale(1.1);
    color: var(--white);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

/* Hero Section - Fixed for responsive display */
.hero-slider {
    position: relative;
    min-height: 100vh;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-slide {
    min-height: 100vh;
    width: 100%;
    max-width: 100vw;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Carousel specific fixes */
.carousel-item {
    min-height: 100vh;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
}

.carousel-item .hero-slide {
    min-height: 100vh;
    width: 100%;
    height: 100vh;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Ensure carousel maintains full size */
.carousel {
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
}

.carousel-inner {
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
}

/* Fix for carousel controls positioning */
.carousel-control-prev,
.carousel-control-next {
    width: 10%;
    max-width: 60px;
    z-index: 10;
}

.carousel-indicators {
    bottom: 20px;
    z-index: 10;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 4px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.8) 0%, rgba(30, 64, 175, 0.9) 100%);
    z-index: 1;
    width: 100%;
    height: 100%;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    text-align: center;
    padding: 2rem 1rem;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.hero-content h1 {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-content h2 {
    font-size: clamp(1rem, 3vw, 1.25rem);
    font-weight: 600;
    margin-bottom: 2rem;
    opacity: 0.9;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-content .lead {
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    margin-bottom: 2rem;
    opacity: 0.95;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* CTA Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 700;
    text-align: center;
    border-radius: var(--border-radius);
    margin: 0.5rem;
    white-space: nowrap;
    transition: all 0.3s ease;
    min-width: 200px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cta-button i {
    margin-right: 0.5rem;
    font-size: 1.25rem;
}

.cta-call {
    background: var(--danger-red);
    color: var(--white);
}

.cta-call:hover {
    background: #b91c1c;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

.cta-whatsapp {
    background: var(--success-green);
    color: var(--white);
}

.cta-whatsapp:hover {
    background: #15803d;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

/* Emergency Contact Section */
.emergency-contact {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 50%, #991b1b 100%);
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    position: relative;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3), 0 0 50px rgba(220, 38, 38, 0.1);
    /* animation: emergencyPulse 3s ease-in-out infinite; */
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.emergency-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(255, 255, 255, 0.1) 100%);
    border-radius: 15px;
    animation: emergencyShimmer 2s linear infinite;
}

.emergency-contact::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff6b6b, #ee5a52, #ff6b6b);
    border-radius: 17px;
    z-index: -1;
    animation: emergencyBorderGlow 2s ease-in-out infinite alternate;
    opacity: 0.7;
}

.emergency-contact h5 {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: emergencyTextGlow 2s ease-in-out infinite alternate;
    position: relative;
    z-index: 2;
}

.emergency-contact h5 i {
    animation: emergencyIconBounce 1.5s ease-in-out infinite;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.8));
}

.emergency-contact h4 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    margin-bottom: 2rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.emergency-contact p {
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    animation: emergencyTextFade 1.5s ease-out;
}

.emergency-contact a {
    color: #000;
    text-decoration: none;
    font-weight: 700;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.emergency-contact .btn {
    position: relative;
    overflow: hidden;
    transform: translateY(0);
    transition: all 0.3s ease;
    font-weight: 600;
    border: 2px solid transparent;
}

.emergency-contact .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.emergency-contact .btn-light:hover {
    background: #f8f9fa;
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.emergency-contact .btn-success:hover {
    background: #198754;
    border-color: rgba(37, 211, 102, 0.3);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.emergency-contact .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.emergency-contact .btn:hover::before {
    left: 100%;
}

/* Emergency Contact Animations */
@keyframes emergencyPulse {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3), 0 0 50px rgba(220, 38, 38, 0.1);
    }
    50% {
        box-shadow: 0 15px 40px rgba(220, 38, 38, 0.4), 0 0 70px rgba(220, 38, 38, 0.2);
    }
}

@keyframes emergencyShimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes emergencyBorderGlow {
    from {
        opacity: 0.5;
        filter: blur(2px);
    }
    to {
        opacity: 0.8;
        filter: blur(4px);
    }
}

@keyframes emergencyTextGlow {
    from {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3), 0 0 10px rgba(255, 255, 255, 0.3);
    }
    to {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 255, 255, 0.6);
    }
}

@keyframes emergencyIconBounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-5px) scale(1.1);
    }
}

@keyframes emergencyTextFade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Emergency Contact Section - New Design */
.emergency-contact-section {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 50%, #991b1b 100%);
    position: relative;
    overflow: hidden;
}

.emergency-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.05) 0%, transparent 50%, rgba(255, 255, 255, 0.05) 100%);
    background-size: 200% 200%;
    animation: emergencyBgMove 4s ease-in-out infinite;
    z-index: 1;
}

.emergency-content {
    position: relative;
    z-index: 2;
}

.emergency-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.emergency-icon {
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    animation: emergencyIconPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

.emergency-text {
    background: linear-gradient(45deg, #ffffff, #fef3c7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.emergency-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    font-weight: 500;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    opacity: 0.95;
}

.emergency-features .badge {
    font-size: 0.875rem;
    padding: 0.5rem 0.75rem;
    border-radius: 20px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.emergency-buttons {
    position: relative;
    z-index: 2;
}

.emergency-btn {
    font-weight: 700;
    border-radius: 12px;
    padding: 0.875rem 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid transparent;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
}

.emergency-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.emergency-btn:hover::before {
    left: 100%;
}

.emergency-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.emergency-btn-phone:hover {
    background: #f8f9fa !important;
    border-color: rgba(255, 255, 255, 0.3);
    color: #dc2626 !important;
}

.emergency-btn-whatsapp:hover {
    background: #16a34a !important;
    border-color: rgba(34, 197, 94, 0.3);
}

@keyframes emergencyBgMove {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes emergencyIconPulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
    }
    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.8));
    }
}

/* Mobile optimizations for emergency contact */
@media (max-width: 767px) {
    .emergency-contact {
        padding: 2rem 0;
        /* margin: 1rem; */
    }
    
    .emergency-contact::after {
        animation: none;
    }
    
    .emergency-contact h5 i {
        animation-duration: 2s;
    }
    
    .emergency-contact-section {
        padding: 3rem 0 !important;
    }
    
    .emergency-title {
        justify-content: center;
        text-align: center;
    }
    
    .emergency-subtitle {
        text-align: center;
    }
    
    .emergency-buttons {
        flex-direction: column !important;
    }
    
    .emergency-btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .emergency-features {
        text-align: center;
        margin-top: 1rem !important;
    }
}

@media (max-width: 575px) {
    .emergency-contact-section {
        padding: 2.5rem 0 !important;
    }
    
    .emergency-btn {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .emergency-features .badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.5rem;
        margin-bottom: 0.25rem;
    }
}

/* Trust Section */
.trust-section {
    background: var(--light-gray);
    padding: 2rem 0;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
}

.trust-item {
    text-align: center;
    padding: 1.5rem 0.75rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
    width: 100%;
    max-width: 100%;
    margin-bottom: 0.5rem;
}

.trust-item h6 {
    font-size: 0.9rem;
    line-height: 1.3;
    margin-bottom: 0.25rem;
}

.trust-item small {
    font-size: 0.75rem;
    line-height: 1.2;
}

.trust-icon {
    margin-bottom: 0.75rem;
}

.trust-icon i {
    font-size: 1.5rem !important;
}

/* Mobile optimizations for trust section */
@media (max-width: 767px) {
    .trust-section {
        display: none;
    }
}

/* Why Choose Us Section Mobile Optimization */
@media (max-width: 767px) {
    .why-us-section .trust-item {
        padding: 1rem 0.5rem;
        margin-bottom: 1rem;
    }
    
    .why-us-section .trust-item h5 {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .why-us-section .trust-item p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .why-us-section .trust-icon {
        margin-bottom: 0.5rem;
    }
    
    .why-us-section .trust-icon i {
        font-size: 2rem !important;
    }
    
    .why-us-section .row {
        margin: 0 -0.25rem;
    }
    
    .why-us-section [class*="col-"] {
        padding: 0 0.25rem;
    }
}

.trust-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.trust-icon {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.trust-item h6 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.trust-item small {
    color: var(--steel-gray);
    font-size: 0.875rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Service Items */
.service-item {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    width: 100%;
    max-width: 100%;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-image {
    height: 200px;
    overflow: hidden;
    width: 100%;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.service-item:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 1.5rem;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.service-content h5 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.service-content p {
    color: var(--steel-gray);
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Testimonials */
.testimonials {
    background: var(--white);
    padding: 3rem 0;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
}

.testimonial-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.testimonial-rating {
    color: #fbbf24;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.testimonial-author strong {
    color: var(--primary-blue);
    font-weight: 700;
}

/* Footer */
.footer {
    background: #1f2937;
    color: var(--white);
    padding: 3rem 0 1rem;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
}

.footer h5 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.footer p,
.footer a {
    color: #d1d5db;
    text-decoration: none;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.footer a:hover {
    color: var(--white);
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--primary-blue);
    color: var(--white);
    text-align: center;
    line-height: 39px;
    border-radius: 50%;
    margin-right: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
    color: var(--white);
}

/* Pulse Animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(220, 38, 38, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0);
    }
}

/* Mobile Responsive Styles */
@media (max-width: 767px) {
    .hero-content h1 {
        font-size: clamp(1.5rem, 6vw, 2rem) !important;
        font-weight: 800;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .hero-content h2 {
        font-size: clamp(1rem, 4vw, 1.125rem) !important;
        font-weight: 600;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .hero-content .lead {
        font-size: 1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .cta-button {
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
        font-weight: 700;
        width: 100%;
        margin: 0.5rem 0;
        min-width: auto;
        max-width: 100%;
    }

    .emergency-banner {
        display: block;
    }

    .sticky-call-button {
        display: block;
    }

    .sticky-whatsapp {
        /* display: block; */
    }

    .top-bar {
        display: none;
    }

    .navbar {
        padding: 0.75rem 0;
    }

    .logo-img {
        height: 55px;
    }

    .brand-text {
        display: block !important;
        max-width: 100%;
        overflow: hidden;
    }

    .brand-name {
        font-size: clamp(0.75rem, 4vw, 15px) !important;
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 2px !important;
        color: #1e3a8a;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .brand-tagline {
        font-size: clamp(0.625rem, 2.5vw, 12px) !important;
        line-height: 1.1;
        color: #64748b;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .navbar-brand {
        margin-right: auto;
        flex-direction: row;
        align-items: center;
        gap: 0px;
        max-width: 100%;
        overflow: hidden;
        padding: 0;
    }

    .navbar-collapse {
        justify-content: flex-start;
        align-items: flex-start;
        text-align: left;
        margin-top: 0.75rem;
        padding: 1rem;
        border-radius: 8px;
        background: var(--white);
        box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    }

    .navbar-nav {
        gap: 0.25rem;
        margin: 0;
        padding: 0;
        text-align: left;
        align-items: flex-start;
        justify-content: flex-start;
        width: 100%;
    }

    .navbar-nav .nav-item {
        margin: 0.125rem 0;
        width: 100%;
    }

    .navbar-nav .nav-link {
        padding: 1rem 1.25rem;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 8px;
        margin: 0.125rem 0;
        width: 100%;
        text-align: left;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        background: transparent;
        border: 2px solid transparent;
        transition: all 0.3s ease;
    }

    .navbar-nav .nav-link:hover {
        background: linear-gradient(135deg, var(--light-gray) 0%, #e2e8f0 100%);
        transform: translateX(5px);
        border-color: var(--secondary-blue);
    }

    .navbar-nav .nav-link:active {
        transform: translateX(2px);
        background: var(--primary-blue);
        color: var(--white);
    }

    .navbar .btn-danger {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        font-weight: 700;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        background: linear-gradient(135deg, var(--danger-red) 0%, #b91c1c 100%);
        border: none;
        box-shadow: 0 4px 6px -1px rgba(220, 38, 38, 0.3);
        transition: all 0.3s ease;
    }

    .navbar .btn-danger:hover {
        background: linear-gradient(135deg, #b91c1c 0%, var(--danger-red) 100%);
        transform: translateY(-2px);
        box-shadow: 0 8px 15px -3px rgba(220, 38, 38, 0.4);
    }

    .navbar .btn-danger:active {
        transform: translateY(0);
        box-shadow: 0 4px 6px -1px rgba(220, 38, 38, 0.3);
    }

    .dropdown-menu {
        border: none;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        padding: 0.5rem 0;
        margin-top: 0.25rem;
        background: var(--white);
        border: 1px solid #e5e7eb;
        text-align: left;
    }

    .dropdown-item {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
        font-weight: 500;
        border: none;
        background: transparent;
        transition: all 0.2s ease;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 0.5rem;
        text-align: left;
    }

    .dropdown-item:hover {
        background: linear-gradient(135deg, var(--light-gray) 0%, #e2e8f0 100%);
        transform: translateX(8px);
    }

    .dropdown-item:active {
        background: var(--primary-blue);
        color: var(--white);
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 10%;
        max-width: 50px;
    }

    .carousel-indicators {
        bottom: 10px;
    }

    .carousel-indicators button {
        width: 8px;
        height: 8px;
        border-radius: 50%;
    }

    .hero-slider {
        width: 100%;
        max-width: 100vw;
        overflow: hidden;
    }

    .hero-slide {
        width: 100%;
        max-width: 100vw;
        overflow: hidden;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        padding: 1rem;
    }

    .carousel {
        width: 100%;
        max-width: 100vw;
        overflow: hidden;
    }

    .carousel-inner {
        width: 100%;
        max-width: 100vw;
        overflow: hidden;
    }

    .carousel-item {
        width: 100%;
        max-width: 100vw;
        overflow: hidden;
        min-height: 100vh;
    }

    .carousel-item .hero-slide {
        width: 100%;
        height: 100vh;
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
        overflow: hidden;
    }

    .service-item {
        margin-bottom: 1.5rem;
        width: 100%;
        max-width: 100%;
    }

    .service-image {
        height: 180px !important;
        width: 100%;
    }

    .testimonial-card {
        margin-bottom: 1.5rem;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .trust-section .col-lg-3 {
        margin-bottom: 1rem;
    }

    .trust-item {
        padding: 1rem;
        background: white;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .trust-badges .col-6 {
        margin-bottom: 1rem;
    }

    .trust-badge {
        padding: 1rem !important;
    }
}

/* Desktop Responsive Styles */
@media (min-width: 768px) {
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 100%;
        max-width: 800px;
        min-height: 100vh;
        margin: 0 auto;
        padding: 0 2rem;
        left: 50%;
        transform: translateX(-50%);
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
    }

    .hero-slider,
    .carousel-item,
    .carousel-item .hero-slide {
        position: relative;
    }
}

@media (min-width: 992px) {
    .navbar-nav {
        gap: 0.75rem;
    }

    .navbar-nav .nav-link {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .navbar .btn-danger {
        padding: 1rem 2rem;
        font-size: 1rem;
        min-width: 160px;
    }

    .logo-img {
        height: 90px;
    }
}

@media (min-width: 1200px) {
    .navbar-nav {
        gap: 1rem;
    }

    .navbar-nav .nav-link {
        padding: 1.125rem 1.75rem;
        font-size: 1.05rem;
    }

    .navbar .btn-danger {
        padding: 1.125rem 2.25rem;
        font-size: 1.05rem;
        min-width: 180px;
    }

    .logo-img {
        height: 100px;
    }
}

/* Utility Classes */
.text-primary-blue {
    color: var(--primary-blue) !important;
}

.text-secondary-blue {
    color: var(--secondary-blue) !important;
}

.text-steel-gray {
    color: var(--steel-gray) !important;
}

.text-danger-red {
    color: var(--danger-red) !important;
}

.text-success-green {
    color: var(--success-green) !important;
}

.bg-primary-blue {
    background-color: var(--primary-blue) !important;
}

.bg-secondary-blue {
    background-color: var(--secondary-blue) !important;
}

.bg-light-gray {
    background-color: var(--light-gray) !important;
}

.bg-danger-red {
    background-color: var(--danger-red) !important;
}

.bg-success-green {
    background-color: var(--success-green) !important;
}

.shadow-sm {
    box-shadow: var(--shadow-sm) !important;
}

.shadow-md {
    box-shadow: var(--shadow-md) !important;
}

.shadow-lg {
    box-shadow: var(--shadow-lg) !important;
}

.rounded {
    border-radius: var(--border-radius) !important;
}

/* Additional Mobile Optimizations */
@media (max-width: 767.98px) {
    .cta-banner {
        text-align: center;
        padding: 2rem 1.5rem !important;
        width: 100%;
        max-width: 100vw;
        overflow: hidden;
    }

    .cta-banner .btn {
        width: 100%;
        margin-bottom: 10px;
        max-width: 100%;
    }

    .service-item {
        margin-bottom: 1.5rem;
        width: 100%;
        max-width: 100%;
    }

    .section-title {
        font-size: clamp(1.5rem, 4vw, 1.75rem);
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .section-subtitle {
        font-size: clamp(1rem, 2.5vw, 1.1rem);
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}

/* Animation for buttons */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(30, 58, 138, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(30, 58, 138, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(30, 58, 138, 0);
    }
}

.btn-pulse {
    animation: pulse 2s infinite;
}

/* WhatsApp button animation */
@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(22, 163, 74, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(22, 163, 74, 0);
    }
}

.btn-whatsapp {
    animation: whatsappPulse 2s infinite;
}

/* Location sharing button */
.location-share-btn {
    background: #3b82f6;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.location-share-btn:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

/* Trust elements */
.trust-badge {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.trust-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.google-reviews {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.star-rating {
    color: #fbbf24;
    font-size: 18px;
}

/* Service coverage map */
.coverage-map {
    background: white;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin: 1rem 0;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.coverage-areas {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 1rem;
}

.coverage-area {
    background: #1e3a8a;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    transform: rotate(30deg);
    pointer-events: none;
}

/* Purple button variant */
.btn-purple {
    color: #fff;
    background-color: #6f42c1;
    border-color: #6f42c1;
}

.btn-outline-purple {
    color: #6f42c1;
    border-color: #6f42c1;
}

.btn-outline-purple:hover {
    color: #fff;
    background-color: #6f42c1;
    border-color: #6f42c1;
}

/* Ensure buttons are tappable on mobile */
a,
button,
.btn,
.nav-link,
.dropdown-item {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
}

/* Improve form controls on mobile */
input,
select,
textarea,
button {
    font-size: 16px !important;
}

/* Service Cards */
.service-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e2e8f0;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.service-icon .icon-wrapper {
    transition: all 0.3s ease;
}

.service-item:hover .service-icon .icon-wrapper {
    transform: scale(1.1);
}

/* Modern Service Details Section */
.service-details-section {
    /* background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%); */
    padding: 3rem 2rem;
    border-radius: 20px;
    /* margin: 2rem 0; */
    position: relative;
    overflow: hidden;
}

.service-details-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue), var(--success-green));
}

.section-header {
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    position: relative;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--steel-gray);
    margin-bottom: 2rem;
}

.title-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 2px;
}

/* Modern Service Cards */
.modern-service-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(59, 130, 246, 0.1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.modern-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-blue), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.modern-service-card:hover::before {
    transform: translateX(100%);
}

.modern-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(30, 58, 138, 0.15);
    border-color: var(--primary-blue);
}

.service-icon-wrapper {
    position: relative;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.modern-service-card:hover .service-icon::before {
    transform: translateX(100%);
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
}

.bg-gradient-success {
    background: linear-gradient(135deg, var(--success-green), #22c55e);
}

.bg-gradient-info {
    background: linear-gradient(135deg, #0ea5e9, #06b6d4);
}

.bg-gradient-warning {
    background: linear-gradient(135deg, var(--warning-orange), #f59e0b);
}

.service-badge {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(251, 191, 36, 0.3);
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-description {
    color: var(--steel-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-features {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.feature-tag {
    background: rgba(30, 58, 138, 0.1);
    color: var(--primary-blue);
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
}

/* Trust Indicators */
.trust-indicators {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.trust-item {
    padding: 1.5rem 1rem;
    transition: all 0.3s ease;
    border-radius: 12px;
}

.trust-item:hover {
    background: rgba(30, 58, 138, 0.05);
    transform: translateY(-4px);
}

.trust-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trust-label {
    font-size: 0.9rem;
    color: var(--steel-gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .service-details-section {
        padding: 2rem 1rem;
        margin: 1rem 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .modern-service-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .trust-number {
        font-size: 2rem;
    }
    
    .trust-indicators {
        padding: 1.5rem 1rem;
    }
    
    .feature-tag {
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
    }
}

/* Akü Takviye Sayfası Özel Stilleri */
.service-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

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

.service-icon {
    margin-bottom: 1rem;
}

.process-step {
    padding: 2rem 1rem;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.location-card {
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.location-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.hero-icon {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Location Share Button Enhancement */
.location-share-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.location-share-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

/* Mobile Responsive Enhancements for Akü Page */
@media (max-width: 768px) {
    .service-card {
        padding: 1.5rem 1rem;
        margin-bottom: 1rem;
    }

    .process-step {
        padding: 1.5rem 0.5rem;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    .hero-icon i {
        font-size: 3rem !important;
    }

    .display-4 {
        font-size: 2rem !important;
    }

    .display-5 {
        font-size: 1.75rem !important;
    }

    .display-6 {
        font-size: 1.5rem !important;
    }
}