/* ============================================
   Bursa Mobil Yol Yardım Lastikçi - Modern Light Theme
   ============================================ */

/* Reset & Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #F5F7FA;
    --surface: #FFFFFF;
    --border: rgba(0, 0, 0, 0.08);
    --text: #1A202C;
    --muted: #718096;
    --accent: #3182CE;
    --accent-light: #4299E1;
    --cta: #E53E3E;
    --cta-hover: #C53030;
    
    --gradient-1: linear-gradient(135deg, #FF6B6B 0%, #FF8E8E 100%);
    --gradient-2: linear-gradient(135deg, #FFA726 0%, #FFB74D 100%);
    --gradient-3: linear-gradient(135deg, #42A5F5 0%, #64B5F6 100%);
    --gradient-4: linear-gradient(135deg, #AB47BC 0%, #BA68C8 100%);
    --gradient-5: linear-gradient(135deg, #66BB6A 0%, #81C784 100%);
    --gradient-6: linear-gradient(135deg, #EF5350 0%, #E57373 100%);
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--bg);
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Header */
.main-header {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
    color: var(--text);
    transition: all 0.3s ease;
}

.logo a:hover {
    opacity: 0.8;
}

.logo img {
    height: 50px;
    width: auto;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-nav a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--accent);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-toggle-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text);
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 8px;
    width: 40px;
    height: 40px;
}

.search-toggle-btn:hover {
    background: var(--bg);
    color: var(--accent);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 600px;
    height: 600px;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    pointer-events: none;
}

.hero-slider .slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
}

.hero-slider .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-slider .slide .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 60px 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--surface);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-title .accent {
    color: #FFD700;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--surface);
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--cta);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--cta-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 3;
    pointer-events: none;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.slider-dots .dot.active {
    background: white;
    width: 30px;
    border-radius: 6px;
    border-color: white;
}

.slider-dots .dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text);
    line-height: 1.2;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--muted);
    margin-top: 1rem;
    line-height: 1.8;
}

/* Services Section */
.services {
    background: var(--bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--surface);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.03) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border);
}

.service-icon-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-5deg);
    transition: all 0.4s ease;
}

.service-card:nth-child(1) .service-icon-bg {
    background: var(--gradient-1);
}

.service-card:nth-child(2) .service-icon-bg {
    background: var(--gradient-2);
}

.service-card:nth-child(3) .service-icon-bg {
    background: var(--gradient-3);
}

.service-card:nth-child(4) .service-icon-bg {
    background: var(--gradient-4);
}

.service-card:nth-child(5) .service-icon-bg {
    background: var(--gradient-5);
}

.service-card:nth-child(6) .service-icon-bg {
    background: var(--gradient-6);
}

.service-card:hover .service-icon-bg {
    transform: rotate(0deg) scale(1.1);
}

.service-icon-dots {
    position: absolute;
    width: 120%;
    height: 120%;
    border: 2px dashed rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    top: -10%;
    left: -10%;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.service-icon {
    position: relative;
    z-index: 2;
    font-size: 2.5rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text);
    font-weight: 600;
}

.service-card p {
    color: var(--muted);
    line-height: 1.8;
    font-size: 1rem;
}

/* About Section */
.about {
    background: var(--surface);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    aspect-ratio: 4/3;
    border: 1px solid var(--border);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text);
    font-weight: 700;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--muted);
    line-height: 1.8;
    font-size: 1.1rem;
}

.feature-list {
    list-style: none;
    margin: 2rem 0;
}

.feature-list li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: var(--text);
}

.feature-list i {
    color: var(--accent);
    font-size: 1.2rem;
}

.about-cta,
.contact-cta {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent);
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--bg);
    border-radius: 16px;
    border-left: 4px solid var(--accent);
    line-height: 1.8;
}

/* Service Areas */
.service-areas {
    background: var(--bg);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.area-item {
    background: var(--surface);
    padding: 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.area-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--accent);
    border-color: var(--accent);
}

.area-item i {
    color: var(--accent);
    font-size: 1.5rem;
}

.area-item span {
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--text);
}

/* Page Content */
.page-content {
    padding: 60px 0;
    background: var(--bg);
}

.breadcrumb {
    background: var(--surface);
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.breadcrumb-nav {
    display: flex;
    gap: 10px;
    align-items: center;
}

.breadcrumb-nav a {
    color: var(--accent);
    text-decoration: none;
}

.breadcrumb-nav span {
    color: var(--muted);
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-wrapper h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text);
    font-weight: 700;
}

.about-details h2,
.about-details h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text);
    font-weight: 600;
}

.about-details p {
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Contact Page */
.contact-hero {
    position: relative;
    height: 300px;
    overflow: hidden;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.contact-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.contact-hero .container {
    position: relative;
    z-index: 2;
}

.contact-hero h1 {
    color: var(--surface);
    font-size: 3rem;
    text-align: center;
    font-weight: 700;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    margin-top: 3rem;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: var(--surface);
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.contact-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--bg);
    border: 2px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    background: var(--accent);
    color: white;
    transform: scale(1.1);
}

.contact-details h3 {
    margin-bottom: 0.5rem;
    color: var(--text);
    font-weight: 600;
}

.contact-details p {
    color: var(--muted);
    margin: 0;
}

.contact-details a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--text);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--surface);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.contact-form-wrapper h2 {
    margin-bottom: 2rem;
    color: var(--text);
    font-weight: 600;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border);
    border-radius: 12px;
    font-family: inherit;
    font-size: 16px;
    transition: all 0.3s ease;
    background: var(--bg);
    color: var(--text);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.main-footer {
    background: var(--surface);
    color: var(--text);
    padding: 60px 0 20px;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--text);
    font-weight: 600;
}

.footer-section p,
.footer-section a {
    color: var(--muted);
    text-decoration: none;
    margin-bottom: 0.5rem;
    display: block;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section i {
    margin-right: 10px;
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    margin-bottom: 10px;
    color: var(--muted);
}

.footer-bottom a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

/* Quick Call & WhatsApp Buttons */
.quick-call-btn,
.whatsapp-btn {
    position: fixed;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 3px solid rgba(255, 255, 255, 0.3);
    animation: pulseButton 2s ease-in-out infinite;
}

.quick-call-btn {
    bottom: 30px;
    right: 30px;
    background: var(--cta);
    animation: pulseRed 2s ease-in-out infinite;
}

.quick-call-btn:hover {
    background: var(--cta-hover);
    transform: scale(1.15);
    animation: none;
    box-shadow: 0 0 30px rgba(229, 62, 62, 0.6);
}

.whatsapp-btn {
    bottom: 110px;
    right: 30px;
    background: #25d366;
    animation: pulseGreen 2s ease-in-out infinite;
}

.whatsapp-btn:hover {
    background: #128c7e;
    transform: scale(1.15);
    animation: none;
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulseRed {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(229, 62, 62, 0.7), var(--shadow-lg);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(229, 62, 62, 0), var(--shadow-lg);
        transform: scale(1.05);
    }
}

@keyframes pulseGreen {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7), var(--shadow-lg);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0), var(--shadow-lg);
        transform: scale(1.05);
    }
}

@keyframes pulseButton {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.9;
    }
}

.whatsapp-btn::after {
    content: 'WhatsApp';
    position: absolute;
    right: 85px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.whatsapp-btn:hover::after {
    opacity: 1;
    right: 90px;
}

.quick-call-btn::after {
    content: 'Hemen Ara';
    position: absolute;
    right: 85px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--cta) 0%, var(--cta-hover) 100%);
    color: white;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.quick-call-btn:hover::after {
    opacity: 1;
    right: 90px;
}

/* Search Modal */
.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.search-modal.active {
    display: flex;
    opacity: 1;
}

.search-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.search-modal-content {
    position: relative;
    background: var(--surface);
    border-radius: 20px;
    padding: 40px;
    max-width: 600px;
    width: 90%;
    z-index: 1;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.search-modal.active .search-modal-content {
    transform: scale(1);
}

.search-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--muted);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.search-modal-close:hover {
    background: var(--bg);
    color: var(--accent);
    transform: rotate(90deg);
}

.search-form-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--text);
    text-align: center;
    font-weight: 600;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.search-icon {
    position: absolute;
    left: 20px;
    color: var(--muted);
    font-size: 1.2rem;
    z-index: 1;
}

.search-form input[type="text"] {
    width: 100%;
    padding: 18px 60px 18px 55px;
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--bg);
    color: var(--text);
}

.search-form input[type="text"]:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(49, 130, 206, 0.1);
}

.search-submit-btn {
    position: absolute;
    right: 5px;
    background: var(--accent);
    border: none;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 600;
}

.search-submit-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-md);
}

.search-suggestions {
    margin-top: 30px;
}

.search-suggestions h3 {
    font-size: 1rem;
    color: var(--muted);
    margin-bottom: 15px;
    font-weight: 500;
}

.suggestion-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.suggestion-tag {
    padding: 10px 20px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 25px;
    font-size: 0.9rem;
    color: var(--text);
    cursor: pointer;
    transition: all 0.3s ease;
}

.suggestion-tag:hover {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
    transform: translateY(-2px);
}

/* Responsive Design - Mobile First Approach */

/* Tablet and below (768px) */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    /* Header */
    .main-header {
        padding: 0.75rem 0;
    }

    .logo a {
        font-size: 20px;
    }

    .logo img {
        height: 40px;
    }

    .main-nav {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        background: var(--surface);
        box-shadow: var(--shadow-lg);
        transition: left 0.3s ease;
        z-index: 999;
        border-top: 1px solid var(--border);
        max-height: calc(100vh - 60px);
        overflow-y: auto;
    }

    .main-nav.active {
        left: 0;
    }

    .main-nav ul {
        flex-direction: column;
        padding: 15px 20px;
        gap: 0;
    }

    .main-nav li {
        border-bottom: 1px solid var(--border);
    }

    .main-nav li:last-child {
        border-bottom: none;
    }

    .main-nav a {
        display: block;
        padding: 18px 0;
        font-size: 16px;
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .mobile-menu-toggle {
        display: flex;
        width: 44px;
        height: 44px;
        justify-content: center;
        align-items: center;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .search-toggle-btn {
        font-size: 1.3rem;
        width: 44px;
        height: 44px;
    }

    /* Hero Section */
    .hero {
        min-height: 100vh;
        height: 100vh;
        min-height: 100dvh;
    }
    
    .hero-slider {
        height: 100%;
    }
    
    .hero-slider .slide {
        height: 100%;
    }
    
    .hero-slider .slide img {
        object-fit: cover;
        object-position: center;
        width: 100%;
        height: 100%;
    }
    
    .hero-content {
        padding: 30px 0;
        max-width: 100%;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 2rem;
        line-height: 1.6;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn {
        width: 100%;
        padding: 16px 24px;
        font-size: 16px;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .slider-controls {
        padding: 0 15px;
    }
    
    .slider-btn {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
    
    .slider-dots {
        bottom: 20px;
    }

    /* Sections */
    section {
        padding: 50px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .section-header p {
        font-size: 1rem;
        margin-top: 0.75rem;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .service-icon-wrapper {
        width: 90px;
        height: 90px;
        margin-bottom: 20px;
    }

    .service-icon {
        font-size: 2rem;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }

    .service-card p {
        font-size: 0.95rem;
    }

    /* About */
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-image {
        max-width: 100%;
        margin-bottom: 20px;
        aspect-ratio: 16/9;
    }

    .about-text h2 {
        font-size: 1.75rem;
    }

    .about-text p {
        font-size: 1rem;
    }

    /* Service Areas */
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .area-item {
        padding: 15px;
        font-size: 0.95rem;
    }

    .area-item i {
        font-size: 1.2rem;
    }

    /* Contact */
    .contact-hero {
        height: 200px;
        margin-bottom: 30px;
    }
    
    .contact-hero h1 {
        font-size: 1.75rem;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-item {
        padding: 20px;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Buttons */
    .quick-call-btn,
    .whatsapp-btn {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }

    .quick-call-btn::after,
    .whatsapp-btn::after {
        display: none;
    }

    .whatsapp-btn {
        bottom: 90px;
    }

    /* Search Modal */
    .search-modal-content {
        padding: 30px 20px;
        max-width: 95%;
        margin: 20px;
    }
    
    .search-form-wrapper h2 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .search-form input[type="text"] {
        padding: 15px 50px 15px 45px;
        font-size: 16px;
    }
    
    .search-submit-btn {
        width: 44px;
        height: 44px;
    }

    /* Page Content */
    .content-wrapper h1 {
        font-size: 1.75rem;
    }

    .about-details h2,
    .about-details h3 {
        font-size: 1.5rem;
    }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .section-header p {
        font-size: 0.95rem;
    }

    .service-card {
        padding: 25px 15px;
    }

    .service-icon-wrapper {
        width: 80px;
        height: 80px;
    }

    .service-icon {
        font-size: 1.8rem;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    .areas-grid {
        grid-template-columns: 1fr;
    }

    .slider-controls {
        display: none;
    }
    
    .slider-dots {
        bottom: 15px;
    }
    
    .slider-dots .dot {
        width: 10px;
        height: 10px;
    }
    
    .slider-dots .dot.active {
        width: 25px;
    }

    .contact-hero {
        height: 180px;
    }
    
    .contact-hero h1 {
        font-size: 1.5rem;
    }

    .quick-call-btn,
    .whatsapp-btn {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }

    .whatsapp-btn {
        bottom: 85px;
    }
}

/* Extra Small Mobile (360px and below) */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.3rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .section-header h2 {
        font-size: 1.3rem;
    }

    .service-card {
        padding: 20px 12px;
    }

    .btn {
        padding: 14px 20px;
        font-size: 15px;
    }
}

/* Landscape Mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        height: auto;
        padding: 40px 0;
    }

    .hero-content {
        padding: 20px 0;
    }

    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .hero-description {
        margin-bottom: 1.5rem;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .btn,
    .service-card,
    .area-item,
    .contact-item {
        -webkit-tap-highlight-color: rgba(49, 130, 206, 0.2);
        tap-highlight-color: rgba(49, 130, 206, 0.2);
    }

    .quick-call-btn,
    .whatsapp-btn {
        -webkit-tap-highlight-color: transparent;
        tap-highlight-color: transparent;
    }
}
