.page-header {
            padding: 160px 0 80px;
            text-align: center;
            background: linear-gradient(180deg, rgba(192,10,39,0.05) 0%, rgba(250,250,250,0) 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;
            }
        }
