
.services-section--dark .service-card__qr-wrapper {
    border: 2px solid var(--clr-gold);
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.2);
    background: rgba(255, 255, 255, 0.95);
}

.services-section--dark .service-card__desc li:before {
    color: var(--clr-gold);
}/* ===================================
   HERO SECTION
=================================== */
.services-hero {
    position: relative;
    height: 90vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.services-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.services-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(19, 79, 60, 0.3) 0%, rgba(19, 79, 60, 0.5) 100%);
    z-index: 1;
}

.services-hero__content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.services-hero__title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 2rem;
}

.services-hero__title-line1 {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 0.5rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    /*font-family: var(--font-title);*/
    font-family: var(--font-body);
    line-height: 1.2;
    text-transform: uppercase;
}

.services-hero__title-line2 {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--clr-gold);
    letter-spacing: 0.5rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    /*font-family: var(--font-title);*/
    font-family: var(--font-body);
    line-height: 1.2;
    text-transform: uppercase;
}

.services-hero__title-line2::after{
    margin: 24px auto -16px;
    content: "";
    display: block;
    height: 4px;
    width: 100px;
    background-color: var(--clr-gold);
    border-radius: 10px;
}



.services-hero__subtitle {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
    font-style: italic;
    font-weight: 100;
    letter-spacing: 0.025em;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

/* ===================================
   MAIN SECTIONS
=================================== */
.services-main {
    background: var(--clr-cream);
}

.services-section {
    padding: 3rem 0;
    position: relative;
}

.services-section--light {
    background: #fffdeb;
    position: relative;
}



.services-section--dark {
    background: linear-gradient(135deg, #134f3c 0%, #0d3a2b 100%);
    color: #FFFFFF;
    position: relative;
}

.services-section--full {
    background: #fffdeb;
    padding: 3rem 0;
    position: relative;
}


.services-container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/*.services-section--light .services-container::before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    top: -2rem;*/
/*    left: 20px;*/
/*    width: 60px;*/
/*    height: 4px;*/
/*    background: var(--clr-gold);*/
/*    border-radius: 2px;*/
/*}*/

/*.services-section--dark .services-container::before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    top: -2rem;*/
/*    right: 20px;*/
/*    width: 60px;*/
/*    height: 4px;*/
/*    background: var(--clr-gold);*/
/*    border-radius: 2px;*/
/*}*/

.services-container-full {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================================
   SECTION HEADER
=================================== */
.services-section__header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.services-section__label {
    display: block;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 600;
    color: var(--clr-gold);
    margin-bottom: -8px;
}

.services-section__title {
    font-size: clamp(2rem, 4vw, 3rem);
    /*font-family: var(--font-title);*/
    font-family: var(--font-body);
    color: var(--clr-green);
    font-weight: 700;
    margin: 0;
}

/* Layout 1: Light background - subtitle yellow, title green */
.services-section--light .services-section__label {
    color: var(--clr-gold);
}

.services-section--light .services-section__title {
    color: var(--clr-green);
}

/* Layout 2: Dark background - subtitle yellow, title white, service cards title yellow */
.services-section--dark .services-section__label {
    color: var(--clr-gold);
}

.services-section--dark .services-section__title {
    color: #FFFFFF;
}

.services-section--dark .service-card__name {
    color: var(--clr-gold);
}

/* Layout 3: Full layout - subtitle green, title green */
.services-section--full .services-section__label {
    color: var(--clr-green);
}

.services-section--full .services-section__title {
    color: var(--clr-green);
}

/* ===================================
   SERVICES GRID
=================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===================================
   SERVICE CARD
=================================== */
.service-card {
    background: #FFFFFF;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 2px solid transparent;
}

.services-section--light .service-card {
    border-left: 3px solid var(--clr-gold);
}

.services-section--dark .service-card {
    background: linear-gradient(135deg, #0f4233 0%, #0a2f23 100%);
    border-right: 3px solid var(--clr-gold);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.services-section--dark .service-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transform: translateY(-6px);
}

.services-section--dark .service-card__name {
    color: var(--clr-gold);
}

.services-section--dark .service-card__desc {
    color: rgba(255, 255, 255, 0.9);
}

.services-section--dark .service-card__desc strong {
    color: var(--clr-gold);
}

.services-section--dark .service-card__footer {
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.services-section--dark .service-card__qr-text {
    color: rgba(255, 255, 255, 0.8);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Card Image */
.service-card__image-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.service-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-card__image {
    transform: scale(1.05);
}

.service-card__badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--clr-gold);
    color: var(--clr-green);
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.services-section--dark .service-card__badge {
    background: var(--clr-gold);
    color: var(--clr-green);
    box-shadow: 0 3px 10px rgba(212, 175, 55, 0.4);
}

/* Card Content */
.service-card__content {
    padding: 0.75rem 1.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-card__name {
    font-size: 1.5rem;
    /*font-family: var(--font-title);*/
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--clr-green);
    margin: 0 0 1rem 0;
    line-height: 1.3;
    line-spacing: 2;
}

.service-card__desc {
    font-size: 0.95rem;
    line-height: 1.65;
    color: #4a5568;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-card__desc p {
    margin-bottom: 0.75rem;
}

.service-card__desc ul {
    list-style: none;
    padding-left: 0;
    margin: 0.75rem 0;
}

.service-card__desc li {
    margin-bottom: 0.5rem;
    padding-left: 1.25rem;
    position: relative;
}

.service-card__desc li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--clr-gold);
    font-weight: bold;
}

.service-card__desc strong {
    color: var(--clr-green);
    font-weight: 600;
}

/* Card Footer */
.service-card__footer {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid #e5e7eb;
    margin-top: auto;
}

.services-section--dark .service-card__btn {
    background: var(--clr-gold);
    color: #0a2f23;
    font-weight: 700;
}

.services-section--dark .service-card__btn:hover {
    background: #FFFFFF;
    color: #0a2f23;
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.4);
}

.service-card__btn {
    background: var(--clr-green);
    color: #FFFFFF;
    font-weight: 700;
    padding: 12px 24px;
    border-radius:21px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.service-card__btn:hover {
    background: var(--clr-gold);
    color: var(--clr-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.service-card__qr-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-left: auto;
}

.service-card__qr-wrapper {
    width: 80px;
    height: 80px;
    padding: 4px;
    background: #FFFFFF;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card__qr {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-card__qr-info {
    display: block;
}

.service-card__qr-text {
    font-size: 0.7rem;
    color: #6b7280;
    margin: 0;
    text-align: center;
    line-height: 1.3;
}

/* ===================================
   FULL WIDTH LAYOUT (Layout 3)
=================================== */
.hoponoff-header {
    text-align: center;
    margin-bottom: 3rem;
}

.hoponoff-content {
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    padding: 2.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 3rem;
    border: 2px solid #e5e7eb;
    position: relative;
}

.hoponoff-content::after {
    bottom: 0px;
    position: absolute;
    height: 8px;
    content: '';
    background: linear-gradient(90deg, var(--clr-green) 0%, var(--clr-gold) 50%, var(--clr-green) 100%);
    left: 0;
    width: 100%;
    border-radius: 0 0 24px 24px;
}

@media (min-width: 1024px) {
    .hoponoff-content {
        grid-template-columns: 70fr 30fr;
    }
}

.hoponoff-text {
    padding: 0;
}

.hoponoff-subtitle {
    font-size: 1.75rem;
    /*font-family: var(--font-primary);*/
    font-family: var(--font-ui);
    font-weight: 700;
    color: var(--clr-green);
    margin: 0 0 1.5rem 0;
}

.hoponoff-desc {
    font-size: 1rem;
    line-height: 1.75;
    color: #4a5568;
    margin-bottom: 2rem;
}

.hoponoff-desc p {
    margin-bottom: 1rem;
}

.hoponoff-desc ul {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

.hoponoff-desc li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.6;
}

.hoponoff-desc li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--clr-gold);
    font-weight: bold;
    font-size: 1.1rem;
}

.hoponoff-price {
    padding-top: 1.5rem;
    border-top: 2px solid #e5e7eb;
    margin-top: 1.5rem;
}

.hoponoff-price-text {
    font-size: 1.1rem;
    color: #4a5568;
    margin: 0;
}

.hoponoff-price-text strong {
    font-size: 1.5rem;
    color: var(--clr-green);
    font-weight: 700;
}

.hoponoff-card {
    background: var(--clr-green);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    align-self: start;
    display: flex;
    flex-direction: column;
    height: fit-content;
}

.hoponoff-card-inner {
    text-align: center;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hoponoff-card-qr {
    padding: 1.5rem;
    background: #FFFFFF;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.hoponoff-qr-image {
    width: 100%;
    max-width: 200px;
    height: auto;
    aspect-ratio: 1;
    display: block;
}

.hoponoff-card-qr .hoponoff-card-text {
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
    color: var(--clr-green);
    font-weight: 600;
}

.hoponoff-card-icon {
    margin-bottom: 1.5rem;
    color: var(--clr-gold);
}

.hoponoff-card-icon svg {
    margin: 0 auto;
    display: block;
}

.hoponoff-card-text {
    font-size: 1rem;
    margin: 0;
    line-height: 1.5;
    color: #FFFFFF;
}

.hoponoff-card-btn {
    background: var(--clr-gold);
    color: var(--clr-green);
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    width: 100%;
}

.hoponoff-card-btn:hover {
    background: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* ===================================
   EMPTY STATE
=================================== */
.services-empty {
    text-align: center;
    padding: 5rem 1.25rem;
    color: #6b7280;
}

.services-empty p {
    font-size: 1.1rem;
    opacity: 0.7;
    margin: 0;
}

/* ===================================
   RESPONSIVE DESIGN
=================================== */
@media (max-width: 1024px) {
    .services-hero {
        height: 60vh;
        min-height: 450px;
    }
    
    .services-section {
        padding: 4rem 0;
    }
    
    .services-section--full {
        padding: 4rem 0;
    }
    
    .hoponoff-card {
        position: static;
    }
}

@media (max-width: 768px) {
    .services-hero {
        height: 55vh;
        min-height: 400px;
    }
    
    .services-hero__title-line1,
    .services-hero__title-line2 {
        font-size: 2rem;
        letter-spacing: 0.3rem;
    }
    
    .services-section {
        padding: 3rem 0;
    }
    
    .services-section--full {
        padding: 3rem 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card__content {
        padding: 1.5rem;
    }
    
    .service-card__footer {
        flex-direction: column;
        align-items: stretch;
    }
    
    .service-card__btn {
        width: 100%;
    }
    
    .service-card__qr-section {
        justify-content: center;
        margin-left: 0;
    }
    
    .hoponoff-content {
        padding: 2rem;
    }
    
    .hoponoff-text {
        padding: 0;
    }
    
    .hoponoff-card {
        padding: 2rem;
    }
    
    .hoponoff-qr-image {
        width: 100%;
        max-width: 150px;
    }
}

@media (max-width: 640px) {
    .services-hero {
        height: 50vh;
        min-height: 350px;
    }
    
    .services-hero__title-line1,
    .services-hero__title-line2 {
        font-size: 1.75rem;
        letter-spacing: 0.2rem;
    }
    
    .services-hero__subtitle {
        font-size: 0.9rem;
    }
    
    .services-section {
        padding: 2.5rem 0;
    }
    
    .services-section--full {
        padding: 2.5rem 0;
    }
    
    .services-container,
    .services-container-full {
        padding: 0 15px;
    }
    
    .services-section__header,
    .hoponoff-header {
        margin-bottom: 2.5rem;
    }
    
    .service-card__image-wrapper {
        height: 200px;
    }
    
    .service-card__name {
        font-size: 1.35rem;
    }
    
    .service-card__desc {
        font-size: 0.9rem;
    }
    
    .hoponoff-content {
        padding: 1.5rem;
    }
    
    .hoponoff-text {
        padding: 0;
    }
    
    .hoponoff-subtitle {
        font-size: 1.5rem;
    }
    
    .hoponoff-desc {
        font-size: 0.95rem;
    }
    
    .hoponoff-qr-image {
        width: 100%;
        max-width: 120px;
    }
   
}

/* ===================================
   ACCESSIBILITY
=================================== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

.service-card:focus-visible,
.service-card__btn:focus-visible,
.hoponoff-card-btn:focus-visible {
    outline: 3px solid var(--clr-gold);
    outline-offset: 4px;
}

/* ===================================
   PRINT STYLES
=================================== */
@media print {
    .services-hero {
        height: auto;
        min-height: 0;
    }
    
    .service-card,
    .hoponoff-text,
    .hoponoff-card {
        page-break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
}