/* CSS Variables - Your Color Scheme */
:root {
    --color-primary: #222831;
    --color-accent: #FF6A00;
    --color-accent-light: #FF8C42;
    --color-bg: #FBFBFB;
    --color-text: #1F2937;
    --color-text-light: #6B7280;
    --color-card: #FFFFFF;
    --color-footer: #111827;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.15);
    --radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --container-width: 1200px;
    --gradient-accent: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
    --gradient-dark: linear-gradient(135deg, var(--color-primary), #2D3748);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-primary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 5rem 0;
    position: relative;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: var(--gradient-accent);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 106, 0, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--color-accent);
    border: 2px solid var(--color-accent);
}

.btn-outline:hover {
    background: var(--gradient-accent);
    color: white;
    transform: translateY(-3px);
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    z-index: -1;
}

.btn:hover::after {
    left: 100%;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(34, 40, 49, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.25rem 0;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

header.scrolled {
    padding: 0.75rem 0;
    background: rgba(34, 40, 49, 0.98);
    box-shadow: var(--shadow-md);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
}

.logo-icon {
    width: 100px;
    height: 50px;
    display: flex;
}

.logo-text {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 1.75rem;
    line-height: 1;
}

.logo-text span {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.nav-desktop {
    display: none;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: white;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--color-accent);
}

.header-cta {
    display: none;
}

.mobile-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-toggle span {
    width: 100%;
    height: 3px;
    background: white;
    transition: var(--transition);
    border-radius: 3px;
}

.mobile-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.nav-mobile {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: var(--color-primary);
    padding: 5rem 2rem 2rem;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
}

.nav-mobile.active {
    right: 0;
}

.nav-mobile .nav-list {
    flex-direction: column;
    gap: 1.5rem;
}

.nav-mobile .nav-link {
    font-size: 1.25rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--gradient-dark);
    padding: 6rem 0 4rem;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.7;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.banner {
    position: absolute;
    inset: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.banner.active {
    opacity: 1;
    z-index: 1;
}

.banner-wrapper {
    position: relative;
    overflow: hidden;
}

/* full and mobile banners */
#full-banners, .banner-full {
    display: block;
}
#mb-banners, .banner-mb {
    display: none;
}
@media (max-width: 576px) {
    #full-banners, .banner-full {
        display: none;
    }

    #mb-banners, .banner-mb {
        display: block;
    }
}


.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 900px;
    animation: fadeUp 1s ease-out;
}

.hero h1 {
    font-size: 45px;
    margin-bottom: 20px;
    margin-top: 20px;
    color: white;
    line-height: 1.1;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-trust {
    margin-top: 18px;
    letter-spacing: 0.5px;
}

.hero-trust span.innertext {
    background: rgba(34, 40, 49, 0.95);
    padding: 5px;
    color: var(--color-accent);
    font-size: 14px;
    border-radius: 10px;
    border-radius: 10px;
    display: flex;
    gap: 5px;
}
.hero-trust span.separator {
    font-size: 16px;
    color: var(--color-accent);
    margin: 0 6px;
    font-weight: 500;
    font-weight: 500;
    margin-top: 5px;
    border-radius: 50px;
    padding: 0px 4px 0px 4px;
}

span.separator-mb {
    display: none;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Services Section */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.section-header p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--color-text-light);
}

.services-slider {
    position: relative;
    overflow: hidden;
    margin: 0 -1rem;
}

.services-track {
    display: flex;
    transition: transform 0.5s ease;
    padding: 1rem;
}

.service-card {
    flex: 0 0 100%;
    background: #262c3514;
    border-radius: var(--radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin: 0 0.5rem;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(255, 106, 0, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    font-size: 2rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--gradient-accent);
    color: white;
    transform: scale(1.1);
}

.service-card h3 {
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
    text-align: left;
}

.service-features li {
    margin-bottom: 0.75rem;
    padding-left: 1.75rem;
    position: relative;
    color: var(--color-text);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: bold;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.slider-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--color-card);
    border: 2px solid var(--color-accent);
    color: var(--color-accent);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.slider-btn:hover {
    background: var(--gradient-accent);
    color: white;
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 0.75rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(34, 40, 49, 0.2);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: var(--gradient-accent);
    transform: scale(1.2);
}

/* Projects Section */
.projects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.project-card {
    background: var(--color-card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.project-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(34, 40, 49, 0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: var(--transition);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-content {
    padding: 1.75rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0.75rem 0 1.5rem;
}

.project-tag {
    background: rgba(255, 106, 0, 0.1);
    color: var(--color-accent);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
#gallery .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(34, 40, 49, 0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-caption {
    color: white;
    transform: translateY(15px);
    transition: var(--transition);
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}
.gallery-project {
    margin-bottom: 3.5rem;
}

.gallery-project-title {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: var(--color-primary);
    position: relative;
}

.gallery-project-title::after {
    content: "";
    width: 60px;
    height: 3px;
    background: var(--gradient-accent);
    display: block;
    margin-top: 0.5rem;
    border-radius: 2px;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-card);
    border-radius: var(--radius);
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 1.5rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-primary);
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--color-accent);
}

.faq-question.active {
    color: var(--color-accent);
}

.faq-icon {
    transition: var(--transition);
    font-weight: bold;
    color: var(--color-accent);
    min-width: 24px;
    text-align: center;
}

.faq-question.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-answer.active {
    padding: 0 1.5rem 1.5rem;
    max-height: 1000px;
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.contact-info.hm-page {
    display: flex;
    gap: 2rem;
    background: #e3e3e4;
    padding: 20px 10px 10px 20px;
    border-radius: 10px;
}

.contact-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 106, 0, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    flex-shrink: 0;
    font-size: 1.5rem;
    transition: var(--transition);
}

.contact-item:hover .contact-icon {
    background: var(--gradient-accent);
    color: white;
    transform: translateY(-5px);
}

.contact-form {
    background: var(--color-card);
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--color-primary);
}

.form-control {
    width: 100%;
    padding: 1rem;
    border: 1px solid #E5E7EB;
    border-radius: var(--radius);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--color-bg);
    color: var(--color-text);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.1);
}

.map-container {
    height: 300px;
    background: linear-gradient(135deg, rgba(255, 106, 0, 0.05), rgba(34, 40, 49, 0.05));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-light);
    margin-top: 3rem;
    border: 2px dashed rgba(255, 106, 0, 0.2);
}

/* CTA Section Styling */
.cta-section {
    background: linear-gradient(var(--color-accent), var(--color-accent-light));
    padding: 3rem 0;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}


.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

/* Typography */
.cta-heading {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-subheading {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Enhanced Button Styling */
.cta-button-container {
    margin-bottom: 10px;
}

.btn-get-started {
    display: inline-flex;
    align-items: center;
    background: white;
    color: var(--color-accent);
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    border: none;
    cursor: pointer;
}

.btn-get-started:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    color: var(--color-accent);
}

.btn-get-started:active {
    transform: translateY(-2px);
}

.btn-icon {
    font-size: 1.4rem;
    margin-right: 15px;
    transition: transform 0.3s ease;
}

.btn-get-started:hover .btn-icon {
    transform: scale(1.2) rotate(-10deg);
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.btn-main-text {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.2;
}

.btn-arrow {
    margin-left: 20px;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-get-started:hover .btn-arrow {
    transform: translateX(5px);
}

/* Secondary Option */
.cta-alternative {
    margin-top: 15px;
}

.cta-alternative p {
    font-size: 1rem;
    opacity: 0.9;
}

.phone-link {
    color: white;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.5);
    transition: all 0.2s ease;
    padding-bottom: 2px;
    margin-left: 5px;
}

.phone-link:hover {
    color: #fff;
    border-bottom: 1px solid white;
    opacity: 1;
}

.phone-link i {
    margin-right: 5px;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 0;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-item {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.trust-item i {
    margin-right: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cta-section {
        padding: 60px 20px;
    }
    
    .cta-heading {
        font-size: 2.2rem;
    }
    
    .cta-subheading {
        font-size: 1.1rem;
    }
    
    .btn-get-started {
        padding: 16px 30px;
        font-size: 1rem;
        flex-direction: row;
        text-align: center;
    }
    
    .btn-icon {
        margin-right: 0;
        margin-bottom: 0;
    }
    
    .btn-text {
        align-items: center;
        text-align: center;
    }
    
    .btn-arrow {
        margin-left: 0;
        margin-top: 0;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 15px;
    }
}

/* Animation for entrance */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-content {
    animation: fadeInUp 0.8s ease-out;
}

/* Footer */
footer {
    background: var(--color-footer);
    color: white;
    padding: 5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.footer-logo span {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.footer-heading {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: white;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--color-accent);
    padding-left: 5px;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
    font-size: 1.25rem;
}

.social-icon:hover {
    background: var(--gradient-accent);
    transform: translateY(-5px);
}

.newsletter-form {
    display: flex;
    margin-top: 1rem;
}

.newsletter-input {
    flex-grow: 1;
    padding: 0.875rem 1.25rem;
    border: none;
    border-radius: 50px 0 0 50px;
    font-family: 'Inter', sans-serif;
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-btn {
    background: var(--gradient-accent);
    color: white;
    border: none;
    border-radius: 0 50px 50px 0;
    padding: 0 1.75rem;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.newsletter-btn:hover {
    background: var(--color-accent-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeUp 0.8s ease-out forwards;
}

/* Responsive */
@media (min-width: 375px) {

    .hero h1 {
        font-size: 30px;
    }

    .logo-text {
        display: block;
        font-size: 18px;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    #gallery .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-stats {
        justify-content: space-around;
    }

    .contact-info.hm-page {
        display: block;
    }

    .hero-trust {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }
    span.separator {
        display: none;
    }
    span.separator-mb {
        display: block;
    }
}

@media (min-width: 576px) {
    .hero h1 {
        font-size: 40px;
    }

    .logo-text {
        display: block;
        font-size: 35px;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    #gallery .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-stats {
        justify-content: space-around;
    }

    .nav-list {
        gap: 1.5rem;
    }

    .contact-info.hm-page {
        display: block;
    }

    .hero-trust {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }
    span.separator {
        display: none;
    }
    span.separator-mb {
        display: block;
    }
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }

    .logo-text {
        display: none;
    }

    .mobile-toggle {
        display: none;
    }

    .header-cta {
        display: block;
    }

    .service-card {
        flex: 0 0 calc(50% - 1rem);
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .projects-grid.home-projects {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-container {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav-list {
        gap: 1.7rem;
    }

    #gallery .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .contact-info.hm-page {
        display: block;
    }

    .hero-trust {
        display: flex;
        flex-direction: row;
        gap: 5px;
    }

    span.separator {
        display: block;
    }
    span.separator-mb {
        display: none;
    }
}

@media (min-width: 992px) {
    .service-card {
        flex: 0 0 calc(33.333% - 1rem);
    }

    .logo-text {
        display: none;
    }

    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .projects-grid.home-projects {
        grid-template-columns: repeat(2, 1fr);
    }

    #gallery .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .hero h1 {
        font-size: 45px;
    }

    .nav-list {
        gap: 1.9rem;
    }

    .contact-info.hm-page {
        display: flex;
    }

    .hero-trust {
        display: flex;
        flex-direction: row;
        gap: 5px;
    }

    span.separator {
        display: block;
    }

    span.separator-mb {
        display: none;
    }
}

@media (min-width: 1200px) {
    .hero h1 {
        font-size: 45px;
    }

    .logo-text {
        display: block;
        font-size: 1.75rem;
    }

    .nav-list {
        gap: 2rem;
    }

    .contact-info.hm-page {
        display: flex;
    }

    #gallery .gallery-grid {
        grid-template-columns: repeat(5, 1fr);
    }

    .hero-trust {
        display: flex;
        flex-direction: row;
        gap: 5px;
    }

    span.separator {
        display: block;
    }

    span.separator-mb {
        display: none;
    }
}

/* Notification */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: var(--color-accent);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2000;
    max-width: 400px;
    animation: slideIn 0.3s ease-out;
}

.notification.success {
    background: #10B981;
}

.notification.error {
    background: #EF4444;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.notification-close {
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    margin-left: 15px;
}

/* about us */

/* Stats Section */
.stats-section {
    padding: 4rem 0;
    background: var(--color-bg);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--color-card);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}
.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.stat-label {
    color: var(--color-text);
    font-weight: 500;
}
/* About Content */
.about-content {
    padding: 4rem 0;
}
.about-section {
    margin-bottom: 3rem;
}
.about-section h2 {
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.75rem;
}
.about-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 2px;
}
.about-section p {
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: 1rem;
}
/* Company Info */
.company-info {
    background: rgba(255, 106, 0, 0.02);
    padding: 4rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
.info-card {
    background: var(--color-card);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}
.info-card h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}
.info-card h3 i {
    color: var(--color-accent);
}
.info-item {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.info-label {
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
}
.info-value {
    color: var(--color-text);
}
/* Map Section */
.map-section {
    padding: 4rem 0;
}
.map-container {
    height: 400px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
/* Responsive */
@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}



/* *************************** image popups *************************** */

.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-modal.active {
    display: block;
    opacity: 1;
    animation: lightboxFadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes lightboxFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.lightbox-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.lightbox-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.lightbox-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.lightbox-counter {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
}

.lightbox-controls {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.lightbox-btn {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
}

.lightbox-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-accent), var(--color-primary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-btn:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.lightbox-btn:hover::before {
    opacity: 1;
}

.lightbox-btn i {
    position: relative;
    z-index: 1;
}

.lightbox-btn.lightbox-close:hover {
    background: rgba(255, 50, 50, 0.3);
    transform: rotate(90deg);
}

.lightbox-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 1rem;
    z-index: 1;
}

.image-container {
    position: relative;
    max-width: 90%;
    max-height: 70vh;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    animation: imageZoomIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center center;
}

@keyframes imageZoomIn {
    from {
        transform: scale(0.8) translateY(20px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

#lightboxImage {
    display: block;
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
    transition: transform 0.3s ease;
    cursor: zoom-in;
}

#lightboxImage.zoomed {
    cursor: zoom-out;
    transform: scale(2);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.loading-spinner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--color-accent);
    animation: spin 1s ease-in-out infinite;
}

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

.image-error {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.9);
    color: #ff6b6b;
    text-align: center;
    padding: 2rem;
    z-index: 2;
}

.image-error i {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.image-error p {
    font-size: 1.2rem;
    margin: 0;
}

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-size: 1.5rem;
    z-index: 2;
    opacity: 0;
    animation: fadeInArrows 0.5s ease forwards;
    animation-delay: 0.3s;
}

@keyframes fadeInArrows {
    to { opacity: 0.8; }
}

.nav-arrow:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.prev-arrow {
    left: 2rem;
}

.next-arrow {
    right: 2rem;
}

.lightbox-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    z-index: 2;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.thumbnail-track {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding: 0.5rem 0;
    margin-bottom: 1rem;
    scrollbar-width: thin;
    scrollbar-color: var(--color-accent) rgba(255,255,255,0.1);
}

.thumbnail-track::-webkit-scrollbar {
    height: 6px;
}

.thumbnail-track::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
}

.thumbnail-track::-webkit-scrollbar-thumb {
    background: var(--color-accent);
    border-radius: 3px;
}

.thumbnail {
    width: 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s ease;
    flex-shrink: 0;
    position: relative;
}

.thumbnail::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(var(--color-accent-rgb), 0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.thumbnail:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

.thumbnail.active {
    opacity: 1;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(var(--color-accent-rgb), 0.4);
}

.thumbnail.active::after {
    opacity: 1;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.thumbnail:hover img {
    transform: scale(1.1);
}

.image-meta {
    display: none; /* ********* **/
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.meta-item i {
    color: var(--color-accent);
    font-size: 1rem;
}

.lightbox-modal.fullscreen .lightbox-header,
.lightbox-modal.fullscreen .lightbox-footer {
    display: none;
}

.lightbox-modal.fullscreen .lightbox-content {
    padding: 0;
}

.lightbox-modal.fullscreen .image-container {
    max-width: 100%;
    max-height: 100vh;
    border-radius: 0;
    box-shadow: none;
}

.lightbox-modal.fullscreen #lightboxImage {
    max-height: 100vh;
}

@media (max-width: 992px) {

    #lightboxZoom.lightbox-btn, #lightboxFullscreen.lightbox-btn {
        display: none;
    }
}
@media (max-width: 1200px) {

    #lightboxZoom.lightbox-btn, #lightboxFullscreen.lightbox-btn {
        display: none;
    }
}
@media (max-width: 375px) {

    #lightboxZoom.lightbox-btn, #lightboxFullscreen.lightbox-btn {
        display: none;
    }
}

@media (max-width: 768px) {
    .lightbox-header {
        padding: 1rem;
    }

    .lightbox-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    #lightboxZoom.lightbox-btn, #lightboxFullscreen.lightbox-btn {
        display: none;
    }

    .nav-arrow {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .prev-arrow {
        left: 1rem;
    }

    .next-arrow {
        right: 1rem;
    }

    .lightbox-content {
        padding: 5rem 0.5rem;
    }

    .image-container {
        max-width: 95%;
        max-height: 60vh;
    }

    #lightboxImage {
        max-height: 60vh;
    }

    .thumbnail {
        width: 60px;
        height: 45px;
    }

    .image-meta {
        gap: 1rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {

    #lightboxZoom.lightbox-btn, #lightboxZoom.lightboxFullscreen {
        display: none;
    }

    .lightbox-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .lightbox-controls {
        order: -1;
    }

    .nav-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .lightbox-content {
        padding: 6rem 0.5rem 4rem;
    }

    .thumbnail-track {
        gap: 0.5rem;
    }

    .thumbnail {
        width: 50px;
        height: 40px;
    }

    .image-meta {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
}

.lightbox-btn:focus,
.nav-arrow:focus,
.thumbnail:focus {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    .lightbox-modal,
    .lightbox-btn,
    .nav-arrow,
    .thumbnail,
    #lightboxImage,
    .spinner {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media (prefers-color-scheme: dark) {
    .lightbox-btn:hover {
        background: rgba(255, 255, 255, 0.2);
    }
    
    .nav-arrow:hover {
        background: rgba(255, 255, 255, 0.2);
    }
}

/* *************************** services popup *************************** */
/* ============================================
   COMPACT SERVICE POPUP
   ============================================ */

.service-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    padding: 1rem;
}

.service-popup.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: popupFadeIn 0.3s ease;
}

@keyframes popupFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.service-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.service-popup-container {
    position: relative;
    background: white;
    border-radius: 16px;
    width: 100%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 2;
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideUp {
    from {
        transform: translateY(30px) scale(0.95);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

/* Header */
.service-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: var(--color-accent);
    border-radius: 16px 16px 0 0;
    color: white;
}

.service-popup-icon-title {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.service-popup-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    backdrop-filter: blur(10px);
}

.service-popup-title {
    color: #fff;
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
}
.service-popup-container {
    overflow-y: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.service-popup-container::-webkit-scrollbar {
    display: none;
}
.service-popup-subtitle {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 0.25rem;
}

.service-popup-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-popup-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

/* Content */
.service-popup-content {
    padding: 1.5rem;
}

/* Typewriter Description */
.service-popup-description {
    margin-bottom: 1.5rem;
    position: relative;
    min-height: 100px;
}

.typewriter-text {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
    opacity: 0;
    animation: fadeInText 0.5s ease forwards;
    animation-delay: 0.2s;
}

@keyframes fadeInText {
    to { opacity: 1; }
}

.typewriter-cursor {
    display: inline-block;
    animation: blink 1s infinite;
    color: var(--color-accent);
    font-weight: bold;
    margin-left: 2px;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Features */
.service-popup-features {
    margin-bottom: 1.5rem;
}

.service-popup-features h3 {
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.features-list {
    display: grid;
    gap: 0.75rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 10px;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInRight 0.5s ease forwards;
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.feature-checkbox {
    width: 22px;
    height: 22px;
    background: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.7rem;
    flex-shrink: 0;
    opacity: 0;
    transform: scale(0) rotate(-180deg);
    animation: checkboxFly 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes checkboxFly {
    0% {
        opacity: 0;
        transform: scale(0) rotate(-180deg) translateX(-50px);
    }
    70% {
        transform: scale(1.1) rotate(10deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0) translateX(0);
    }
}

.feature-text {
    font-size: 0.95rem;
    color: #333;
    opacity: 0;
    animation: textReveal 0.5s ease forwards;
    animation-delay: 0.3s;
}

@keyframes textReveal {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Actions */
.service-popup-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.service-popup-actions .btn {
    min-width: 140px;
}

/* Responsive */
@media (max-width: 768px) {
    .service-popup {
        padding: 0.5rem;
    }
    
    .service-popup-container {
        max-height: 85vh;
    }
    
    .service-popup-header {
        padding: 1rem;
    }
    
    .service-popup-content {
        padding: 1rem;
    }
    
    .service-popup-actions {
        flex-direction: column;
    }
    
    .service-popup-actions .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .service-popup-icon-title {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .service-popup-title {
        font-size: 1.3rem;
    }
    
    .typewriter-text {
        font-size: 1rem;
    }
}


/* ************************************ project summary popup ************************************ */

/* ============================================
   PROJECT POPUP
   ============================================ */

.project-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    padding: 1rem;
}

.project-popup.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: popupFadeIn 0.3s ease;
}

@keyframes popupFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.project-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
}

.project-popup-container {
    position: relative;
    background: white;
    border-radius: 16px;
    width: 100%;
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    z-index: 2;
    animation: slideUpScale 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideUpScale {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Hide scrollbar */
.project-popup-container::-webkit-scrollbar {
    display: none;
}

.project-popup-container {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Header */
.project-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: var(--color-accent);
    border-radius: 16px 16px 0 0;
    color: white;
}

.project-popup-title-section {
    flex: 1;
}

.project-popup-title {
    color: #fff;
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
}

.project-popup-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    font-size: 0.95rem;
    opacity: 0.9;
}

.project-popup-close {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.project-popup-close:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: rotate(90deg);
}

/* Content */
.project-popup-content {
    padding: 1.5rem;
}

/* Project Image */
.project-popup-image {
    position: relative;
    width: 100%;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.project-popup-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-popup-image:hover img {
    transform: scale(1.05);
}

.project-popup-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
}

.project-popup-image-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: var(--color-primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
}

.popup-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 5;
}

.popup-prev { left: 16px; }
.popup-next { right: 16px; }

.popup-nav:hover {
    background: rgba(0,0,0,0.7);
}

/* Description */
.project-popup-description {
    margin-bottom: 1.5rem;
    position: relative;
    min-height: 120px;
}

.project-typewriter-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    margin: 0;
}

.project-typewriter-cursor {
    display: inline-block;
    animation: blink 1s infinite;
    color: var(--color-accent);
    font-weight: bold;
    margin-left: 2px;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Details Grid */
.project-details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 12px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    opacity: 0;
    transform: translateY(10px);
    animation: detailSlideUp 0.5s ease forwards;
}

@keyframes detailSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.detail-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--color-accent-light), var(--color-accent));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.detail-content {
    flex: 1;
}

.detail-label {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.25rem;
}

.detail-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
}

/* Key Points */
.project-key-points {
    margin-bottom: 2rem;
}

.project-key-points h3 {
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.key-point-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, #f0f7ff, #e6f0ff);
    border-radius: 10px;
    border-left: 4px solid var(--color-accent);
    opacity: 0;
    transform: translateX(-20px);
    animation: pointSlideIn 0.5s ease forwards;
}

@keyframes pointSlideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.key-point-icon {
    width: 24px;
    height: 24px;
    background: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.key-point-text {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.5;
}

/* Testimonial */
.project-testimonial {
    margin-bottom: 2rem;
}

.project-testimonial h3 {
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.testimonial-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 1px solid #eee;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.client-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.client-details {
    flex: 1;
}

.client-name {
    font-weight: 600;
    color: #333;
    font-size: 1.1rem;
}

.client-role {
    font-size: 0.9rem;
    color: #666;
}

.client-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.client-rating i {
    color: #ffc107;
    font-size: 1.1rem;
}

.client-rating span {
    margin-left: 0.5rem;
    font-weight: 600;
    color: #333;
}

.testimonial-text {
    font-style: italic;
    color: #555;
    line-height: 1.6;
    margin: 0;
    padding-left: 1rem;
    border-left: 3px solid var(--color-accent-light);
}

/* Actions */
.project-popup-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

/* Responsive */
@media (max-width: 768px) {
    .project-popup-container {
        max-height: 95vh;
        margin: 0.5rem;
    }
    
    .project-popup-header {
        padding: 1rem;
    }
    
    .project-popup-title {
        font-size: 1.4rem;
    }
    
    .project-popup-image {
        height: 200px;
    }
    
    .project-details-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
    }
    
    .key-points-grid {
        grid-template-columns: 1fr;
    }
    
    .project-popup-actions {
        flex-direction: column;
    }
    
    .project-popup-actions .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .project-popup-title {
        font-size: 1.2rem;
    }
    
    .client-info {
        flex-direction: column;
        text-align: center;
    }
}


/* ********************************* Animations *************************************** */
