/* ============================================
   TEAK IT EASY — Main Stylesheet
   Consumer Landing Page — Palm Beach County
   Design inherited from SleekTEAK luxury marine template
   ============================================ */

/* ---- CSS Custom Properties ---- */
:root {
    --navy: #0a1f3c;
    --navy-light: #0e2a4f;
    --gold: #c8a855;
    --gold-hover: #b8983f;
    --gold-light: rgba(200, 168, 85, 0.15);
    --teal: #0891b2;
    --teal-hover: #0e7490;
    --white: #ffffff;
    --light-bg: #f4f7fa;
    --light-gray: #e8ecf1;
    --dark-overlay: rgba(10, 31, 60, 0.50);
    --text-dark: #0a1f3c;
    --text-body: #4a5568;
    --text-muted: #8896a6;
    --text-light: rgba(255, 255, 255, 0.8);

    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Poppins', 'Inter', sans-serif;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-pill: 50px;

    --shadow-sm: 0 2px 8px rgba(10, 31, 60, 0.06);
    --shadow-md: 0 4px 20px rgba(10, 31, 60, 0.1);
    --shadow-lg: 0 8px 40px rgba(10, 31, 60, 0.12);
    --shadow-xl: 0 15px 60px rgba(10, 31, 60, 0.15);
    --shadow-gold: 0 4px 20px rgba(200, 168, 85, 0.3);

    --transition-fast: 0.25s ease;
    --transition-base: 0.4s ease;
    --transition-slow: 0.6s ease;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-body);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--gold);
}

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

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--navy);
    font-weight: 600;
    line-height: 1.3;
}

p {
    margin-bottom: 16px;
}

p:last-child {
    margin-bottom: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

/* ---- Section Patterns ---- */
.stk-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.stk-bg-light {
    background: var(--light-bg);
}

.stk-bg-dark {
    background: var(--navy);
}

.section-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-label-light {
    color: var(--gold);
}

.section-title {
    margin-bottom: 50px;
}

.section-heading {
    font-size: 40px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
    line-height: 1.2;
}

.light-heading {
    color: var(--white);
}

.section-desc {
    font-size: 18px;
    color: var(--text-body);
    max-width: 700px;
    margin: 0 auto;
}

.gold-text {
    color: var(--gold);
}

/* ---- Buttons ---- */
.stk-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: var(--radius-pill);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.stk-btn-primary {
    background: var(--navy);
    color: var(--white);
}

.stk-btn-primary:hover {
    background: var(--navy-light);
    color: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.stk-btn-gold {
    background: var(--gold);
    color: var(--navy);
}

.stk-btn-gold:hover {
    background: var(--gold-hover);
    color: var(--navy);
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

.stk-btn-outline {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
}

.stk-btn-outline:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-2px);
}

.stk-btn-outline-light {
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--white);
}

.stk-btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--white);
    color: var(--white);
    transform: translateY(-2px);
}

.stk-btn-white {
    background: var(--white);
    color: var(--navy);
}

.stk-btn-white:hover {
    background: var(--light-bg);
    color: var(--navy);
    transform: translateY(-2px);
}

.stk-btn-sm {
    padding: 10px 24px;
    font-size: 14px;
}

.stk-btn-lg {
    padding: 18px 40px;
    font-size: 17px;
}

.btn-ripple {
    position: absolute;
    z-index: -1;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(200, 168, 85, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
}

.stk-btn:hover .btn-ripple {
    width: 300%;
    height: 600px;
}

/* ---- TOP BAR ---- */
.stk-top-bar {
    background: var(--navy);
    padding: 10px 0;
    text-align: center;
    position: relative;
    z-index: 1001;
}

.top-bar-link {
    color: var(--white);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: color var(--transition-fast);
}

.top-bar-link:hover {
    color: var(--gold);
}

.top-bar-arrow {
    color: var(--gold);
    font-weight: 600;
    margin-left: 4px;
}

/* ---- HEADER ---- */
.stk-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all var(--transition-base);
    border-bottom: 1px solid transparent;
}

.stk-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--light-gray);
    box-shadow: var(--shadow-sm);
}

.stk-header.scrolled .header-inner {
    padding: 8px 0;
}

.stk-header.scrolled .logo-img {
    height: 50px;
    width: auto;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    transition: padding var(--transition-base);
}

.header-logo .logo-img {
    height: 60px;
    width: auto;
    transition: height var(--transition-base);
}

.header-nav .nav-menu {
    display: flex;
    gap: 32px;
    list-style: none;
}

.header-nav .nav-menu .menu-item a {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 500;
    color: var(--navy);
    position: relative;
    padding: 4px 0;
}

.header-nav .nav-menu .menu-item a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width var(--transition-base);
}

.header-nav .nav-menu .menu-item a:hover::after {
    width: 100%;
}

.header-nav .nav-menu .menu-item a:hover {
    color: var(--gold);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1002;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    transition: all var(--transition-fast);
    border-radius: 2px;
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 31, 60, 0.5);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-panel {
    position: absolute;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100%;
    background: var(--white);
    padding: 24px;
    display: flex;
    flex-direction: column;
    transition: right var(--transition-base);
    box-shadow: var(--shadow-xl);
}

.mobile-nav-overlay.active .mobile-nav-panel {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.mobile-nav-header .logo-img {
    height: 50px;
    width: auto;
}

.mobile-close {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--navy);
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-menu-list li a {
    display: block;
    padding: 16px 0;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--navy);
    border-bottom: 1px solid var(--light-gray);
    transition: color var(--transition-fast);
}

.mobile-menu-list li a:hover {
    color: var(--gold);
}

.mobile-nav-cta {
    margin-top: auto;
    padding-top: 24px;
}

.mobile-nav-cta .stk-btn {
    width: 100%;
    justify-content: center;
}

/* ---- HERO SECTION ---- */
.stk-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: -20px;
    left: -20px;
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    z-index: 0;
    overflow: hidden;
}

.hero-video-bg wistia-player {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
}

.hero-mobile-bg {
    display: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-overlay);
    z-index: 1;
}

.hero-decorative {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.deco-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(200, 168, 85, 0.15);
}

.deco-circle-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
}

.deco-circle-2 {
    width: 250px;
    height: 250px;
    bottom: 100px;
    left: -80px;
}

.deco-circle-3 {
    width: 300px;
    height: 300px;
    top: -50px;
    left: -100px;
    border-color: rgba(200, 168, 85, 0.1);
}

.deco-circle-4 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    right: -50px;
    border-color: rgba(200, 168, 85, 0.1);
}

.stk-hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: center;
    padding: 120px 0 80px;
}

.hero-micro {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #ffffff;
    margin-bottom: 20px;
    padding: 8px 20px;
    border: 1px solid rgba(200, 168, 85, 0.4);
    border-radius: var(--radius-pill);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.hero-supporting {
    font-weight: 600;
    font-size: 17px;
    color: var(--gold);
    margin-bottom: 40px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

/* ---- HERO PARALLAX (JS-driven on video bg only) ---- */
.stk-hero-parallax {
    position: relative;
    z-index: 0;
}

.stk-circles,
.stk-included,
.stk-video-section,
.stk-faq,
.stk-testimonials,
.stk-final-cta {
    background-color: var(--white);
}

/* ---- CIRCLE ICONS ---- */
.stk-circles {
    padding: 70px 0;
}

.circles-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.circle-item {
    text-align: center;
    transition: transform var(--transition-base);
}

.circle-item:hover {
    transform: scale(1.05);
}

.circle-image {
    width: 180px;
    height: 180px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
}

.circle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.circle-headline {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
}

.circle-support {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.5;
}

.hero-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 20px;
    padding: 8px 20px;
    border: 1px solid rgba(200, 168, 85, 0.4);
    border-radius: var(--radius-pill);
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.15;
}

.stk-hero .hero-h2,
h2.hero-h2 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 400;
    color: #ffffff !important;
    margin-bottom: 20px;
    line-height: 1.6;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 22px;
    color: var(--white);
    font-weight: 400;
    margin-bottom: 12px;
}

.hero-small {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 3;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 120px;
}

/* ---- INTRO TEXT ---- */
.stk-intro {
    padding: 40px 0 80px;
    margin-top: -2px;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-lead {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.4;
    margin-bottom: 20px;
}

.intro-text {
    font-size: 18px;
    color: var(--text-body);
    line-height: 1.8;
}

/* ---- PREMIUM BRAND ---- */
.stk-premium-brand {
    padding: 100px 0;
}

.premium-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.premium-text .section-label {
    margin-bottom: 20px;
}

.premium-text .section-heading {
    font-size: 34px;
    line-height: 1.3;
}

.premium-image {
    position: relative;
    text-align: center;
}

.floating-image {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
}

.image-deco-circle {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    opacity: 0.2;
    top: -30px;
    right: -30px;
    z-index: 0;
}

/* ---- YOUR ROLE / INSTALLATION PROCESS ---- */
.stk-your-role {
    padding: 100px 0;
}

.role-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.role-cards-four {
    grid-template-columns: repeat(4, 1fr);
}

.role-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 40px 30px;
    text-align: center;
    position: relative;
    border: 1px solid var(--light-gray);
    transition: all var(--transition-base);
}

.role-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.role-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gold-light);
    margin-bottom: 24px;
}

.role-icon i {
    font-size: 28px;
    color: var(--gold);
}

.role-content p {
    font-size: 16px;
    color: var(--text-body);
    line-height: 1.6;
}

.role-number {
    position: absolute;
    top: 16px;
    right: 20px;
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: rgba(10, 31, 60, 0.05);
    line-height: 1;
}

/* ---- INCOME / DARK SECTION ---- */
.stk-income {
    padding: 100px 0;
    position: relative;
}

.stk-income-bg-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.stk-income-bg-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 31, 60, 0.88);
    z-index: 1;
}

.stk-income-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 31, 60, 0.88);
    z-index: 1;
}

.stk-income-bg-image > .container,
.stk-income-bg-image > .section-deco {
    position: relative;
    z-index: 2;
}

.section-deco {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.income-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto 40px;
}

.income-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    transition: all var(--transition-base);
}

.income-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

.income-label {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.income-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--gold);
}

.income-note {
    text-align: center;
    color: var(--text-light);
    font-size: 15px;
    max-width: 600px;
    margin: 0 auto;
}

/* ---- FEATURES (Video Background) ---- */
.stk-features {
    padding: 100px 0;
}

.stk-features-video {
    position: relative;
    overflow: hidden;
}

.features-video-bg {
    position: absolute;
    top: -20px;
    left: -20px;
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.features-video-bg wistia-player {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.features-video-bg wistia-player::part(big-play-button),
.features-video-bg wistia-player::part(loading-indicator) {
    display: none !important;
}

.features-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85);
    z-index: 1;
    pointer-events: none;
}

.stk-features-video .container {
    position: relative;
    z-index: 2;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--white);
    border-radius: var(--radius-sm);
    border: 1px solid var(--light-gray);
    transition: all var(--transition-base);
}

.feature-item:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-sm);
}

.feature-check {
    color: var(--gold);
    font-size: 20px;
    flex-shrink: 0;
}

.feature-item span {
    font-size: 15px;
    font-weight: 500;
    color: var(--navy);
}

.features-closing {
    text-align: center;
    font-size: 20px;
    color: var(--navy);
    line-height: 1.6;
}

/* ---- GALLERY ---- */
.stk-gallery {
    padding: 100px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-grid .gallery-item:nth-child(4) {
    grid-column: span 1;
}

.gallery-grid .gallery-item:nth-child(5) {
    grid-column: span 2;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 31, 60, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 32px;
    color: var(--white);
}

/* ---- VIDEO SECTION ---- */
.stk-video-section {
    padding: 100px 0;
}

.video-wrapper {
    max-width: 900px;
    margin: 0 auto 40px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.video-wrapper wistia-player {
    border-radius: var(--radius-lg);
}

.video-duo {
    display: flex;
    justify-content: center;
    gap: 24px;
    max-width: 552px;
    margin: 0 auto 15px;
}

.video-duo-item {
    flex: 1;
    max-height: 75vh;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.video-duo-item wistia-player {
    border-radius: var(--radius-lg);
}

.video-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.video-buttons .stk-btn i {
    font-size: 18px;
}

/* ---- WHAT'S INCLUDED / CHECKLIST ---- */
.stk-included {
    padding: 100px 0;
}

.included-list {
    max-width: 650px;
    margin: 0 auto;
}

.included-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 24px;
    background: var(--white);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    border: 1px solid var(--light-gray);
    transition: all var(--transition-base);
}

.included-item:last-child {
    margin-bottom: 0;
}

.included-item:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-sm);
    transform: translateX(4px);
}

.included-check {
    color: var(--gold);
    font-size: 22px;
    flex-shrink: 0;
}

.included-item span {
    font-size: 16px;
    font-weight: 500;
    color: var(--navy);
}

/* ---- FIT CLOSING TEXT ---- */
.fit-closing {
    text-align: center;
    font-size: 18px;
    color: var(--navy);
}

/* ---- TERRITORY SECTION ---- */
.stk-territories {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(rgba(10, 31, 60, 0.80), rgba(10, 31, 60, 0.80)),
                url('../images/banner-territories.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.stk-territories .section-label {
    color: var(--gold);
}

.stk-territories .section-heading {
    color: var(--white);
}

.stk-territories .section-desc {
    color: var(--text-light);
}

.territory-body {
    max-width: 850px;
    margin: 0 auto 50px;
    text-align: center;
}

.territory-body p {
    color: var(--text-light);
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.territory-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.territory-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all var(--transition-base);
}

.territory-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.territory-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gold-light);
    margin-bottom: 24px;
}

.territory-card-icon i {
    font-size: 28px;
    color: var(--gold);
}

.territory-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}

.territory-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.territory-closing {
    text-align: center;
    font-size: 20px;
    color: var(--gold);
    font-weight: 600;
}

/* ---- FINAL CTA ---- */
.stk-final-cta {
    padding: 100px 0;
}

.cta-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 40px;
    border: 2px solid var(--gold);
    border-radius: var(--radius-xl);
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.cta-card .section-heading {
    margin-bottom: 16px;
}

.cta-text {
    font-size: 18px;
    color: var(--text-body);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-emphasis {
    font-family: var(--font-heading);
    font-size: 34px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---- FOOTER ---- */
.stk-footer {
    background: var(--navy);
    padding: 80px 0 0;
    color: var(--text-light);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 60px;
}

.footer-logo img {
    height: 50px;
    width: auto;
    margin-bottom: 16px;
}

.footer-desc {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.7;
}

.footer-subscribe {
    display: flex;
    gap: 0;
    border-radius: var(--radius-pill);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-subscribe input {
    flex: 1;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: none;
    color: var(--white);
    font-size: 14px;
    outline: none;
}

.footer-subscribe input::placeholder {
    color: var(--text-muted);
}

.subscribe-btn {
    padding: 12px 18px;
    background: var(--gold);
    border: none;
    color: var(--navy);
    cursor: pointer;
    font-size: 16px;
    transition: background var(--transition-fast);
}

.subscribe-btn:hover {
    background: var(--gold-hover);
}

.footer-widget-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu li a {
    font-size: 14px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all var(--transition-fast);
}

.footer-menu li a:hover {
    color: var(--gold);
    transform: translateX(4px);
}

.footer-menu li a i {
    font-size: 10px;
    color: var(--gold);
}

.footer-contact-info {
    margin-bottom: 20px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

.footer-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(200, 168, 85, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-icon i {
    font-size: 14px;
    color: var(--gold);
}

.footer-contact-text {
    font-size: 14px;
    color: var(--text-light);
}

.footer-contact-text a {
    color: var(--text-light);
}

.footer-contact-text a:hover {
    color: var(--gold);
}

.footer-contact-text p {
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    font-size: 13px;
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

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

/* ---- BACK TO TOP ---- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
}

.back-to-top:hover {
    color: var(--navy);
    background: var(--gold-hover);
    transform: translateY(-4px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ---- 404 PAGE ---- */
.stk-404 {
    padding: 120px 0;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.error-code {
    font-size: 120px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 16px;
}

.error-title {
    font-size: 36px;
    margin-bottom: 16px;
}

.error-desc {
    font-size: 18px;
    color: var(--text-body);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ---- GENERIC PAGE ---- */
.stk-page,
.stk-fallback-page {
    padding: 80px 0;
    min-height: 60vh;
}

.page-title {
    font-size: 40px;
    margin-bottom: 32px;
}

.entry-content {
    font-size: 16px;
    line-height: 1.8;
}

.entry-content p {
    margin-bottom: 20px;
}

.entry-content h2 {
    margin-top: 40px;
    margin-bottom: 16px;
}

.entry-content h3 {
    margin-top: 32px;
    margin-bottom: 12px;
}

/* ---- FULL-WIDTH IMAGE BANNER ---- */
.stk-image-banner {
    position: relative;
    width: 100%;
    height: 350px !important;
    min-height: 350px !important;
    max-height: 350px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--navy);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    box-sizing: border-box;
}

.stk-image-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        rgba(10, 31, 60, 0.70),
        rgba(10, 31, 60, 0.70)
    );
    z-index: 1;
}

.stk-image-banner .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.stk-image-banner .banner-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.stk-image-banner .banner-heading {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 700;
    color: #ffffff !important;
    margin-bottom: 16px;
    line-height: 1.2;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7), 0 1px 3px rgba(0, 0, 0, 0.5);
}

.stk-image-banner .banner-sub {
    font-family: var(--font-body);
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6), 0 1px 3px rgba(0, 0, 0, 0.4);
}

/* ---- FAQ SECTION ---- */
.stk-faq {
    padding: 100px 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color var(--transition-fast);
}

.faq-item:hover,
.faq-item.open {
    border-color: var(--gold);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: var(--white);
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    transition: background var(--transition-fast);
}

.faq-question:hover {
    background: var(--light-bg);
}

.faq-icon {
    font-size: 14px;
    color: var(--gold);
    transition: transform var(--transition-fast);
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 24px;
}

.faq-item.open .faq-answer {
    max-height: 200px;
    padding: 0 24px 20px;
}

.faq-answer p {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.7;
}

/* ---- TESTIMONIALS ---- */
.stk-testimonials {
    padding: 100px 0;
}

.testimonial-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-cards-six {
    max-width: 1100px;
    gap: 24px;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 36px 28px 28px;
    border: 1px solid var(--light-gray);
    position: relative;
    transition: all var(--transition-base);
    text-align: center;
}

.testimonial-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.testimonial-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    border: 3px solid var(--gold);
    overflow: hidden;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.testimonial-avatar span {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-text {
    font-size: 15px;
    color: var(--navy);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 16px;
}

.testimonial-name {
    display: block;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 4px;
}

.testimonial-author {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 500;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonial-footer {
    text-align: center;
}

.testimonial-subline {
    font-size: 16px;
    color: var(--text-body);
    font-style: italic;
}

/* ---- TYPEFORM SECTION ---- */
.stk-typeform-section {
    background-color: var(--white);
    padding: 80px 0 100px;
}

.typeform-embed {
    max-width: 720px;
    margin: 0 auto;
    min-height: 500px;
}

/* ---- QUOTE FORM MODAL ---- */
.quote-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 31, 60, 0.7);
    z-index: 6000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.quote-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.quote-modal {
    background: var(--white);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 540px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    position: relative;
    box-shadow: var(--shadow-xl);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.quote-modal-overlay.active .quote-modal {
    transform: scale(1);
}

.quote-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 20px;
    color: var(--text-muted);
    cursor: pointer;
    padding: 8px;
    transition: color var(--transition-fast);
}

.quote-modal-close:hover {
    color: var(--navy);
}

.quote-progress {
    width: 100%;
    height: 4px;
    background: var(--light-gray);
    border-radius: 2px;
    margin-bottom: 24px;
    overflow: hidden;
}

.quote-progress-bar {
    height: 100%;
    width: 16.67%;
    background: var(--gold);
    border-radius: 2px;
    transition: width 0.4s ease;
}

.quote-step-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 32px;
}

.step-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    transition: all var(--transition-fast);
}

.step-dot.active {
    border-color: var(--gold);
    color: var(--gold);
}

.step-dot.current {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
}

.quote-step {
    display: none;
}

.quote-step.active {
    display: block;
}

.step-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 24px;
    text-align: center;
}

.step-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.step-options-multi {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.step-option {
    cursor: pointer;
}

.step-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.option-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 500;
    color: var(--navy);
    transition: all var(--transition-fast);
}

.option-card i {
    color: var(--light-gray);
    font-size: 18px;
    transition: color var(--transition-fast);
}

.step-option input:checked + .option-card {
    border-color: var(--gold);
    background: var(--gold-light);
}

.step-option input:checked + .option-card i {
    color: var(--gold);
}

.step-option:hover .option-card {
    border-color: var(--gold);
}

.step-fields {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.step-fields-contact {
    gap: 14px;
}

.step-select,
.step-input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--navy);
    background: var(--white);
    transition: border-color var(--transition-fast);
    outline: none;
    -webkit-appearance: none;
}

.step-select:focus,
.step-input:focus {
    border-color: var(--gold);
}

.quote-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 32px;
}

.quote-confirmation {
    text-align: center;
}

.confirmation-icon {
    font-size: 64px;
    color: var(--gold);
    margin-bottom: 16px;
}

.confirmation-text {
    font-size: 16px;
    color: var(--text-body);
    margin-bottom: 24px;
}

/* ---- INTRO SECTION ---- */
.stk-intro-bg {
    background: var(--light-bg);
}
