/*
Theme Name: Khan Recovery Services
Theme URI: https://khanrecoveryservices.com
Author: Khan Recovery Services
Author URI: https://khanrecoveryservices.com
Description: A modern WordPress theme for Khan Recovery Services - Dubai's leading towing and car recovery service.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: khan-recovery
Tags: custom-background, threaded-comments, translation-ready
*/

/* ============================================
   MODERN CSS FRAMEWORK
   ============================================ */

/* CSS Variables */
:root {
    --primary: #0f172a;
    --primary-light: #1e293b;
    --accent: #3b82f6;
    --accent-light: #60a5fa;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --light: #f8fafc;
    --dark: #020617;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --white: #ffffff;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --radius-sm: 0.375rem;
    --radius: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--white);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

@media (min-width: 768px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.5rem; }
    h3 { font-size: 2rem; }
}

@media (min-width: 1024px) {
    h1 { font-size: 3.5rem; }
    h2 { font-size: 3rem; }
}

.text-gradient {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   LAYOUT
   ============================================ */

.site-main {
    flex: 1;
}

.container-custom {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

/* ============================================
   HEADER
   ============================================ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    max-width: 1280px;
    margin: 0 auto;
    gap: 2rem;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary);
    justify-content: flex-start;
    margin-right: auto;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.logo-icon-img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.main-navigation {
    display: none;
}

@media (min-width: 1024px) {
    .main-navigation {
        display: flex;
        align-items: center;
        gap: 2rem;
    }
}

.main-navigation a {
    font-weight: 500;
    color: var(--gray-600);
    position: relative;
}

.main-navigation a:hover {
    color: var(--accent);
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.main-navigation a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-buttons {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius);
    background: var(--gray-100);
    color: var(--gray-700);
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: var(--gray-200);
}

@media (min-width: 1024px) {
    .mobile-menu-toggle {
        display: none;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1580273916550-e323be2ae537?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-text h1 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

@media (min-width: 768px) {
    .hero-text h1 {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-text h1 {
        font-size: 3.5rem;
    }
}

.hero-text p {
    font-size: 1.125rem;
    color: var(--gray-300);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: var(--accent);
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.btn-primary:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-whatsapp {
   	background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border: 1px solid #25D366;
    backdrop-filter: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
    border-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.btn-success {
    background: var(--success);
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.btn-success:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.5);
}

.hero-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    box-shadow: var(--shadow-xl);
    max-width: 400px;
}

.hero-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
}

.hero-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.hero-card p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.hero-card-phone {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hero-card-phone-link {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.hero-card-phone-link:hover {
    color: var(--accent-light);
    transform: translateX(5px);
}

/* ============================================
   SECTIONS
   ============================================ */

.section {
    padding: 5rem 0;
}

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

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--gray-100);
    border-radius: 50px;
    color: var(--accent);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

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

@media (min-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   STATS SECTION
   ============================================ */

.stats-section {
    background: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    justify-content: center;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 900px;
        margin: 0 auto;
    }
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    transition: all 0.3s ease;
}

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

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-700);
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services-section {
    background: linear-gradient(to bottom, var(--gray-50), var(--white));
}

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

@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(96, 165, 250, 0.1));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.service-image {
    width: 100%;
    height: 200px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 1.5rem;
    background: var(--gray-100);
}

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

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.service-description {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent);
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: var(--accent-light);
}

/* ============================================
   LOCATIONS SECTION
   ============================================ */

.locations-section {
    background: var(--white);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .locations-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .locations-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.location-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.location-card:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-2px);
    border-color: var(--accent);
}

.location-icon {
    width: 45px;
    height: 45px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.location-card:hover .location-icon {
    background: white;
    color: var(--accent);
}

.location-name {
    font-weight: 600;
    color: inherit;
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features-section {
    background: linear-gradient(to bottom, var(--gray-50), var(--white));
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

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

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.feature-description {
    color: var(--gray-600);
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-2xl);
    padding: 3rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .cta-content h2 {
        font-size: 2.5rem;
    }
}

.cta-content p {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
    background: var(--primary);
    color: white;
}

.footer-content {
    padding: 4rem 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1280px;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-widget h3 {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-about p {
    color: var(--gray-400);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social a svg {
    color: white;
    width: 18px;
    height: 18px;
}

.footer-social a:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--gray-400);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

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

.footer-contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}

.footer-contact-text h4 {
    font-size: 0.875rem;
    color: var(--gray-400);
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.footer-contact-text p,
.footer-contact-text a {
    color: white;
    font-weight: 600;
    text-decoration: none;
}

.footer-contact-text a:hover {
    color: var(--accent);
}

.footer-bottom {
    background: var(--dark);
    padding: 1.25rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    max-width: 1280px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .footer-bottom-inner {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom p {
    color: var(--gray-400);
    font-size: 0.875rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: var(--gray-400);
    font-size: 0.875rem;
    transition: color 0.3s ease;
    text-decoration: none;
}

.footer-bottom-links a:hover {
    color: white;
}

/* ============================================
   MOBILE MENU
   ============================================ */

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    display: none;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 0;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu-content {
    width: 100%;
    max-width: 400px;
    background: white;
    height: 100%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.mobile-menu-close {
    width: 40px;
    height: 40px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-700);
}

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.mobile-menu-nav a {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--gray-700);
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.mobile-menu-nav a:hover {
    color: var(--accent);
}

.mobile-menu-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: auto;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1023px) {
    .hero-card {
        display: none;
    }
}

@media (max-width: 767px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .cta-content {
        padding: 2rem 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 1.5rem;
    }
    
    .footer-content {
        padding: 3rem 1rem;
    }
    
    /* Header adjustments */
    .header-inner {
        padding: 0.75rem 1rem;
    }
    
    .site-logo {
        font-size: 1.125rem;
        gap: 0.5rem;
    }
    
    .logo-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .site-logo span {
        font-size: 1rem;
    }
    
    .header-actions .btn {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
    
    /* Mobile menu improvements */
    .mobile-menu {
        width: 100%;
        max-width: 100%;
        border-radius: 0;
    }
    
    .mobile-menu-content {
        padding: 1rem;
    }
    
    .mobile-menu-nav a {
        padding: 0.75rem 0;
        font-size: 1rem;
    }
    
    /* Services grid mobile */
    .service-card {
        padding: 1.25rem;
    }
    
    .service-title {
        font-size: 1.125rem;
    }
    
    /* Stats grid mobile */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1rem;
    }
    
    /* Footer grid mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Section headers mobile */
    .section-header {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 0.875rem;
    }
    
    /* CTA buttons mobile */
    .cta-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Hero section mobile */
    .hero-section {
        min-height: 60vh;
        padding-top: 80px;
    }
    
    .hero-text {
        text-align: center;
    }
    
    /* Features grid mobile */
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    /* Locations grid mobile */
    .locations-grid {
        grid-template-columns: 1fr;
    }
    
    /* Gallery grid mobile */
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Tablet responsive styles */
@media (min-width: 768px) and (max-width: 1023px) {
    /* Header adjustments */
    .header-inner {
        padding: 0.75rem 1.5rem;
    }
    
    .site-logo span {
        font-size: 1.125rem;
    }
    
    /* Hero section tablet */
    .hero-section {
        min-height: 70vh;
        padding-top: 100px;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    /* Services grid tablet */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    /* Stats grid tablet */
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    /* Features grid tablet */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Locations grid tablet */
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Gallery grid tablet */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Footer grid tablet */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    /* Section headers tablet */
    .section-title {
        font-size: 2rem;
    }
    
    /* CTA content tablet */
    .cta-content {
        padding: 3rem 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    /* Mobile menu tablet */
    .mobile-menu {
        max-width: 400px;
    }
    
    /* Floating buttons tablet */
    .floating-buttons {
        bottom: 2rem;
        right: 2rem;
    }
    
    .floating-btn {
        min-width: 60px;
        height: 60px;
    }
}

/* ============================================
   SINGLE SERVICE PAGE STYLING
   ============================================ */

.service-single {
    max-width: 900px;
    margin: 0 auto;
}

.service-single-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
}

.service-single-image img {
    width: 100%;
    height: auto;
    display: block;
}

.service-single-content {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.service-single-details {
    margin-top: 2rem;
    padding: 2rem;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
}

.service-single-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.service-single-description {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-single-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-single-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--gray-700);
}

.service-single-feature svg {
    color: var(--success);
    flex-shrink: 0;
}

.service-single-actions {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Mobile responsive for single service */
@media (max-width: 767px) {
    .service-single-content {
        padding: 1.5rem;
    }
    
    .service-single-details {
        padding: 1.5rem;
    }
    
    .service-single-title {
        font-size: 1.25rem;
    }
    
    .service-single-actions {
        flex-direction: column;
    }
    
    .service-single-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   SINGLE LOCATION PAGE STYLING
   ============================================ */

.location-single {
    max-width: 900px;
    margin: 0 auto;
}

.location-single-content {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.location-single-details {
    margin-top: 2rem;
    padding: 2rem;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
}

.location-single-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.location-single-item:last-child {
    border-bottom: none;
}

.location-single-icon {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--white);
}

.location-single-info {
    flex: 1;
}

.location-single-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.location-single-text {
    color: var(--gray-600);
    line-height: 1.6;
}

.location-single-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.location-single-link:hover {
    text-decoration: underline;
}

.location-single-services {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
}

.location-single-services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.location-single-service-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 500;
}

.location-single-actions {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Mobile responsive for single location */
@media (max-width: 767px) {
    .location-single-content {
        padding: 1.5rem;
    }
    
    .location-single-details {
        padding: 1.5rem;
    }
    
    .location-single-item {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .location-single-icon {
        width: 40px;
        height: 40px;
    }
    
    .location-single-title {
        font-size: 1rem;
    }
    
    .location-single-actions {
        flex-direction: column;
    }
    
    .location-single-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   SINGLE GALLERY PAGE STYLING
   ============================================ */

.gallery-single {
    max-width: 900px;
    margin: 0 auto;
}

.gallery-single-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
}

.gallery-single-image img {
    width: 100%;
    height: auto;
    display: block;
}

.gallery-single-content {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.gallery-single-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-600);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.gallery-single-meta svg {
    color: var(--primary);
}

.gallery-single-description {
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.gallery-single-description p {
    margin-bottom: 1rem;
}

.gallery-single-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Mobile responsive for single gallery */
@media (max-width: 767px) {
    .gallery-single-content {
        padding: 1.5rem;
    }
    
    .gallery-single-actions {
        flex-direction: column;
    }
    
    .gallery-single-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   SINGLE BLOG PAGE STYLING
   ============================================ */

.blog-single {
    max-width: 900px;
    margin: 0 auto;
}

.blog-single-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
}

.blog-single-image img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-single-content {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.blog-single-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-600);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.blog-single-meta svg {
    color: var(--primary);
}

.blog-single-category {
    color: var(--primary);
    font-weight: 500;
}

.blog-single-body {
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.blog-single-body p {
    margin-bottom: 1rem;
}

.blog-single-body h2,
.blog-single-body h3,
.blog-single-body h4 {
    color: var(--gray-900);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.blog-single-author {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary);
}

.blog-single-author-name {
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.blog-single-author-category {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.blog-single-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Mobile responsive for single blog */
@media (max-width: 767px) {
    .blog-single-content {
        padding: 1.5rem;
    }
    
    .blog-single-actions {
        flex-direction: column;
    }
    
    .blog-single-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Header Styling */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--white);
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: var(--warning);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.logo-icon svg {
    color: var(--dark);
}

.site-logo span {
    font-size: 1.15rem;
    font-weight: 700;
}

/* Main Navigation */
.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.main-navigation ul li {
    margin: 0;
    padding: 0;
}

.main-navigation ul li a {
    color: var(--white);
    text-decoration: none;
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius);
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.95rem;
    white-space: nowrap;
}

.main-navigation ul li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 5;
    position: relative;
}

.header-actions .btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    color: var(--white);
}

.header-actions .btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
}

.header-actions .btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-light), #2563eb);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--white);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius);
    transition: background-color 0.3s ease;
    z-index: 10;
    position: relative;
    pointer-events: auto !important;
}

.mobile-menu-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.mobile-menu-toggle:focus {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.mobile-menu-toggle i {
    pointer-events: none;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background-color: #ffffff !important;
    z-index: 999999 !important;
    display: none !important;
    overflow-y: auto !important;
    visibility: hidden !important;
    width: 100vw !important;
    height: 100vh !important;
}

.mobile-menu.open {
    display: block !important;
    visibility: visible !important;
}

.mobile-menu-content {
    padding: 2rem !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    background-color: #ffffff !important;
    position: relative !important;
    z-index: 2 !important;
    visibility: visible !important;
    min-height: 100vh !important;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-200);
}

.mobile-menu-close {
    background: transparent;
    border: none;
    color: var(--gray-700);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius);
    transition: background-color 0.3s ease;
}

.mobile-menu-close:hover {
    background-color: var(--gray-100);
}

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex-grow: 1;
}

.mobile-menu-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu-nav li {
    margin: 0;
}

.mobile-menu-nav a {
    color: var(--gray-700);
    text-decoration: none;
    padding: 1rem;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    font-weight: 500;
    display: block;
    background-color: #ffffff;
}

.mobile-menu-nav a:hover {
    background-color: var(--gray-100);
    color: var(--accent);
}

.mobile-menu-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
}

.mobile-menu-cta .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    color: var(--white);
    border: none;
}

.mobile-menu-cta .btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
}

.mobile-menu-cta .btn-success {
    background: linear-gradient(135deg, var(--success), #146c43);
}

/* Responsive Navigation */
@media (max-width: 991px) {
    .main-navigation {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media (min-width: 992px) {
    .mobile-menu {
        display: none;
    }
}

/* ============================================
   MAP SECTION
   ============================================ */

.map-section {
    background: var(--gray-50);
}

.map-container {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* ============================================
   FLOATING ACTION BUTTONS
   ============================================ */

.floating-buttons {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 999;
}

.floating-btn {
    width: auto;
    min-width: 56px;
    height: 56px;
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0 1rem;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: none;
}

.floating-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.floating-btn svg {
    color: white;
    flex-shrink: 0;
}

.floating-label {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    white-space: nowrap;
}

.floating-label-text {
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.2;
}

.floating-label-number {
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0.9;
}

.floating-call {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
}

.floating-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

@media (max-width: 767px) {
    .floating-buttons {
        bottom: 1.5rem;
        right: 1.5rem;
    }
    
    .floating-btn {
        min-width: 50px;
        height: 50px;
        border-radius: 25px;
        padding: 0 0.75rem;
        gap: 0.5rem;
    }
    
    .floating-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .floating-label-text {
        font-size: 0.75rem;
    }
    
    .floating-label-number {
        font-size: 0.65rem;
    }
}
