* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #f97316, #dc2626);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 18px;
}

.logo-text h1 {
    font-size: 20px;
    font-weight: bold;
    color: #333;
}

.logo-text p {
    font-size: 12px;
    color: #666;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav a:hover {
    color: #f97316;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.phone i {
    color: #f97316;
}

.btn-primary {
    background: linear-gradient(135deg, #f97316, #dc2626);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
}

.btn-primary.large {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-outline {
    background: transparent;
    color: #f97316;
    border: 2px solid #f97316;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: #f97316;
    color: white;
}

.btn-outline.large {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-white {
    background: white;
    color: #f97316;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-white:hover {
    background: #f3f4f6;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    background: white;
    padding: 20px 0;
    border-top: 1px solid #e5e7eb;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 10px 0;
}

.mobile-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 0;
}

/* Hero Section */
.hero {
    padding-top: 80px;
    min-height: 100vh;
    background: linear-gradient(135deg, #fef3e2, #fee2e2);
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(135deg, #f97316, #dc2626);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.stat-icon.orange {
    background: #fed7aa;
    color: #f97316;
}

.stat-icon.red {
    background: #fecaca;
    color: #dc2626;
}

.stat-text strong {
    display: block;
    font-weight: bold;
    color: #333;
}

.stat-text span {
    font-size: 14px;
    color: #666;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-decorations {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.decoration {
    position: absolute;
    border-radius: 50%;
    opacity: 0.2;
}

.decoration-1 {
    width: 96px;
    height: 96px;
    background: linear-gradient(135deg, #f97316, #dc2626);
    top: -20px;
    right: -20px;
}

.decoration-2 {
    width: 128px;
    height: 128px;
    background: linear-gradient(135deg, #dc2626, #f97316);
    bottom: -20px;
    left: -20px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 16px;
    color: #333;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f3f4f6;
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: #fed7aa;
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 28px;
    transition: transform 0.3s;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-icon.orange {
    background: #fed7aa;
    color: #f97316;
}

.service-icon.red {
    background: #fecaca;
    color: #dc2626;
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #333;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* Advantages Section */
.advantages {
    padding: 80px 0;
    background: linear-gradient(135deg, #f9fafb, #fef3e2);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.advantage {
    text-align: center;
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f97316, #dc2626);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 40px;
    color: white;
    position: relative;
    transition: transform 0.3s;
}

.advantage:hover .advantage-icon {
    transform: scale(1.1);
}

.advantage-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #f97316, #dc2626);
    border-radius: 50%;
    opacity: 0.2;
    transform: scale(1.25);
    z-index: -1;
}

.advantage h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #333;
}

.advantage p {
    color: #666;
    line-height: 1.6;
}

.stats-box {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.stat-number.orange {
    color: #f97316;
}

.stat-number.red {
    color: #dc2626;
}

.stat-item p {
    color: #666;
    font-weight: 500;
}

/* Coverage Section */
.coverage {
    padding: 80px 0;
    background: white;
}

.coverage-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.coverage-text h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 24px;
    color: #333;
}

.coverage-text > p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 40px;
}

.area {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #333;
}

.area i {
    color: #22c55e;
    font-size: 18px;
}

.special-coverage {
    background: linear-gradient(135deg, #f97316, #dc2626);
    border-radius: 12px;
    padding: 24px;
    color: white;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.special-coverage i {
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 4px;
}

.special-coverage h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.special-coverage p {
    opacity: 0.9;
    line-height: 1.6;
}

.coverage-image {
    position: relative;
}

.coverage-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.image-overlay {
    position: absolute;
    bottom: 24px;
    left: 24px;
    color: white;
}

.image-overlay h4 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.image-overlay p {
    opacity: 0.9;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #f9fafb, #fef3e2);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-methods,
.important-info {
    background: white;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 32px;
}

.contact-methods h3,
.important-info h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 24px;
    color: #333;
}

.contact-method {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.method-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.method-icon.green {
    background: #dcfce7;
    color: #22c55e;
}

.method-icon.blue {
    background: #dbeafe;
    color: #3b82f6;
}

.method-icon.purple {
    background: #f3e8ff;
    color: #8b5cf6;
}

.contact-method h4 {
    font-weight: 600;
    margin-bottom: 4px;
    color: #333;
}

.contact-method p {
    color: #333;
    margin-bottom: 4px;
}

.contact-method span {
    font-size: 14px;
    color: #666;
}

.info-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.info-item i {
    color: #f97316;
    margin-top: 4px;
    flex-shrink: 0;
}

.info-item h4 {
    font-weight: 600;
    margin-bottom: 4px;
    color: #333;
}

.info-item p {
    color: #666;
}

.request-delivery {
    background: white;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.request-delivery h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 24px;
    color: #333;
}

.delivery-option {
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    margin-bottom: 20px;
}

.delivery-option.primary {
    background: linear-gradient(135deg, #f97316, #dc2626);
    color: white;
}

.delivery-option.secondary {
    border: 2px dashed #e5e7eb;
    color: #333;
}

.delivery-option i {
    font-size: 48px;
    margin-bottom: 16px;
}

.delivery-option.primary i {
    color: white;
}

.delivery-option.secondary i {
    color: #3b82f6;
}

.delivery-option h4 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.delivery-option p {
    margin-bottom: 16px;
    opacity: 0.9;
}

.how-to-request {
    background: #f9fafb;
    border-radius: 12px;
    padding: 24px;
}

.how-to-request h4 {
    font-weight: bold;
    margin-bottom: 16px;
    color: #333;
}

.how-to-request ol {
    color: #666;
    line-height: 1.8;
    padding-left: 20px;
}

.how-to-request li {
    margin-bottom: 8px;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 48px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 32px;
}

.footer-brand p {
    color: #9ca3af;
    margin: 16px 0;
    line-height: 1.6;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-logo .logo-icon {
    background: linear-gradient(135deg, #f97316, #dc2626);
}

.footer-logo h3 {
    font-size: 1.2rem;
    font-weight: bold;
}

.footer-logo p {
    font-size: 12px;
    color: #9ca3af;
    margin: 0;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s;
}

.social-links a:hover {
    background: #f97316;
}

.footer-links h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #f97316;
}

.footer-contact h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #9ca3af;
}

.contact-item i {
    width: 20px;
    text-align: center;
}

.contact-item i.fas.fa-phone {
    color: #f97316;
}

.contact-item i.fab.fa-whatsapp {
    color: #22c55e;
}

.contact-item i.fas.fa-envelope {
    color: #3b82f6;
}

.contact-item i.fas.fa-map-marker-alt {
    color: #dc2626;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 24px;
    text-align: center;
    color: #9ca3af;
}

.footer-bottom p {
    margin-bottom: 8px;
}

.footer-bottom p:last-child {
    font-size: 14px;
    color: #6b7280;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content,
    .coverage-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .desktop-nav,
    .header-right {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .advantages-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .stats-box {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary.large,
    .btn-outline.large {
        width: 100%;
    }
    
    .special-coverage {
        flex-direction: column;
        text-align: center;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Mobile Menu Animation */
.mobile-menu.show {
    display: block;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover Effects */
.service-card,
.contact-methods,
.important-info,
.request-delivery {
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

/* Focus States for Accessibility */
button:focus,
a:focus {
    outline: 2px solid #f97316;
    outline-offset: 2px;
}

/* Loading Animation for Images */
img {
    transition: opacity 0.3s;
}

img:not([src]) {
    opacity: 0;
}