@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

:root {
    --primary: #002147;
    --primary-light: #003a7a;
    --secondary: #FFD700;
    --secondary-light: #ffe033;
    --dark: #1a1a1a;
    --light: #f8f9fa;
    --white: #ffffff;
    --gray: #6c757d;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --transition: all 0.3s ease;
    --border-radius: 12px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}

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

ul {
    list-style: none;
}

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

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

.btn {
    display: inline-block;
    padding: 0.7rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: 'Outfit', sans-serif;
}

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

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.4);
}

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

.btn-secondary:hover {
    background-color: var(--secondary-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(140, 183, 39, 0.4);
}

.section-padding {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark);
    position: relative;
    padding-bottom: 1rem;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary);
}

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

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
}

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

.logo img {
    height: 42px;
}

nav ul {
    display: flex;
    gap: 2rem;
}

nav ul li a {
    font-weight: 500;
    color: var(--dark);
    font-family: 'Outfit', sans-serif;
}

nav ul li a:hover {
    color: var(--primary);
}

/* Mobile Toggle */
.nav-toggle-label {
    display: none;
    cursor: pointer;
    padding: 1rem;
    z-index: 1001;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
    display: block;
    background: var(--dark);
    height: 2px;
    width: 25px;
    position: relative;
    transition: var(--transition);
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
    content: '';
    position: absolute;
}

.nav-toggle-label span::before {
    bottom: 8px;
}

.nav-toggle-label span::after {
    top: 8px;
}

.nav-toggle:checked~nav {
    transform: scale(1, 1);
    opacity: 1;
}

.nav-toggle:checked~.nav-toggle-label span {
    background: transparent;
}

.nav-toggle:checked~.nav-toggle-label span::before {
    transform: rotate(45deg);
    bottom: 0;
}

.nav-toggle:checked~.nav-toggle-label span::after {
    transform: rotate(-45deg);
    top: 0;
}

/* Hero Slider Container */
.hero-slider {
    position: relative;
    height: 98vh;
    min-height: 500px;
    width: 100%;
    overflow: hidden;
    padding-top: 80px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), transform 1.2s ease-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    transform: scale(1.1);
}

.slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 10;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.slide .container {
    position: relative;
    z-index: 12;
    color: white;
}

.slide-content {
    max-width: 800px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.4s;
}

.slide.active .slide-content {
    opacity: 1;
    transform: translateY(0);
}

.slide-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.slide-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

/* Slider Navigation */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary);
    transform: scale(1.3);
}

/* Clients Carousel Section */
.clients-section {
    padding: 1rem 0;
    background: var(--white);
    border-bottom: 1px solid var(--light);
    overflow: hidden;
}

.clients-container {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
}

.logo-track {
    display: flex;
    width: calc(250px * 16);
    /* Estimate based on 8 logos duplicated */
    animation: scroll 30s linear infinite;
}

.logo-track:hover {
    animation-play-state: paused;
}

.client-logo {
    width: 200px;
    height: 100px;
    margin: 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition);
}

.client-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 8));
    }
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content h3 {
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .about-stats {
        gap: 1.5rem;
        justify-content: center;
        text-align: center;
    }

    .stat-item h4 {
        font-size: 1.8rem;
    }
}

.stat-item h4 {
    font-size: 2.5rem;
    color: var(--primary);
}

.stat-item p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

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

/* Focus Section */
.focus-section {
    background-color: var(--dark);
    color: white;
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

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

.focus-item .icon {
    width: 80px;
    height: 80px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2rem;
    color: var(--secondary);
}

/* Footer CTA */
.footer-cta {
    background: var(--primary);
    padding: 3rem 4rem;
    color: white;
    position: relative;
    z-index: 10;
    margin-bottom: -60px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(255, 107, 0, 0.3);
}

.footer-cta-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.footer-cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    font-family: 'Outfit', sans-serif;
}

.footer-cta-content p {
    opacity: 0.95;
    font-size: 1.1rem;
}

.footer-cta .btn-light {
    background: white;
    color: var(--primary);
    padding: 1rem 2.5rem;
}

.footer-cta .btn-light:hover {
    background: var(--gray-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Footer Main */
footer {
    background: #080808;
    color: white;
    padding: 10rem 0 3rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 10%, rgba(255, 107, 0, 0.03) 0%, transparent 40%);
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
    margin-bottom: 5rem;
}

.footer-logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: block;
}

.footer-info p {
    color: #aaa;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    color: white;
    font-size: 1.1rem;
}

.social-icon:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.4);
}

.footer-col h3 {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: white;
    position: relative;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--secondary);
}

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

.footer-links-list li a {
    color: #999;
    font-size: 1rem;
    display: inline-block;
    transition: var(--transition);
}

.footer-links-list li a:hover {
    color: var(--primary);
    padding-left: 8px;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-contact-item {
    display: flex;
    gap: 1rem;
}

.footer-contact-item i {
    color: var(--secondary);
    font-size: 1.1rem;
    margin-top: 4px;
}

.footer-contact-item span {
    color: #aaa;
    font-size: 1rem;
    line-height: 1.5;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-copyright {
    color: #777;
    font-size: 0.95rem;
}

.designer-link {
    color: var(--primary) !important;
    font-weight: 600;
    transition: var(--transition);
}

.designer-link:hover {
    color: var(--primary-light) !important;
    text-decoration: underline;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: #777;
    font-size: 0.95rem;
}

.footer-legal a:hover {
    color: var(--primary);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--secondary);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    background: var(--secondary-light);
    box-shadow: 0 15px 40px rgba(140, 183, 39, 0.4);
}

@media (max-width: 768px) {
    .footer-cta {
        padding: 3rem 2rem;
    }

    .footer-cta-flex {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom {
        justify-content: center;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
        width: 100%;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .nav-toggle-label {
        display: block;
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        transform: scale(1, 0);
        transform-origin: top;
        transition: transform 0.3s ease;
        opacity: 0;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    }

    nav ul {
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
    }

    .desktop-only {
        display: none;
    }

    .about-grid,
    .services-grid,
    .focus-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .projects-featured {
        grid-template-columns: 1fr !important;
    }

    .slide-content h1 {
        font-size: 2.5rem;
    }

    .slide-content p {
        font-size: 1rem;
    }
}

/* Project Filtering & Portfolio */
.filter-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.6rem 1.8rem;
    border-radius: 30px;
    background: var(--gray-light);
    color: var(--text-dark);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
}

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

.filter-btn.active {
    background: var(--primary);
    color: white;
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.project-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 380px;
    background-color: #eee;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.6) 60%, transparent 100%);
    color: white;
    transform: translateY(30px);
    transition: var(--transition);
}

.project-card:hover .project-overlay {
    transform: translateY(0);
}

.project-overlay .category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: block;
}

.project-overlay h3 {
    font-size: 1.6rem;
    margin-bottom: 0.25rem;
    font-family: 'Outfit', sans-serif;
}

.project-overlay .location {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.project-overlay p {
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0;
    transition: var(--transition) 0.1s;
    height: 0;
    overflow: hidden;
}

.project-card:hover .project-overlay p {
    opacity: 0.85;
    height: auto;
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .project-card {
        height: 320px;
    }

    /* Ensure footer info and contact take full width if they look cramped in 2 cols */
    .footer-info, .footer-contact {
        grid-column: span 2;
    }
}

/* Specialist Services Page */
.services-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url('../images/hero3.png');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 10rem 0 6rem;
}

.services-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-family: 'Outfit', sans-serif;
}

.services-list-detailed {
    padding: 8rem 0;
}

.service-detail-item {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 8rem;
}

.service-detail-item:nth-child(even) {
    grid-template-columns: 1.5fr 1fr;
}

.service-detail-item:nth-child(even) .service-detail-content {
    grid-column: 1;
    grid-row: 1;
}

.service-detail-item:nth-child(even) .service-detail-visual {
    grid-column: 2;
    grid-row: 1;
}

.service-detail-visual {
    position: relative;
    height: 400px;
    background: var(--gray-light);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.service-detail-visual i {
    font-size: 8rem;
    color: var(--primary);
    opacity: 0.15;
    position: absolute;
    transform: rotate(-15deg);
}

.service-detail-visual::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 60%;
    border: 2px solid var(--secondary);
    border-radius: 50%;
    opacity: 0.2;
}

.service-detail-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
    font-family: 'Outfit', sans-serif;
}

.service-detail-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.service-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.feature-item i {
    color: var(--secondary);
}

@media (max-width: 992px) {

    .service-detail-item,
    .service-detail-item:nth-child(even) {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .service-detail-item:nth-child(even) .service-detail-content,
    .service-detail-item:nth-child(even) .service-detail-visual {
        grid-column: auto;
        grid-row: auto;
    }

    .service-features {
        justify-content: center;
    }
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/hero.png');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 10rem 0 6rem;
}

.about-hero h1 {
    font-size: 3.5rem;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 1rem;
}

.mission-vision-section {
    background-color: var(--gray-light);
    padding: 8rem 0;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.mv-card {
    background: white;
    padding: 4rem 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.mv-card:hover {
    transform: translateY(-10px);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 107, 0, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 2rem;
}

.mv-card h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-family: 'Outfit', sans-serif;
}

.mv-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.values-section {
    padding: 8rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    transition: var(--transition);
}

.value-item:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.value-item i {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.value-item h3 {
    margin-bottom: 1rem;
    font-family: 'Outfit', sans-serif;
}

.value-item p {
    font-size: 0.95rem;
    color: var(--text-light);
}

@media (max-width: 992px) {
    .mv-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 576px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* Service Details Page */
.service-details-hero {
    height: 450px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    margin-bottom: 5rem;
}

.service-details-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
}

.service-details-hero h1 {
    position: relative;
    z-index: 10;
    font-size: 3.5rem;
    font-family: 'Outfit', sans-serif;
}

.service-details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.service-main-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
    font-family: 'Outfit', sans-serif;
}

.service-main-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.methodology-box {
    background: var(--gray-light);
    padding: 3rem;
    border-radius: 15px;
    margin: 3rem 0;
    border-left: 5px solid var(--primary);
}

.methodology-box h3 {
    margin-bottom: 1rem;
    font-family: 'Outfit', sans-serif;
}

.service-sidebar-box {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.service-sidebar-box h4 {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    border-bottom: 2px solid var(--gray-light);
    padding-bottom: 1rem;
    font-family: 'Outfit', sans-serif;
}

.sidebar-service-links {
    list-style: none;
}

.sidebar-service-links li {
    margin-bottom: 1rem;
}

.sidebar-service-links a {
    display: block;
    padding: 0.8rem 1rem;
    background: var(--gray-light);
    border-radius: 8px;
    font-weight: 500;
    transition: var(--transition);
}

.sidebar-service-links a:hover,
.sidebar-service-links a.active {
    background: var(--primary);
    color: white;
    transform: translateX(5px);
}

@media (max-width: 992px) {
    .service-details-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Page Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 576px) {
    .contact-form-row {
        grid-template-columns: 1fr;
    }
}