/* ============================================
   MODERN HOMEPAGE STYLES
   ============================================ */

/* Hero Enhancements */
.hero-particles {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
    opacity: 0.1;
}

.animate-fade-in {
    animation: fadeIn 1s ease forwards;
}

.animate-fade-in-up {
    animation: fadeInUp 1.2s ease forwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-icon {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.btn-primary:hover .btn-icon {
    transform: translateX(5px);
}

.btn-full {
    width: 100%;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-icon {
    width: 24px;
    height: 24px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-weight: bold;
    font-size: 14px;
}

.trust-text {
    color: var(--text-light);
    font-size: 15px;
    font-weight: 500;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    font-size: 24px;
    color: var(--primary);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* About Preview Section */
.about-preview-section {
    background: var(--bg-dark);
}

.about-preview-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 80px;
    align-items: center;
}

.image-card {
    padding: 40px;
    position: relative;
    text-align: center;
}

.master-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary);
    color: #000;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
}

.image-content {
    margin: 30px 0;
}

.profile-icon {
    font-size: 100px;
    margin-bottom: 20px;
}

.image-content h3 {
    font-size: 28px;
    margin-bottom: 8px;
}

.role {
    color: var(--primary);
    font-size: 16px;
    font-weight: 600;
}

.experience-bar {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
    position: relative;
}

.experience-fill {
    height: 6px;
    background: linear-gradient(90deg, var(--primary), transparent);
    border-radius: 3px;
    margin-bottom: 10px;
}

.experience-text {
    font-size: 14px;
    color: var(--primary);
    font-weight: 700;
}

/* Section Labels */
.section-label {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.label-line {
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.label-text {
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title {
    font-size: 42px;
    margin-bottom: 25px;
    line-height: 1.2;
}

.section-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 35px;
}

/* Features List */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 35px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icon {
    width: 28px;
    height: 28px;
    background: rgba(203, 161, 83, 0.15);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: bold;
    flex-shrink: 0;
}

.feature-text {
    font-size: 16px;
    color: var(--text-light);
}

.btn-text {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-text:hover {
    gap: 15px;
}

.btn-text .arrow {
    transition: transform 0.3s ease;
}

.btn-text:hover .arrow {
    transform: translateX(5px);
}

/* Services Showcase */
.services-showcase {
    background: var(--bg-darker);
}

.section-header {
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    margin-top: 15px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card-modern {
    padding: 40px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card-modern::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card-modern:hover::before {
    transform: scaleX(1);
}

.service-card-modern:hover {
    transform: translateY(-10px);
    border-color: rgba(203, 161, 83, 0.4);
}

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(203, 161, 83, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.service-card-modern:hover .service-icon-wrapper {
    background: rgba(203, 161, 83, 0.2);
    transform: scale(1.1);
}

.service-icon {
    font-size: 40px;
}

.service-card-modern h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.service-card-modern p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.service-link a {
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-link a:hover {
    color: var(--primary);
}

.service-card-modern.featured {
    background: linear-gradient(135deg, rgba(203,161,83,0.08), transparent);
    border: 2px solid rgba(203, 161, 83, 0.3);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary);
    color: #000;
    padding: 6px 14px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-icon {
    background: rgba(203, 161, 83, 0.2);
}

/* Why Choose Section */
.why-choose-section {
    background: var(--bg-dark);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.why-card {
    padding: 50px 40px;
    text-align: center;
    transition: all 0.4s ease;
}

.why-card:hover {
    transform: translateY(-10px);
    border-color: rgba(203, 161, 83, 0.4);
}

.why-number {
    font-size: 48px;
    font-weight: 800;
    color: rgba(203, 161, 83, 0.2);
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
}

.why-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary);
}

.why-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-muted);
}

/* CTA Section Home */
.cta-section-home {
    background: var(--bg-darker);
}

.cta-content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.cta-content h2 {
    font-size: 38px;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    color: var(--text-muted);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-buttons-group {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   SERVICES PAGE STYLES
   ============================================ */

.services-hero {
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    position: relative;
    background: url('https://images.unsplash.com/photo-1615873968403-89e068629265?q=80&w=2032') center/cover;
    background-attachment: fixed;
}

.services-hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.75) 100%);
    z-index: 1;
}

.services-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

/* Service Detail Cards */
.services-main {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-detail-card {
    padding: 50px;
    transition: all 0.4s ease;
}

.service-detail-card:hover {
    transform: translateX(10px);
    border-color: rgba(203, 161, 83, 0.4);
}

.service-detail-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.service-detail-icon {
    width: 100px;
    height: 100px;
    background: rgba(203, 161, 83, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    flex-shrink: 0;
}

.service-detail-title h2 {
    font-size: 32px;
    margin-bottom: 8px;
}

.service-category {
    color: var(--text-muted);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.service-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.feature-tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 14px;
    color: var(--text-light);
}

.feature-tag.featured {
    background: rgba(203, 161, 83, 0.1);
    border-color: rgba(203, 161, 83, 0.3);
    color: var(--primary);
}

.featured-service {
    background: linear-gradient(135deg, rgba(203,161,83,0.08), transparent);
    border: 2px solid rgba(203, 161, 83, 0.3);
    position: relative;
}

.specialty-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: var(--primary);
    color: #000;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Additional Services Section */
.additional-services-section {
    background: var(--bg-darker);
}

.additional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.additional-card {
    padding: 40px;
    text-align: center;
    transition: all 0.4s ease;
}

.additional-card:hover {
    transform: translateY(-10px);
    border-color: rgba(203, 161, 83, 0.4);
}

.additional-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.additional-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.additional-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
}

/* Process Timeline */
.process-section {
    background: var(--bg-dark);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.process-step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    margin: 0 auto 25px;
    font-family: 'Playfair Display', serif;
}

.step-content {
    padding: 30px;
}

.step-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.step-content p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

.contact-hero {
    height: 45vh;
    min-height: 350px;
    display: flex;
    align-items: center;
    position: relative;
    background: url('https://images.unsplash.com/photo-1423666639041-f56000c27a9a?q=80&w=2074') center/cover;
    background-attachment: fixed;
}

.contact-hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.75) 100%);
    z-index: 1;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

/* Contact Layout */
.contact-main {
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: start;
}

/* Form Section */
.contact-form-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-header h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.form-header p {
    font-size: 16px;
    color: var(--text-muted);
}

.modern-form {
    padding: 50px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-light);
    font-size: 15px;
}

.label-icon {
    font-size: 18px;
}

.modern-form input,
.modern-form textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text-light);
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
}

.modern-form input:focus,
.modern-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

.modern-form textarea {
    resize: vertical;
    min-height: 150px;
}

/* Alert Styles */
.alert {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 25px;
}

.alert-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.alert-success {
    background: rgba(34, 197, 94, 0.1);
    border: 2px solid rgba(34, 197, 94, 0.3);
}

.alert-success .alert-icon {
    background: #22c55e;
    color: #000;
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid rgba(239, 68, 68, 0.3);
}

.alert-error .alert-icon {
    background: #ef4444;
    color: #fff;
}

.alert-content strong {
    display: block;
    margin-bottom: 5px;
    font-size: 16px;
}

.alert-content p {
    font-size: 14px;
    margin: 0;
}

/* Contact Info Sidebar */
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: sticky;
    top: 120px;
}

.contact-card {
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: rgba(203, 161, 83, 0.4);
}

.contact-card-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.contact-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary);
}

.contact-card a {
    color: var(--text-light);
    font-size: 16px;
    font-weight: 500;
}

.contact-card a:hover {
    color: var(--primary);
}

.card-note {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 8px;
}

/* Working Hours */
.working-hours {
    padding: 30px;
}

.working-hours h3 {
    font-size: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--glass-border);
    font-size: 14px;
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-time {
    color: var(--primary);
    font-weight: 600;
}

.hours-item.inactive {
    opacity: 0.5;
}

/* WhatsApp CTA */
.whatsapp-cta {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: rgba(37, 211, 102, 0.05);
    border: 2px solid rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
}

.whatsapp-cta:hover {
    background: rgba(37, 211, 102, 0.1);
    transform: translateY(-5px);
}

.whatsapp-icon {
    font-size: 40px;
    flex-shrink: 0;
}

.whatsapp-content h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #25D366;
}

.whatsapp-content p {
    font-size: 13px;
    color: var(--text-muted);
}

.whatsapp-arrow {
    margin-left: auto;
    font-size: 24px;
    color: #25D366;
}

/* Map Section */
.map-section {
    padding: 0;
    margin-top: 80px;
}

.map-placeholder {
    height: 400px;
    background: linear-gradient(135deg, rgba(203,161,83,0.05), transparent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-content {
    text-align: center;
}

.map-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.map-content h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.map-content p {
    font-size: 16px;
    color: var(--text-muted);
}

/* ============================================
   PROJECTS PAGE STYLES
   ============================================ */

.projects-hero {
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    position: relative;
    background: url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?q=80&w=2031') center/cover;
    background-attachment: fixed;
}

.projects-hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.75) 100%);
    z-index: 1;
}

.projects-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

/* Coming Soon */
.projects-main {
    min-height: 60vh;
}

.projects-main.gallery-section {
    display: block;
    min-height: auto;
}

.coming-soon-wrapper {
    width: 100%;
}

.coming-soon-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 60px;
    text-align: center;
}

.coming-soon-icon {
    font-size: 80px;
    margin-bottom: 30px;
}

.coming-soon-card h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.coming-soon-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Project Categories */
.project-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-bottom: 50px;
}

.category-tag {
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.category-tag:hover {
    transform: translateY(-5px);
    border-color: rgba(203, 161, 83, 0.4);
}

.category-icon {
    font-size: 24px;
}

/* Projects Stats */
.projects-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.stat-box {
    padding: 30px;
    text-align: center;
}

.stat-value {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Delivery Section */
.delivery-section {
    background: var(--bg-darker);
}

.delivery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.delivery-card {
    padding: 40px;
    text-align: center;
    transition: all 0.4s ease;
}

.delivery-card:hover {
    transform: translateY(-10px);
    border-color: rgba(203, 161, 83, 0.4);
}

.delivery-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.delivery-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.delivery-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 1024px) {
    .about-preview-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .contact-info-section {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .modern-form {
        padding: 30px;
    }
    
    .coming-soon-card {
        padding: 50px 30px;
    }
    
    .cta-content-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        justify-content: center;
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}


/* ============================================
   DISTRICT PAGES STYLES
   ============================================ */

/* Districts Hero */
.districts-hero, .district-detail-hero {
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    position: relative;
    background: url('https://images.unsplash.com/photo-1555854877-bab0e564b8d5?q=80&w=2069') center/cover;
    background-attachment: fixed;
}

.districts-hero-overlay, .district-detail-hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.75) 100%);
    z-index: 1;
}

.districts-hero-content, .district-detail-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

/* Breadcrumb */
.breadcrumb {
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.breadcrumb a {
    color: var(--primary);
}

.breadcrumb span {
    color: var(--text-light);
}

/* Districts Grid */
.districts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.district-card {
    padding: 40px;
    text-align: center;
    transition: all 0.4s ease;
    display: block;
    color: var(--text-light);
}

.district-card:hover {
    transform: translateY(-10px);
    border-color: rgba(203, 161, 83, 0.5);
}

.district-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.district-card h3 {
    font-size: 26px;
    margin-bottom: 10px;
    color: var(--primary);
}

.district-population {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.district-desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.district-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 15px;
}

/* District Detail */
.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.district-services {
    margin-bottom: 60px;
}

.district-why {
    background: var(--bg-darker);
}

.why-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    margin: 0 auto 20px;
}

/* SEO Content */
.seo-content-section {
    background: var(--bg-darker);
}

.seo-content, .seo-content-box {
    padding: 50px;
    max-width: 900px;
    margin: 0 auto;
}

.seo-content h2, .seo-content-box h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--primary);
}

.seo-content h3, .seo-content-box h3 {
    font-size: 24px;
    margin: 30px 0 20px;
    color: var(--text-light);
}

.seo-content p, .seo-content-box p {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.seo-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.seo-list li {
    padding: 12px 0;
    font-size: 16px;
    color: var(--text-light);
    border-bottom: 1px solid var(--glass-border);
}

.seo-list li:last-child {
    border-bottom: none;
}

/* Responsive */
@media (max-width: 768px) {
    .districts-grid {
        grid-template-columns: 1fr;
    }
    
    .seo-content, .seo-content-box {
        padding: 30px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-cta .btn-large {
        width: 100%;
    }
}


/* Service Areas on Homepage */
.service-areas-section {
    background: var(--bg-dark);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.area-card {
    padding: 30px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    color: var(--text-light);
}

.area-card:hover {
    transform: translateY(-5px);
    border-color: rgba(203, 161, 83, 0.5);
    background: rgba(203, 161, 83, 0.05);
}

.area-icon {
    font-size: 32px;
}

.area-name {
    font-size: 16px;
    font-weight: 600;
}

/* ============================================
   PROJECT GALLERY STYLES
   ============================================ */

/* Gallery Tabs */
.gallery-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 40px;
}

.gallery-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    color: var(--text-light);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.gallery-tab:hover {
    background: rgba(203,161,83,0.1);
    border-color: rgba(203,161,83,0.3);
    transform: translateY(-2px);
}

.gallery-tab.active {
    background: var(--primary);
    color: #000;
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(203,161,83,0.25);
}

.gallery-tab .tab-icon {
    font-size: 18px;
}

/* Gallery Grid */
.gallery-section {
    padding: 60px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    animation: fadeIn 0.4s ease;
}

.gallery-grid.hidden {
    display: none;
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover {
    border-color: rgba(203,161,83,0.4);
    box-shadow: 0 16px 48px rgba(0,0,0,0.4);
    transform: translateY(-4px);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 50%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay-text {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Lightbox */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-overlay.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10000;
}

.lightbox-close:hover {
    background: var(--primary);
    color: #000;
    border-color: var(--primary);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10000;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--primary);
    color: #000;
    border-color: var(--primary);
}

.lightbox-prev {
    left: 24px;
}

.lightbox-next {
    right: 24px;
}

.lightbox-counter {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 8px 20px;
    border-radius: 50px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    z-index: 10000;
}

@media (max-width: 768px) {
    .lightbox-prev,
    .lightbox-next {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    .lightbox-prev { left: 12px; }
    .lightbox-next { right: 12px; }
    .lightbox-close { top: 12px; right: 12px; }
    .lightbox-counter { bottom: 12px; }
}

/* Loading spinner for lightbox */
.lightbox-loading {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255,255,255,0.2);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
