/* Base Styles */
:root {
    --primary: #FF6B35;
    --secondary: #D64045;
    --black: #000000;
    --white: #FFFFFF;
    --gray: #2E2E2E;
    --light-gray: #F5F5F5;
    --dark-orange: #E05E26;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--gray);
    background-color: var(--white);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: inherit;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--dark-orange);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: #C03940;
    transform: translateY(-2px);
}

.btn-light {
    background-color: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-light:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-dark {
    background-color: var(--gray);
    color: var(--white);
}

.btn-dark:hover {
    background-color: var(--black);
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
}

.nav-list {
    display: flex;
    list-style: none;
}

.nav-list li {
    margin-left: 30px;
}

.nav-list a {
    font-weight: 600;
    color: var(--gray);
    transition: color 0.3s ease;
}

.nav-list a:hover {
    color: var(--primary);
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--gray);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, rgba(255,107,53,0.1) 0%, rgba(214,64,69,0.1) 100%);
}

.hero .container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1;
    min-width: 300px;
    padding-right: 20px;
}

.hero h1 {
    font-size: 2.5rem;
    color: var(--black);
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--gray);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.hero-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: var(--white);
}

.features h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: var(--black);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    color: var(--black);
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.how-it-works h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: var(--black);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    counter-reset: step-counter;
}

.step {
    position: relative;
    padding: 30px;
    background-color: var(--white);
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--secondary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 1.2rem;
    color: var(--black);
}

/* Call to Action */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    text-align: center;
}

.cta h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.app-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background-color: var(--gray);
    color: var(--white);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li i {
    margin-right: 10px;
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-list {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }
    
    .nav-list.active {
        left: 0;
    }
    
    .nav-list li {
        margin: 15px 0;
    }
    
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.feature-card, .step {
    animation: fadeIn 0.5s ease forwards;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.step:nth-child(1) { animation-delay: 0.1s; }
.step:nth-child(2) { animation-delay: 0.2s; }
.step:nth-child(3) { animation-delay: 0.3s; }
.step:nth-child(4) { animation-delay: 0.4s; }

/* About Page Styles */
.about-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/about-hero.jpg') center/cover no-repeat;
    color: var(--white);
    text-align: center;
    padding: 150px 0 100px;
    margin-top: 80px;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2rem;
    color: var(--black);
}

.divider {
    width: 80px;
    height: 3px;
    background: var(--primary);
    margin: 15px auto;
}

.section-header p {
    color: var(--gray);
    font-size: 1.1rem;
}

/* Our Story */
.our-story {
    padding: 80px 0;
    background-color: var(--white);
}

.story-content {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.story-image {
    flex: 1;
    min-width: 300px;
}

.story-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.story-text {
    flex: 1;
    min-width: 300px;
}

.story-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Mission & Values */
.mission-values {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.value-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
}

.value-card h3 {
    color: var(--black);
    margin-bottom: 15px;
}

/* Our Team */
.our-team {
    padding: 80px 0;
    background-color: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.team-member {
    text-align: center;
    background-color: var(--light-gray);
    padding: 30px 20px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-image {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.social-links {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 107, 53, 0.8);
    padding: 10px;
    display: flex;
    justify-content: center;
    gap: 10px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.team-member:hover .social-links {
    transform: translateY(0);
}

.social-links a {
    color: var(--white);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
}

.team-member h3 {
    color: var(--black);
    margin-bottom: 5px;
}

.team-member p {
    color: var(--primary);
    font-weight: 600;
}

.team-cta {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.team-cta p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Service Area */
.service-area {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.area-content {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.area-map {
    flex: 1;
    min-width: 300px;
}

.area-map img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.area-list {
    flex: 1;
    min-width: 300px;
}

.area-list h3 {
    color: var(--black);
    margin-bottom: 20px;
}

.area-list ul {
    list-style: none;
    margin-bottom: 20px;
}

.area-list ul li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.area-list ul li i {
    color: var(--primary);
    margin-right: 10px;
}

.area-list a {
    color: var(--primary);
    font-weight: 600;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .about-hero {
        padding: 120px 0 80px;
    }
    
    .about-hero h1 {
        font-size: 2.2rem;
    }
    
    .story-content, .area-content {
        flex-direction: column;
    }
    
    .story-image, .story-text, .area-map, .area-list {
        width: 100%;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* Services Page Styles */
.services-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/services-hero.jpg') center/cover no-repeat;
    color: var(--white);
    text-align: center;
    padding: 150px 0 100px;
    margin-top: 80px;
}

.services-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.services-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Tabs */
.services-tabs {
    padding: 80px 0;
    background-color: var(--white);
}

.tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    border-bottom: 2px solid var(--light-gray);
}

.tab-btn {
    padding: 15px 30px;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray);
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.tab-btn:hover {
    color: var(--primary);
}

.tab-btn.active {
    color: var(--primary);
}

.tab-btn.active::after {
    width: 100%;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.service-intro {
    text-align: center;
    margin-bottom: 50px;
}

.service-intro h2 {
    font-size: 2rem;
    color: var(--black);
}

.service-intro p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.service-card {
    background-color: var(--light-gray);
    border-radius: 10px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-card.featured {
    border: 2px solid var(--primary);
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--black);
    margin-bottom: 15px;
}

.service-card p {
    margin-bottom: 20px;
    min-height: 60px;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.service-features i {
    color: var(--primary);
    margin-right: 10px;
}

.btn-outline {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    border: 2px solid var(--primary);
    color: var(--primary);
    background-color: transparent;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* Business Benefits */
.business-benefits {
    background-color: var(--light-gray);
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 60px;
}

.business-benefits h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 40px;
    color: var(--black);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.benefit {
    text-align: center;
    padding: 20px;
}

.benefit i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.benefit h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--black);
}

/* How To Order */
.how-to-order {
    background-color: var(--light-gray);
    padding: 40px;
    border-radius: 10px;
}

.how-to-order h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 40px;
    color: var(--black);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.2rem;
    color: var(--black);
    margin-bottom: 5px;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background-color: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    background-color: var(--light-gray);
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.featured {
    border: 2px solid var(--primary);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: var(--primary);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.pricing-card h3 {
    font-size: 1.5rem;
    color: var(--black);
    margin-bottom: 20px;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.price span {
    display: block;
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray);
    margin-top: 5px;
}

.price-features {
    list-style: none;
    margin-bottom: 30px;
}

.price-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.price-features i {
    color: var(--primary);
    margin-right: 10px;
}

.pricing-note {
    text-align: center;
    margin-top: 30px;
    font-size: 0.9rem;
    color: var(--gray);
}

.pricing-note i {
    color: var(--primary);
    margin-right: 5px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .services-hero {
        padding: 120px 0 80px;
    }
    
    .services-hero h1 {
        font-size: 2.2rem;
    }
    
    .tabs {
        flex-direction: column;
        border-bottom: none;
    }
    
    .tab-btn {
        border-bottom: 1px solid var(--light-gray);
    }
    
    .tab-btn::after {
        display: none;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .business-benefits, .how-to-order {
        padding: 30px 20px;
    }
}

/* Gallery Page Styles */
.gallery-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/gallery-hero.jpg') center/cover no-repeat;
    color: var(--white);
    text-align: center;
    padding: 150px 0 100px;
    margin-top: 80px;
}

.gallery-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.gallery-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Gallery Filters */
.gallery-filters {
    padding: 40px 0;
    background-color: var(--white);
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.filter-btn {
    padding: 10px 20px;
    background: none;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background-color: var(--primary);
    color: var(--white);
}

.filter-btn.active {
    background-color: var(--primary);
    color: var(--white);
}

/* Gallery Grid */
.gallery-grid-section {
    padding: 60px 0 80px;
    background-color: var(--light-gray);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 250px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 107, 53, 0.8);
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-overlay i {
    font-size: 2rem;
    margin-bottom: 10px;
}

.gallery-overlay h3 {
    font-size: 1.3rem;
    text-align: center;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-cta {
    text-align: center;
    margin-top: 50px;
}

.gallery-cta p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.gallery-cta .social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Lightgallery Overrides */
.lg-outer .lg-thumb-item.active, .lg-outer .lg-thumb-item:hover {
    border-color: var(--primary);
}

.lg-outer .lg-toast {
    background-color: var(--primary);
}

.lg-outer .lg-img-wrap {
    padding: 15px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .gallery-hero {
        padding: 120px 0 80px;
    }
    
    .gallery-hero h1 {
        font-size: 2.2rem;
    }
    
    .filter-buttons {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .gallery-item {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/contact-hero.jpg') center/cover no-repeat;
    color: var(--white);
    text-align: center;
    padding: 150px 0 100px;
    margin-top: 80px;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.contact-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Main Section */
.contact-main {
    padding: 80px 0;
    background-color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.contact-form {
    background-color: var(--light-gray);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form h2 {
    font-size: 1.8rem;
    color: var(--black);
    margin-bottom: 30px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--black);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-success {
    display: none;
    text-align: center;
    padding: 20px;
    background-color: #d4edda;
    color: #155724;
    border-radius: 5px;
    margin-top: 20px;
}

.form-success i {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #28a745;
}

.form-success p {
    font-size: 1.1rem;
    margin-bottom: 0;
}

/* Contact Info */
.contact-info {
    padding: 0 20px;
}

.contact-info h2 {
    font-size: 1.8rem;
    color: var(--black);
    margin-bottom: 30px;
    text-align: center;
}

.info-card {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 1.3rem;
    color: var(--black);
    margin-bottom: 10px;
}

.info-content p {
    margin-bottom: 5px;
}

.info-content a {
    color: var(--primary);
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: var(--secondary);
}

.social-links {
    margin-top: 40px;
}

.social-links h3 {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--black);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--secondary);
    transform: translateY(-3px);
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.map-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--black);
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: var(--white);
}

.faq-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--black);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background-color: var(--light-gray);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-size: 1.2rem;
    color: var(--black);
    margin-bottom: 0;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
    padding-bottom: 20px;
}

.faq-answer a {
    color: var(--primary);
    font-weight: 600;
}

.faq-item.active .faq-question {
    background-color: var(--primary);
    color: var(--white);
}

.faq-item.active .faq-question h3 {
    color: var(--white);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--white);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 20px;
}

.faq-cta {
    text-align: center;
    margin-top: 40px;
    font-size: 1.1rem;
}

.faq-cta a {
    color: var(--primary);
    font-weight: 600;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .contact-hero {
        padding: 120px 0 80px;
    }
    
    .contact-hero h1 {
        font-size: 2.2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .contact-info {
        padding: 0;
    }
    
    .faq-question {
        padding: 15px;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .info-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .info-content {
        text-align: center;
    }
}

/* Fix for floating social links */
.social-links {
    position: relative; /* Remove any absolute positioning */
    margin-top: 20px; /* Add proper spacing */
    text-align: center; /* Center the links */
    width: 100%; /* Ensure full width */
}

.social-links a {
    display: inline-block; /* Make links inline but allow sizing */
    margin: 0 10px; /* Add spacing between icons */
    text-decoration: none; /* Remove underlines */
}

/* Specific fix for contact page social links */
.contact-info .social-links {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

/* Fix for footer social links */
.footer .social-links {
    margin-top: 15px;
}

.footer .social-links a {
    margin: 0 5px;
    font-size: 1.2rem;
}

/* Pricing Table Styles */
.pricing-table-container {
    margin: 2rem 0;
    overflow-x: auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    font-size: 0.9rem;
}

.pricing-table th {
    background: linear-gradient(135deg, #2c5aa0, #1e3a8a);
    color: white;
    padding: 1rem 0.75rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-table th:first-child {
    border-top-left-radius: 10px;
}

.pricing-table th:last-child {
    border-top-right-radius: 10px;
}

.pricing-table td {
    padding: 0.75rem;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.pricing-table tbody tr:nth-child(even) {
    background-color: #f8fafc;
}

.pricing-table tbody tr:nth-child(odd) {
    background-color: #ffffff;
}

.pricing-table tbody tr:hover {
    background-color: #f1f5f9;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.pricing-table tbody tr:hover td {
    color: #1e40af;
}

.pricing-table td:first-child {
    font-weight: 600;
    color: #1e3a8a;
    text-align: left;
}

.pricing-table td:nth-child(2) {
    color: #64748b;
    font-style: italic;
}

.pricing-table td:nth-child(3),
.pricing-table td:nth-child(4) {
    font-weight: 700;
    color: #059669;
    font-size: 0.95rem;
}

/* Highlight popular distance ranges */
.pricing-table tbody tr:nth-child(1) td:nth-child(3),
.pricing-table tbody tr:nth-child(1) td:nth-child(4),
.pricing-table tbody tr:nth-child(2) td:nth-child(3),
.pricing-table tbody tr:nth-child(2) td:nth-child(4) {
    background-color: #d1fae5;
    color: #065f46;
    position: relative;
}

.pricing-table tbody tr:nth-child(1) td:nth-child(3)::after,
.pricing-table tbody tr:nth-child(1) td:nth-child(4)::after,
.pricing-table tbody tr:nth-child(2) td:nth-child(3)::after,
.pricing-table tbody tr:nth-child(2) td:nth-child(4)::after {
    content: "ðŸ”¥";
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .pricing-table {
        font-size: 0.8rem;
    }
    
    .pricing-table th {
        padding: 0.75rem 0.5rem;
        font-size: 0.75rem;
    }
    
    .pricing-table td {
        padding: 0.6rem 0.5rem;
    }
    
    .pricing-table-container {
        margin: 1rem -1rem;
        border-radius: 0;
    }
}

@media (max-width: 480px) {
    .pricing-table {
        font-size: 0.75rem;
    }
    
    .pricing-table th {
        padding: 0.5rem 0.25rem;
        font-size: 0.7rem;
    }
    
    .pricing-table td {
        padding: 0.5rem 0.25rem;
    }
    
    .pricing-table td:nth-child(3),
    .pricing-table td:nth-child(4) {
        font-size: 0.8rem;
    }
}

/* Pricing Notes Styling */
.pricing-notes {
    background: #f0f9ff;
    border-left: 4px solid #3b82f6;
    padding: 1.5rem;
    margin-top: 2rem;
    border-radius: 5px;
}

.pricing-notes p {
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 0.5rem;
}

.pricing-notes ul {
    list-style-type: none;
    padding-left: 0;
}

.pricing-notes li {
    padding: 0.25rem 0;
    color: #475569;
    position: relative;
    padding-left: 1.5rem;
}

.pricing-notes li::before {
    content: "â€¢";
    color: #3b82f6;
    font-weight: bold;
    position: absolute;
    left: 0.5rem;
}

/* Section Header Styling */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 1rem;
    font-weight: 700;
}

.divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #1e40af);
    margin: 0 auto 1.5rem;
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* Additional styling for the new sections */
.what-we-deliver {
    background: #f8fafc;
    padding: 4rem 0;
}

.delivery-categories {
    margin-top: 2rem;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.category-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid #e2e8f0;
}

.category-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #3b82f6;
}

.category-item i {
    font-size: 2rem;
    color: #3b82f6;
    margin-bottom: 1rem;
    display: block;
}

.category-item span {
    font-weight: 600;
    color: #1e293b;
    font-size: 0.95rem;
}

/* Participating Outlets Styling */
.participating-outlets {
    padding: 4rem 0;
}

.outlets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    align-items: center;
}

.outlet-logo {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid #f1f5f9;
}

.outlet-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.outlet-logo img {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.outlet-logo:hover img {
    filter: grayscale(0%);
}

/* Gallery Styles */
.gallery-hero {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.gallery-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.gallery-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.gallery-content {
    padding: 4rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem 1.5rem 1.5rem;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-text h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.gallery-text p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

/* Gallery Categories */
.gallery-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.category-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #f8fafc;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 2px solid #e2e8f0;
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: #3b82f6;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.category-icon i {
    font-size: 2rem;
    color: white;
}

.category-card h3 {
    font-size: 1.3rem;
    color: #1e3a8a;
    margin-bottom: 1rem;
    font-weight: 600;
}

.category-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Gallery CTA */
.gallery-cta {
    text-align: center;
    background: #f0f9ff;
    padding: 3rem 2rem;
    border-radius: 15px;
    margin: 4rem 0;
    border-left: 4px solid #3b82f6;
}

.gallery-cta h3 {
    color: #1e3a8a;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.gallery-cta p {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.gallery-cta .social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Lightgallery Customization */
.lg-backdrop {
    background-color: rgba(0, 0, 0, 0.9);
}

.lg-outer .lg-thumb-item.active, 
.lg-outer .lg-thumb-item:hover {
    border-color: #3b82f6;
}

.lg-actions .lg-next, 
.lg-actions .lg-prev {
    background-color: rgba(59, 130, 246, 0.8);
    border-radius: 50%;
}

.lg-actions .lg-next:hover, 
.lg-actions .lg-prev:hover {
    background-color: #3b82f6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .gallery-hero h1 {
        font-size: 2.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .gallery-categories {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-cta .social-links {
        flex-direction: column;
        align-items: center;
    }
    
    .gallery-cta .social-links .btn {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .gallery-hero {
        padding: 3rem 0;
    }
    
    .gallery-hero h1 {
        font-size: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .category-card {
        padding: 1.5rem 1rem;
    }
    
    .gallery-cta {
        padding: 2rem 1rem;
        margin: 3rem 0;
    }
}

/* About Section Styles */
.about {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content h2 {
    font-size: 2.5rem;
    color: var(--black);
    margin-bottom: 40px;
    position: relative;
}

.about-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary);
}

.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.mission, .vision {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.mission:hover, .vision:hover {
    transform: translateY(-5px);
}

.mission h3, .vision h3 {
    color: var(--primary);
    font-size: 1.4rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.mission h3 i, .vision h3 i {
    font-size: 1.2rem;
}

.mission p, .vision p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--gray);
}

.values {
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.values h3 {
    font-size: 1.8rem;
    color: var(--black);
    margin-bottom: 25px;
    text-align: center;
}

.values ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 500px;
    margin: 0 auto;
}

.values li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    color: var(--gray);
    padding: 10px;
    transition: color 0.3s ease;
}

.values li:hover {
    color: var(--primary);
}

.values li i {
    color: var(--primary);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.values li:hover i {
    transform: scale(1.2);
}

/* Responsive Styles for About Section */
@media (max-width: 768px) {
    .about {
        padding: 60px 0;
    }
    
    .about-content h2 {
        font-size: 2rem;
    }
    
    .mission-vision {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .mission, .vision {
        padding: 25px;
    }
    
    .values {
        padding: 30px 20px;
    }
    
    .values ul {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .values li {
        font-size: 1rem;
        justify-content: center;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .about-content h2 {
        font-size: 1.8rem;
    }
    
    .mission h3, .vision h3 {
        font-size: 1.2rem;
        flex-direction: column;
        gap: 5px;
    }
    
    .values h3 {
        font-size: 1.5rem;
    }
}

/* Service Areas Section Styles */
.service-areas {
    padding: 80px 0;
    background-color: var(--white);
}

.areas-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.areas-list {
    padding: 30px;
}

.areas-list ul {
    list-style: none;
    margin-bottom: 30px;
}

.areas-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 15px;
    padding: 10px 0;
    border-bottom: 1px solid var(--light-gray);
    transition: all 0.3s ease;
}

.areas-list li:hover {
    color: var(--primary);
    transform: translateX(10px);
}

.areas-list li i {
    color: var(--primary);
    font-size: 1.3rem;
    width: 25px;
    text-align: center;
    transition: transform 0.3s ease;
}

.areas-list li:hover i {
    transform: scale(1.2);
}

.coming-soon {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

.coming-soon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.coming-soon i {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

.coming-soon p {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    position: relative;
    z-index: 1;
}

.areas-map {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.areas-map:hover {
    transform: translateY(-5px);
}

.areas-map img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.areas-map:hover img {
    transform: scale(1.05);
}

.areas-map::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,107,53,0.1), rgba(214,64,69,0.1));
    z-index: 1;
    pointer-events: none;
}

/* Service Areas Animation */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.service-areas .section-header h2 {
    animation: pulse 2s ease-in-out infinite;
}

/* Responsive Styles for Service Areas */
@media (max-width: 968px) {
    .areas-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .areas-list {
        order: 2;
        text-align: center;
    }
    
    .areas-map {
        order: 1;
    }
    
    .areas-list li {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .service-areas {
        padding: 60px 0;
    }
    
    .areas-list {
        padding: 20px;
    }
    
    .areas-list li {
        font-size: 1.1rem;
    }
    
    .coming-soon {
        padding: 20px;
    }
    
    .coming-soon p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .areas-list li {
        font-size: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 8px;
        padding: 15px 0;
    }
    
    .coming-soon {
        padding: 15px;
    }
    
    .coming-soon p {
        font-size: 1rem;
    }
    
    .coming-soon i {
        font-size: 1.5rem;
    }
}

/* Additional styling for the map overlay effect */
.areas-map::after {
    content: 'Service Area';
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 2;
}

/* Hover effect for the entire service areas section */
.service-areas {
    position: relative;
}

.service-areas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-areas:hover::before {
    opacity: 1;
}

/* Coming Soon Section Styles */
.coming-soon {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.coming-soon::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" fill="none" stroke="%23FF6B35" stroke-width="0.5" opacity="0.1"><path d="M0 0h100v100H0z"/><circle cx="50" cy="50" r="20"/><path d="M30 30l40 40M70 30L30 70"/></svg>');
    animation: floatBackground 20s linear infinite;
}

@keyframes floatBackground {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-50px, -50px); }
}

.coming-soon-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.coming-soon-text h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.coming-soon-text h2 i {
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.coming-soon-text > p {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 30px;
    line-height: 1.6;
}

.app-features {
    list-style: none;
    margin-bottom: 30px;
}

.app-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 15px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.app-features li:hover {
    transform: translateX(10px);
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.app-features li i {
    color: var(--primary);
    font-size: 1.2rem;
}

.app-details {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--primary);
}

.app-details h4 {
    color: var(--black);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.app-details ul {
    list-style: none;
}

.app-details li {
    margin-bottom: 10px;
    color: var(--gray);
    position: relative;
    padding-left: 20px;
}

.app-details li::before {
    content: '▸';
    color: var(--primary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.partnership-call {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
}

.partnership-call h4 {
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.partners-grid span {
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 15px;
    border-radius: 25px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.partners-grid span:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.coming-soon-image {
    position: relative;
    text-align: center;
}

.coming-soon-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s ease;
}

.coming-soon-image:hover img {
    transform: scale(1.05) rotate(2deg);
}

.mockup-label {
    background: var(--primary);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    margin-top: 20px;
    display: inline-block;
    animation: pulse 2s infinite;
}

/* WhatsApp Group Section Styles */
.whatsapp-group {
    padding: 80px 0;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.whatsapp-group::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="none" stroke="%23ffffff" stroke-width="0.3" opacity="0.1"><path d="M0 0h100v100H0z"/><circle cx="50" cy="50" r="40"/><path d="M35 50l15 15 25-25"/></svg>');
    animation: rotateBackground 30s linear infinite;
}

@keyframes rotateBackground {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.whatsapp-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.whatsapp-icon {
    font-size: 8rem;
    animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.whatsapp-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.whatsapp-text ul {
    list-style: none;
    margin-bottom: 25px;
}

.whatsapp-text li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    margin-bottom: 12px;
    padding: 8px 0;
}

.whatsapp-text li i {
    color: #25D366;
    background: var(--white);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.whatsapp-text p {
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.whatsapp-text strong {
    color: #25D366;
    background: var(--white);
    padding: 2px 8px;
    border-radius: 5px;
    margin: 0 5px;
}

/* Responsive Styles */
@media (max-width: 968px) {
    .coming-soon-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .coming-soon-text h2 {
        justify-content: center;
    }
    
    .whatsapp-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .whatsapp-icon {
        font-size: 6rem;
        order: -1;
    }
}

@media (max-width: 768px) {
    .coming-soon, .whatsapp-group {
        padding: 60px 0;
    }
    
    .coming-soon-text h2 {
        font-size: 2rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .app-features li {
        justify-content: center;
        text-align: left;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-text h2 {
        font-size: 2rem;
    }
    
    .whatsapp-text li {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .coming-soon-text h2 {
        font-size: 1.8rem;
    }
    
    .app-details, .partnership-call {
        padding: 20px;
    }
    
    .whatsapp-text h2 {
        font-size: 1.8rem;
    }
    
    .whatsapp-text p {
        font-size: 1.1rem;
        padding: 15px;
    }
    
    .whatsapp-icon {
        font-size: 4rem;
    }
}

/* Additional hover effects */
.coming-soon-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,107,53,0.1), rgba(214,64,69,0.1));
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.coming-soon-image:hover::after {
    opacity: 1;
}

.whatsapp-group .container {
    position: relative;
    z-index: 2;
}