/* --- MAIN STYLES --- */

* {
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    position: relative;
}

/* Section Utility */
section {
    padding: 80px 5%;
}

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

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

/* --- BUTTONS --- */
.btn-primary {
    display: inline-block;
    background-color: var(--primary);
    color: white;
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(36, 107, 167, 0.3);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(36, 107, 167, 0.4);
    background-color: var(--primary-dark);
}

/* --- NAVBAR STYLES --- */
.main-header {
    position: fixed;
    top: 40px; /* Increased from 30px for more spacing */
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
}

/* Adjust for WordPress Admin Bar */
.admin-bar .main-header {
    top: 72px; /* 32px admin bar + 40px gap */
}

@media screen and (max-width: 782px) {
    .admin-bar .main-header {
        top: 86px; /* 46px admin bar + 40px gap */
    }
}

.main-header.scrolled {
    top: 0;
    padding-top: 10px;
    padding-bottom: 10px;
}

.navbar-container {
    max-width: 1300px; /* Wider for navbar */
    padding: 0 20px;
}

@media (max-width: 576px) {
    .navbar-container {
        padding: 0 10px;
    }
}

.navbar-pill {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.main-header.scrolled .navbar-pill {
    margin-top: 5px;
    border-radius: 30px;
    padding: 8px 15px;
}

.navbar-logo {
    flex: 0 0 auto;
    padding-left: 10px;
}

.logo-img {
    height: 45px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    display: block;
}

@media (max-width: 480px) {
    .logo-img {
        height: 35px;
        max-width: 140px;
    }
}

.navbar-menu-wrapper {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.navbar-nav {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.navbar-nav li {
    margin: 0 15px;
}

.navbar-nav li a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
}

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

.navbar-nav li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.navbar-nav li a:hover::after {
    width: 100%;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-toggle {
    background: transparent;
    border: 1px solid #ddd;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-toggle:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.navbar-btn {
    background: transparent;
    border: 1px solid var(--text-dark);
    padding: 10px 24px;
    border-radius: 40px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

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

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

/* Mobile Responsive Navbar */
@media (max-width: 991px) {
    /* Overlay for the sidebar */
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(2px);
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    body.no-scroll {
        overflow: hidden;
    }

    .navbar-menu-wrapper {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #fff;
        z-index: 1001;
        display: flex;
        flex-direction: column;
        padding: 100px 30px 40px; /* Space for the top edge */
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    }
    
    .navbar-menu-wrapper.sidebar-active {
        right: 0;
    }

    .navbar-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }

    .navbar-nav li {
        margin: 0;
    }
    
    .navbar-nav li a {
        font-size: 1.25rem;
        font-weight: 600;
    }

    .mobile-toggle {
        display: block;
        margin-left: 10px;
        z-index: 1002; /* Must be entirely above the sidebar / overlay */
        position: relative;
    }
    
    .navbar-btn {
        display: none !important; /* Hide arrow button on mobile as requested */
    }
    
    .navbar-pill {
        padding: 5px 12px; /* Tighter padding for mobile pill */
    }
    
    .main-header {
        top: 0; /* No gap on mobile */
        padding-top: 5px;
    }
    
    .main-header.scrolled {
        padding-top: 0;
    }
    
    .main-header.scrolled .navbar-pill {
        margin-top: 0;
        border-radius: 0;
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
    }
}

/* --- HERO SECTION --- */
.hero {
    background: var(--bg-desktop);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 180px;
    padding-bottom: 140px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero {
        background: var(--bg-mobile);
        background-size: cover;
        background-position: center;
    }
}

/* Overlay to ensure text readability over background images */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.65);
    z-index: 0;
}

/* Subtle background pattern could be added here */

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: 4.5rem; /* Slightly reduced to fit longer line */
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 30px;
    letter-spacing: -1.5px;
}

.title-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    font-size: 1.8rem;
    vertical-align: middle;
    margin: 0 10px;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 750px;
    margin: 0 auto 50px;
    width: 100%;
}

/* Premium Button Style from Reference */
.btn-hero {
    display: inline-flex;
    align-items: center;
    background: white;
    color: var(--text-dark);
    padding: 10px 10px 10px 30px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    transition: var(--transition);
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: #fafafa;
}

.btn-icon-circle {
    width: 40px;
    height: 40px;
    background: #000;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 20px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-hero:hover .btn-icon-circle {
    transform: rotate(-45deg);
}

@media (max-width: 992px) {
    .hero-title { font-size: 3.5rem; }
    .title-icon { width: 45px; height: 45px; font-size: 1.4rem; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.2rem; }
    .hero-description { font-size: 1.1rem; margin-bottom: 30px; }
    .hero { padding-top: 120px; padding-bottom: 60px; }

    /* Services Grid Mobile - 1 Column */
    .services-grid,
    .leist-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
        display: grid;
    }
    
    .service-card {
        height: 300px; /* Better height for single column on mobile */
    }
    
    .service-card-content {
        padding: 20px;
    }
    
    .service-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        margin-bottom: 12px;
        border-radius: 12px;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
        margin-bottom: 8px;
        text-shadow: 0 1px 3px rgba(0,0,0,0.5);
    }
    
    .service-card p {
        font-size: 0.9rem;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .card-arrow {
        width: 35px;
        height: 35px;
        bottom: 20px;
        right: 20px;
        font-size: 1rem;
    }
}

/* --- ABOUT SECTION V2 (Home Page Layout) --- */
.about {
    background-color: white;
    padding: 100px 0;
    overflow: hidden;
}

.about-grid-v2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-column {
    position: relative;
    padding-right: 40px; /* Space for outdented box */
}

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 500px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image-placeholder {
    width: 100%;
    height: 100%;
    background-color: #f0f4f8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 80px;
    opacity: 0.2;
}

/* Floating overlapping box */
.about-floating-box {
    position: absolute;
    top: 50%;
    right: -40px;
    transform: translateY(-50%);
    background: var(--primary);
    color: white;
    width: 320px;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(36, 107, 167, 0.3);
    z-index: 2;
}

.floating-box-item h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.floating-box-item p {
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.floating-box-divider {
    height: 1px;
    background: rgba(255,255,255,0.2);
    margin: 30px 0;
}

/* Text Content Area */
.about-eyebrow {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}

.about-text-column h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    line-height: 1.15;
    margin-bottom: 25px;
    color: var(--text-dark);
    letter-spacing: -1px;
}

.about-lead {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-text-column p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.about-check-list {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
}

.about-check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-weight: 500;
    font-size: 1.05rem;
    color: var(--text-dark);
}

.about-check-list li i {
    color: var(--primary);
    font-size: 1.1rem;
}

/* Mobile Breakpoints */
@media (max-width: 992px) {
    .about-grid-v2 {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .about-image-column {
        padding-right: 0;
        margin-bottom: 30px;
    }
    .about-floating-box {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        width: 90%;
        margin: -80px auto 0;
    }
}

@media (max-width: 768px) {
    .about-text-column h2 {
        font-size: 1.8rem;
    }
    .about-eyebrow {
        font-size: 0.75rem;
    }
}

/* --- SERVICES GRID --- */
.services {
    background-color: #fafbfc;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    position: relative;
    height: 380px; /* Adjusted height for better proportions */
    border-radius: 20px;
    overflow: hidden;
    background-image: var(--bg-image);
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: none;
    padding: 0; /* Content padding handled by inner div */
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.service-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
    transition: var(--transition);
}

.service-card:hover .service-card-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
}

.service-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: white;
    box-sizing: border-box;
}

/* Glassmorphism effect for the text area */
.service-card-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    /* Fade the blur from top to bottom */
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 25%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 25%);
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover .service-card-content::before {
    opacity: 1;
}

.service-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border-radius: 12px;
    margin-bottom: 20px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

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

.service-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: white; /* Header is white on dark overlay */
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.service-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin-bottom: 0;
    line-height: 1.5;
    opacity: 0.8;
    transition: var(--transition);
}

.service-card:hover p {
    opacity: 1;
}

.card-arrow {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: var(--transition);
}

.service-card:hover .card-arrow {
    background: white;
    color: var(--primary);
    transform: rotate(-45deg);
    border-color: white;
}

.card-link-wrapper {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

/* --- WHY CHOOSE US (BENEFITS) --- */
.benefits {
    background-color: white;
}

.section-header.text-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.benefits-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 700;
}

.benefits-lead {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.benefits-grid-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: stretch;
}

.benefits-main-image {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    height: 100%;
    min-height: 480px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05); /* Softer shadow */
}

.benefits-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.benefits-main-image:hover img {
    transform: scale(1.05);
}

.benefits-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.benefit-card {
    background-color: #f4f7fb;
    padding: 35px 20px;
    border-radius: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: 1px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-5px);
    background-color: white;
    border-color: var(--primary);
    box-shadow: 0 10px 25px rgba(36, 107, 167, 0.1);
}

.benefit-card-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
    transition: var(--transition);
}

.benefit-card:hover .benefit-card-icon {
    transform: scale(1.15);
}

.benefit-card h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    color: var(--text-dark);
    line-height: 1.4;
}

@media (max-width: 992px) {
    .benefits-grid-main {
        grid-template-columns: 1fr;
    }
    .benefits-main-image {
        min-height: 350px;
    }
    .benefits-title {
        font-size: 2.3rem;
    }
}

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

/* --- SERVICES PAGE SPECIFIC STYLES --- */
.services-template {
    background-color: var(--bg-white);
}

.services-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 100px 5% 60px;
    text-align: center;
}

.services-hero h1 {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.intro-text {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.7;
}

/* --- SERVICES SECTION --- */
.services {
    padding: 100px 0;
    background-color: #fcfdfe;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two columns as requested */
    gap: 50px; /* Increased gap */
}

.service-card {
    position: relative;
    height: 480px; /* Increased height from 380px */
    border-radius: 30px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    transition: var(--transition);
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.services-detailed {
    padding: 60px 5% 100px;
}

.services-grid-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-detail-card {
    background: white;
    padding: 50px 40px;
    border-radius: 25px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid var(--accent-light);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-detail-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(36, 107, 167, 0.1);
}

.service-detail-card .card-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(36, 107, 167, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    border-radius: 12px;
    margin-bottom: 25px;
    transition: var(--transition);
}

.service-detail-card:hover .card-icon {
    background-color: var(--primary);
    color: white;
}

.service-detail-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    font-family: 'Outfit', sans-serif;
}

.service-detail-card p {
    color: var(--text-muted);
    margin-bottom: 25px;
    flex-grow: 1;
}

.card-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.service-detail-card:hover .card-link {
    gap: 12px;
}

/* Services CTA */
.services-cta {
    padding: 100px 5%;
    background-color: #fafbfc;
}

.cta-box {
    background: var(--primary);
    border-radius: 30px;
    padding: 80px 40px;
    text-align: center;
    color: white;
    box-shadow: 0 20px 50px rgba(36, 107, 167, 0.3);
}

.cta-box h2 {
    font-size: 2.8rem;
    color: white;
    margin-bottom: 15px;
}

.cta-box .sub-text {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

.phone-numbers {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.phone-link {
    background: white;
    color: var(--primary);
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 1.4rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
}

.phone-link:hover {
    transform: scale(1.05);
    background: #f0f7ff;
}

@media (max-width: 768px) {
    .services-hero h1 { font-size: 2.4rem; }
    .cta-box { padding: 60px 20px; }
    .cta-box h2 { font-size: 2.2rem; }
    .phone-link { padding: 15px 30px; font-size: 1.1rem; }
}

/* --- SERVICE DETAIL LAYOUT --- */
.service-detail-template {
    background-color: #fafbfc;
}

.service-detail-hero {
    background: var(--primary);
    padding: 140px 0 80px; /* Increased top padding to clear fixed header */
    color: white;
    text-align: center;
}

.service-detail-hero h1 {
    color: white;
    font-size: 3rem;
    margin: 0;
}

.service-detail-main {
    padding: 80px 5%;
}

.service-grid-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-content-area {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.service-content-area h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--primary);
}

.service-content-area h3 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.service-content-area p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-content-area ul {
    list-style: none;
    margin-bottom: 30px;
}

.service-content-area ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.service-content-area ul li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* Sidebar Styling */
.service-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-card {
    background: white;
    padding: 35px;
    display: inline-block;
    margin-top: 15px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.card-link:hover {
    transform: translateX(5px);
}

.sidebar-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.sidebar-contact-item i {
    color: var(--primary);
    font-size: 1.2rem;
}

.sidebar-contact-item a {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-dark);
    transition: var(--transition);
}

.sidebar-contact-item a:hover {
    color: var(--primary);
}

.sidebar-cta-btn {
    display: block;
    background: var(--primary);
    color: white;
    text-align: center;
    padding: 15px;
    border-radius: 10px;
    font-weight: 600;
    margin-top: 10px;
    transition: var(--transition);
}

.sidebar-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(36, 107, 167, 0.2);
}

.card-link-wrapper {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.sidebar-why-us {
    background: var(--primary);
    color: white;
    padding: 35px;
    border-radius: 20px;
}

.sidebar-why-us h3 { color: white; }

.why-us-item {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 1rem;
}

.why-us-item i { color: #82b1ff; }

/* Responsive Grid */
@media (max-width: 992px) {
    .service-grid-layout {
        grid-template-columns: 1fr;
    }
    .service-content-area { padding: 30px; }
}

.benefits-list {
    list-style: none;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 15px;
    background: #fafbfc;
    transition: var(--transition);
}

.benefit-item:hover {
    background: rgba(36, 107, 167, 0.03);
    transform: translateX(10px);
}

.benefit-item i {
    color: var(--primary);
    font-size: 1.2rem;
    margin-top: 3px;
}

.benefit-item span {
    font-weight: 600;
    font-size: 1.1rem;
}

/* --- CONTACT PAGE STYLES --- */
.contact-intro {
    padding: 80px 5% 40px;
    text-align: center;
}

.contact-intro p {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 20px;
}

.contact-data {
    padding: 40px 5% 80px;
}

.contact-data-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-card-v2 {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    border-bottom: 5px solid var(--accent-light);
    transition: var(--transition);
}

.contact-card-v2:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.contact-card-v2 .card-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.contact-card-v2 h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.card-numbers {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}

.card-numbers a {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-dark);
}

.card-numbers a:hover { color: var(--primary); }

.contact-card-v2 p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 5%;
    background-color: #fafbfc;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 { font-size: 2.2rem; margin-bottom: 10px; }

.styled-inquiry-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.styled-inquiry-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.styled-inquiry-form label {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.styled-inquiry-form input, 
.styled-inquiry-form textarea {
    padding: 15px;
    border: 1px solid var(--accent-light);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.styled-inquiry-form input:focus, 
.styled-inquiry-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(36, 107, 167, 0.1);
}

.form-submit {
    text-align: center;
    margin-top: 20px;
}

.form-footer {
    text-align: center;
    margin-top: 30px;
    color: var(--text-muted);
}

/* Benefits & Final CTA */
.contact-benefits {
    padding: 80px 5%;
}

.benefits-accent-box {
    background: var(--primary);
    color: white;
    padding: 60px;
    border-radius: 30px;
    text-align: center;
}

.benefits-accent-box h2 { color: white; margin-bottom: 20px; }

.benefits-grid-v2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.benefit-tag {
    background: rgba(255, 255, 255, 0.15);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 500;
}

.final-cta {
    padding: 100px 5%;
    background: white;
}

.cta-phones {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 60px;
}

.cta-phones a {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 15px;
}

.final-branding {
    border-top: 1px solid var(--accent-light);
    padding-top: 60px;
}

.final-branding h3 { margin-bottom: 15px; }

@media (max-width: 768px) {
    .styled-inquiry-form .form-row { grid-template-columns: 1fr; }
    .form-container { padding: 40px 20px; }
    .cta-phones { flex-direction: column; align-items: center; }
    .cta-phones a { font-size: 1.4rem; }
}

/* --- SERVICE REGION --- */
.region {
    background-color: var(--primary);
    color: white;
    text-align: center;
}

.region h2 {
    font-family: 'Outfit', sans-serif;
    color: white;
    font-size: 2.5rem;
    margin-bottom: 30px;
}

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

.region-tag {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 500;
    transition: var(--transition);
}

.region-tag:hover {
    background: white;
    color: var(--primary);
}

/* --- FOOTER/CONTACT --- */
footer {
    background-color: #0d1b2a;
    color: white;
    padding: 80px 5% 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-about h3, .footer-contact h3 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.5rem;
    position: relative;
    font-family: 'Outfit', sans-serif;
}

.footer-about h3::after, .footer-contact h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 3px;
    background-color: var(--primary);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-info-item i {
    color: var(--primary);
    font-size: 1.2rem;
    margin-top: 5px;
}

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

/* --- RESPONSIVENESS --- */
@media (max-width: 992px) {
    .hero h1 { font-size: 2.8rem; }
    .about-grid, .benefits-content, .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    section { padding: 60px 5%; }
    .hero h1 { font-size: 2.2rem; }
    .hero .sub-headline { font-size: 1.2rem; }
    .about-features { grid-template-columns: 1fr; }
}


/* ================================================
   ABOUT US PAGE STYLES
================================================ */

/* --- ABOUT HERO --- */
.about-hero {
    background: linear-gradient(160deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding-top: 180px;
    padding-bottom: 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top left, rgba(255,255,255,0.08) 0%, transparent 60%);
}

.about-hero-text {
    position: relative;
    z-index: 1;
    max-width: 780px;
    margin: 0 auto 60px;
}

.about-hero-text h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.about-hero-text p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin-bottom: 36px;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    background: white;
    color: var(--primary-dark);
    padding: 10px 10px 10px 28px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border: none;
    transition: var(--transition);
    gap: 0;
}

.about-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.2);
}

.about-btn .btn-icon-circle {
    background: var(--primary);
    color: white;
    margin-left: 16px;
}

.about-btn:hover .btn-icon-circle {
    transform: rotate(-45deg);
}

.secondary-btn {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 14px 28px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-block;
    transition: var(--transition);
}

.secondary-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

/* Hero Image Trio */
.about-hero-images {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
}

.about-img-item {
    border-radius: 20px;
    overflow: hidden;
    height: 300px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    transition: transform 0.5s ease;
}

.about-img-item:nth-child(2) {
    margin-top: -40px; /* Stagger center image down */
}

.about-img-item:hover {
    transform: translateY(-10px);
}

.about-img-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- STATS SECTION --- */
.stats-section {
    background: white;
    padding: 100px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.stat-card {
    border: 1.5px solid #e8edf5;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(36,107,167,0.1);
}

.stat-card:nth-child(2) {
    border-color: var(--primary);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.stat-card:nth-child(2) .stat-number,
.stat-card:nth-child(2) .stat-label {
    color: white;
}

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* --- MISSION SECTION --- */
.mission-section {
    background: #f8faff;
    padding: 100px 0;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.mission-image .img-wrapper {
    position: relative;
}

.mission-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 24px;
    display: block;
    box-shadow: var(--shadow);
}

.accent-box {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 12px;
}

.accent-box.primary {
    background: var(--primary);
    bottom: -20px;
    left: -20px;
    z-index: -1;
    opacity: 0.6;
}

.accent-box.secondary {
    background: #f0c040;
    top: -16px;
    right: -16px;
    z-index: -1;
    opacity: 0.7;
    width: 80px;
    height: 80px;
}

.mission-content h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.2;
}

.mission-content > p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 32px;
}

.mission-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mission-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.5;
}

.mission-list li i {
    color: var(--primary);
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* --- VALUES / WHY CHOOSE US SECTION --- */
.values-section {
    background: white;
    padding: 100px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.values-content h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.values-content > p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 36px;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: var(--transition);
    cursor: default;
}

.value-item:last-of-type {
    border-bottom: none;
}

.value-item:hover {
    padding-left: 8px;
}

.value-icon {
    width: 52px;
    height: 52px;
    background: #eef2ff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
    color: var(--primary);
    transition: var(--transition);
}

.value-item:hover .value-icon {
    background: var(--primary);
    color: white;
}

.value-text {
    flex: 1;
}

.value-text h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 4px;
}

.value-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

.value-arrow {
    color: var(--text-muted);
    font-size: 1rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.value-item:hover .value-arrow {
    color: var(--primary);
    transform: translateX(5px);
}

.values-image {
    border-radius: 24px;
    overflow: hidden;
    height: 600px;
    box-shadow: var(--shadow);
}

.values-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.values-image:hover img {
    transform: scale(1.04);
}

/* --- ABOUT PAGE RESPONSIVE --- */
@media (max-width: 992px) {
    .about-hero-text h1 { font-size: 2.5rem; }
    .about-hero-images { grid-template-columns: 1fr; gap: 12px; }
    .about-img-item:nth-child(2) { margin-top: 0; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .mission-grid, .values-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 576px) {
    .about-hero-text h1 { font-size: 2rem; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .stat-number { font-size: 2.2rem; }
    .mission-content h2, .values-content h2 { font-size: 2rem; }
}


/* ================================================
   LEISTUNGEN PAGE STYLES
================================================ */

/* --- Hero --- */
.leistungen-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.leistungen-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-color: var(--primary-dark); /* fallback */
}

.lh-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10,30,60,0.85) 40%, rgba(10,30,60,0.4) 100%);
}

.lh-content {
    position: relative;
    z-index: 2;
    padding-top: 160px;
    padding-bottom: 100px;
    max-width: 750px;
}

.leist-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.25);
    color: white;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.lh-content h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.lh-content p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin-bottom: 36px;
}

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

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

/* --- Cards Section --- */
.leist-cards-section {
    background: #f8faff;
    padding: 100px 0;
}

.leist-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.leist-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    border: 1px solid #f0f0f0;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.leist-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(36,107,167,0.12);
    border-color: rgba(36,107,167,0.2);
}

.leist-card-img {
    height: 220px;
    background-size: cover;
    background-position: center;
    background-color: #c8d8e8;
    position: relative;
    overflow: hidden;
    transition: transform 0.6s ease;
}

.leist-card:hover .leist-card-img {
    transform: scale(1.04);
}

.leist-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,30,60,0.3) 0%, transparent 60%);
}

.leist-card-body {
    padding: 32px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.leist-icon {
    width: 50px;
    height: 50px;
    background: #eef2ff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 18px;
    transition: var(--transition);
}

.leist-card:hover .leist-icon {
    background: var(--primary);
    color: white;
}

.leist-card-body h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.leist-card-body p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.65;
    flex: 1;
    margin-bottom: 20px;
}

.leist-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.leist-card:hover .leist-link {
    gap: 14px;
}

/* --- Why Strip --- */
.leist-why-strip {
    background: var(--primary-dark);
    padding: 60px 0;
}

.leist-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.leist-why-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    color: white;
}

.leist-why-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: background 0.3s;
}

.leist-why-item:hover .leist-why-icon {
    background: var(--primary);
}

.leist-why-item h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin: 0 0 6px;
}

.leist-why-item p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.7);
    margin: 0;
    line-height: 1.5;
}

/* --- CTA Section --- */
.leist-cta {
    background: white;
    padding: 80px 0;
}

.leist-cta-inner {
    background: linear-gradient(135deg, #f0f7ff, #e6f0ff);
    border-radius: 28px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    border: 1px solid rgba(36,107,167,0.12);
}

.leist-cta-text h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 10px;
}

.leist-cta-text p {
    font-size: 1rem;
    color: var(--text-muted);
    margin: 0;
}

.leist-cta-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.cta-phone-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: var(--primary-dark);
    border: 1.5px solid var(--primary);
    padding: 14px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
}

.cta-phone-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .leist-grid { grid-template-columns: repeat(2, 1fr); }
    .leist-why-grid { grid-template-columns: repeat(2, 1fr); }
    .lh-content h1 { font-size: 2.6rem; }
    .leist-cta-inner { flex-direction: column; text-align: center; }
    .leist-cta-actions { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 576px) {
    .leist-grid { grid-template-columns: 1fr; }
    .leist-why-grid { grid-template-columns: 1fr; }
    .lh-content h1 { font-size: 2rem; }
    .leistungen-hero { min-height: auto; }
    .leist-cta-inner { padding: 40px 24px; }
}


/* ================================================
   SERVICE DETAIL PAGE STYLES
================================================ */

/* --- Hero --- */
.svc-detail-page .svc-hero {
    position: relative;
    min-height: 55vh;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
    background-color: var(--primary-dark);
    overflow: hidden;
}

.svc-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(6, 20, 48, 0.92) 0%,
        rgba(6, 20, 48, 0.6) 50%,
        rgba(6, 20, 48, 0.2) 100%
    );
}

.svc-hero-content {
    position: relative;
    z-index: 2;
    padding-bottom: 70px;
    padding-top: 140px;
}

.svc-breadcrumb {
    display: inline-block;
    margin-bottom: 20px;
}

.svc-breadcrumb a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s;
}

.svc-breadcrumb a:hover { color: white; }

.svc-hero-icon {
    width: 64px;
    height: 64px;
    background: var(--primary);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(36,107,167,0.4);
}

.svc-hero-content h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    color: white;
    margin: 0 0 12px;
    line-height: 1.1;
}

.svc-hero-content > p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.8);
    margin: 0;
}

/* --- Main Section --- */
.svc-main-section {
    background: #f8faff;
    padding: 80px 0 100px;
}

.svc-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 50px;
    align-items: start;
}

/* --- Content Area --- */
.svc-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.svc-intro-block h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.25;
}

.svc-intro-block p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 12px;
}

.svc-feature-img {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.svc-feature-img img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.svc-feature-img:hover img { transform: scale(1.03); }

.svc-feature-block {
    background: white;
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    border: 1px solid #f0f0f0;
}

.svc-feature-block h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.svc-feature-block h3 i { color: var(--primary); }

.svc-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.svc-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--text-dark);
}

.svc-list li i {
    width: 22px;
    height: 22px;
    background: #e8f4ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.7rem;
    flex-shrink: 0;
}

.svc-feature-block > p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
}

/* --- Process Steps --- */
.svc-process {
    background: white;
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    border: 1px solid #f0f0f0;
}

.svc-process h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 28px;
}

.svc-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.svc-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding-bottom: 28px;
    position: relative;
}

.svc-step:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 19px;
    top: 42px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary) 0%, #e0ecff 100%);
}

.step-num {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(36,107,167,0.3);
}

.svc-step div h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 8px 0 6px;
}

.svc-step div p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

/* --- Sticky Sidebar --- */
.svc-sidebar {
    position: sticky;
    top: 120px;
}

.svc-sidebar-inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.svc-contact-card {
    background: white;
    border-radius: 24px;
    padding: 36px;
    box-shadow: 0 8px 30px rgba(36,107,167,0.08);
    border: 1px solid #e8f0ff;
    text-align: center;
}

.svc-contact-icon-header {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: white;
    margin: 0 auto 20px;
    box-shadow: 0 8px 20px rgba(36,107,167,0.3);
}

.svc-contact-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.svc-contact-card > p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.5;
}

.svc-phone-link,
.svc-email-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #f8faff;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 10px;
    transition: background 0.3s, color 0.3s;
}

.svc-phone-link i, .svc-email-link i {
    color: var(--primary);
    font-size: 1rem;
}

.svc-phone-link:hover, .svc-email-link:hover {
    background: #e8f0ff;
    color: var(--primary);
}

.svc-contact-cta {
    display: block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 16px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    margin-top: 20px;
    transition: var(--transition);
    box-shadow: 0 8px 20px rgba(36,107,167,0.3);
}

.svc-contact-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(36,107,167,0.4);
}

.svc-why-card {
    background: white;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    border: 1px solid #f0f0f0;
}

.svc-why-card h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.svc-why-card h4 i { color: #f59e0b; }

.svc-why-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-dark);
    padding: 8px 0;
    border-bottom: 1px solid #f5f5f5;
}

.svc-why-item:last-child { border-bottom: none; }

.svc-why-item i { color: var(--primary); font-size: 0.85rem; }

.svc-address-card {
    background: white;
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-muted);
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    border: 1px solid #f0f0f0;
}

.svc-address-card i { color: var(--primary); font-size: 1.1rem; flex-shrink: 0; }

/* --- SERVICE REGION ENHANCED --- */
.region {
    position: relative;
    background-color: #246BA7; /* The brand primary blue */
    padding: 100px 5%;
    overflow: hidden;
    text-align: center;
}

.region-map-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    min-height: 400px;
    background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
    z-index: 1;
    pointer-events: none;
}

/* Subtle glowing pulse animation to simulate location markers */
.region-map-bg::before,
.region-map-bg::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    top: 30%;
    left: 20%;
    animation: pulse-ring 3s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

.region-map-bg::after {
    top: 60%;
    left: 70%;
    animation-delay: 1.5s;
}

@keyframes pulse-ring {
    0% { transform: scale(0.5); opacity: 1; }
    80%, 100% { transform: scale(3.5); opacity: 0; }
}

.region .relative.z-10 {
    position: relative;
    z-index: 10;
}

.region-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 40px;
}

.region-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
}

.region-tag {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: default;
}

.region-tag:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .region-title {
        font-size: 2.2rem;
    }
    .region {
        padding: 60px 5%;
    }
}

.svc-cta-inner .btn-primary:hover {
    background: #f0f7ff;
    transform: translateY(-3px);
}

/* --- SVC Detail Responsive --- */
@media (max-width: 1024px) {
    .svc-layout { grid-template-columns: 1fr; }
    .svc-sidebar { position: static; }
}

@media (max-width: 768px) {
    .svc-hero-content h1 { font-size: 2.2rem; }
    .svc-cta-inner { flex-direction: column; text-align: center; }
    .svc-detail-page .svc-hero { min-height: auto; }
}

@media (max-width: 480px) {
    .svc-hero-content h1 { font-size: 1.8rem; }
    .svc-feature-img img { height: 250px; }
}
