/* Services Hero Section */
.services-hero-breakout {
    position: relative;
    min-height: 500px;
    padding: 160px 0 120px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: calc(-1 * var(--nav-height, 110px));
}

.services-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background-color: #0f172a;
}

.services-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.25;
}

.services-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.5) 0%, rgba(15, 23, 42, 0.2) 100%);
    z-index: -1;
}

.services-hero-content {
    position: relative;
    z-index: 1;
    max-width: 850px;
    color: #ffffff;
    text-align: center;
    margin: 0 auto;
}

.hero-subtitle {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 28px;
    color: #f3f4f6;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.hero-title {
    font-size: clamp(3.2rem, 6vw, 4.8rem);
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 28px;
    color: #ffffff;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero-title span {
    color: var(--c-primary);
    position: relative;
    display: inline-block;
}

.hero-description {
    font-size: clamp(1.15rem, 2vw, 1.3rem);
    line-height: 1.6;
    color: rgba(243, 244, 246, 0.95);
    margin-bottom: 48px;
    text-align: center !important;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.1rem;
    border-radius: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transition: all var(--t-smooth);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
    color: #ffffff;
}

@media (max-width: 768px) {
    .services-hero {
        padding: 160px 0 80px;
        min-height: 65vh;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .btn-large {
        width: 100%;
    }
}

        html, body {
            overflow-x: hidden;
            max-width: 100%;
        }
        .page-title {
            font-size: 3.5rem;
            color: var(--c-primary);
            margin-bottom: 24px;
            letter-spacing: -0.02em;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            padding: 40px 0 100px;
        }
        
        .service-card {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 24px;
            box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
            /* overflow: hidden; UNUSED to prevent share menu clipping */
            transition: all var(--t-smooth);
            display: flex;
            flex-direction: column;
            position: relative;
            min-width: 0;
            max-width: 100%;
        }
        .service-card:hover { 
            transform: translateY(-12px); 
            box-shadow: 0 15px 45px 0 rgba(31, 38, 135, 0.12);
            border-color: var(--c-primary);
        }
        
        .service-img-wrapper {
            position: relative;
            height: 240px;
            overflow: hidden;
            border-radius: 24px 24px 0 0; /* Apply radius here instead of card overflow */
        }
        .service-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        .service-card:hover .service-img { transform: scale(1.1); }
        
        .service-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--c-primary);
            color: white;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        
        .service-content {
            padding: 32px;
            flex: 1;
            display: flex;
            flex-direction: column;
            min-width: 0;
            max-width: 100%;
        }
        
        .service-content h3 { 
            font-size: 1.5rem; 
            margin-bottom: 16px; 
            line-height: 1.2;
            color: var(--c-text);
        }
        .service-content p { 
            color: var(--c-text-light); 
            margin-bottom: 28px; 
            flex: 1; 
            font-size: 1rem;
            line-height: 1.6;
            text-align: justify;
        }

        .features-list {
            list-style: none;
            margin-bottom: 30px;
        }
        .features-list li {
            font-size: 0.9rem;
            color: var(--c-text);
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 10px;
            overflow-wrap: anywhere;
            word-break: break-word;
        }
        
        .btn-booking {
            width: 100%;
            padding: 16px;
            font-weight: 600;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        
        @media (max-width: 1000px) {
            .services-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
        }
        @media (max-width: 650px) {
            .services-grid { grid-template-columns: 1fr; }
            .page-title { font-size: 2.5rem; }
            .service-content {
                padding: 20px;
            }
            .btn-booking {
                padding: 12px;
                font-size: 0.9rem;
                border-radius: 10px;
            }
            .service-content .btn {
                white-space: nowrap !important;
                font-size: 0.84rem !important;
                line-height: 1.25;
            }
            .service-cta-row {
                display: flex !important;
                flex-wrap: nowrap !important;
                gap: 10px !important;
            }
            .service-cta-row .btn {
                flex: 1 1 0 !important;
                min-width: 0 !important;
            }
            .service-content p,
            .service-content li,
            .service-content h3 {
                overflow-wrap: anywhere;
                word-break: break-word;
            }
        }

.services-content-container { position: relative; z-index: 10; margin-top: -80px; margin-bottom: 60px; }
.services-shell { background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(24px); border-radius: 24px; padding: 40px; box-shadow: 0 20px 40px rgba(0,0,0,0.08); border: 1px solid rgba(255, 255, 255, 0.6); }
@media (max-width: 768px) {
    .services-shell { padding: 24px 16px; border-radius: 20px; }
}
@media (max-width: 480px) {
    .services-shell { padding: 20px 12px; border-radius: 16px; }
}




