/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Navigation */
.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #dc2626;
    margin-left: -20px;
}

.nav-logo i {
    margin-right: 10px;
    font-size: 1.8rem;
}

.logo-img {
    height: 110px;
    width: 140px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #dc2626;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #dc2626;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    color: white;
    padding: 120px 0 80px;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    background: #fff;
    color: #dc2626;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.cta-button i {
    margin-right: 10px;
}

.cta-button.secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.cta-button.secondary:hover {
    background: #fff;
    color: #dc2626;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-repair-visual {
    position: relative;
    font-size: 8rem;
    opacity: 0.8;
}

.phone-repair-visual .fa-mobile-alt {
    color: #fff;
}

.phone-repair-visual .fa-wrench {
    position: absolute;
    top: 20px;
    right: -30px;
    font-size: 4rem;
    color: #fbbf24;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    color: white;
    padding: 120px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Quick Services */
.quick-services {
    padding: 80px 0;
    background: #f8fafc;
}

.quick-services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1f2937;
}

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

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.service-card i {
    font-size: 3rem;
    color: #dc2626;
    margin-bottom: 20px;
}

.service-icon-home {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    width: 60px;
    height: 60px;
    margin: 0 auto 20px auto;
    background: #fef2f2;
    border-radius: 50%;
    padding: 10px;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #1f2937;
}

.service-card p {
    color: #6b7280;
}

/* Location & Contact */
.location-contact {
    padding: 80px 0;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.location-info h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: #1f2937;
}

.address, .hours {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.address i, .hours i {
    font-size: 1.5rem;
    color: #dc2626;
    margin-right: 15px;
    margin-top: 5px;
}

.address p, .hours p {
    font-size: 1.1rem;
    color: #4b5563;
}

.quick-contact {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.contact-btn {
    display: flex;
    align-items: center;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.call-btn {
    background: #dc2626;
    color: white;
}

.call-btn:hover {
    background: #991b1b;
}

.whatsapp-btn {
    background: #25d366;
    color: white;
}

.whatsapp-btn:hover {
    background: #128c7e;
}

.contact-btn i {
    margin-right: 8px;
}

.map-container {
    background: #f3f4f6;
    border-radius: 15px;
    overflow: hidden;
    height: 300px;
}

.map-placeholder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    color: #6b7280;
    text-align: center;
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #dc2626;
}

/* Why Choose Us */
.why-choose {
    padding: 80px 0;
    background: #f8fafc;
}

.why-choose h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1f2937;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature {
    text-align: center;
    padding: 30px 20px;
}

.feature i {
    font-size: 3rem;
    color: #dc2626;
    margin-bottom: 20px;
}

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #1f2937;
}

.feature p {
    color: #6b7280;
}

/* Services Detailed */
.services-detailed {
    padding: 80px 0;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 30px;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.service-item:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: #fef2f2;
    border-radius: 50%;
    flex-shrink: 0;
}

.service-icon i {
    font-size: 2.5rem;
    color: #dc2626;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1f2937;
}

.service-content p {
    color: #6b7280;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}

.service-features li {
    display: flex;
    align-items: center;
    color: #4b5563;
}

.service-features li i {
    color: #10b981;
    margin-right: 8px;
}

.offer-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: white;
    border-radius: 0 0 10px 10px;
}

.offer-title {
    font-size: 1.25rem;
    color: #1f2937;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.offer-description {
    color: #4b5563;
    margin: 0;
    line-height: 1.5;
    flex-grow: 1;
}

.offer-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.offer-image-container {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    overflow: hidden;
    position: relative;
}

.offer-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 15px;
    transition: transform 0.3s ease;
}

.offer-card:hover .offer-image {
    transform: scale(1.03);
}

.default-icon {
    font-size: 3rem;
    color: #e2e8f0;
    text-align: center;
    width: 100%;
}

.offer-validity {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding: 10px 14px;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #1f2937;
    border-left: 3px solid #dc2626;
    transition: all 0.3s ease;
    font-weight: 500;
}

.offer-validity i {
    color: #dc2626;
}

.offer-validity.expired {
    border-left-color: #9ca3af;
    color: #9ca3af;
}

.offer-validity.expired i {
    color: #9ca3af;
}

/* About Content */
.about-content {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #1f2937;
}

.about-text p {
    margin-bottom: 20px;
    color: #4b5563;
    line-height: 1.7;
}

.experience-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    color: #dc2626;
    font-weight: 700;
}

.stat p {
    color: #6b7280;
    font-weight: 500;
}

.about-image {
    display: flex;
    justify-content: center;
}

.shop-placeholder {
    background: #f3f4f6;
    border-radius: 15px;
    padding: 60px 40px;
    text-align: center;
    width: 100%;
    color: #6b7280;
}

.shop-placeholder i {
    font-size: 4rem;
    color: #dc2626;
    margin-bottom: 20px;
}

.shop-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Why Choose Detailed */
.why-choose-detailed {
    padding: 80px 0;
    background: #f8fafc;
}

.why-choose-detailed h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1f2937;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.reason-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    display: flex;
    gap: 20px;
}

.reason-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #fef2f2;
    border-radius: 50%;
    flex-shrink: 0;
}

.reason-icon i {
    font-size: 1.8rem;
    color: #dc2626;
}

.reason-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #1f2937;
}

.reason-content p {
    color: #6b7280;
    line-height: 1.6;
}

/* Mission Section */
.mission-section {
    padding: 80px 0;
}

.mission-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.mission-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #1f2937;
}

.mission-content p {
    font-size: 1.2rem;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 50px;
}

.values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.value {
    text-align: center;
}

.value i {
    font-size: 2.5rem;
    color: #dc2626;
    margin-bottom: 15px;
}

.value h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #1f2937;
}

.value p {
    color: #6b7280;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #1f2937;
}

.contact-info > p {
    color: #6b7280;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #fef2f2;
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.5rem;
    color: #dc2626;
}

.contact-details h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #1f2937;
}

.contact-details p {
    color: #4b5563;
    margin-bottom: 5px;
}

.contact-details a {
    color: #dc2626;
    text-decoration: none;
}

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

.contact-details small {
    color: #9ca3af;
}

.quick-actions {
    display: flex;
    gap: 15px;
    margin: 30px 0;
}

.action-btn {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.action-btn i {
    margin-right: 8px;
}

.social-media {
    margin-top: 40px;
}

.social-media h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #1f2937;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link.facebook {
    background: #1877f2;
    color: white;
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.social-link:hover {
    transform: translateY(-2px);
}

/* Contact Form */
.contact-form-container h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: #1f2937;
}

.contact-form {
    background: #f8fafc;
    padding: 40px;
    border-radius: 15px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #dc2626;
}

.submit-btn {
    background: #dc2626;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    background: #991b1b;
    transform: translateY(-2px);
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: #f8fafc;
}

.map-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #1f2937;
}

.map-container-large {
    background: #e5e7eb;
    border-radius: 15px;
    height: 400px;
    margin-bottom: 30px;
}

.map-placeholder-large {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    color: #6b7280;
    text-align: center;
}

.map-placeholder-large i {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #dc2626;
}

.map-placeholder-large h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.map-directions {
    text-align: center;
    color: #4b5563;
    line-height: 1.6;
}

/* Emergency Contact */
.emergency-contact {
    padding: 60px 0;
    background: #dc2626;
    color: white;
    text-align: center;
}

.emergency-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.emergency-content p {
    margin-bottom: 25px;
    opacity: 0.9;
}

.emergency-btn {
    display: inline-flex;
    align-items: center;
    background: white;
    color: #dc2626;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.emergency-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.emergency-btn i {
    margin-right: 10px;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: #1f2937;
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Footer */
.footer {
    background: #111827;
    color: white;
    padding: 50px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.3rem;
    font-weight: 600;
    background: white;
    padding: 10px;
    border-radius: 5px;
}

.footer-logo i {
    margin-right: 10px;
    color: #dc2626;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #dc2626;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

/* Doorstep Service Styles */
.doorstep-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.delivery-icon {
    display: flex;
    gap: 20px;
    align-items: center;
    font-size: 4rem;
    opacity: 0.8;
}

.delivery-icon .fa-home {
    color: #10b981;
}

.delivery-icon .fa-mobile-alt {
    color: #dc2626;
    animation: bounce 2s infinite;
}

.delivery-icon .fa-tools {
    color: #fbbf24;
}

.doorstep-services {
    padding: 80px 0;
    background: #f8fafc;
}

.section-subtitle {
    text-align: center;
    color: #6b7280;
    font-size: 1.1rem;
    margin-bottom: 50px;
}

.doorstep-card {
    background: white;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.doorstep-card:hover {
    border-color: #dc2626;
    transform: translateY(-5px);
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1f2937;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.step-card {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: #dc2626;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-icon {
    font-size: 3rem;
    color: #dc2626;
    margin: 20px 0;
}

.step-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #1f2937;
}

.step-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Complex Repairs */
.complex-repairs {
    padding: 80px 0;
    background: #f8fafc;
}

.complex-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
}

.complex-text h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #1f2937;
}

.complex-text p {
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 30px;
}

.complex-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #374151;
}

.feature-item i {
    color: #dc2626;
    font-size: 1.2rem;
    width: 20px;
}

.pickup-delivery-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 2.5rem;
    color: #dc2626;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.pickup-delivery-icon .fa-arrow-right {
    color: #10b981;
    font-size: 1.5rem;
}

/* Service Areas */
.service-areas {
    padding: 80px 0;
}

.service-areas h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #1f2937;
}

.service-areas p {
    text-align: center;
    color: #6b7280;
    font-size: 1.1rem;
    margin-bottom: 50px;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.area-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    background: #fef2f2;
    border-radius: 10px;
    color: #374151;
    font-weight: 500;
}

.area-item i {
    color: #dc2626;
}

/* Google Reviews Button */
.google-reviews {
    padding: 60px 0;
    background: #f8fafc;
    text-align: center;
}

.google-reviews h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #1f2937;
}

.google-review-btn {
    display: inline-flex;
    align-items: center;
    background: #4285f4;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
}

.google-review-btn:hover {
    background: #3367d6;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(66, 133, 244, 0.4);
}

.google-review-btn i {
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Offers Page Styles */
.offers-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.offer-icons {
    display: flex;
    gap: 30px;
    align-items: center;
    font-size: 4rem;
}

.offer-icons .fa-percentage {
    color: #dc2626;
    animation: pulse 2s infinite;
}

.offer-icons .fa-gift {
    color: #10b981;
    animation: bounce 2s infinite;
}

.offer-icons .fa-star {
    color: #fbbf24;
    animation: rotate 3s linear infinite;
}

.offers-section {
    padding: 80px 0;
    background: #f8fafc;
}

.offers-loading,
.no-offers {
    text-align: center;
    padding: 60px 20px;
}

.offers-loading i {
    font-size: 3rem;
    color: #dc2626;
    margin-bottom: 20px;
}

.no-offers i {
    font-size: 4rem;
    color: #9ca3af;
    margin-bottom: 20px;
}

.no-offers h3 {
    font-size: 1.8rem;
    color: #374151;
    margin-bottom: 15px;
}

.no-offers p {
    color: #6b7280;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.offer-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.offer-image-container {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    overflow: hidden;
    position: relative;
}

.offer-validity.expired {
    color: #6b7280;
    background: #f3f4f6;
}

/* Admin Header */
.admin-header {
    padding: 100px 0 20px;
    background: #f8fafc;
    margin-bottom: 30px;
    border-bottom: 1px solid #e5e7eb;
}

.admin-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.admin-title {
    flex: 1;
    min-width: 300px;
}

.admin-actions {
    display: flex;
    gap: 15px;
    align-items: center;
    margin: 5px 0;
    padding: 8px 0;
}

.admin-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
}

.admin-btn i {
    font-size: 0.9em;
}

.admin-btn.primary {
    background: #dc2626;
    color: white;
}

.admin-btn.primary:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.2);
}

.admin-btn.secondary {
    background: #f3f4f6;
    color: #1f2937;
    border: 1px solid #d1d5db;
}

.admin-btn.secondary:hover {
    background: #e5e7eb;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Admin Styles */
.admin-login {
    padding: 100px 0;
    background: #f8fafc;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.login-container {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    overflow: hidden;
}

.login-header {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    text-align: center;
    padding: 40px 30px;
}

.login-header i {
    font-size: 3rem;
    margin-bottom: 15px;
}

.login-header h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.login-form {
    padding: 40px 30px;
}

.login-form .form-group {
    margin-bottom: 25px;
}

.login-form label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 8px;
}

.login-form input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.login-form input:focus {
    outline: none;
    border-color: #dc2626;
}

.login-btn {
    width: 100%;
    background: #dc2626;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.login-btn:hover {
    background: #b91c1c;
}

.login-error {
    background: #fef2f2;
    color: #dc2626;
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.login-info {
    background: #f8fafc;
    padding: 30px;
    border-top: 1px solid #e5e7eb;
}

.login-info h4 {
    color: #374151;
    margin-bottom: 15px;
}

.login-info ul {
    list-style: none;
    padding: 0;
}

.login-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #6b7280;
    margin-bottom: 8px;
}

.login-info i {
    color: #10b981;
    width: 16px;
}

/* Admin Dashboard */
.admin-header {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    padding: 40px 0;
}

.admin-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.admin-title h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.admin-title p {
    opacity: 0.9;
    font-size: 1.1rem;
}

.admin-actions {
    display: flex;
    gap: 15px;
}

.admin-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    min-width: 200px;
    text-align: center;
}

.admin-btn.primary {
    background: #10b981;
    color: white;
}

.admin-btn.primary:hover {
    background: #059669;
}

.admin-btn.secondary {
    background: white;
    color: #374151;
    border: 2px solid #e5e7eb;
}

.admin-btn.secondary:hover {
    background: #f3f4f6;
}

.admin-btn.danger {
    background: #dc2626;
    color: white;
}

.admin-btn.danger:hover {
    background: #b91c1c;
}

.admin-content {
    padding: 40px 0;
}

/* Offer Form */
.offer-form-section {
    background: rgba(0,0,0,0.5);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.form-container {
    background: white;
    border-radius: 15px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.form-header {
    background: #f8fafc;
    padding: 20px 30px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.form-header h3 {
    color: #1f2937;
    font-size: 1.4rem;
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #6b7280;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: #f3f4f6;
    color: #374151;
}

.offer-form {
    padding: 30px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
    flex: 1;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #dc2626;
}

.form-group small {
    color: #6b7280;
    font-size: 0.9rem;
    margin-top: 5px;
    display: block;
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.offer-image-preview {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 8px;
    margin: 15px 0;
    display: block;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Offers Management */
.offers-management {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    overflow: hidden;
}

.section-header {
    background: #f8fafc;
    padding: 25px 30px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-header h2 {
    color: #1f2937;
    font-size: 1.6rem;
}

.offers-count {
    background: #dc2626;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.9rem;
}

.admin-loading,
.admin-no-offers {
    text-align: center;
    padding: 60px 30px;
}

.admin-loading i {
    font-size: 3rem;
    color: #dc2626;
    margin-bottom: 20px;
}

.admin-no-offers i {
    font-size: 4rem;
    color: #9ca3af;
    margin-bottom: 20px;
}

.admin-no-offers h3 {
    color: #374151;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.admin-no-offers p {
    color: #6b7280;
    font-size: 1.1rem;
}

.offers-table-container {
    padding: 0;
}

.offers-table {
    width: 100%;
    border-collapse: collapse;
}

.offers-table th,
.offers-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.offers-table th {
    background: #f8fafc;
    font-weight: 600;
    color: #374151;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.offers-table td {
    color: #4b5563;
}

.offer-title-cell {
    font-weight: 500;
    color: #1f2937;
}

.offer-description-cell {
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.offer-validity-cell {
    white-space: nowrap;
    font-family: monospace;
    color: #1f2937;
}

.offer-validity-cell.expired {
    color: #6b7280;
}

.offer-validity-cell.active {
    color: #10b981;
    font-weight: 500;
}

.offer-actions {
    display: flex;
    gap: 10px;
}

.action-btn {
    padding: 6px 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.action-btn.edit {
    background: #fbbf24;
    color: white;
}

.action-btn.edit:hover {
    background: #f59e0b;
}

.action-btn.delete {
    background: #dc2626;
    color: white;
}

.action-btn.delete:hover {
    background: #b91c1c;
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background: white;
    border-radius: 15px;
    max-width: 500px;
    width: 100%;
}

.modal-header {
    background: #f8fafc;
    padding: 20px 30px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    color: #1f2937;
    font-size: 1.3rem;
}

.modal-body {
    padding: 30px;
}

.modal-body p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 15px;
}

.modal-body .warning {
    color: #dc2626;
    font-weight: 500;
    font-size: 0.9rem;
}

.modal-actions {
    padding: 20px 30px;
    border-top: 1px solid #e5e7eb;
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

/* Admin Message */
.admin-message {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    overflow: hidden;
    min-width: 300px;
}

.message-content {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.admin-message.success {
    border-left: 4px solid #10b981;
}

.admin-message.success #message-icon {
    color: #10b981;
}

.admin-message.error {
    border-left: 4px solid #dc2626;
}

.admin-message.error #message-icon {
    color: #dc2626;
}

/* Animations */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .location-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .quick-contact,
    .quick-actions,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .experience-stats {
        justify-content: center;
        gap: 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .services-grid,
    .features-grid,
    .reasons-grid {
        grid-template-columns: 1fr;
    }

    .service-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }

    .reason-card {
        flex-direction: column;
        text-align: center;
    }

    .values {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

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

    .page-header {
        padding: 100px 0 50px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .quick-services,
    .location-contact,
    .why-choose,
    .services-detailed,
    .about-content,
    .why-choose-detailed,
    .mission-section,
    .contact-section,
    .map-section {
        padding: 60px 0;
    }

    .service-card,
    .contact-form {
        padding: 30px 20px;
    }

    .service-item {
        padding: 30px 20px;
    }

    .reason-card {
        padding: 25px 20px;
    }

    /* Doorstep Service Mobile Styles */
    .delivery-icon {
        font-size: 2.5rem;
        gap: 15px;
    }

    .complex-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .pickup-delivery-icon {
        font-size: 2rem;
        padding: 30px 20px;
        gap: 10px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .step-card {
        padding: 30px 15px;
    }

    .areas-grid {
        grid-template-columns: 1fr;
    }

    .google-review-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }

    /* Offers Page Mobile Styles */
    .offers-visual .offer-icons {
        font-size: 2.5rem;
        gap: 15px;
    }

    .offers-grid {
        grid-template-columns: 1fr;
    }

    /* Admin Mobile Styles */
    .admin-actions {
        flex-direction: column;
        gap: 10px;
    }

    .admin-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .offers-table-container {
        overflow-x: auto;
    }

    .offers-table {
        min-width: 600px;
    }

    .form-row {
        flex-direction: column;
    }

    .modal-content {
        margin: 10% 5%;
        max-width: none;
    }
}
