/* Core Custom Properties & Design Tokens */
:root {
    --color-bg: #f0f7f6;
    --color-text: #0f0f0f;
    --color-border: #0f0f0f;
    --color-cyan: #00f0d0;
    --color-yellow: #ffdf00;
    --color-green: #00e680;
    --color-white: #ffffff;
    
    --border-width: 2px;
    --border-thin: 1px;
    --border-solid: var(--border-width) solid var(--color-border);
    --border-solid-thin: var(--border-thin) solid var(--color-border);
    
    --font-heading: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-body: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    --transition-fast: 0.15s ease;
    --transition-normal: 0.25s ease;
}

/* Reset & Scaffolding */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    background: none;
    border: none;
}

/* Accessibility Skip Link */
.skip-to-content {
    position: absolute;
    top: -100px;
    left: 10px;
    background: var(--color-yellow);
    padding: 10px 15px;
    border: var(--border-solid);
    z-index: 1000;
    font-weight: bold;
}
.skip-to-content:focus {
    top: 10px;
}

/* Header & Navigation */
.site-header {
    width: 100%;
    background-color: var(--color-bg);
    border-bottom: var(--border-solid);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem 0 1rem;
    height: 85px;
}

/* Stylized Geometric Brand Logo Box */
.brand-logo {
    background-color: var(--color-cyan);
    border: var(--border-solid);
    height: 68px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 1.2rem;
    font-weight: 900;
    color: var(--color-text);
    box-shadow: 3px 3px 0px var(--color-border);
}

.logo-text-top {
    font-size: 1.25rem;
    line-height: 1.1;
    letter-spacing: 6px;
}

.logo-text-bottom {
    font-size: 1.15rem;
    line-height: 1.1;
    letter-spacing: 4px;
}

.main-navigation .nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 700;
    padding: 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.lang-selector {
    position: relative;
}

.lang-btn {
    font-weight: 700;
    font-size: 0.9rem;
}

/* Floating Rectangular Header Phone Box */
.phone-button {
    background-color: var(--color-yellow);
    border: var(--border-solid);
    padding: 0.6rem 1.2rem;
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--color-text);
    box-shadow: 3px 3px 0px var(--color-border);
    transition: transform var(--transition-fast);
}

.phone-button:hover {
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0px var(--color-border);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
}

.hamburger-bar {
    width: 100%;
    height: 3px;
    background-color: var(--color-text);
}

/* Unified Hero Section (No Central Divider Line) */
.hero-section {
    position: relative;
    min-height: calc(100vh - 85px);
    border-bottom: var(--border-solid);
    display: flex;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    position: relative;
    z-index: 2;
}

html, body {
    min-height: 100%;
    height: auto !important;
    overflow-x: hidden;
    overflow-y: auto !important;
}

.hero-section {
    position: relative;
    min-height: calc(100vh - 85px);
    height: auto; /* Prevents locking section height */
    border-bottom: var(--border-solid);
    overflow: hidden;
}

.program-section {
    position: relative;
    z-index: 5; /* Ensures section renders above canvas overlays */
    display: block !important;
    visibility: visible !important;
}

/* Text Content - No Right Border */
.hero-content {
    padding: 5rem 3rem 4rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: none; /* Removed vertical dividing line */
}

.hero-title {
    font-size: clamp(2.5rem, 4.5vw, 4rem);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 2.5rem;
    max-width: 580px;
}

/* Sharp Rectangular Button */
.btn {
    display: inline-block;
    padding: 0.9rem 1.8rem;
    font-size: 1rem;
    font-weight: 800;
    border: var(--border-solid);
    border-radius: 0px; /* Sharp corners matching reference */
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    text-align: center;
}

.btn-yellow {
    background-color: var(--color-yellow);
    color: var(--color-text);
    box-shadow: 3px 3px 0px var(--color-border);
}

.btn-yellow:hover {
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0px var(--color-border);
}

.hero-visual {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: auto;
}

#hero-cube-canvas {
    width: 100%;
    height: 100%;
    display: block;
}

/* Floating Circular Phone Action Icon (Bottom Left) */
.floating-contact-btn {
    position: absolute;
    bottom: 30px;
    left: 4rem;
    width: 60px;
    height: 60px;
    background-color: var(--color-yellow);
    border: var(--border-solid);
    border-radius: 50%; /* Circle shape matching reference */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 3px 3px 0px var(--color-border);
    z-index: 10;
    transition: transform var(--transition-fast);
}

.floating-contact-btn:hover {
    transform: scale(1.08);
}

.contact-btn-icon {
    width: 24px;
    height: 24px;
    fill: var(--color-text);
}

/* Footer Section */
.site-footer {
    background-color: var(--color-bg);
    border-top: var(--border-solid);
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    padding: 3rem 4rem;
    border-bottom: var(--border-solid-thin);
}

.footer-logo {
    display: inline-flex;
    flex-direction: column;
    background: var(--color-cyan);
    border: var(--border-solid);
    padding: 0.5rem 1rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1;
}

.footer-bottom {
    padding: 1.2rem 4rem;
    font-size: 0.85rem;
    font-weight: 600;
}
/* Program Section Layout */
.program-section {
    padding: 5rem 4rem;
    background-color: var(--color-bg);
    border-bottom: var(--border-solid);
    position: relative;
}

.program-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

/* Title & Cyan Highlight Block */
.program-title {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--color-text);
}

.program-title .title-highlight {
    background-color: var(--color-cyan);
    display: inline-block;
    padding: 0.2rem 0.5rem;
    margin-top: 0.3rem;
}

.program-description {
    font-size: 0.95rem;
    color: #333;
    max-width: 540px;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Subject Tag */
.subject-tag {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
}

.subject-icon {
    width: 38px;
    height: 38px;
    background-color: var(--color-cyan);
    border: var(--border-solid);
    position: relative;
}

.subject-icon .icon-slash {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--color-border);
    top: 50%;
    left: 0;
    transform: rotate(-45deg);
}

.subject-title {
    font-size: 1.25rem;
    font-weight: 800;
}

/* 2x2 Feature Grid */
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 580px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.feature-icon-box {
    width: 32px;
    height: 32px;
    border: var(--border-solid);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-color: var(--color-white);
}

.feature-text {
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--color-text);
}

/* Offset Pricing Card */
.program-pricing-wrapper {
    position: relative;
    padding: 1.5rem;
}

.pricing-card-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 90%;
    height: 90%;
    border: var(--border-solid);
    z-index: 1;
    pointer-events: none;
}

.pricing-card {
    position: relative;
    z-index: 2;
    background-color: var(--color-cyan);
    border: var(--border-solid);
    padding: 3rem 2.5rem;
    margin-top: 1.5rem;
    margin-left: 1.5rem;
    box-shadow: 4px 4px 0px var(--color-border);
}

.pricing-group {
    margin-bottom: 2rem;
}

.pricing-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.price-badge {
    display: inline-block;
    background-color: var(--color-yellow);
    font-size: 1.4rem;
    font-weight: 900;
    padding: 0.2rem 0.6rem;
    color: var(--color-text);
}

/* Pricing Action Button */
.btn-pricing {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-yellow);
    border: var(--border-solid);
    padding: 0.7rem 1.8rem;
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--color-text);
    margin-top: 1rem;
    box-shadow: 2px 2px 0px var(--color-border);
    transition: transform 0.15s ease;
}

.btn-pricing:hover {
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0px var(--color-border);
}

/* Wireframe Corner Accent */
.pricing-card-corner {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 36px;
    height: 36px;
    border-top: var(--border-solid);
    border-left: var(--border-solid);
}

.pricing-card-corner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 48%, var(--color-border) 48%, var(--color-border) 52%, transparent 52%);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .program-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .program-pricing-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }
}
/* Color Accent Modifiers for Yellow Variant Sections */
.title-highlight-yellow {
    background-color: var(--color-yellow) !important;
}

.subject-icon-yellow {
    background-color: var(--color-yellow) !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon-yellow {
    background-color: var(--color-yellow) !important;
}

.pricing-card-yellow {
    background-color: var(--color-yellow) !important;
}

.price-badge-cyan {
    background-color: var(--color-cyan) !important;
}

.btn-cyan {
    background-color: var(--color-cyan) !important;
}

.btn-cyan:hover {
    background-color: #00d6b8 !important;
}

/* Feature Item Spanning Full Width when needed */
.feature-item-wide {
    grid-column: span 2;
}

@media (max-width: 600px) {
    .feature-item-wide {
        grid-column: span 1;
    }
}
/* Camps & Intensives Section */
.camps-section {
    background-color: var(--color-bg);
    border-bottom: var(--border-solid);
    position: relative;
    overflow: hidden;
}

/* Running Marquee Ticker Banner */
.ticker-banner {
    background-color: var(--color-cyan);
    border-bottom: var(--border-solid);
    padding: 1.2rem 0;
    white-space: nowrap;
    overflow: hidden;
}

.ticker-track {
    display: inline-flex;
    gap: 3rem;
    animation: ticker 20s linear infinite;
}

.ticker-track span {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Split Two-Column Container */
.camps-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1400px;
    margin: 0 auto;
}

.camp-card {
    padding: 3.5rem 3rem;
    position: relative;
}

.camp-card:first-child {
    border-right: var(--border-solid);
}

/* Yellow Circle Graphic Badge */
.circle-badge {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 3px solid var(--color-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.circle-inner {
    width: 32px;
    height: 32px;
    background-color: var(--color-yellow);
    border-radius: 50%;
}

/* Course Titles & Stats Rows */
.camp-title {
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 2rem;
    max-width: 480px;
    color: var(--color-text);
}

.camp-stats {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 1.8rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.stat-label {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

.stat-value {
    font-size: 1rem;
    font-weight: 800;
}

.badge-cyan {
    background-color: var(--color-cyan);
    padding: 0.1rem 0.4rem;
    display: inline-block;
}

/* Action Button */
.btn-enroll {
    display: inline-block;
    background-color: var(--color-yellow);
    border: var(--border-solid);
    padding: 0.6rem 1.8rem;
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--color-text);
    text-decoration: none;
    margin-bottom: 2.5rem;
    box-shadow: 2px 2px 0px var(--color-border);
    transition: transform 0.15s ease;
}

.btn-enroll:hover {
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0px var(--color-border);
}

/* Callout Details Box */
.program-box {
    background-color: #e5f0f3;
    padding: 2rem;
    border-radius: 2px;
    max-width: 520px;
}

.program-box-title {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
}

.program-intro {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #333;
    margin-bottom: 1.5rem;
}

.program-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: flex-start;
    flex-direction: column;
    gap: 0.9rem;
}

.program-list li {
    position: relative;
    padding-left: 1.4rem;
    font-size: 0.88rem;
    line-height: 1.4;
    color: #222;
}

.program-list li::before {
    content: '??';
    position: absolute;
    left: 0;
    top: -2px;
    font-size: 0.7rem;
    color: #666;
    letter-spacing: -2px;
}

/* Vector Decorative Elements */
.card-decor-cloud {
    position: absolute;
    top: 2rem;
    right: 3rem;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
    opacity: 0.85;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .camps-container {
        grid-template-columns: 1fr;
    }
    .camp-card:first-child {
        border-right: none;
        border-bottom: var(--border-solid);
    }
}
/* Why Letterz School (Advantages) Section */
.why-us-section {
    background-color: var(--color-yellow);
    border-bottom: var(--border-solid);
    position: relative;
}

.ticker-banner-yellow {
    background-color: var(--color-yellow);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1400px;
    margin: 0 auto;
    background-color: var(--color-yellow);
}

.why-us-card {
    background-color: var(--color-bg);
    border-left: var(--border-solid);
    border-top: var(--border-solid);
    padding: 3.5rem 2.5rem 4rem 2.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
}

.why-us-card:first-child {
    border-left: none;
}

/* Stepped Top Offsets */
.card-step-1 {
    margin-top: 0;
}

.card-step-2 {
    margin-top: 3.5rem;
}

.card-step-3 {
    margin-top: 7rem;
}

/* Bicycle Decorative Accent on Step 3 */
.bike-accent {
    position: absolute;
    top: -24px;
    left: 20px;
}

/* Geometric Icon Box with Offset Cyan Box */
.why-us-icon-box {
    position: relative;
    width: 48px;
    height: 48px;
    border: var(--border-solid);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    background-color: var(--color-white);
}

.why-us-icon-box .icon-bg-cyan {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 100%;
    height: 100%;
    background-color: var(--color-cyan);
    z-index: 0;
}

.why-us-icon-box svg {
    position: relative;
    z-index: 1;
}

/* Section Card Content Styling */
.why-us-title {
    font-size: 1.45rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 2rem;
    color: var(--color-text);
}

.why-us-content {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.why-us-content p {
    font-size: 0.88rem;
    line-height: 1.55;
    color: #333;
    margin: 0;
}

/* Mobile & Tablet Responsiveness */
@media (max-width: 992px) {
    .why-us-grid {
        grid-template-columns: 1fr;
    }
    .why-us-card {
        border-left: none;
        margin-top: 0 !important;
        border-bottom: var(--border-solid);
    }
    .bike-accent {
        display: none;
    }
}
/* About School Section Layout */
.about-section {
    background-color: var(--color-bg);
    border-bottom: var(--border-solid);
    position: relative;
}

.ticker-banner-cyan {
    background-color: var(--color-cyan);
}

/* Upper Grid Row */
.about-grid-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: var(--border-solid);
}

.about-card {
    padding: 3.5rem 3rem;
    position: relative;
    box-sizing: border-box;
}

.about-intro-card {
    border-right: var(--border-solid);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* L Geometric Icon Box */
.about-icon-box {
    width: 44px;
    height: 44px;
    border: var(--border-solid);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-cyan);
    margin-bottom: 2rem;
    box-shadow: -4px 4px 0px var(--color-border);
}

.icon-letter {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--color-text);
}

.about-headline {
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1.35;
    margin-bottom: 1.8rem;
    color: var(--color-text);
    max-width: 520px;
}

.about-description {
    font-size: 0.88rem;
    line-height: 1.6;
    color: #444;
    max-width: 520px;
    margin: 0;
}

.about-description strong {
    color: var(--color-text);
    font-weight: 700;
}

/* Photo Gallery Strip Container */
.about-photo-wrapper {
    display: grid;
    grid-template-columns: 1fr 48px;
    background-color: #d1d5db;
}

.about-photo-card {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 380px;
}

.about-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.photo-nav-strip {
    background-color: var(--color-cyan);
    border-left: var(--border-solid);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.photo-nav-strip:hover {
    background-color: #00d6b8;
}

.nav-arrow {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-text);
    line-height: 1;
}

/* Lower Grid Row */
.about-grid-bottom {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
}

.about-comm-card {
    border-right: var(--border-solid);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 0;
}

.about-comm-text {
    font-size: 0.88rem;
    line-height: 1.6;
    color: #444;
    max-width: 460px;
    margin-bottom: 2.5rem;
}

.about-comm-text strong {
    color: var(--color-text);
    font-weight: 800;
}

.about-cyan-block {
    height: 60px;
    background-color: var(--color-cyan);
    border-top: var(--border-solid);
    margin: 0 -3rem;
}

.about-values-card {
    display: flex;
    align-items: center;
    background-color: #edf5f8;
}

.about-values-text {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.45;
    color: var(--color-text);
    max-width: 580px;
    margin: 0;
}

.badge-yellow-highlight {
    background-color: var(--color-yellow);
    padding: 0.1rem 0.4rem;
    font-weight: 800;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .about-grid-top,
    .about-grid-bottom {
        grid-template-columns: 1fr;
    }
    .about-intro-card,
    .about-comm-card {
        border-right: none;
        border-bottom: var(--border-solid);
    }
    .about-cyan-block {
        margin: 0 -1.5rem;
    }
    .about-card {
        padding: 2.5rem 1.5rem;
    }
}
/* Reviews Section */
.reviews-section {
    background-color: var(--color-bg);
    position: relative;
    padding-bottom: 2rem;
}

.reviews-top-bar {
    height: 36px;
    background-color: var(--color-yellow);
    border-bottom: var(--border-solid);
}

.reviews-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem 0 2rem;
    position: relative;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    align-items: flex-start;
    position: relative;
    z-index: 3;
}

.review-card {
    background-color: var(--color-white);
    border: var(--border-solid);
    padding: 2.2rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 240px;
    box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.05);
}

.review-card-extended {
    margin-bottom: -4rem;
    min-height: 360px;
}

.review-text {
    font-size: 0.88rem;
    line-height: 1.55;
    color: #333;
    margin-bottom: 2rem;
}

.review-author {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--color-text);
}

/* Geometric Decorative Accents */
.geo-decor {
    position: absolute;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

.geo-decor-left {
    left: 2rem;
}

.geo-decor-right {
    right: 2rem;
}

/* Contact Form Section */
.contact-section {
    background-color: var(--color-cyan);
    border-top: var(--border-solid);
    border-bottom: var(--border-solid);
    padding: 5rem 2rem 4rem 2rem;
    position: relative;
    z-index: 2;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-title {
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1.4;
    color: var(--color-text);
    margin-bottom: 2.5rem;
}

/* Lead Form Styling */
.lead-form {
    max-width: 440px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    position: relative;
    width: 100%;
}

.form-input,
.form-select {
    width: 100%;
    padding: 0.9rem 1.2rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-text);
    background-color: var(--color-white);
    border: var(--border-solid);
    border-radius: 0;
    outline: none;
    box-sizing: border-border-box;
    appearance: none;
    -webkit-appearance: none;
}

.form-input::placeholder {
    color: var(--color-text);
    font-weight: 700;
}

.select-wrapper {
    position: relative;
}

.select-arrow {
    position: absolute;
    right: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 0.8rem;
    color: var(--color-text);
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: var(--color-yellow);
    border: var(--border-solid);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--color-text);
    cursor: pointer;
    box-shadow: 2px 2px 0px var(--color-border);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    margin-top: 0.5rem;
}

.btn-submit:hover {
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0px var(--color-border);
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    .review-card-extended {
        margin-bottom: 0;
    }
    .geo-decor {
        display: none;
    }
    .contact-title {
        font-size: 1.15rem;
    }
}
/* Footer Contacts Section Layout */
.footer-contacts-section {
    background-color: var(--color-bg);
    border-top: var(--border-solid);
    position: relative;
}

.contacts-grid {
    display: grid;
    grid-template-columns: 80px 1fr 1fr;
    max-width: 1400px;
    margin: 0 auto;
}

/* Left Vertical Text Banner */
.contacts-vertical-banner {
    border-right: var(--border-solid);
    background-color: var(--color-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
}

.vertical-text {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    display: flex;
    gap: 2rem;
    white-space: nowrap;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-text);
    text-transform: capitalize;
}

/* Middle Column: Phones & Socials */
.contacts-middle-col {
    border-right: var(--border-solid);
    display: flex;
    flex-direction: column;
}

.contacts-block {
    padding: 3rem 2.5rem;
}

.phones-block {
    border-bottom: var(--border-solid);
}

.block-label {
    display: block;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 2rem;
}

.phone-list,
.social-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.phone-list a,
.social-list a {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-text);
    text-decoration: underline;
    text-decoration-thickness: 3px;
    text-underline-offset: 6px;
    transition: color 0.15s ease;
}

.phone-list a:hover,
.social-list a:hover {
    color: #666;
}

/* Right Column: Maps & Working Schedule */
.contacts-right-col {
    display: flex;
    flex-direction: column;
}

.location-block {
    padding: 2rem 2.5rem;
    border-bottom: var(--border-solid);
}

.location-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--color-text);
    text-decoration: none;
    margin-bottom: 1.2rem;
}

.location-header:hover .arrow {
    transform: translateX(5px);
}

.location-header .arrow {
    font-size: 1.3rem;
    transition: transform 0.15s ease;
}

.map-frame-wrapper {
    position: relative;
    border: var(--border-solid);
    background-color: var(--color-white);
    line-height: 0;
    overflow: hidden;
}

.map-accent-cyan {
    position: absolute;
    top: 0;
    right: 0;
    width: 8px;
    height: 100%;
    background-color: var(--color-cyan);
    border-left: var(--border-solid);
    pointer-events: none;
}

/* Working Hours Block */
.hours-block {
    padding: 2.5rem;
}

.hours-rows {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    max-width: 450px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    font-weight: 500;
    color: #444;
}

.hours-time {
    font-weight: 700;
    color: var(--color-text);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .contacts-grid {
        grid-template-columns: 1fr;
    }
    .contacts-vertical-banner {
        display: none;
    }
    .contacts-middle-col {
        border-right: none;
        border-bottom: var(--border-solid);
    }
}
/* Footer Contacts Section Layout */
.footer-contacts-section {
    background-color: var(--color-bg);
    border-top: var(--border-solid);
    position: relative;
}

.contacts-grid {
    display: grid;
    grid-template-columns: 80px 1fr 1fr;
    max-width: 1400px;
    margin: 0 auto;
}

/* Left Vertical Text Banner */
.contacts-vertical-banner {
    border-right: var(--border-solid);
    background-color: var(--color-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
}

.vertical-text {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    display: flex;
    gap: 2rem;
    white-space: nowrap;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-text);
    text-transform: capitalize;
}

/* Middle Column: Phones & Socials */
.contacts-middle-col {
    border-right: var(--border-solid);
    display: flex;
    flex-direction: column;
}

.contacts-block {
    padding: 3rem 2.5rem;
}

.phones-block {
    border-bottom: var(--border-solid);
}

.block-label {
    display: block;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 2rem;
}

.phone-list,
.social-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.phone-list a,
.social-list a {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-text);
    text-decoration: underline;
    text-decoration-thickness: 3px;
    text-underline-offset: 6px;
    transition: color 0.15s ease;
}

.phone-list a:hover,
.social-list a:hover {
    color: #666;
}

/* Right Column: Maps & Working Schedule */
.contacts-right-col {
    display: flex;
    flex-direction: column;
}

.location-block {
    padding: 2rem 2.5rem;
    border-bottom: var(--border-solid);
}

.location-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--color-text);
    text-decoration: none;
    margin-bottom: 1.2rem;
}

.location-header:hover .arrow {
    transform: translateX(5px);
}

.location-header .arrow {
    font-size: 1.3rem;
    transition: transform 0.15s ease;
}

.map-frame-wrapper {
    position: relative;
    border: var(--border-solid);
    background-color: var(--color-white);
    line-height: 0;
    overflow: hidden;
}

.map-accent-cyan {
    position: absolute;
    top: 0;
    right: 0;
    width: 8px;
    height: 100%;
    background-color: var(--color-cyan);
    border-left: var(--border-solid);
    pointer-events: none;
}

/* Working Hours Block */
.hours-block {
    padding: 2.5rem;
}

.hours-rows {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    max-width: 450px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    font-weight: 500;
    color: #444;
}

.hours-time {
    font-weight: 700;
    color: var(--color-text);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .contacts-grid {
        grid-template-columns: 1fr;
    }
    .contacts-vertical-banner {
        display: none;
    }
    .contacts-middle-col {
        border-right: none;
        border-bottom: var(--border-solid);
    }
}
/* Dark Bottom Copyright Bar */
.copyright-bar {
    background-color: #1e252b;
    border-top: var(--border-solid);
    padding: 1.2rem 2.5rem;
    color: #ffffff;
}

.copyright-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.copyright-logo-box {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    padding: 0.3rem;
    border: 1px solid #ffffff;
    flex-shrink: 0;
}

.copyright-rule {
    flex: 1;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.4);
}

.copyright-info {
    font-size: 0.8rem;
    color: #a0aec0;
    white-space: nowrap;
}

.copyright-links {
    display: flex;
    gap: 1.5rem;
    white-space: nowrap;
}

.copyright-links a {
    color: #a0aec0;
    font-size: 0.8rem;
    text-decoration: none;
    transition: color 0.15s ease;
}

.copyright-links a:hover {
    color: #ffffff;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .copyright-container {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    .copyright-rule {
        width: 100%;
        flex: none;
    }
}