* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #10b981;
    --primary-dark: #059669;
    --primary-light: #34d399;
    --secondary-color: #10b981;
    --dark-color: #1e293b;
    --light-color: #f0fdf4;
    --text-color: #334155;
    --white: #ffffff;
    --green-50: #f0fdf4;
    --green-100: #dcfce7;
    --green-500: #10b981;
    --green-600: #059669;
    --green-700: #047857;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: bold;
    color: var(--primary-color);
}

.logo a,
.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: inherit;
    text-decoration: none !important;
    border: none;
    outline: none;
}

.logo a:hover,
.logo-link:hover {
    text-decoration: none !important;
}

.logo i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.logo-text {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--primary-color);
    text-transform: uppercase;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s;
}

.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);
}

.nav {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
    padding: 0.5rem 0;
    min-height: 44px;
    display: flex;
    align-items: center;
}

.nav a:hover {
    color: var(--primary-color);
}

/* Nav Dropdown */
.nav-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
    height: auto;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    user-select: none;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
    padding: 0.5rem 0;
    min-height: 44px;
    white-space: nowrap;
}

.nav-dropdown-toggle:hover {
    color: var(--primary-color);
}

.nav-dropdown-toggle i {
    font-size: 0.7rem;
    transition: transform 0.3s;
    margin-left: 0.25rem;
}

.nav-dropdown.active .nav-dropdown-toggle i {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0.5rem;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    min-width: 220px;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, max-height 0.3s ease;
    z-index: 1001;
    pointer-events: none;
    max-height: 0;
    overflow: hidden;
    border: none;
}

.nav-dropdown.active .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
    max-height: 500px;
    padding: 0.5rem 0;
}

.nav-dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-color);
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
    border-bottom: none;
    min-height: auto;
}

.nav-dropdown-menu a:hover {
    background: var(--light-color);
    color: var(--primary-color);
}

.nav-dropdown-menu a:last-child {
    border-bottom: none;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
    display: inline-block;
    animation: pulse-button 2s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    animation: none;
}

@keyframes pulse-button {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(16, 185, 129, 0.6);
    }
}

/* Status Bar */
.status-bar {
    background: #10b981;
    color: var(--white);
    padding: 0.75rem 0;
}

.status-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.status-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.status-indicator {
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.master-name {
    font-weight: 600;
}

.status-call-btn {
    background: #dc2626;
    color: var(--white);
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
    animation: pulse-button-red 2s ease-in-out infinite;
    box-shadow: 0 2px 10px rgba(220, 38, 38, 0.4);
    border: none;
    cursor: pointer;
}

.status-call-btn:hover {
    background: #b91c1c;
    animation: none;
}

@keyframes pulse-button-red {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 2px 10px rgba(220, 38, 38, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 4px 15px rgba(220, 38, 38, 0.6);
    }
}

@keyframes pulse-button-white {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 4px 15px rgba(255, 255, 255, 0.5);
    }
}

/* Hero Section */
.hero {
    background: var(--white);
    padding: 2rem 0 3rem;
}

.hero-top {
    text-align: center;
    margin-bottom: 2rem;
}

.hero-top h1 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.hero-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.hero-rating .google-icon {
    width: 42px;
    height: 42px;
    object-fit: contain;
    margin-right: 0.25rem;
}

.hero-rating .stars {
    color: #fbbf24;
    font-size: 1.2rem;
}

.rating-score {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-color);
}

.hero-status {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.status-badge.open {
    background: var(--primary-color);
    color: var(--white);
    animation: blink-green 1.5s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

@keyframes blink-green {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
    }
    50% {
        opacity: 0.7;
        box-shadow: 0 0 20px rgba(16, 185, 129, 0.8);
    }
}

.status-badge.distance {
    background: #fbbf24;
    color: #78350f;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(251, 191, 36, 0.4);
}

.status-badge i {
    font-size: 0.8rem;
}

.service-info {
    color: var(--text-color);
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

.hero-features-bar {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color);
    font-size: 0.9rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: #10b981;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.feature-item i {
    width: 50px;
    height: 50px;
    background: #10b981;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.hero-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

/* Brands Slider */
.brands-slider {
    width: 100%;
    overflow: hidden;
    background: var(--white);
    padding: 1.5rem 0;
    border-radius: 12px;
    box-shadow: none;
    margin-top: 2rem;
}

.brands-track {
    display: flex;
    gap: 2rem;
    animation: scroll-brands 40s linear infinite;
    width: fit-content;
}

.brands-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-brands {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.brand-item {
    flex-shrink: 0;
    padding: 0.75rem 1.5rem;
    background: var(--light-color);
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-color);
    white-space: nowrap;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
}

.brand-item:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.hero-image {
    background: var(--light-color);
    border-radius: 12px;
    overflow: hidden;
    min-height: 400px;
    position: relative;
}

.hero-img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    display: block;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--green-100) 0%, var(--green-50) 100%);
    color: var(--primary-color);
    position: absolute;
    top: 0;
    left: 0;
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.image-placeholder p {
    font-size: 1.1rem;
    font-weight: 600;
}

.hero-map {
    background: var(--light-color);
    border-radius: 12px;
    overflow: hidden;
    min-height: 400px;
    position: relative;
}

.map-img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    display: block;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--green-100) 0%, #a7f3d0 100%);
    color: var(--primary-dark);
    position: relative;
}

.map-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.map-placeholder p {
    font-size: 1.1rem;
    font-weight: 600;
}

.map-controls {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.map-controls button {
    width: 35px;
    height: 35px;
    background: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    transition: background 0.3s;
}

.map-controls button:hover {
    background: var(--light-color);
}

.btn-large {
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-lg);
    animation: pulse-button-large 2s ease-in-out infinite;
}

.btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    animation: none;
}

@keyframes pulse-button-large {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 12px 30px rgba(16, 185, 129, 0.5);
    }
}

/* Services */
.services {
    padding: 5rem 0;
    background: var(--light-color);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--dark-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.service-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 1.5rem;
}

.service-card ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    margin: 0.25rem 0;
}

.service-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.service-card ul li a {
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 0.5rem 0.75rem;
    margin: -0.5rem 0 0 -1.5rem;
    border-radius: 8px;
    background: var(--light-color);
    border: 1px solid #e5e7eb;
    position: relative;
    padding-left: 2.5rem;
    font-weight: 500;
    width: calc(100% + 1.5rem);
    box-sizing: border-box;
}

.service-card ul li a:before {
    content: "→";
    position: absolute;
    left: 0.75rem;
    color: var(--primary-color);
    font-weight: bold;
    transition: transform 0.3s ease;
    font-size: 1rem;
}

.service-card ul li a:hover {
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--green-50) 0%, var(--green-100) 100%);
    border-color: var(--primary-color);
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.service-card ul li a:hover:before {
    transform: translateX(5px);
}

.btn-service {
    background: #dc2626;
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: background 0.3s;
    animation: pulse-button-service-red 2s ease-in-out infinite;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
}

.btn-service:hover {
    background: #b91c1c;
    animation: none;
}

@keyframes pulse-button-service-red {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 18px rgba(220, 38, 38, 0.6);
    }
}

/* Reviews */
.reviews {
    padding: 5rem 0;
    background: var(--white);
}

.hero-reviews {
    margin: 2rem 0;
    overflow: hidden;
    position: relative;
}

.reviews-scroll-container {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.reviews-track {
    display: flex;
    gap: 1rem;
    animation: scroll-reviews 25s linear infinite;
    width: fit-content;
}

.reviews-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-reviews {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.review-card {
    background: var(--white);
    padding: 0.65rem 1rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #e5e7eb;
    flex-shrink: 0;
    width: 320px;
    min-width: 320px;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.review-header {
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
}

.google-logo {
    width: 28px;
    height: 28px;
    object-fit: contain;
    flex-shrink: 0;
}

.reviewer-details {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    flex-wrap: wrap;
}

.reviewer-details h4 {
    margin: 0;
    color: var(--dark-color);
    font-size: 0.85rem;
    font-weight: 600;
}

.review-date {
    color: #64748b;
    font-size: 0.75rem;
}

.review-card .stars {
    color: #fbbf24;
    display: flex;
    gap: 1px;
    flex-shrink: 0;
}

.review-card .stars i {
    font-size: 0.7rem;
}

.service-type {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.3rem;
    font-size: 0.8rem;
    line-height: 1.2;
}

.review-text {
    color: var(--text-color);
    line-height: 1.3;
    font-size: 0.8rem;
    margin: 0;
    flex: 1;
}

.google-badge {
    text-align: center;
    padding: 1.5rem;
    background: var(--light-color);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-color);
}

.google-badge i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

/* SEO Content */
/* Popular Services */
.popular-services {
    padding: 4rem 0;
    background: linear-gradient(180deg, #f6fff9 0%, #ffffff 50%, #f6fff9 100%);
}

.popular-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.popular-service-item {
    display: block;
    padding: 1.05rem 1.25rem;
    background: var(--white);
    border: 1px solid var(--green-100);
    border-radius: 10px;
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.97rem;
    font-weight: 600;
    transition: all 0.28s ease;
    text-align: center;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.popular-service-item:hover {
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.08);
}

.seo-content {
    padding: 4rem 0;
    background: var(--white);
}

.seo-content article {
    max-width: 900px;
    margin: 0 auto;
}

.seo-content h2 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.seo-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.seo-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1.25rem;
    text-align: justify;
}

/* Contact */
.contact {
    padding: 5rem 0;
    background: var(--light-color);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.25rem;
}

.contact-item h3 {
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-cta {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    text-align: center;
}

.contact-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.contact-cta p {
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--white);
    text-align: center;
    padding: 2rem 0;
    margin-bottom: 80px;
}

/* Sabit Alt Buton */
.fixed-call-button {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 0.75rem 0;
}

.fixed-call-button .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.fixed-call-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 0.65rem 1rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    transition: all 0.3s;
    animation: pulse-fixed-button-green 2s ease-in-out infinite, glow-pulse 2s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.fixed-call-btn::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light), var(--primary-color), var(--primary-dark));
    background-size: 400% 400%;
    border-radius: 12px;
    z-index: -1;
    animation: rotate-border 3s linear infinite;
}

.fixed-call-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s infinite;
}

@keyframes rotate-border {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes glow-pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4), 0 0 20px rgba(16, 185, 129, 0.2);
        filter: brightness(1);
    }
    50% {
        box-shadow: 0 6px 30px rgba(16, 185, 129, 0.6), 0 0 30px rgba(16, 185, 129, 0.4);
        filter: brightness(1.1);
    }
}

@keyframes shine {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 100%;
    }
}

.fixed-call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(16, 185, 129, 0.5);
    animation: none;
}

.fixed-call-btn i {
    font-size: 1.5rem;
    animation: ring-phone 2s ease-in-out infinite;
}

@keyframes ring-phone {
    0%, 100% {
        transform: rotate(0deg);
    }
    10%, 30% {
        transform: rotate(-15deg);
    }
    20%, 40% {
        transform: rotate(15deg);
    }
    50% {
        transform: rotate(0deg);
    }
}

.fixed-call-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.1rem;
}

.fixed-call-label {
    font-size: 1rem;
    opacity: 0.95;
}

.fixed-call-number {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

@keyframes pulse-fixed-button-green {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
        order: 3;
    }

    .btn-primary {
        order: 2;
    }

    .nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        z-index: 1000;
        gap: 0;
    }

    .nav.active {
        left: 0;
    }

    .nav a {
        padding: 1rem;
        border-bottom: 1px solid var(--light-color);
        width: 100%;
        min-height: 48px;
    }

    .nav a:last-child {
        border-bottom: none;
    }

    .nav-dropdown {
        width: 100%;
    }

    .nav-dropdown-toggle {
        width: 100%;
        padding: 1rem;
        border-bottom: 1px solid var(--light-color);
        min-height: 48px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0;
        margin: 0;
        background: var(--light-color);
        border-radius: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        pointer-events: none;
        display: block;
    }

    .nav-dropdown.active .nav-dropdown-menu {
        max-height: 500px;
        pointer-events: auto;
    }

    .nav-dropdown-menu a {
        padding: 0.875rem 1rem 0.875rem 2.5rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        font-size: 0.9rem;
    }

    .nav-dropdown-menu a:last-child {
        border-bottom: 1px solid var(--light-color);
    }

    .header .container {
        position: relative;
    }

    .btn-primary {
        font-size: 0.9rem;
        padding: 0.6rem 1rem;
        min-height: 44px;
    }

    .status-bar {
        padding: 0.5rem 0;
        font-size: 0.85rem;
    }

    .status-bar .container {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .status-info {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }

    .status-call-btn {
        min-height: 44px;
        padding: 0.6rem 1.5rem;
        font-size: 1rem;
    }

    .hero {
        padding: 1.5rem 0 2rem;
    }

    .hero-top h1 {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-rating {
        margin: 1rem 0;
    }

    .hero-status {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .status-badge {
        min-height: 44px;
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }

    .service-info {
        font-size: 0.9rem;
        padding: 0 1rem;
    }

    .hero-features-bar {
        gap: 1rem;
        padding: 0 1rem;
    }

    .feature-item {
        font-size: 0.85rem;
    }

    .feature-icon,
    .feature-item i {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .hero-main {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
        margin-top: 1.5rem;
    }

    .brands-slider {
        padding: 1rem 0;
        margin-top: 0.75rem;
    }

    .brands-track {
        gap: 1rem;
        animation-duration: 30s;
    }

    .brand-item {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        min-width: 100px;
    }

    .hero-image,
    .hero-map {
        min-height: 180px;
    }

    .hero-img,
    .map-img {
        min-height: 180px;
    }

    .image-placeholder,
    .map-placeholder {
        min-height: 180px;
    }

    .image-placeholder i,
    .map-placeholder i {
        font-size: 2rem;
    }

    .image-placeholder p,
    .map-placeholder p {
        font-size: 0.85rem;
    }

    .map-controls button {
        width: 40px;
        height: 40px;
        min-height: 44px;
    }

    .services {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .btn-service {
        width: 100%;
        min-height: 48px;
        padding: 1rem;
        font-size: 1rem;
        text-align: center;
    }

    .popular-services {
        padding: 3rem 0;
    }

    .popular-services-grid {
        grid-template-columns: 1fr;
        gap: 0.875rem;
        margin-top: 1.5rem;
    }

    .popular-service-item {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }

    .seo-content {
        padding: 2.5rem 0;
    }

    .seo-content h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .seo-content h3 {
        font-size: 1.15rem;
        margin-top: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .seo-content p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 0.875rem;
        text-align: left;
    }

    .reviews {
        padding: 3rem 0;
    }

    .hero-reviews {
        margin: 1rem 0;
    }

    .review-card {
        width: 280px;
        min-width: 280px;
        padding: 0.65rem 0.85rem;
    }

    .reviews-track {
        gap: 0.75rem;
        animation-duration: 20s;
    }

    .google-logo {
        width: 18px;
        height: 18px;
    }

    .reviewer-details h4 {
        font-size: 0.85rem;
    }

    .review-date {
        font-size: 0.75rem;
    }

    .review-card .stars i {
        font-size: 0.75rem;
    }

    .service-type {
        font-size: 0.8rem;
        margin-bottom: 0.4rem;
    }

    .review-text {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .review-card {
        padding: 1.25rem;
    }

    .contact {
        padding: 3rem 0;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-item {
        min-height: 60px;
    }

    .contact-item a {
        font-size: 1rem;
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .btn-large {
        width: 100%;
        max-width: 100%;
        justify-content: center;
        min-height: 56px;
        padding: 1.25rem 2rem;
        font-size: 1rem;
    }

    .container {
        padding: 0 15px;
    }

    /* Touch-friendly improvements */
    a, button {
        -webkit-tap-highlight-color: rgba(16, 185, 129, 0.2);
    }

    /* Prevent text size adjustment on iOS */
    html {
        -webkit-text-size-adjust: 100%;
    }
}

@media (max-width: 480px) {
    .hero-top h1 {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    .logo i {
        font-size: 2rem;
    }
}

/* WhatsApp Widget */
.whatsapp-widget {
    position: fixed;
    bottom: 100px;
    right: 20px;
    z-index: 9998;
    animation: whatsapp-pulse 2s ease-in-out infinite;
}

.whatsapp-widget a {
    display: block;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.whatsapp-widget a:hover {
    transform: scale(1.1);
}

.whatsapp-icon {
    width: 70px;
    height: 70px;
    transition: transform 0.3s ease;
}

@keyframes whatsapp-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@media (max-width: 768px) {
    .whatsapp-widget {
        bottom: 110px;
        right: 15px;
    }

    .whatsapp-icon {
        width: 60px;
        height: 60px;
    }
}

