/* Reset and Base Styles */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* TikTok Ads Optimization Styles */
.tiktok-optimized {
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Fast loading animations for TikTok - DISABLED */
.fast-load {
    transition: all 0.3s ease;
    will-change: transform;
}

/* @keyframes fadeInUp {
    from {
        opacity: 0;
        
    }
    to {
        opacity: 1;
        
    }
} */

/* TikTok mobile optimization */
@media (max-width: 768px) {
    .tiktok-mobile-optimized {
        -webkit-tap-highlight-color: transparent;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        user-select: none;
    }
}

/* TikTok performance optimizations */
.tiktok-fast-load {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: transform;
}

/* TikTok conversion optimization */
.tiktok-conversion-optimized {
    position: relative;
    z-index: 1;
}

/* TikTok trust signals */
.tiktok-trust-signals {
    display: block;
    visibility: visible;
}

/* TikTok content quality indicators */
.tiktok-high-quality-content {
    line-height: 1.6;
    font-size: 16px;
    color: #333;
}

/* TikTok mobile-first design */
@media (max-width: 480px) {
    .tiktok-mobile-first {
        font-size: 18px;
        line-height: 1.5;
        padding: 15px;
    }
}

:root {
    /* Color Variables */
    --primary-color: #8B4513;
    --secondary-color: #D2691E;
    --accent-color: #FFD700;
    --text-color: #333;
    --text-light: #666;
    --bg-color: #fff;
    --bg-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --shadow-light: 0 4px 15px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 10px 30px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 20px 40px rgba(0, 0, 0, 0.2);
    
    /* Typography */
    --font-primary: 'Cairo', 'Amiri', Arial, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Transitions - DISABLED */
    --transition-fast: 0s;
    --transition-normal: 0s;
    --transition-slow: 0s;
    
    /* Z-index */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
    --z-toast: 1080;
}

html {
    scroll-behavior: auto;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-color);
    background: var(--bg-gradient);
    min-height: 100vh;
    font-size: var(--font-size-base);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
    width: 100%;
}

/* Utility Classes */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: var(--radius-md);
    z-index: var(--z-tooltip);
    /*  */
}

.skip-link:focus {
    top: 6px;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 2px solid rgba(139, 69, 19, 0.3);
    /*  */
    padding: 0;
}

/* Header scroll effect */
.header.scrolled {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #e9ecef 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    
}

.header.scrolled .navbar {
    padding: 0.4rem 0;
}

.header.scrolled .logo-icon {
    width: 35px;
    height: 35px;
    font-size: 1rem;
}

.header.scrolled .logo-text h2 {
    font-size: 1.2rem;
}

.header.scrolled .logo-text span {
    font-size: 0.7rem;
}

.header.scrolled .nav-link {
    padding: 0.5rem 0.8rem;
    font-size: 0.85rem;
}

.header.scrolled .whatsapp-btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

/* Top Bar */
.top-bar {
    background: linear-gradient(135deg, #8B4513, #D2691E);
    color: #FFD700;
    padding: 0.3rem 0;
    font-size: 0.8rem;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-info {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-item-top {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.9;
    /*  */
    padding: 8px 12px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    position: relative;
    overflow: hidden;
}

/* .contact-item-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
    
}

.contact-item-top:hover::before {
    left: 100%;
}

.contact-item-top:hover {
    opacity: 1;
    
    background: rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
} */

.contact-item-top i {
    color: #FFD700;
    font-size: 1.1rem;
    /*  */
}

/* .contact-item-top:hover i {
    
} */

.contact-text {
    font-weight: 600;
    font-size: 0.9rem;
    /*  */
}

/* .contact-item-top:hover .contact-text {
    color: #FFD700;
} */

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: white;
    font-size: 1.1rem;
    /*  */
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

/* .social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    opacity: 0;
    
    border-radius: 50%;
}

.social-link:hover::before {
    opacity: 1;
}

.social-link:hover {
    background: #FFD700;
    color: #8B4513;
    
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
} */

.social-link i {
    position: relative;
    z-index: 1;
    /*  */
}

/* .social-link:hover i {
    
} */

/* Main Navigation */
.navbar {
    padding: 1rem 0;
    background: transparent;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #2c1810;
    box-shadow: 0 3px 12px rgba(255, 215, 0, 0.4);
    /*  */
}

/* .logo:hover .logo-icon {
    
} */

.logo-text h2 {
    color: #8B4513;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(45deg, #8B4513, #D2691E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.logo-text span {
    color: #666;
    font-size: 1rem;
    font-weight: 500;
    margin-top: 0.2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: #8B4513;
    font-weight: 600;
    font-size: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 30px;
    /*  */
    display: flex;
    align-items: center;
    gap: 0.7rem;
    position: relative;
    overflow: hidden;
}

/* .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    
    z-index: -1;
}

.nav-link:hover::before {
    left: 0;
}

.nav-link:hover {
    color: #D2691E;
    
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
} */

.nav-link i {
    font-size: 1rem;
    /*  */
}

/* .nav-link:hover i {
    
} */

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.whatsapp-btn {
    background: linear-gradient(45deg, #25D366, #128C7E);
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    /*  */
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

/* .whatsapp-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    
}

.whatsapp-btn:hover::before {
    left: 100%;
}

.whatsapp-btn:hover {
    
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
} */

.whatsapp-btn i {
    font-size: 1.1rem;
    /*  */
}

/* .whatsapp-btn:hover i {
    
} */

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    background: none;
    border: none;
    outline: none;
}

.hamburger:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #FFD700;
    margin: 3px 0;
    /*  */
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    
}

/* Hero Section */
.hero {
    padding: 100px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
    contain: layout;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    color: white;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-text p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    /*  */
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #333;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

/* .btn-primary:hover {
    
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
} */

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

/* .btn-secondary:hover {
    background: white;
    color: #333;
    
} */

.hero-image {
    text-align: center;
    position: relative;
}

.hero-image img {
    max-width: 50%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 5px solid rgba(255, 255, 255, 0.2);
    aspect-ratio: 1/1;
    object-fit: cover;
    /*  */
}

/* .hero-image img:hover {
    
} */

/* Services Section */
.services {
    padding: 80px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #8B4513, #D2691E);
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    /*  */
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

/* .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
} */

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(45deg, #8B4513, #D2691E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.service-card h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* About Section */
.about {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
    text-align: center;
}

.about-subtitle {
    font-size: 1.8rem;
    color: #8B4513;
    margin-bottom: 2rem;
    font-weight: 600;
    text-align: center;
}

/* About Highlights */
.about-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    /*  */
    border: 2px solid transparent;
}

/* .highlight-item:hover {
    
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: rgba(139, 69, 19, 0.2);
} */

.highlight-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #8B4513, #D2691E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    flex-shrink: 0;
}

.highlight-content h4 {
    font-size: 1.3rem;
    color: #8B4513;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.highlight-content p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* About Description */
.about-description {
    margin: 3rem 0;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.about-description h3 {
    font-size: 1.8rem;
    color: #8B4513;
    margin-bottom: 1.5rem;
    text-align: center;
}

.about-description p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.about-description p:last-child {
    margin-bottom: 0;
}

/* About Services Grid */
.about-services {
    margin: 3rem 0;
}

.about-services h4 {
    font-size: 1.8rem;
    color: #8B4513;
    margin-bottom: 2rem;
    text-align: center;
}

.services-grid-about {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.service-item-about {
    text-align: center;
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    /*  */
    border: 2px solid transparent;
}

/* .service-item-about:hover {
    
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: rgba(139, 69, 19, 0.2);
} */

.service-item-about i {
    font-size: 2.5rem;
    color: #8B4513;
    margin-bottom: 1rem;
    display: block;
}

.service-item-about h5 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.service-item-about p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* About Guarantee */
.about-guarantee {
    margin: 3rem 0;
}

.guarantee-box {
    background: linear-gradient(135deg, #8B4513, #D2691E);
    color: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(139, 69, 19, 0.3);
    position: relative;
    overflow: hidden;
}

.guarantee-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    
}

@keyframes shimmer {
    0% {  }
    100% {  }
}

.guarantee-box i {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    position: relative;
    z-index: 1;
}

.guarantee-box h4 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.guarantee-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
    position: relative;
    z-index: 1;
}


/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-card {
    display: none;
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.testimonial-card.active {
    display: block;
    
}

@keyframes fadeIn {
    from { opacity: 0;  }
    to { opacity: 1;  }
}

.stars {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #FFD700;
}

.testimonial-author span {
    opacity: 0.8;
    font-size: 1rem;
}

.testimonial-dots {
    text-align: center;
    margin-top: 2rem;
}

.dot {
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    /*  */
}

.dot.active, .dot:hover {
    background-color: #FFD700;
}

/* Statistics Section */
.statistics {
    padding: 80px 0;
    background: #f8f9fa;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    /*  */
}

/* .stat-item:hover {
    
} */

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: linear-gradient(45deg, #8B4513, #D2691E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #8B4513;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    overflow: hidden;
    /*  */
}

/* .faq-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
} */

.faq-question {
    padding: 1.5rem;
    background: #f8f9fa;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /*  */
}

/* .faq-question:hover {
    background: #e9ecef;
} */

.faq-question h3 {
    font-size: 1.2rem;
    color: #333;
    margin: 0;
}

.faq-question i {
    font-size: 1.2rem;
    color: #8B4513;
    /*  */
}

.faq-item.active .faq-question i {
    
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    /*  */
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ddd" opacity="0.3"/><circle cx="75" cy="75" r="1" fill="%23ddd" opacity="0.3"/><circle cx="50" cy="10" r="0.5" fill="%23ddd" opacity="0.2"/><circle cx="10" cy="60" r="0.5" fill="%23ddd" opacity="0.2"/><circle cx="90" cy="40" r="0.5" fill="%23ddd" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
    z-index: 1;
}

.contact .container {
    position: relative;
    z-index: 2;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info h3,
.contact-form-section h3 {
    color: #8B4513;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.contact-methods {
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.contact-method::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 69, 19, 0.1), transparent);
    
}

.contact-method:hover::before {
    left: 100%;
}

.contact-method:hover {
    
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #8B4513, #D2691E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
    
    flex-shrink: 0;
}

.contact-method:hover .contact-icon {
    
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.4);
}

.contact-details h3 {
    color: #8B4513;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-details p {
    color: #666;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-status {
    display: inline-block;
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 0.5rem;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
}

.contact-link {
    color: #8B4513;
    text-decoration: none;
    font-weight: 600;
    
}

.contact-link:hover {
    color: #D2691E;
}

.social-media-section {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.social-media-section h3 {
    color: #8B4513;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.contact-form-section {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #8B4513;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8B4513;
}

.btn-submit {
    background: linear-gradient(45deg, #8B4513, #D2691E);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    
}

.btn-submit:hover {
    
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.3);
}

.alert {
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert ul {
    margin: 0;
    padding-right: 1.5rem;
}

.contact-additional-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.info-card h3 {
    color: #8B4513;
    margin-bottom: 1rem;
}

.info-card p {
    color: #666;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #333;
    padding: 4rem 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8B4513, #D2691E, #FFD700, #D2691E, #8B4513);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

/* Mobile Footer Layout */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section {
        margin-bottom: 2rem;
        padding: 1.5rem;
        background: rgba(255, 255, 255, 0.7);
        border-radius: 15px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
}

/* Footer Logo */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #8B4513, #D2691E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.footer-logo-text h3 {
    color: #8B4513;
    font-size: 1.5rem;
    margin: 0 0 0.5rem 0;
    font-weight: 700;
}

.footer-logo-text span {
    color: #D2691E;
    font-size: 0.9rem;
    font-weight: 500;
}

.footer-section p {
    color: #444;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.footer-stats {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
}

.stat {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    
}

.stat:hover {
    
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #8B4513;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.8rem;
    color: #666;
    font-weight: 500;
}

/* Mobile Footer Stats */
@media (max-width: 768px) {
    .footer-stats {
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .stat {
        padding: 1.5rem;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 15px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    
    .stat-number {
        font-size: 2.2rem;
        margin-bottom: 0.5rem;
    }
    
    .stat-label {
        font-size: 1rem;
        font-weight: 600;
    }
}

/* Footer Links */
.footer-section h4 {
    color: #8B4513;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #D2691E;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #444;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    
    padding: 0.8rem 1rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 0.5rem;
}

.footer-links a:hover {
    color: #8B4513;
    
    background: rgba(139, 69, 19, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Mobile Footer Links */
@media (max-width: 768px) {
    .footer-links {
        text-align: center;
    }
    
    .footer-links a {
        padding: 1rem 1.5rem;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 15px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        margin-bottom: 0.8rem;
        justify-content: center;
        font-size: 1rem;
        font-weight: 500;
    }
    
    .footer-links a:hover {
        background: rgba(139, 69, 19, 0.15);
        
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }
}

.footer-links a i {
    color: #8B4513;
    font-size: 0.9rem;
    
}

.footer-links a:hover i {
    
}

/* Contact Info */
.contact-info {
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.8rem;
    background: rgba(139, 69, 19, 0.05);
    border-radius: 10px;
    
}

.contact-item:hover {
    background: rgba(139, 69, 19, 0.1);
    
}

.contact-item i {
    color: #8B4513;
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.contact-item div span {
    display: block;
    color: #333;
    font-weight: 600;
    font-size: 0.95rem;
}

.contact-item div small {
    color: #666;
    font-size: 0.8rem;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 1.2rem;
    
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #8B4513, #D2691E);
    
    z-index: -1;
    border-radius: 50%;
}

/* Mobile Social Links */
@media (max-width: 768px) {
    .social-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .social-link {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        background: linear-gradient(45deg, #8B4513, #D2691E);
        border: 2px solid rgba(255, 255, 255, 0.3);
        box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
    }
    
    .social-link:hover {
        
        box-shadow: 0 6px 20px rgba(139, 69, 19, 0.4);
    }
}

.social-link::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    
    
}

.social-link:hover::before {
    
}

.social-link:hover::after {
    width: 100%;
    height: 100%;
}

.social-link:hover {
    
    box-shadow: 0 8px 20px rgba(139, 69, 19, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
}

.social-link i {
    position: relative;
    z-index: 2;
    
}

.social-link:hover i {
    
}

.social-link.facebook { background: #3b5998; }
.social-link.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-link.whatsapp { background: #25D366; }
.social-link.messenger { background: #0084ff; }
.social-link.telegram { background: #0088cc; }
.social-link.youtube { background: #ff0000; }

/* Contact Info Footer */
.contact-info-footer {
    margin-top: 1.5rem;
}

.contact-item-footer {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    padding: 0.6rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Mobile Contact Info Footer */
@media (max-width: 768px) {
    .contact-item-footer {
        background: rgba(255, 255, 255, 0.9);
        padding: 1rem;
        margin-bottom: 1rem;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        justify-content: center;
        text-align: center;
    }
    
    .contact-item-footer i {
        font-size: 1.3rem;
        color: #8B4513;
    }
    
    .contact-item-footer span {
        font-size: 1rem;
        font-weight: 600;
    }
}

.contact-item-footer:hover {
    background: rgba(139, 69, 19, 0.1);
    
}

.contact-item-footer i {
    color: #8B4513;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.contact-item-footer span {
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
}


/* Footer Bottom */
.footer-bottom {
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem 0;
    border-top: 1px solid rgba(139, 69, 19, 0.2);
    margin-top: 2rem;
}

/* Mobile Footer Bottom */
@media (max-width: 768px) {
    .footer-bottom {
        background: rgba(255, 255, 255, 0.9);
        padding: 1.5rem 0;
        margin-top: 1rem;
    }
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.copyright p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

.footer-links-bottom {
    display: flex;
    gap: 2rem;
}

.footer-links-bottom a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    
    padding: 0.5rem 1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.footer-links-bottom a:hover {
    color: #8B4513;
    background: rgba(139, 69, 19, 0.1);
    
}

/* Mobile Footer Links Bottom */
@media (max-width: 768px) {
    .footer-links-bottom {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .footer-links-bottom a {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 25px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        min-width: 200px;
        text-align: center;
    }
    
    .footer-links-bottom a:hover {
        background: rgba(139, 69, 19, 0.15);
        
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #666;
    font-size: 0.9rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.payment-methods i {
    font-size: 1.5rem;
    color: #8B4513;
    
    padding: 0.5rem;
    background: rgba(139, 69, 19, 0.1);
    border-radius: 8px;
}

.payment-methods i:hover {
    
    background: rgba(139, 69, 19, 0.2);
}

/* Mobile Payment Methods */
@media (max-width: 768px) {
    .payment-methods {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 20px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        text-align: center;
    }
    
    .payment-methods span {
        font-size: 1rem;
        font-weight: 600;
        color: #8B4513;
    }
    
    .payment-methods i {
        font-size: 2rem;
        padding: 0.8rem;
        background: rgba(139, 69, 19, 0.15);
        border-radius: 12px;
        margin: 0.2rem;
    }
    
    .payment-methods i:hover {
        
        background: rgba(139, 69, 19, 0.25);
    }
}

/* Accessibility Enhancements */
.keyboard-navigation *:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.keyboard-navigation .nav-link:focus,
.keyboard-navigation .btn-primary:focus,
.keyboard-navigation .btn-secondary:focus {
    outline: 3px solid var(--accent-color);
    outline-offset: 3px;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        
        
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #000;
        --secondary-color: #000;
        --text-color: #000;
        --bg-color: #fff;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    :root {
        --text-color: #333;
        --text-light: #666;
        --bg-color: #f8f9fa;
    }
    
    .header {
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
    }
    
    .service-card,
    .about-text,
    .policy-content {
        background: #ffffff;
        color: var(--text-color);
    }
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    animation: pulse 2s infinite;
}

.floating-whatsapp a {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #25D366, #128C7E);
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-width: 60px;
    min-height: 60px;
    justify-content: center;
}

.floating-whatsapp a:hover {
    background: linear-gradient(45deg, #128C7E, #25D366);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

.floating-whatsapp i {
    font-size: 24px;
    line-height: 1;
}

.floating-whatsapp .whatsapp-text {
    font-size: 14px;
    white-space: nowrap;
}

/* Mobile WhatsApp Button */
@media (max-width: 768px) {
    .floating-whatsapp {
        bottom: 15px;
        right: 15px;
        z-index: 1001;
    }
    
    .floating-whatsapp a {
        padding: 12px 16px;
        font-size: 14px;
        min-width: 50px;
        min-height: 50px;
        border-radius: 25px;
    }
    
    .floating-whatsapp i {
        font-size: 20px;
    }
    
    .floating-whatsapp .whatsapp-text {
        font-size: 12px;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .floating-whatsapp {
        bottom: 10px;
        right: 10px;
    }
    
    .floating-whatsapp a {
        padding: 10px 14px;
        font-size: 13px;
        min-width: 45px;
        min-height: 45px;
        border-radius: 22px;
    }
    
    .floating-whatsapp i {
        font-size: 18px;
    }
    
    .floating-whatsapp .whatsapp-text {
        font-size: 11px;
    }
}

/* Pulse animation for WhatsApp button */
@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* Print styles */
@media print {
    .header,
    .footer,
    .floating-whatsapp,
    .scroll-top-btn,
    .hamburger {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .hero {
        background: white !important;
        color: black !important;
    }
    
    .header {
        background: white !important;
        color: black !important;
    }
    
    .footer {
        background: white !important;
        color: black !important;
    }
    
    a {
        text-decoration: underline;
    }
    
    a[href^="http"]:after {
        content: " (" attr(href) ")";
    }
}

/* Mobile-First Responsive Design */

/* Extra Extra Small devices (phones, 360px and down) */
@media (max-width: 360px) {
    .container {
        padding: 0 0.8rem;
    }
    
    .hero-text h1 {
        font-size: 1.6rem;
        line-height: 1.2;
    }
    
    .hero-text h2 {
        font-size: 1.2rem;
        line-height: 1.3;
    }
    
    .hero-text p {
        font-size: 0.95rem;
        padding: 0 0.3rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 12px 20px;
        font-size: 0.9rem;
        max-width: 250px;
    }
    
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem 1rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .service-card p {
        font-size: 0.95rem;
    }
    
    .about-text h2 {
        font-size: 1.6rem;
    }
    
    .about-subtitle {
        font-size: 1.2rem;
    }
    
    .about-text p {
        font-size: 0.95rem;
        padding: 0 0.3rem;
    }
    
    .about-text h4 {
        font-size: 1.2rem;
    }
    
    .services-list li {
        font-size: 0.95rem;
        padding: 0.5rem 0;
    }
    
    .testimonial-content p {
        font-size: 1rem;
    }
    
    .testimonial-author h4 {
        font-size: 1.1rem;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer p {
        font-size: 0.95rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-logo-text h3 {
        font-size: 1.2rem;
    }
    
    .footer-logo-text span {
        font-size: 0.75rem;
    }
    
    .footer-section h4 {
        font-size: 1.2rem;
    }
    
    .footer-section p {
        font-size: 0.95rem;
    }
    
    .footer-links a {
        padding: 0.7rem 0.8rem;
        font-size: 0.95rem;
    }
    
    .contact-item-top {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .contact-text {
        font-size: 0.9rem;
    }
    
    .social-link {
        padding: 10px 15px;
        font-size: 14px;
        min-width: 100px;
    }
    
    .social-text {
        font-size: 13px;
    }
    
    .whatsapp-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* Mobile-First Responsive Design */
/* Extra Small devices (phones, 480px and down) */
@media (max-width: 480px) {
    :root {
        --font-size-xs: 0.7rem;
        --font-size-sm: 0.8rem;
        --font-size-base: 0.9rem;
        --font-size-lg: 1rem;
        --font-size-xl: 1.1rem;
        --font-size-2xl: 1.3rem;
        --font-size-3xl: 1.6rem;
        --font-size-4xl: 1.9rem;
        --font-size-5xl: 2.2rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .hero {
        padding: 80px 0 60px;
        min-height: -webkit-fill-available;
        min-height: 100vh;
        background-attachment: scroll;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 0.8rem;
        text-align: center;
        word-break: break-word;
        hyphens: auto;
    }
    
    .hero-text h2 {
        font-size: 1.4rem;
        line-height: 1.4;
        margin-bottom: 0.8rem;
        text-align: center;
        word-break: break-word;
    }
    
    .hero-text p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
        text-align: center;
        padding: 0 0.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        margin-top: 2rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 15px 30px;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
        min-height: 50px;
        border-radius: 25px;
        font-weight: 700;
    }
    
    .hero-image {
        order: -1;
        margin-bottom: 2rem;
    }
    
    .hero-image img {
        max-width: 90%;
        height: auto;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1rem;
        border-radius: 20px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        
        border: 1px solid rgba(139, 69, 19, 0.1);
    }
    
    .service-card:hover {
        
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    }
    
    .service-card h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
        text-align: center;
        color: #8B4513;
    }
    
    .service-card p {
        font-size: 1rem;
        line-height: 1.6;
        text-align: center;
        color: #666;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        margin: 0 auto 1.5rem;
        font-size: 1.8rem;
    }
    
    .about {
        padding: 60px 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-text h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .about-subtitle {
        font-size: 1.3rem;
        margin-bottom: 2rem;
        text-align: center;
        color: #8B4513;
    }
    
    .about-highlights {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
    }
    
    .highlight-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .highlight-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .highlight-content h4 {
        font-size: 1.2rem;
    }
    
    .highlight-content p {
        font-size: 0.95rem;
    }
    
    .about-description {
        margin: 2rem 0;
        padding: 1.5rem;
    }
    
    .about-description h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .about-description p {
        font-size: 1rem;
        line-height: 1.7;
        text-align: justify;
        margin-bottom: 1rem;
        padding: 0 0.5rem;
    }
    
    .about-services h4 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .services-grid-about {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .service-item-about {
        padding: 1.5rem 1rem;
    }
    
    .service-item-about i {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .service-item-about h5 {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }
    
    .service-item-about p {
        font-size: 0.9rem;
    }
    
    .guarantee-box {
        padding: 2rem 1.5rem;
        margin: 2rem 0;
    }
    
    .guarantee-box i {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .guarantee-box h4 {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }
    
    .guarantee-box p {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .testimonials {
        padding: 60px 0;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
        border-radius: 20px;
    }
    
    .testimonial-content p {
        font-size: 1.1rem;
        line-height: 1.7;
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .testimonial-author h4 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
        text-align: center;
    }
    
    .testimonial-author span {
        font-size: 1rem;
        text-align: center;
        display: block;
    }
    
    .stars {
        font-size: 1.3rem;
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .statistics {
        padding: 60px 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .stat-item {
        padding: 2rem 1.5rem;
        border-radius: 20px;
        text-align: center;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }
    
    .stat-number {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
        color: #8B4513;
    }
    
    .stat-label {
        font-size: 1.1rem;
        color: #666;
        font-weight: 600;
    }
    
    .stat-icon {
        width: 70px;
        height: 70px;
        margin: 0 auto 1.5rem;
        font-size: 1.8rem;
    }
    
    .faq {
        padding: 60px 0;
    }
    
    .faq-container {
        margin-top: 2rem;
    }
    
    .faq-item {
        margin-bottom: 1rem;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    
    .faq-question {
        padding: 1.5rem;
        min-height: 60px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: #f8f9fa;
        border: none;
        border-radius: 15px;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
        margin: 0;
        color: #333;
        text-align: right;
        flex: 1;
        padding-left: 1rem;
    }
    
    .faq-question i {
        font-size: 1.2rem;
        color: #8B4513;
        
    }
    
    .faq-item.active .faq-question i {
        
    }
    
    .faq-answer {
        padding: 0 1.5rem;
        max-height: 0;
        overflow: hidden;
        
    }
    
    .faq-item.active .faq-answer {
        padding: 1.5rem;
        max-height: 300px;
    }
    
    .faq-answer p {
        font-size: 1rem;
        line-height: 1.6;
        color: #666;
        margin: 0;
        text-align: right;
    }
    
    .contact {
        padding: 60px 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .contact-form-section {
        padding: 1.5rem;
    }
    
    .contact-additional-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer {
        padding: 3rem 0 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .footer-section {
        margin-bottom: 2rem;
    }
    
    .footer-logo {
        justify-content: center;
        margin-bottom: 2rem;
    }
    
    .footer-logo-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .footer-logo-text h3 {
        font-size: 1.3rem;
    }
    
    .footer-logo-text span {
        font-size: 0.8rem;
    }
    
    .footer-section p {
        font-size: 1rem;
        line-height: 1.6;
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .footer-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .stat {
        padding: 1rem;
        background: rgba(139, 69, 19, 0.1);
        border-radius: 15px;
        min-width: 120px;
    }
    
    .stat-number {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .footer-section h4 {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-links li {
        margin-bottom: 1rem;
    }
    
    .footer-links a {
        padding: 0.8rem 1rem;
        border-radius: 10px;
        background: rgba(139, 69, 19, 0.05);
        display: block;
        text-align: center;
        
    }
    
    .footer-links a:hover {
        background: rgba(139, 69, 19, 0.1);
        
    }
    
    .footer-bottom {
        padding: 2rem 0;
        margin-top: 2rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-links-bottom {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .footer-links-bottom a {
        padding: 0.5rem 1rem;
        background: rgba(139, 69, 19, 0.1);
        border-radius: 20px;
        
    }
    
    .footer-links-bottom a:hover {
        background: rgba(139, 69, 19, 0.2);
        
    }
    
    .payment-methods {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .payment-methods i {
        font-size: 1.8rem;
        padding: 0.5rem;
        background: rgba(139, 69, 19, 0.1);
        border-radius: 10px;
        
    }
    
    .payment-methods i:hover {
        
        background: rgba(139, 69, 19, 0.2);
    }
    
    .nav-menu {
        position: fixed;
        top: 100px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 100px);
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 2rem 0;
        
        z-index: 999;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overflow-scrolling: touch;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu .nav-link {
        padding: 1.2rem 2rem;
        margin: 0.5rem 0;
        font-size: 1.1rem;
        width: 90%;
        max-width: 300px;
        text-align: center;
        border-radius: 15px;
        background: rgba(139, 69, 19, 0.1);
        border: 2px solid transparent;
        
        min-height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.8rem;
    }
    
    .nav-menu .nav-link:hover {
        background: rgba(139, 69, 19, 0.2);
        border-color: rgba(139, 69, 19, 0.3);
        
        box-shadow: 0 5px 15px rgba(139, 69, 19, 0.2);
    }
    
    .nav-menu .nav-link i {
        font-size: 1.2rem;
    }
    
    .top-bar {
        display: none;
    }
    
    .header {
        padding: 0.5rem 0;
    }
    
    .navbar {
        padding: 0.4rem 0;
    }
    
    .logo-text h2 {
        font-size: 1.1rem;
    }
    
    .logo-text span {
        font-size: 0.7rem;
    }
    
    .logo-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 481px) and (max-width: 576px) {
    .container {
        padding: 0 1.2rem;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text h2 {
        font-size: 1.6rem;
    }
    
    .hero-text p {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 1.8rem;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .about-subtitle {
        font-size: 1.4rem;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 577px) and (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero {
        padding: 80px 0 60px;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .hero-text h2 {
        font-size: 1.8rem;
    }
    
    .hero-text p {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .about-image img {
        max-width: 60%;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .nav-menu {
        top: 90px;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 769px) and (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 993px) and (max-width: 1200px) {
    .container {
        padding: 0 var(--spacing-lg);
    }
    
    .hero-text h1 {
        font-size: var(--font-size-4xl);
    }
    
    .hero-text h2 {
        font-size: var(--font-size-3xl);
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Extra extra large devices (1400px and up) */
@media (min-width: 1201px) {
    .container {
        max-width: 1200px;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Touch-friendly improvements for mobile */
@media (max-width: 768px) {
    /* Top Bar Mobile */
    .top-bar-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    /* Navigation Mobile */
    .hamburger {
        display: flex;
        padding: 0.8rem;
        min-width: 44px;
        min-height: 44px;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 100px;
        flex-direction: column;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
        width: 100%;
        text-align: center;
        
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding: 1.5rem 0;
        z-index: 999;
        border-top: 2px solid rgba(139, 69, 19, 0.3);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-actions {
        display: none;
    }
    
    .nav-menu .nav-link {
        color: #8B4513;
        padding: 1rem;
        margin: 0.2rem 0;
        border-radius: 10px;
        background: rgba(139, 69, 19, 0.1);
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .nav-menu .nav-link:hover {
        background: rgba(139, 69, 19, 0.2);
        color: #D2691E;
    }
    
    /* Touch targets */
    .btn-primary, .btn-secondary {
        min-height: 44px;
        min-width: 44px;
    }
    
    .social-link {
        min-width: 44px;
        min-height: 44px;
    }
    
    .dot {
        min-width: 44px;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    .faq-question {
        min-height: 44px;
    }
    
    .contact-method {
        cursor: pointer;
    }
}

/* Animations - DISABLED */
/* @keyframes fadeInUp {
    from {
        opacity: 0;
        
    }
    to {
        opacity: 1;
        
    }
} */

.service-card {
    /*  */
}

/* .service-card:nth-child(1) {  }
.service-card:nth-child(2) {  }
.service-card:nth-child(3) {  }
.service-card:nth-child(4) {  }
.service-card:nth-child(5) {  }
.service-card:nth-child(6) {  } */

/* Smooth scrolling */
html {
    scroll-behavior: auto;
}

/* Policy Pages Styles */
.policy-section {
    padding: 120px 0 80px;
    background: white;
    min-height: 100vh;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.policy-content h1 {
    font-size: 2.5rem;
    color: #8B4513;
    text-align: center;
    margin-bottom: 2rem;
    border-bottom: 3px solid #D2691E;
    padding-bottom: 1rem;
}

.policy-intro {
    font-size: 1.2rem;
    color: #666;
    text-align: center;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #8B4513;
}

.policy-section-content {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #e9ecef;
}

.policy-section-content h2 {
    font-size: 1.5rem;
    color: #8B4513;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #D2691E;
}

.policy-section-content p {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.policy-section-content ul,
.policy-section-content ol {
    margin: 1rem 0;
    padding-right: 2rem;
}

.policy-section-content li {
    margin-bottom: 0.5rem;
    color: #555;
}

.policy-section-content ul li {
    position: relative;
}

.policy-section-content ul li::before {
    content: "•";
    color: #8B4513;
    font-weight: bold;
    position: absolute;
    right: -1rem;
}

.policy-section-content ol li {
    counter-increment: item;
}

.policy-section-content ol {
    counter-reset: item;
}

.policy-section-content ol li::before {
    content: counter(item) ".";
    color: #8B4513;
    font-weight: bold;
    position: absolute;
    right: -1.5rem;
}

.policy-footer {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #8B4513, #D2691E);
    color: white;
    border-radius: 15px;
    text-align: center;
}

.policy-footer p {
    margin: 0.5rem 0;
    font-size: 1.1rem;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #8B4513;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #D2691E;
}

/* Font Awesome Fallback Icons - Moved to separate CSS files */

/* Social Media Icons Styling */
.social-links {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 25px;
    background: var(--social-color, #8B4513);
    color: white;
    text-decoration: none;
    
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border: 2px solid transparent;
    min-width: 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    color: white;
    text-decoration: none;
    border-color: rgba(255,255,255,0.3);
}

.social-link i {
    font-size: 18px;
    line-height: 1;
    
}

.social-link:hover i {
    
}

.social-text {
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

/* Specific social media colors */
.social-link.whatsapp { --social-color: #25D366; }
.social-link.facebook { --social-color: #1877F2; }
.social-link.instagram { --social-color: #E4405F; }
.social-link.messenger { --social-color: #00B2FF; }

/* Fallback icons moved to separate CSS files */

/* Mobile-specific enhancements */
@media (max-width: 768px) {
    /* Smooth scrolling for mobile */
    html {
        scroll-behavior: auto;
    }
    
    /* Touch scrolling for mobile */
    * {
        -webkit-overflow-scrolling: touch;
        overflow-scrolling: touch;
    }
    
    /* Prevent horizontal scroll */
    body {
        overflow-x: hidden;
    }
    
    /* Better text selection on mobile */
    ::selection {
        background: rgba(139, 69, 19, 0.2);
        color: #333;
    }
    
    /* Improved focus states for touch devices */
    .nav-link:focus,
    .btn-primary:focus,
    .btn-secondary:focus,
    .social-link:focus,
    .faq-question:focus {
        outline: 3px solid var(--accent-color);
        outline-offset: 2px;
    }
    
    /* Better touch feedback */
    .nav-link:active,
    .btn-primary:active,
    .btn-secondary:active,
    .social-link:active,
    .faq-question:active,
    .contact-method:active {
        
    }
    
    /* Improved readability */
    .hero-text p,
    .about-text p,
    .testimonial-content p {
        text-align: justify;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    
    /* Better spacing for mobile */
    .section-title {
        margin-bottom: 1.5rem;
        padding: 0 1rem;
        text-align: center;
    }
    
    .section-subtitle {
        padding: 0 1rem;
        text-align: center;
    }
    
    /* Improved card layouts */
    .service-card,
    .testimonial-card,
    .stat-item,
    .faq-item {
        margin-bottom: 1.5rem;
    }
    
    /* Better image handling */
    img {
        max-width: 100%;
        height: auto;
        display: block;
    }
    
    /* Improved form elements for mobile */
    input, textarea, select {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 12px;
        border-radius: 8px;
        border: 2px solid #e9ecef;
        width: 100%;
        box-sizing: border-box;
    }
    
    input:focus, textarea:focus, select:focus {
        outline: none;
        border-color: var(--primary-color);
        box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
    }
    
    /* Better button spacing */
    .hero-buttons {
        margin-top: 2rem;
    }
    
    /* Improved FAQ for mobile */
    .faq-question {
        padding: 1.2rem;
        font-size: 1rem;
        min-height: 60px;
        cursor: pointer;
    }
    
    .faq-answer {
        padding: 0 1.2rem 1.2rem;
    }
    
    /* Better testimonial dots */
    .testimonial-dots {
        margin-top: 1.5rem;
        text-align: center;
    }
    
    .dot {
        width: 12px;
        height: 12px;
        margin: 0 8px;
        cursor: pointer;
        
    }
    
    .dot.active {
        background-color: #FFD700;
        
    }
    
    /* Improved contact for mobile */
    .contact-content {
        margin-top: 2rem;
    }
    
    /* Better footer for mobile */
    .footer {
        padding: 3rem 0 0;
    }
    
    .footer-content {
        margin-bottom: 2rem;
    }
    
    /* Improved contact info display */
    .contact-item,
    .contact-item-footer {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    /* Better social links for mobile */
    .social-links {
        justify-content: center;
        margin-top: 1rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .social-link {
        min-width: 100%;
        padding: 15px 20px;
        font-size: 16px;
        border-radius: 30px;
    }
    
    .social-text {
        font-size: 16px;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .contact-item-top {
        justify-content: center;
        padding: 12px 20px;
        border-radius: 25px;
    }
    
    .contact-text {
        font-size: 1rem;
    }
    
    /* Improved header for mobile */
    .header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
        -webkit-backdrop-filter: blur(20px);
        backdrop-filter: blur(20px);
    }
    
    .navbar {
        padding: 0.5rem 0;
    }
    
    .logo-text h2 {
        font-size: 1.1rem;
    }
    
    .logo-text span {
        font-size: 0.7rem;
    }
    
    .logo-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    /* Better hamburger menu */
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 44px;
        height: 44px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
    }
    
    .hamburger span {
        width: 25px;
        height: 3px;
        background: #8B4513;
        margin: 3px 0;
        
        border-radius: 2px;
    }
    
    .hamburger.active span:nth-child(1) {
        
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        
    }
    
    /* Better main content spacing */
    main {
        margin-top: 100px;
    }
    
    /* Improved animations for mobile */
    .service-card,
    .testimonial-card,
    .stat-item,
    .contact-method {
        
    }
    
    .service-card:nth-child(1) {  }
    .service-card:nth-child(2) {  }
    .service-card:nth-child(3) {  }
    .service-card:nth-child(4) {  }
    .service-card:nth-child(5) {  }
    .service-card:nth-child(6) {  }
}

/* Landscape orientation improvements */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 60px 0 40px;
        min-height: 50vh;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .hero-text h2 {
        font-size: 1.4rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }
    
    .btn-primary, .btn-secondary {
        width: auto;
        min-width: 140px;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-image img,
    .about-image img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: pixelated;
    }
}

/* Dark mode improvements for mobile */
@media (prefers-color-scheme: dark) and (max-width: 768px) {
    .nav-menu {
        background: linear-gradient(135deg, #2c2c2c 0%, #3c3c3c 50%, #4c4c4c 100%);
        border-top-color: rgba(255, 215, 0, 0.3);
    }
    
    .nav-menu .nav-link {
        color: #FFD700;
        background: rgba(255, 215, 0, 0.1);
    }
    
    .nav-menu .nav-link:hover {
        background: rgba(255, 215, 0, 0.2);
        color: #FFA500;
    }
}

/* Reduced motion for mobile */
@media (prefers-reduced-motion: reduce) and (max-width: 768px) {
    .hero-image img:hover,
    .service-card:hover,
    .contact-method:hover {
        
    }
    
    .nav-link::before,
    .service-card::before {
        display: none;
    }
}
