/* Reset and Base Styles */
:root {
    --color-primary: hsl(168, 45%, 47%);
    --color-accent: #71cdcf;
    --color-dark-secondary: hsl(220, 35%, 18%);
    --color-primary-soft: rgba(66, 173, 152, 0.1);
    --color-primary-border: rgba(66, 173, 152, 0.15);
    --color-primary-shadow: rgba(66, 173, 152, 0.3);
    --color-tag-bg: rgba(113, 205, 207, 0.16);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    opacity: 0.8;
    transition: all 0.3s ease;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background:#1B2333;
    backdrop-filter: blur(15px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(113, 205, 207, 0.18);
    box-shadow: 0 8px 24px rgba(11, 17, 34, 0.28);
}

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

.logo {
    z-index: 10;
}

.logo img {
    height: 85px;
    padding-top: 8px;
    padding-bottom: 8px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.92);
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
    display: inline-block;
}

.nav-link:hover {
    color: var(--color-primary);
    transform: translateY(-1px);
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::before {
    width: 100%;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-primary));
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

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

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

/* Header Social Media */
.header-social {
    display: flex;
    gap: 15px;
    align-items: center;
}

.header-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.08);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    border: 1px solid rgba(113, 205, 207, 0.22);
}

.header-social-link:hover {
    background: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 3px 10px var(--color-primary-shadow);
    color: var(--color-dark-secondary);
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    transition: all 0.3s ease;
    border-radius: 2px;
    transform-origin: center;
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .header .container {
        justify-content: space-between;
    }
    

    
    .mobile-menu-toggle {
        display: flex !important;
        order: -1;
        z-index: 30;
    }
    
    .header-social {
        display: flex;
        order: 1;
    }
    
    .nav {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(30, 39, 62, 0.98);
        backdrop-filter: blur(10px);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        z-index: 25;
    }
    
    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 15px 0;
        display: block;
        text-align: center;
        border-bottom: 1px solid var(--color-primary-soft);
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-20px);
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(4px, -4px);;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

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

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(18, 28, 48, 0.88) 0%, rgba(18, 28, 48, 0.68) 38%, rgba(18, 28, 48, 0.28) 68%, rgba(18, 28, 48, 0.08) 100%);
}

.hero-content {
    text-align: left;
    color: white;
    z-index: 2;
    width: 100%;
    max-width: 760px;
    padding: 0 20px;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 20px;

}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 20px;
    color: var(--color-accent);
    font-weight: bold;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-subtitle,
.hero-description {
    max-width: 700px;
    margin-left: 0;
    margin-right: 0;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--color-primary);
    color: white;
}

.btn-primary:hover {
    background: var(--color-accent);
    color: #0f3b3d;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--color-primary-shadow);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    border: 2px solid var(--color-accent);
}

.btn-secondary:hover {
    background: var(--color-dark-secondary);
    color: white;
    border-color: var(--color-dark-secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(11, 17, 34, 0.22);
}

/* Section Styles */
.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

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

/* About Section */
.about {
    padding: 100px 0;
    background: #f9f9f9;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text {
    margin-bottom: 50px;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

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

.area-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
}

.area-tags span {
    display: inline-block;
    padding: 12px 18px;
    border-radius: 999px;
    background: var(--color-tag-bg);
    color: var(--color-primary);
    font-weight: 600;
    border: 1px solid var(--color-primary-border);
}

.stat {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.stat-number {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 10px;
}

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

.gallery-load-more {
    text-align: center;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 2001;
}

.lightbox-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.lightbox-prev,
.lightbox-next {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 1.2rem;
    pointer-events: auto;
    transition: background 0.3s ease;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.4);
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #f9f9f9;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

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

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

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
    line-height: 1.3;
    min-height: 3.6rem;
    text-align: center;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.faq-item {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 30px;
    border-left: 4px solid var(--color-primary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
}

.faq-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.faq-item p {
    color: #555;
    line-height: 1.7;
}

/* Footer */
.footer {
    background: var(--color-dark-secondary);
    color: white;
    padding: 60px 0 20px;
}

.footer a {
    color: white !important;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--color-accent);
}

.footer-logo img {
    height: 60px;
    margin-bottom: 20px;
}

.contact-info p,
.business-hours p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info i {
    color: var(--color-accent);
    width: 20px;
}

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

.social-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-link:hover {
    background: var(--color-dark-secondary);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.62);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        padding: 14px 0;
    }

    .lightbox-content {
        max-width: 95vw;
        max-height: 95vh;
    }
    
    .lightbox-close {
        top: -40px;
        font-size: 1.5rem;
    }
    
    .lightbox-prev,
    .lightbox-next {
        padding: 10px 15px;
        font-size: 1rem;
    }
    
    .lightbox-nav {
        padding: 0 10px;
    }
    .nav {
        display: none;
    }

    .nav.active {
        display: block;
        height: 100vh;
        top: 64px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }

    .logo img {
        height: 46px;
    }

    .header-social-link {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }

    .hero {
        min-height: 84vh;
        height: auto;
        padding: 100px 0 56px;
    }

    .hero-content {
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 14px;
    }
    
    .hero-subtitle {
        font-size: 1.05rem;
        margin-bottom: 14px;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 28px;
    }

    .btn {
        padding: 13px 24px;
        font-size: 0.95rem;
        min-width: 150px;
        text-align: center;
    }
    
    .hero-buttons {
        
        gap: 14px;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 14px;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 34px;
    }

    .about,
    .service-areas-home,
    .gallery,
    .services,
    .faq {
        padding: 64px 0;
    }

    .about-text {
        margin-bottom: 34px;
    }

    .about-text p {
        font-size: 1rem;
        margin-bottom: 16px;
        line-height: 1.7;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 20px;
    }

    .stat-number {
        font-size: 2.4rem;
    }

    .area-tags {
        justify-content: center;
        gap: 10px;
    }

    .area-tags span {
        padding: 10px 14px;
        font-size: 0.92rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 34px;
    }

    .service-card {
        padding: 28px 22px;
    }

    .service-icon {
        width: 68px;
        height: 68px;
        margin-bottom: 16px;
    }

    .service-icon i {
        font-size: 1.65rem;
    }

    .service-card h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
        min-height: auto;
    }

    .service-card p,
    .faq-item p,
    .footer-section p,
    .footer-bottom {
        font-size: 0.98rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .faq-item {
        padding: 24px 20px;
    }

    .faq-item h3 {
        font-size: 1.15rem;
        margin-bottom: 12px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 28px;
        margin-bottom: 28px;
    }

    .footer {
        padding: 48px 0 18px;
    }

    .footer-section h3 {
        font-size: 1.15rem;
        margin-bottom: 14px;
    }
    
    .social-links {
        justify-content: center;
    }
}

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

    .header {
        padding: 12px 0;
    }

    .logo img {
        height: 50px;
        padding: 0px;
    }

    .nav {
        top: 60px;
        padding: 14px;
    }

    .nav-link {
        font-size: 1rem;
        padding: 12px 0;
    }

    .hero {
        min-height: 78vh;
        padding: 88px 0 44px;
    }

    .hero-background::after {
        background: linear-gradient(180deg, rgba(18, 28, 48, 0.84) 0%, rgba(18, 28, 48, 0.62) 52%, rgba(18, 28, 48, 0.28) 100%);
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }

    .hero-subtitle {
        font-size: 0.98rem;
        margin-bottom: 12px;
    }

    .hero-description {
        font-size: 0.94rem;
        margin-bottom: 24px;
    }

    .btn {
        width: auto;
        max-width: 280px;
        padding: 12px 20px;
        font-size: 0.92rem;
    }
    
    .section-title {
        font-size: 1.72rem;
        margin-bottom: 12px;
    }

    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 26px;
    }

    .about,
    .service-areas-home,
    .gallery,
    .services,
    .faq {
        padding: 48px 0;
    }

    .about-text p,
    .service-card p,
    .faq-item p {
        font-size: 0.94rem;
    }
    
    .service-card {
        padding: 22px 16px;
    }

    .service-card h3 {
        font-size: 1.08rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
    }

    .service-icon i {
        font-size: 1.45rem;
    }

    .area-tags {
        gap: 8px;
    }

    .area-tags span {
        padding: 8px 12px;
        font-size: 0.86rem;
    }

    .faq-item {
        padding: 20px 16px;
    }

    .faq-item h3 {
        font-size: 1.02rem;
    }

    .footer {
        padding: 40px 0 16px;
    }

    .footer-section h3 {
        font-size: 1.05rem;
    }

    .contact-info p,
    .business-hours p,
    .footer-bottom {
        font-size: 0.92rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gallery-item {
    animation: fadeIn 0.6s ease-out;
}

/* Hover Effects */
.service-card:hover .service-icon {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Focus States for Accessibility */
.btn:focus,
.nav-link:focus,
.social-link:focus {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
} 