:root {
    --primary-color: #E72828;
    /* Red */
    --text-dark: #1A1A1A;
    --text-blue: #0A2540;
    /* Deep Blue for headings based on screenshot */
    --text-grey: #666666;
    --white: #FFFFFF;
    --light-grey: #F5F5F5;
    --font-main: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: #c02020;
    border-color: #c02020;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(231, 40, 40, 0.3);
}

.btn-white {
    background-color: var(--white);
    color: var(--text-dark);
    border: 2px solid var(--white);
}

.btn-white:hover {
    background-color: transparent;
    color: var(--white);
    transform: translateY(-2px);
}

.section {
    padding: 100px 0;
    background: white;
    position: relative;
}

.section.about {
    /* No margin top needed if using wrapper approach, but let's keep overlap logic */
    border-radius: 40px 40px 0 0;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.1);
    /* Ensure background is solid white to cover hero */
    background: white;
    position: relative;
    z-index: 10;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-blue);
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* Header */
.header {
    background: transparent;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
    background: var(--white);
    padding: 10px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 32px;
    font-weight: 900;
    color: var(--primary-color);
    border: 3px solid var(--primary-color);
    padding: 5px 10px;
    display: inline-block;
}

.logo-img {
    height: 60px;
    transition: height 0.3s ease;
}

.header.scrolled .logo-img {
    height: 50px;
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-list a {
    font-weight: 700;
    font-size: 13px;
    color: var(--white);
    /* White text on transparent hero */
    text-transform: uppercase;
    position: relative;
    padding-bottom: 5px;
}

.header.scrolled .nav-list a {
    color: var(--text-dark);
    /* Dark text on white header */
}

.nav-list a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-list a:hover::after {
    width: 100%;
}

/* Navbar Dropdown */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--white);
    min-width: 260px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    border-top: 3px solid var(--primary-color);
    padding: 10px 0;
    top: 100%;
}

.dropdown-content a {
    color: var(--text-dark) !important;
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    font-size: 13px;
    font-weight: 600;
    text-align: left;
    transition: all 0.2s;
}

.dropdown-content a::after {
    display: none;
    /* Remove bottom border from main nav links */
}

.dropdown-content a:hover {
    background-color: #f5f5f5;
    color: var(--primary-color) !important;
    padding-left: 25px;
    /* Slight movement on hover */
}

.dropdown:hover .dropdown-content {
    display: block;
    animation: fadeInUp 0.3s ease;
}

/* Update nav list item to handle dropdown alignment */
.nav-list li {
    display: flex;
    align-items: center;
    height: 100%;
}

/* Services List Links */
.services-list a {
    color: var(--text-blue);
    display: inline-block;
    width: 100%;
    transition: all 0.2s;
}

.services-list a:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

.hero {
    height: 100vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    position: fixed;
    /* FIXED HERO */
    top: 0;
    left: 0;
    z-index: 0;
    /* Changed from -1 to 0 to be visible */
    /* Behind content */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
    transition: background 0.05s ease-out;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: -2px;
    line-height: 1.1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero p {
    font-size: 22px;
    margin-bottom: 50px;
    font-weight: 300;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    opacity: 0.9;
    pointer-events: none;
}

.scroll-indicator .mouse {
    width: 26px;
    height: 42px;
    border: 2px solid var(--white);
    border-radius: 15px;
    position: relative;
}

.scroll-indicator .wheel {
    width: 4px;
    height: 8px;
    background-color: var(--white);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s infinite;
}

.scroll-indicator .arrow {
    font-size: 14px;
    animation: bounce-arrow 2s infinite;
}

@keyframes scroll-wheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(15px); }
}

@keyframes bounce-arrow {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-5px); }
    60% { transform: translateY(-3px); }
}

/* About */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    /* Image column larger */
    gap: 80px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    padding-left: 20px;
    /* Space for badge */
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 20px;
    border-radius: 4px;
    text-align: center;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.experience-badge .years {
    display: block;
    font-size: 42px;
    font-weight: 900;
    line-height: 1;
}

.experience-badge .text {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 20px 20px 0px rgba(231, 40, 40, 0.1);
    /* Decorative offset shadow */
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: translate(-5px, -5px);
    box-shadow: 25px 25px 0px rgba(231, 40, 40, 0.2);
}

.about-text .lead-text {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.about-features {
    margin-top: 30px;
}

.about-features li {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.about-features i {
    font-size: 24px;
    color: var(--primary-color);
    margin-top: 5px;
}

.about-features strong {
    display: block;
    font-size: 16px;
    color: var(--text-blue);
    margin-bottom: 5px;
}

.about-features p {
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

.about-text .subtitle {
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 800;
    letter-spacing: 2px;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-grey);
}

/* Services */
.services {
    background-color: #f9f9f9;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.services-list {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.services-list li {
    margin-bottom: 0px;
}

.services-list a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background: var(--white);
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    font-weight: 600;
    color: var(--text-blue);
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    font-size: 13px;
    /* Slightly compact text */
    height: 100%;
}

.services-list a i {
    font-size: 18px;
    color: var(--primary-color);
    margin-right: 12px;
    width: 20px;
    /* Fixed width for alignment */
    text-align: center;
    transition: transform 0.3s ease;
}

.services-list a::after {
    display: none;
}

.services-list a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    border-left-color: var(--primary-color);
}

.services-list a.disabled-service {
    opacity: 1;
    cursor: default;
    background: var(--white);
}

.services-list a.disabled-service:hover {
    transform: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    /* Match default shadow */
    border-left-color: transparent;
}



.services-list a.disabled-service:hover i {
    transform: none;
}

.services-note {
    margin-top: 40px;
    padding: 20px;
    background: #eef2f5;
    border-radius: 8px;
    font-size: 14px;
    color: var(--text-grey);
    border-left: 4px solid var(--text-blue);
}

.services-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Fonts & Professionalism */
body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.8;
    /* Increased for better readability */
    font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    letter-spacing: -0.5px;
    /* Tighter, more modern */
}

/* Features */
.features {
    padding: 120px 0;
    /* Increased padding */
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.feature-item {
    padding: 30px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
}

.icon-box {
    font-size: 60px;
    /* Bigger icons */
    color: var(--primary-color);
    margin-bottom: 30px;
}

.features h4 {
    font-size: 22px;
    /* Bigger titles */
    font-weight: 800;
    color: var(--text-blue);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.features p {
    font-size: 16px;
    /* Bigger text */
    color: var(--text-grey);
    line-height: 1.6;
    max-width: 250px;
    margin: 0 auto;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scroll Animation Utility Classes */
.animate-on-scroll {
    will-change: opacity, transform;
}

.hidden-el {
    opacity: 0;
}

.fade-in-up {
    animation: fadeInUp 1s ease-out forwards;
}

.fade-in-left {
    animation: fadeInLeft 1s ease-out forwards;
}

.fade-in-right {
    animation: fadeInRight 1s ease-out forwards;
}

/* Delay Utils */
.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

.delay-400 {
    animation-delay: 0.4s;
}

/* Clients */
.clients-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.client-column {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.client-column:hover {
    transform: translateY(-5px);
}

.client-column img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 25px;
    border-radius: 8px;
}

.client-column h3 {
    font-size: 24px;
    color: var(--text-blue);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.client-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
}

.client-list li {
    margin-bottom: 15px;
    color: var(--text-grey);
    font-size: 15px;
    position: relative;
    padding-left: 25px;
    font-weight: 500;
    transition: color 0.2s;
}

.client-list li::before {
    content: "\f00c";
    /* fa-check */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-size: 12px;
    top: 3px;
}

.client-list li:hover {
    color: var(--text-blue);
}

/* Contact */
.contact {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info .info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 16px;
    color: var(--text-dark);
}

.contact-info .info-item i {
    color: var(--primary-color);
    font-size: 20px;
    width: 25px;
}

.map-container {
    margin-top: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    overflow: hidden;
}

.contact-form-wrapper {
    background: var(--light-grey);
    padding: 40px;
    border-radius: 5px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-blue);
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-main);
    background: var(--white);
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

/* Custom Checkbox Styling */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 25px;
    margin-bottom: 25px;
}

/* Hide original checkbox */
.checkbox-group input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create custom checkbox container */
.checkbox-group label {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-grey);
    font-weight: 400;
    user-select: none;
    display: inline-block;
}

/* Background of checkbox */
.checkbox-group label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    height: 20px;
    width: 20px;
    background-color: var(--white);
    border: 2px solid #ddd;
    border-radius: 4px;
    transition: all 0.3s ease;
}

/* Hover state */
.checkbox-group:hover input ~ label::before {
    border-color: var(--primary-color);
}

/* Checked state background */
.checkbox-group input:checked ~ label::before {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Checkmark (hidden by default) */
.checkbox-group label::after {
    content: "";
    position: absolute;
    display: none;
    left: 7px;
    top: 3px;
    width: 6px;
    height: 11px;
    border: solid white;
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg);
}

/* Show checkmark when checked */
.checkbox-group input:checked ~ label::after {
    display: block;
}

.checkbox-group label a {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 600;
}

.checkbox-group label a:hover {
    color: var(--text-blue);
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 80px 0 30px;
    font-size: 14px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h4 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a {
    color: #bbb;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-col p {
    color: #bbb;
    margin-bottom: 15px;
    line-height: 1.6;
}

.footer-col i {
    color: var(--primary-color);
    margin-right: 10px;
    width: 20px;
}

.footer-logo {
    height: 45px;
    /* Slightly smaller to fit better */
    filter: brightness(0) invert(1);
    margin-bottom: 25px;
    display: block;
    /* Ensure it takes its own line */
}

/* Social Icons */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: #333;
    color: #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 16px;
    /* Ensure icon size is reasonable */
}

.social-btn i {
    margin: 0 !important;
    padding: 0 !important;
    width: auto !important;
    background: none !important;
    color: #fff !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.social-btn:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.social-btn:hover i {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    text-align: center;
    color: #777;
}

/* Responsive Footer */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 20px;
    }

    .nav-list {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .about-grid,
    .services-grid,
    .clients-grid,
    .features-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Mobile Optimized Services Grid */
    .services-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .services-list a {
        padding: 12px 10px;
        font-size: 11.5px;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 8px;
    }

    .services-list a i {
        margin-right: 0;
        font-size: 20px;
    }

    .hero h1 {
        font-size: 32px;
    }
}

/* Main Wrapper to push content below fixed hero */
.main-wrapper {
    position: relative;
    z-index: 10;
    background: white;
    margin-top: 100vh;
    /* Start below full hero height */
    border-radius: 40px 40px 0 0;
    /* Rounded top corners */
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.15);
    /* Shadow for depth */
}

/* Ensure footer is handled */
.footer {
    position: relative;
    z-index: 10;
    background: #1A1A1A;
}

/* WhatsApp Button */
/* WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.whatsapp-float.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(0);
    background-color: #128c7e;
    color: #fff;
    box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.4);
}

.whatsapp-float i {
    margin-top: 2px;
}

/* ===========================
   Service / Gallery Pages
   =========================== */
.service-header {
    background: var(--text-blue);
    padding: 120px 0 60px;
    color: white;
    text-align: center;
}

.gallery {
    padding: 60px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.03);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    cursor: pointer;
    z-index: 2002;
}

.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 40px;
    cursor: pointer;
    padding: 20px;
    z-index: 2001;
    transition: color 0.3s;
    user-select: none;
}

.lightbox-arrow:hover {
    color: var(--primary-color);
}

.lightbox-arrow.left {
    left: 20px;
}

.lightbox-arrow.right {
    right: 20px;
}

/* Service Intro Section */
.service-intro {
    padding: 80px 0 40px;
    background: white;
}

.service-intro h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-blue);
    margin-bottom: 20px;
}

.service-intro p {
    font-size: 16px;
    color: var(--text-grey);
    line-height: 1.8;
    margin-bottom: 15px;
}

.service-intro a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
}

.service-intro a:hover {
    color: #c02020;
}

/* Service Keywords List */
.service-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.service-keywords span {
    display: inline-block;
    background: #f0f0f0;
    color: var(--text-blue);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}