/* ProTek Stone Shield Design System */
:root {
    /* ProTek Brand Colors - matching original design */
    --protek-dark: hsl(220, 15%, 20%);
    --protek-darker: hsl(220, 20%, 15%);
    --protek-darkest: hsl(220, 25%, 10%);
    --protek-red: hsl(345, 85%, 55%);
    --protek-red-hover: hsl(345, 85%, 50%);
    --protek-light: hsl(0, 0%, 95%);
    --protek-white: hsl(0, 0%, 100%);
    --protek-gray: hsl(220, 10%, 60%);
    --protek-gray-light: hsl(220, 10%, 80%);

    /* Semantic tokens */
    --background: var(--protek-dark);
    --foreground: var(--protek-white);
    --card: var(--protek-darker);
    --card-foreground: var(--protek-white);
    --primary: var(--protek-red);
    --primary-foreground: var(--protek-white);
    --secondary: var(--protek-darker);
    --secondary-foreground: var(--protek-white);
    --muted: var(--protek-gray);
    --muted-foreground: var(--protek-gray-light);
    --accent: var(--protek-light);
    --accent-foreground: var(--protek-darkest);
    --border: var(--protek-gray);
    --input: var(--protek-darker);
    --ring: var(--protek-red);

    /* Design tokens */
    --radius: 0.75rem;
    --shadow-elegant: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
    --shadow-soft: 0 4px 20px -4px rgba(0, 0, 0, 0.2);
    --gradient-hero: linear-gradient(135deg, var(--protek-dark), var(--protek-darker));
    --gradient-section: linear-gradient(180deg, var(--protek-darker), var(--protek-dark));
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: bold;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Navigation */
.nav-fixed {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    /* background: rgba(55, 65, 81, 0.95); */
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(75, 85, 99, 0.3);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
}

.logo-pro {
    color: var(--protek-white);
}

.logo-tek {
    color: var(--primary);
}

.logo-subtitle {
    font-size: 0.75rem;
    color: var(--muted);
    display: none;
}

@media (min-width: 640px) {
    .logo-subtitle {
        display: block;
    }
}

.nav-links-desktop {
    display: none;
    gap: 0.25rem;
}

@media (min-width: 768px) {
    .nav-links-desktop {
        display: flex;
    }
}

.nav-link {
    position: relative;
    padding: 0.5rem 1rem;
    /* color: var(--protek-white); */
    color: black;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link.active {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

    
.nav-cta {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 1041px) {
    .nav-cta {
        display: flex;
    }
}

@media (max-width: 700px) {
    .team-grid {
        grid-template-columns: 1fr !important;
    }
}

.team-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr 1fr 1fr;
}


.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.mobile-menu-btn:hover {
    color: var(--primary);
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.menu-icon,
.close-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.nav-mobile {
    display: none;
    border-top: 1px solid rgba(75, 85, 99, 0.3);
    background: var(--background);
}

@media (max-width: 767px) {
    .nav-mobile.active {
        display: block;
    }
}

.mobile-nav-content {
    padding: 0.5rem 0;
}

.mobile-nav-link {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--protek-white);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--primary);
    background: rgba(75, 85, 99, 0.5);
}

.mobile-nav-cta {
    padding: 0.75rem 1rem;
    border-top: 1px solid rgba(75, 85, 99, 0.3);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--primary);
    color: var(--primary-foreground);
    border: 2px solid var(--primary);
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
    background: var(--protek-red-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-elegant);
}

.btn-outline {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: var(--protek-white);
    border: 2px solid var(--protek-white);
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: var(--transition-smooth);
}

.btn-outline-nav {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: black;
    border: 2px solid black;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: var(--transition-smooth);
}

.btn-outline-nav:hover {
    background: var(--protek-dark);
    ;
    color: var(--protek-white);
}

.btn-outline:hover {
    background: var(--protek-white);
    color: var(--protek-dark);
}

.btn-outline.btn-dark {
    color: var(--protek-darkest);
    border-color: var(--protek-darkest);
}

.btn-outline.btn-dark:hover {
    background: var(--protek-darkest);
    color: var(--protek-white);
}

.btn-large {
    font-size: 1.125rem;
    padding: 1rem 2rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-hero);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    opacity: 0.4;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(55, 65, 81, 0.9), rgba(55, 65, 81, 0.7), transparent);
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

@media (min-width: 1024px) {
    .hero-content {
        text-align: left;
        padding: 0 2rem;
    }
}

.hero-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-title h1 {
    font-size: 3rem;
    font-weight: bold;
    line-height: 0.9;
}

@media (min-width: 1024px) {
    .hero-title h1 {
        font-size: 4.5rem;
    }
}

.title-protek {
    color: var(--primary);
    display: block;
}

.title-natural,
.title-stone,
.title-protection {
    color: var(--protek-white);
    display: block;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    max-width: 32rem;
    margin: 1rem 0 0 0;
}

@media (min-width: 1024px) {
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .hero-buttons {
        justify-content: flex-start;
    }
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

@media (min-width: 1024px) {
    .hero-features {
        justify-content: flex-start;
    }
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: var(--primary);
    border-radius: 50%;
}

.hero-video {
    display: none;
}

@media (min-width: 1024px) {
    .hero-video {
        display: block;
    }
}

.video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    /* ✅ Forces equal height */
    border-radius: var(--radius);
    overflow: hidden;
    text-align: center;
}

.video-container video,
.video-container iframe,
.video-container img {
    width: 100%;
    /* ✅ Was 75%, causing mismatch */
    height: 100%;
    border-radius: var(--radius);
    object-fit: cover;
    /* ✅ Crops evenly */
    display: block;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-mouse {
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid var(--protek-white);
    border-radius: 1rem;
    display: flex;
    justify-content: center;
}

.scroll-wheel {
    width: 0.25rem;
    height: 0.75rem;
    background: var(--protek-white);
    border-radius: 0.125rem;
    margin-top: 0.5rem;
    animation: pulse 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    53%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40%,
    43% {
        transform: translateX(-50%) translateY(-10px);
    }

    70% {
        transform: translateX(-50%) translateY(-5px);
    }

    90% {
        transform: translateX(-50%) translateY(-2px);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* Sections */
.curved-section {
    position: relative;
    background: var(--protek-light);
    color: var(--protek-darkest);
    padding: 4rem 0;
    /* margin: 2rem 0; */
}

/* .curved-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--protek-light);
    border-radius: 0 0 50% 50%;
    transform: scaleX(2);
} */

/* .curved-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--protek-light);
    border-radius: 50% 50% 0 0;
    transform: scaleX(2);
} */

.section-content {
    position: relative;
    z-index: 10;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--protek-white);
    margin-bottom: 1rem;
}

@media (min-width: 1024px) {
    .section-header h2 {
        font-size: 3rem;
    }
}

.section-header p {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    max-width: 48rem;
    margin: 0 auto;
}

/* Introduction Section */
.intro-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .intro-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.intro-image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-elegant);
}

.intro-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.intro-text h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--protek-darkest);
}

.intro-text p {
    font-size: 1.125rem;
    color: var(--protek-gray);
    line-height: 1.6;
}

.intro-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .intro-buttons {
        flex-direction: row;
    }
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background: var(--background);
}

.features-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    padding: 1.5rem;
    border-radius: var(--radius);
    background: var(--protek-light);
    color: var(--protek-darkest);
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-elegant);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
    color: var(--protek-darkest);
}

.feature-card p {
    color: var(--protek-gray);
}

/* Video Section */
.video-section {
    padding: 5rem 0;
    background: var(--background);
}

.videos-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.video-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.video-item h3 {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    color: var(--protek-white);
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    /* background: var(--gradient-hero); */
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--protek-white);
    margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
    .cta-content h2 {
        font-size: 3rem;
    }
}

.cta-content p {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    max-width: 32rem;
    margin: 0 auto 2rem auto;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.hidden {
    display: none;
}

/* Responsive adjustments */
@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }

    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.5rem;
    }

    p {
        font-size: 1.125rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }

    h1 {
        font-size: 4rem;
    }

    h2 {
        font-size: 3rem;
    }

    h3 {
        font-size: 1.875rem;
    }
}


@media (max-width: 600px) {
    #modal-img {
        max-width: 100%;
        max-height: 90%;
        border-radius: 8px;
    }
}

@media (min-width: 601px) {
    #modal-img {
        max-width: 90%;
        max-height: 90%;
        border-radius: 10px;
    }
}


/* ================= PROTEK HERO ================= */
.protek-hero {
    /* background: linear-gradient(135deg, var(--protek-dark), var(--protek-darker)); */
    background-color: white;
    padding: 6rem 0;
    text-align: center;
}

.protek-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
}

.protek-hero p {
    max-width: 720px;
    margin: 0 auto 2rem;
    color: var(--muted-foreground);
}

.badge {
    color: var(--protek-dark);
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    background: #F1E5AC;
    margin-bottom: 1.5rem;
}

.protek-hero-tags {

    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.protek-hero-tags span {
    color: white;
    background: var(--protek-dark);
    padding: 0.5rem 1.1rem;
    border-radius: 999px;
    font-size: 0.85rem;
}

/* ================= PRODUCT CARDS ================= */
.protek-product-section {
    background: var(--background);
    padding: 6rem 0;
    color: var(--protek-darkest);
}

.section-title-dark {
    text-align: center;
    font-size: 2.4rem;
}

.section-subtitle-dark {
    text-align: center;
    color: var(--protek-gray);
    margin-bottom: 3rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 22px;
    box-shadow: var(--shadow-soft);
    margin-bottom: 2rem;
}

.info-card-specific {
    background: var(--background);
    padding: 2rem;
    /* border-radius: 22px;
  box-shadow: var(--shadow-soft); */
    margin-bottom: 2rem;
    text-align: center;
    color: white;
}

.info-card ul {
    padding-left: 1.25rem;
    line-height: 1.8;
}

/* ================= WARRANTY ================= */
.protek-warranty {
    background: white;
    padding: 6rem 0;
}

.warranty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.warranty-card {
    background: white;
    padding: 2.2rem;
    border-radius: 22px;
    box-shadow: var(--shadow-soft);
    text-align: left;
}

.warranty-card h3 {
    margin-bottom: 1rem;
}

.warranty-card ul {
    padding-left: 1.2rem;
    line-height: 1.8;
}

/* ================= SEALERS ================= */
.protek-sealers {
    background: linear-gradient(135deg, var(--protek-darker), var(--protek-dark));
    padding: 6rem 0;
}

.protek-sealers h2 {
    font-size: 2.8rem;
}

.protek-sealers .subtitle {
    color: var(--muted-foreground);
    margin-bottom: 3rem;
}

.sealer-stack {
    display: grid;
    gap: 2.5rem;
}

.sealer-box {
    background: rgba(255, 255, 255, 0.08);
    padding: 2.2rem;
    border-radius: 22px;
}

.sealer-box-second {
    background: var(--protek-light);
    padding: 2.2rem;
    border-radius: 22px;
}

.sealer-box-special {
    text-align: center;
    background: rgba(255, 255, 255, 0.08);
    padding: 2.2rem;
    border-radius: 22px;
}

.sealer-box-special-second {
    text-align: center;
    background: var(--protek-light);
    padding: 2.2rem;
    border-radius: 22px;
}

.sealer-box-special-second h3 {
    color: var(--protek-dark);
}

.sealer-box-special-second p {
    color: var(--protek-dark);
}

.sealer-box h3 span {
    color: var(--primary);
}


/* ================= SPEC MINI CARDS (TITLE + DESCRIPTION) ================= */

.spec-mini-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.spec-mini-card {
    /* background: var(--background); */
    background: var(--protek-light);
    /* background: rgba(255,255,255,0.08); */
    border-radius: 14px;
    padding: 1rem 1.1rem;
    gap: .45rem;
    box-shadow: 0 6px 14px rgba(0, 0, 0, .15);
    transition: transform .2s ease;
    text-align: center;
}


.spec-mini-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 26px rgba(0, 0, 0, .12);
}

.spec-mini-title {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    font-size: .95rem;
    margin-bottom: .35rem;
    color: var(--protek-dark);
}

.spec-mini-card p {
    font-size: .85rem;
    color: var(--protek-gray);
    margin: 0;
    margin: 0 auto;
    max-width: 90%;
}

.spec-icon {
    font-size: 1.2rem;
    line-height: 1;
}

/* ================= SEALER PRO CARD ================= */

.sealer-card-pro {
    text-align: center;
}

.sealer-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .4rem;
    margin-bottom: 1rem;
    color: var(--protek-dark);
}

.sealer-header span {
    color: red;
}

.sealer-desc {
    font-size: .95rem;
    color: var(--protek-dark);
    max-width: 90%;
    margin: 0 auto 1.5rem;
}

.sealer-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.sealer-feature {
    background: var(--background);
    border-radius: 12px;
    padding: .8rem .9rem;
    font-size: .85rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .45rem;
    box-shadow: 0 6px 14px rgba(0, 0, 0, .15);
    transition: transform .2s ease;
}

.sealer-feature:hover {
    transform: translateY(-2px);
}

.sealer-icon {
    font-size: 1rem;
}


/* ================= WARRANTY STYLE MATCHING IMAGE ================= */

.warranty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.warranty-card {
    background: var(--background);
    padding: 2.5rem 2rem;
    border-radius: 22px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, .12);
    color: white;
    text-align: left;
}

.warranty-header {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1.5rem;
}

.warranty-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
}

/* ICON CIRCLES */
.warranty-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 1rem;
    font-weight: bold;
}

.warranty-icon.green {
    background: #e7f8ef;
    color: #1fa971;
}

.warranty-icon.yellow {
    background: #fff3da;
    color: #d19a00;
}

.warranty-icon.red {
    background: #ffe4e4;
    color: #d52d2d;
}

/* LIST STYLE */
.warranty-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.warranty-card li {
    position: relative;
    padding-left: 1.4rem;
    margin-bottom: .9rem;
    font-size: .95rem;
    line-height: 1.5;
}

/* CUSTOM BULLETS TO MATCH IMAGE */
.warranty-cover li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #1fa971;
    font-weight: bold;
}

.warranty-conditions li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #d19a00;
    font-size: 1.4rem;
    line-height: 1;
    top: -2px;
}

.warranty-exclusions li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #d52d2d;
    font-size: 1.4rem;
    line-height: 1;
    top: -2px;
}


.protek-sv-wrapper {
    display: grid;
    gap: 4rem;
    /* Spacing between service blocks */
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Individual service row */
.protek-sv-section {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    /* Default to 1 column for mobile */
    align-items: center;
}

/* Image styling */
.protek-sv-media img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    display: block;
}

/* Text content styling */
.protek-sv-title {
    font-size: 1.875rem;
    font-weight: bold;
    color: var(--protek-darkest);
    margin-bottom: 1rem;
}

.protek-sv-description {
    color: var(--protek-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Custom list styling */
.protek-sv-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.protek-sv-item {
    display: flex;
    align-items: flex-start;
    color: var(--protek-gray);
    font-size: 1rem;
}

.protek-sv-bullet {
    min-width: 0.5rem;
    height: 0.5rem;
    background: var(--primary);
    border-radius: 50%;
    margin-right: 0.75rem;
    margin-top: 0.55rem;
    /* Aligns dot with text */
}

/* Desktop View: Zig-Zag Layout */
@media (min-width: 800px) {
    .protek-sv-section {
        grid-template-columns: 1fr 1fr;
        /* 2 columns on desktop */
    }

    /* Automatically flips the order for every second section */
    .protek-sv-section:nth-child(even) .protek-sv-media {
        order: 2;
    }

    .protek-sv-section:nth-child(even) .protek-sv-content {
        order: 1;
    }
}


.simple-footer {
        background-color: hsl(220, 15%, 20%);
        color: rgba(255, 255, 255, 0.8);
        padding: 1.5rem 0; /* Reduced height */
        text-align: center;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 0.85rem;
    }

    .footer-content {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }

    .marbion-link {
        color: #ffffff;
        text-decoration: none;
        font-weight: 600;
    }

    .footer-divider {
        display: none; /* Hidden on mobile */
        margin: 0 10px;
        opacity: 0.3;
    }

    /* Desktop: Everything on one thin line */
    @media (min-width: 768px) {
        .footer-content {
            flex-direction: row;
            justify-content: center;
            gap: 0;
        }
        .footer-divider {
            display: inline;
        }

    }


 