/*
Theme Name: Ten Have Zonwering Custom
Theme URI: https://tenhavezonwering.nl
Author: Laksh Khamesra
Author URI: https://github.com/lakshkhamesra
Description: Ten Have Zonwering Custom
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tenhavezonwering-custom
*/

/* ========================================
   CSS Variables (Brand)
   ======================================== */
:root {
    --primary: #FFB703;
    --primary-hover: #FB8500;
    --primary-foreground: #1C1917;
    --surface: #FAFAF9;
    --text-primary: #1C1917;
    --text-secondary: #57534E;
    --text-muted: #A8A29E;
    --stone-50: #fafaf9;
    --stone-100: #f5f5f4;
    --stone-400: #a8a29e;
    --stone-500: #78716c;
    --stone-600: #57534e;
    --stone-800: #292524;
    --stone-900: #1c1917;
}

/* ========================================
   Reset & Base
   ======================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
    color: var(--text-primary);
    background: #fff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

::selection {
    background: var(--primary);
    color: var(--primary-foreground);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f8f8f8;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-hover);
}

/* ========================================
   Typography
   ======================================== */
.font-heading {
    font-family: 'Outfit', sans-serif;
}

.font-body {
    font-family: 'Inter', sans-serif;
}

/* ========================================
   HEADER
   ======================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    width: 100%;
    border-bottom: 1px solid var(--stone-100);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.header-logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.desktop-nav > li {
    position: relative;
}

.desktop-nav > li > a {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--stone-600);
    transition: color 0.2s;
}

.desktop-nav > li > a:hover {
    color: var(--stone-900);
}

.desktop-nav > li > a.active,
.desktop-nav > li.current-menu-item > a,
.desktop-nav > li.current-menu-ancestor > a,
.desktop-nav > li.current_page_item > a,
.desktop-nav > li.current_page_ancestor > a {
    color: var(--primary);
}

/* Chevron icon for dropdowns */
.desktop-nav > li.menu-item-has-children > a::after {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    transition: transform 0.2s;
}

.desktop-nav > li.menu-item-has-children:hover > a::after {
    transform: rotate(180deg);
}

/* Dropdown */
.desktop-nav .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0.5rem;
    width: 14rem;
    background: #fff;
    border-radius: 0.75rem;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
    border: 1px solid var(--stone-100);
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.15s ease;
    z-index: 100;
}

.desktop-nav > li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* First item in dropdown = "Alle {category}" */
.desktop-nav .sub-menu > li:first-child > a {
    font-weight: 600;
    color: var(--primary);
    border-bottom: 1px solid var(--stone-100);
    margin-bottom: 0.25rem;
}

.desktop-nav .sub-menu > li > a {
    display: block;
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
    color: var(--stone-600);
    transition: all 0.15s;
}

.desktop-nav .sub-menu > li > a:hover {
    background: var(--stone-50);
    color: var(--stone-900);
}

.desktop-nav .sub-menu > li.current-menu-item > a,
.desktop-nav .sub-menu > li.current_page_item > a {
    background: rgba(255, 183, 3, 0.1);
    color: var(--primary);
    font-weight: 500;
}

/* Header Right */
.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--stone-600);
    transition: color 0.2s;
    font-size: 0.875rem;
    font-weight: 500;
}

.header-phone:hover {
    color: var(--stone-900);
}

.header-phone svg {
    width: 18px;
    height: 18px;
}

.header-cta {
    display: inline-block;
    background: var(--primary);
    color: var(--primary-foreground);
    font-weight: 600;
    padding: 0.625rem 1.5rem;
    border-radius: 9999px;
    transition: all 0.2s;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    font-size: 0.875rem;
}

.header-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 0 30px rgba(255, 183, 3, 0.4);
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    padding: 0.5rem;
    background: none;
    border: none;
    color: var(--stone-900);
    cursor: pointer;
}

.mobile-toggle svg {
    width: 24px;
    height: 24px;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    background: #fff;
    border-top: 1px solid var(--stone-100);
    max-height: 80vh;
    overflow-y: auto;
    padding: 1rem;
}

.mobile-menu.is-open {
    display: block;
}

.mobile-menu > ul > li > a {
    display: block;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--stone-600);
    border-radius: 0.5rem;
    transition: all 0.15s;
}

.mobile-menu > ul > li > a:hover,
.mobile-menu > ul > li.current-menu-item > a,
.mobile-menu > ul > li.current_page_item > a {
    color: var(--primary);
    background: rgba(255, 183, 3, 0.1);
}

/* Mobile sub-menu category headers */
.mobile-menu > ul > li.menu-item-has-children > a {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mobile-menu .sub-menu {
    padding: 0;
}

.mobile-menu .sub-menu > li > a {
    display: block;
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--stone-600);
    border-radius: 0.5rem;
    transition: all 0.15s;
}

.mobile-menu .sub-menu > li > a:hover,
.mobile-menu .sub-menu > li.current-menu-item > a,
.mobile-menu .sub-menu > li.current_page_item > a {
    color: var(--primary);
    background: rgba(255, 183, 3, 0.1);
}

.mobile-cta {
    display: block;
    margin-top: 1rem;
    background: var(--primary);
    color: var(--primary-foreground);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    text-align: center;
    transition: all 0.2s;
    font-size: 1rem;
}

.mobile-cta:hover {
    background: var(--primary-hover);
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
    background: var(--stone-900);
    color: #fff;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 1rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

/* Footer Brand Column */
.footer-brand .footer-brand-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    text-transform: uppercase;
}

.footer-brand .footer-brand-sub {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.footer-brand p {
    color: var(--stone-400);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-top: 1rem;
}

.footer-brand .footer-cta {
    display: inline-block;
    margin-top: 0.75rem;
    background: var(--primary);
    color: var(--primary-foreground);
    font-weight: 600;
    padding: 0.625rem 1.5rem;
    border-radius: 9999px;
    transition: all 0.2s;
    font-size: 0.875rem;
}

.footer-brand .footer-cta:hover {
    background: var(--primary-hover);
}

/* Footer Menu Columns */
.footer-menu-col h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-menu-col ul li a {
    color: var(--stone-400);
    font-size: 0.875rem;
    transition: color 0.2s;
    display: block;
    padding: 0.25rem 0;
}

.footer-menu-col ul li a:hover {
    color: var(--primary);
}

/* Footer Contact Column */
.footer-contact h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--stone-400);
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.footer-contact-item a {
    color: var(--stone-400);
    transition: color 0.2s;
}

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

.footer-contact-item svg {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
    width: 18px;
    height: 18px;
}

.footer-contact-item.has-spacing {
    padding-top: 0.5rem;
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 3rem;
    padding: 2rem 0;
    border-top: 1px solid var(--stone-800);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--stone-500);
    font-size: 0.875rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

.footer-bottom-links li {
    list-style: none;
    display: inline;
}

.footer-bottom-links a {
    color: var(--stone-500);
    font-size: 0.875rem;
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: var(--primary);
}

/* ========================================
   Elementor Compatibility
   ======================================== */
.site-main {
    flex: 1;
}

.app {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ========================================
   Animations
   ======================================== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.btn-glow:hover {
    box-shadow: 0 0 30px rgba(255, 183, 3, 0.4);
}

/* ========================================
   Responsive
   ======================================== */
@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-inner {
        padding: 4rem 1.5rem 0;
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .header-inner {
        padding: 0 2rem;
    }

    .footer-inner {
        padding: 4rem 2rem 0;
    }
}

@media (max-width: 1023px) {
    .desktop-nav,
    .header-right {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }
}

@media (min-width: 1024px) {
    .mobile-toggle,
    .mobile-menu {
        display: none !important;
    }

    .desktop-nav {
        display: flex;
    }

    .header-right {
        display: flex;
    }
}

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

/* Container */
.sd-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Section header */
.sd-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.sd-label {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.sd-heading {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--stone-900);
    margin-top: 0.75rem;
}

/* ---- Hero ---- */
.sd-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.sd-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.sd-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sd-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.4), rgba(0,0,0,0.6));
}

.sd-hero__content {
    position: relative;
    z-index: 10;
    max-width: 56rem;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

.sd-hero__subtitle {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
}

.sd-hero__title {
    color: #fff;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.sd-hero__desc {
    color: rgba(255,255,255,0.9);
    font-size: 1.125rem;
    max-width: 42rem;
    margin: 0 auto;
}

.sd-hero--dark {
    background: var(--stone-900);
}

/* ---- Benefits ---- */
.sd-benefits {
    padding: 5rem 0;
    background: #fff;
}

.sd-benefits__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.sd-benefit-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--stone-50);
    border-radius: 1rem;
    border: 1px solid var(--stone-100);
}

.sd-benefit-card__icon {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 183, 3, 0.2);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
}

.sd-benefit-card__title {
    font-weight: 600;
    color: var(--stone-900);
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.sd-benefit-card__desc {
    color: var(--stone-600);
    font-size: 0.875rem;
    line-height: 1.5;
}

/* ---- Features + Gallery ---- */
.sd-features {
    padding: 5rem 0;
    background: var(--stone-50);
}

.sd-features__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.sd-features__text .sd-heading {
    margin-bottom: 1.5rem;
}

.sd-features__list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sd-features__list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.sd-features__list li svg {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.sd-features__list li span {
    color: var(--stone-600);
    line-height: 1.5;
}

.sd-features__gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.sd-gallery-item {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
}

.sd-gallery-item--full {
    grid-column: 1 / -1;
}

.sd-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16/9;
}

/* ---- CTA ---- */
.sd-cta {
    padding: 5rem 0;
    background: var(--stone-900);
}

.sd-cta__inner {
    max-width: 56rem;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

.sd-cta__title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
}

.sd-cta__desc {
    color: #a8a29e;
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.sd-cta__buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.sd-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-size: 1.125rem;
    font-weight: 700;
    transition: all 0.2s;
}

.sd-cta__btn--primary {
    background: var(--primary);
    color: var(--stone-900);
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

.sd-cta__btn--primary:hover {
    background: var(--primary-hover);
    box-shadow: 0 0 30px rgba(255, 183, 3, 0.4);
}

.sd-cta__btn--secondary {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: 2px solid rgba(255,255,255,0.3);
}

.sd-cta__btn--secondary:hover {
    background: #fff;
    color: var(--stone-900);
}

/* ---- Scroll Animations ---- */
.thz-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.thz-animate[data-anim="fadeInLeft"] {
    transform: translateX(-30px);
}

.thz-animate[data-anim="fadeInRight"] {
    transform: translateX(30px);
}

.thz-animate.thz-visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* ========================================
   SERVICE CATEGORY PAGE
   ======================================== */

/* Hero */
.sc-hero {
    background: var(--stone-900);
    padding: 5rem 0;
}

.sc-hero__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.sc-hero__content {
    text-align: center;
}

.sc-hero__tag {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.sc-hero__title {
    color: #fff;
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.sc-hero__desc {
    color: #d6d3d1;
    font-size: 1.125rem;
    max-width: 42rem;
    margin: 0 auto;
    line-height: 1.6;
}

.sc-hero__desc p {
    margin: 0;
    color: inherit;
}

/* Grid Section */
.sc-grid-section {
    padding: 5rem 0;
    background: #fff;
}

.sc-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.sc-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

/* Card */
.sc-card {
    display: block;
    overflow: hidden;
    border-radius: 1rem;
    background: #fff;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    border: 1px solid var(--stone-100);
    transition: box-shadow 0.3s;
}

.sc-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
}

.sc-card__img {
    overflow: hidden;
}

.sc-card__img--4-3 {
    aspect-ratio: 4/3;
}

.sc-card__img--16-9 {
    aspect-ratio: 16/9;
}

.sc-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.sc-card:hover .sc-card__image {
    transform: scale(1.1);
}

.sc-card__body {
    padding: 1.5rem;
}

.sc-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--stone-900);
    margin-bottom: 0.5rem;
    transition: color 0.2s;
}

.sc-card:hover .sc-card__title {
    color: var(--primary);
}

.sc-card__desc {
    color: var(--stone-600);
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.sc-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.875rem;
}

.sc-card__cta svg {
    transition: transform 0.2s;
}

.sc-card:hover .sc-card__cta svg {
    transform: translateX(4px);
}

/* ---- Single-post Feature Layout ---- */
.sc-feature-section {
    padding: 5rem 0;
    background: #fff;
}

.sc-feature {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.sc-feature__img-wrap {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
}

.sc-feature__img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.sc-feature__title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--stone-900);
    margin-bottom: 1.5rem;
}

.sc-feature__desc {
    color: var(--stone-600);
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.sc-feature__badges {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.sc-feature__badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--stone-50);
    border-radius: 0.75rem;
}

.sc-feature__badge svg {
    color: var(--primary);
    flex-shrink: 0;
}

.sc-feature__badge span {
    font-weight: 500;
    color: var(--stone-800);
}

.sc-feature__cta-wrap {
    padding-top: 1rem;
}

.sc-feature__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary);
    color: var(--primary-foreground);
    font-weight: 700;
    font-size: 1.125rem;
    padding: 1rem 2rem;
    border-radius: 9999px;
    transition: all 0.2s;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

.sc-feature__cta:hover {
    background: var(--primary-hover);
}

@media (min-width: 640px) {
    .sc-feature__badges {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .sc-feature {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .sc-feature__title {
        font-size: 2.25rem;
    }
}

/* Grid responsive variants */
@media (min-width: 768px) {
    .sc-hero__title {
        font-size: 3.75rem;
    }

    .sc-grid--2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .sc-grid--3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .sc-grid--2-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .sc-container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .sc-grid--2-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .sc-container {
        padding: 0 2rem;
    }
}

/* ---- Service Detail Responsive ---- */
@media (min-width: 768px) {
    .sd-hero__title {
        font-size: 4.5rem;
    }

    .sd-hero__desc {
        font-size: 1.25rem;
    }

    .sd-heading {
        font-size: 3rem;
    }

    .sd-benefits__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sd-cta__buttons {
        flex-direction: row;
    }

    .sd-cta__title {
        font-size: 3rem;
    }

    .sd-container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .sd-benefits__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .sd-features__grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .sd-container {
        padding: 0 2rem;
    }
}
