/* ==========================================================================
   İDİL TERZİ - DESKTOP & ADVANCED MOBILE RESPONSIVE DESIGN SYSTEM
   ========================================================================== */

:root {
    --bg-page: #f8fafc;
    --bg-white: #ffffff;
    --bg-surface: #f1f5f9;
    --bg-dark: #0f172a;
    --bg-darker: #090d16;

    --text-main: #0f172a;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --text-white: #ffffff;

    --gold-accent: #d97706;
    --gold-subtle: #fffbeb;
    --gold-border: #fde68a;

    --wa-green: #16a34a;
    --wa-green-hover: #15803d;

    --border-color: #e2e8f0;

    --font-heading: 'Plus Jakarta Sans', -apple-system, sans-serif;
    --font-body: 'Inter', -apple-system, sans-serif;

    --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.03);
    --shadow-card: 0 10px 30px -5px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 40px -10px rgba(15, 23, 42, 0.08);

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Custom Floating Ultra-Slim Scrollbar Indicator (Silky Smooth Fade) */
.custom-scroll-track {
    position: fixed;
    top: 0;
    right: 0;
    width: 5px;
    height: 100vh;
    z-index: 9999;
    pointer-events: none;
    background: rgba(248, 250, 252, calc(1 - var(--scroll-dark-ratio, 1)));
    transition: background 0.2s ease;
}

.custom-scroll-thumb {
    position: absolute;
    top: 0;
    right: 0;
    width: 5px;
    border-radius: var(--radius-full);
    background-color: var(--gold-accent);
    box-shadow: 0 0 10px rgba(217, 119, 6, 0.4);
    will-change: transform;
}

/* Hide Native Browser Scrollbar Completely */
::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scrollbar-width: none !important;
    /* Firefox */
    -ms-overflow-style: none !important;
    /* IE and Edge */
}

/* Smooth Scroll Offset for Fixed Header */
section,
[id] {
    scroll-margin-top: 95px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-page);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

/* Transparent-to-White Animated Header Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    border-bottom: none;
    padding: 1.35rem 0;
    transition: background 0.4s ease, padding 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

/* When scrolling down: smooth transition to crisp solid/frosted white */
.header.scrolled {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    padding: 0.9rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

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

.brand {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: #ffffff;
    transition: color 0.4s ease;
}

.header.scrolled .brand-title {
    color: var(--text-main);
}

.brand-tagline {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #f59e0b;
    transition: color 0.4s ease;
}

.header.scrolled .brand-tagline {
    color: var(--gold-accent);
}

.header-right-group {
    display: flex;
    align-items: center;
    gap: 2.25rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.85rem;
}

.nav-links a {
    position: relative;
    font-size: 0.92rem;
    font-weight: 600;
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.85);
    padding-bottom: 4px;
    transition: color 0.4s ease;
}

/* Animated Golden Underline Indicator */
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2.5px;
    background: var(--gold-accent);
    border-radius: var(--radius-full);
    transform: translateX(-50%);
    transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.4s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: #ffffff !important;
}

.header.scrolled .nav-links a {
    color: var(--text-muted);
}

.header.scrolled .nav-links a:hover,
.header.scrolled .nav-links a.active {
    color: var(--text-main) !important;
}

.nav-highlight {
    color: #fbbf24 !important;
}

.header.scrolled .nav-highlight {
    color: var(--gold-accent) !important;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.call-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.88rem;
    font-weight: 600;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    transition: all 0.4s ease;
}

.call-pill:hover {
    background: rgba(255, 255, 255, 0.25);
}

.header.scrolled .call-pill {
    border-color: var(--border-color);
    color: var(--text-main);
    background: #ffffff;
}

.header.scrolled .call-pill:hover {
    border-color: var(--text-main);
    background-color: var(--bg-surface);
}

.wa-btn-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    background-color: var(--wa-green);
    color: var(--text-white);
    border-radius: var(--radius-full);
    font-size: 0.88rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(22, 163, 74, 0.25);
}

.wa-btn-pill:hover {
    background-color: var(--wa-green-hover);
    transform: translateY(-1px);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #ffffff;
    transition: color 0.4s ease;
    z-index: 1001;
}

.header.scrolled .mobile-toggle {
    color: var(--text-main);
}

/* Mobile Toggle Close Button Icon High Contrast */
.mobile-toggle.active {
    color: var(--text-main) !important;
    z-index: 1002;
}

/* Mobile Overlay Backdrop */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(6px);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* Full-Screen Hero (100vh Desktop) */
.hero-fullscreen {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 720px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 5rem;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.68) 0%, rgba(15, 23, 42, 0.88) 100%);
    z-index: 2;
}

.hero-full-content {
    position: relative;
    z-index: 3;
    color: #ffffff;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding-bottom: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.45rem 1.25rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--gold-border);
    margin-bottom: 1.75rem;
}

.hero-main-title {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.title-highlight {
    color: #fbbf24;
}

.hero-main-lead {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.88);
    max-width: 720px;
    margin-bottom: 2.75rem;
    font-weight: 400;
}

.hero-action-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.15rem 2.4rem;
    background-color: var(--wa-green);
    color: #ffffff;
    border-radius: var(--radius-full);
    font-size: 1.05rem;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(22, 163, 74, 0.4);
}

.hero-btn-primary:hover {
    background-color: var(--wa-green-hover);
    transform: translateY(-3px);
}

.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.15rem 2.2rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    border-radius: var(--radius-full);
    font-size: 1.05rem;
    font-weight: 600;
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

/* User Requested Transparent Hero Bottom Strip */
.hero-bottom-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    width: 100%;
    max-width: 1050px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    padding: 1.25rem 2rem;
}

.strip-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.strip-box i {
    font-size: 1.8rem;
    color: #f59e0b;
}

.strip-box strong {
    display: block;
    font-size: 0.95rem;
    color: #ffffff;
}

.strip-box span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Redesigned Modern Spotlight Section */
.spotlight-section {
    padding: 6.5rem 0;
    background-color: #ffffff;
    border-bottom: 1px solid var(--border-color);
}

.spotlight-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.spotlight-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--gold-accent);
    background-color: var(--gold-subtle);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--gold-border);
    margin-bottom: 1.25rem;
}

.spotlight-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.spotlight-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.25rem;
}

.spotlight-perks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.perk-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--bg-page);
    padding: 1.15rem 1.25rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.perk-icon {
    width: 40px;
    height: 40px;
    background: #ffffff;
    color: var(--gold-accent);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    border: 1px solid var(--border-color);
    flex-shrink: 0;
}

.perk-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.2rem;
}

.perk-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.btn-spotlight-wa {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.1rem 2.2rem;
    background-color: var(--wa-green);
    color: #ffffff;
    border-radius: var(--radius-full);
    font-size: 1.05rem;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(22, 163, 74, 0.3);
}

.btn-spotlight-wa:hover {
    background-color: var(--wa-green-hover);
    transform: translateY(-2px);
}

.steam-stat-card {
    background: linear-gradient(145deg, var(--bg-dark), #1e293b);
    color: #ffffff;
    padding: 3.5rem 2.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-hover);
}

.steam-stat-icon {
    font-size: 3.5rem;
    color: #fbbf24;
    margin-bottom: 1.25rem;
}

.steam-stat-card h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.steam-stat-card p {
    font-size: 0.95rem;
    color: #94a3b8;
    margin-bottom: 2rem;
}

.stat-badges-row {
    display: flex;
    justify-content: space-around;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.stat-badge-item strong {
    display: block;
    font-size: 1.5rem;
    color: #fbbf24;
}

.stat-badge-item span {
    font-size: 0.8rem;
    color: #94a3b8;
}

/* Redesigned Modern Services Grid */
.services-modern-section {
    padding: 6.5rem 0;
    background-color: var(--bg-page);
}

.section-badge {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--gold-accent);
    display: block;
    margin-bottom: 0.5rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 0.75rem;
}

.section-desc {
    font-size: 1.08rem;
    color: var(--text-muted);
    max-width: 620px;
    margin: 0 auto 3.5rem;
}

.modern-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
}

.modern-service-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2.75rem 2.25rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition);
    box-shadow: var(--shadow-subtle);
}

.modern-service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--gold-border);
}

.highlight-card {
    border-top: 4px solid var(--gold-accent);
    background: linear-gradient(180deg, #ffffff 0%, var(--gold-subtle) 100%);
}

.card-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--gold-accent);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
}

.card-icon-box {
    width: 56px;
    height: 56px;
    background: var(--gold-subtle);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gold-accent);
    margin-bottom: 1.5rem;
}

.modern-service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.75rem;
}

.modern-service-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    flex-grow: 1;
}

.card-action {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--gold-accent);
}

.card-action:hover {
    color: var(--text-main);
    gap: 0.75rem;
}

/* FAQ Section & Modern Accordion Styling */
.faq-section {
    padding: 6rem 0;
    background-color: var(--bg-surface-alt);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.faq-accordion {
    max-width: 840px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.faq-item {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(217, 119, 6, 0.4);
    box-shadow: 0 8px 25px rgba(217, 119, 6, 0.08);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 1.75rem;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
    gap: 1rem;
    transition: color 0.3s ease;
}

.faq-question i {
    font-size: 1rem;
    color: var(--gold-accent);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.75rem;
    opacity: 0;
    transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1), padding 0.45s ease, opacity 0.35s ease;
}

.faq-item.active .faq-answer {
    opacity: 1;
    padding-top: 0.25rem;
    padding-bottom: 1.5rem;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.65;
    margin: 0;
}

.faq-inline-link {
    color: var(--gold-accent);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.faq-inline-link:hover {
    color: #b45309;
}

/* Estimator Section */
.estimator-section {
    padding: 6.5rem 0;
    background-color: #ffffff;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.estimator-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
    align-items: center;
}

.estimator-info h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.estimator-info p {
    font-size: 1.08rem;
    color: var(--text-muted);
    margin-bottom: 2.25rem;
}

.info-checklist {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.check-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.98rem;
    color: var(--text-main);
    font-weight: 600;
}

.check-row i {
    color: var(--wa-green);
    font-size: 1.2rem;
}

.estimator-card {
    background: var(--bg-page);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-subtle);
}

.estimator-form {
    display: flex;
    flex-direction: column;
    gap: 1.35rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-field label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-field label i {
    color: var(--gold-accent);
}

.input-select,
.input-text,
.input-textarea {
    width: 100%;
    padding: 0.95rem 1.15rem;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.98rem;
    color: var(--text-main);
    transition: var(--transition);
}

.input-select:focus,
.input-text:focus,
.input-textarea:focus {
    outline: none;
    border-color: var(--gold-accent);
    box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.15);
}

.submit-wa-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.95rem 1.25rem;
    background-color: var(--wa-green);
    color: #ffffff;
    border: none;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: 0.98rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 20px rgba(22, 163, 74, 0.25);
}

.submit-wa-btn:hover {
    background-color: var(--wa-green-hover);
    transform: translateY(-2px);
}

/* Contact Editorial Section */
.contact-editorial-section {
    padding: 6.5rem 0;
    background-color: var(--bg-page);
}

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

.editorial-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 3rem;
}

.card-head {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border-color);
}

.card-head i {
    font-size: 1.8rem;
    color: var(--gold-accent);
}

.card-head h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--text-main);
}

.card-body-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.25rem;
}

.c-list-item strong {
    display: block;
    font-size: 0.88rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.c-list-item p,
.c-list-item a {
    font-size: 1.05rem;
    color: var(--text-main);
    font-weight: 600;
}

.card-btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn-black {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.6rem;
    background-color: var(--text-main);
    color: #ffffff;
    border-radius: var(--radius-full);
    font-size: 0.92rem;
    font-weight: 600;
}

.btn-border {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.6rem;
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    color: var(--text-main);
    border-radius: var(--radius-full);
    font-size: 0.92rem;
    font-weight: 600;
}

.hours-list-minimal {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-bottom: 2rem;
}

.h-row {
    display: flex;
    justify-content: space-between;
    padding: 0.55rem 0.9rem;
    background: var(--bg-page);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 600;
}

.status-live-banner {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.25rem;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #166534;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
}

/* Dynamic Closed State Styling */
.status-live-banner.closed {
    background: #fef2f2;
    border-color: #fecaca;
    color: #991b1b;
}

/* Perfect 1:1 round circle dot that NEVER shrinks or gets squeezed */
.live-pulse {
    width: 8px;
    height: 8px;
    min-width: 8px;
    min-height: 8px;
    flex-shrink: 0;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    animation: pulseGlow 2s infinite;
}

.status-live-banner.closed .live-pulse {
    background: #ef4444;
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    animation: pulseGlowRed 2s infinite;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

@keyframes pulseGlowRed {
    0% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(239, 68, 68, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    }
}

/* Footer with Integrated Map Side */
.footer-editorial {
    background-color: var(--bg-darker);
    color: #ffffff;
    padding: 5rem 0 2rem;
}

.footer-grid-map {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: start;
}

.f-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: #ffffff;
}

.f-tagline {
    color: var(--text-light);
    font-size: 1rem;
    margin: 0.5rem 0 2rem;
}

.f-info-blocks {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.f-info-blocks p {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.f-info-blocks i {
    color: var(--gold-accent);
}

.f-info-blocks a {
    color: rgba(255, 255, 255, 0.8);
}

.f-info-blocks a:hover {
    color: var(--gold-accent);
}

.footer-map-side h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.footer-map-side h4 i {
    color: var(--gold-accent);
}

.footer-map-frame {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    color: var(--text-light);
    font-size: 0.88rem;
}

.t1b-link {
    color: var(--gold-accent);
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.address-map-link {
    color: inherit;
    transition: var(--transition);
}

.address-map-link:hover {
    color: var(--gold-accent);
    text-decoration: underline;
}

/* Floating Sticky Pill (Icon-Only Compact Round Button) */
.floating-wa-pill {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    padding: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--wa-green);
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(22, 163, 74, 0.35);
    z-index: 999;
    transition: var(--transition);
}

.floating-wa-pill span {
    display: none !important;
}

.floating-wa-pill:hover {
    background-color: var(--wa-green-hover);
    transform: scale(1.08);
}

.floating-wa-pill i {
    font-size: 1.75rem;
    margin: 0;
}

/* ==========================================================================
   ADVANCED MOBILE & TABLET RESPONSIVE STYLES
   (Preserves Desktop Styles Unmodified for Screens > 1024px)
   ========================================================================== */

@media (max-width: 1024px) {

    /* Mobile Header & Hamburger Navigation */
    .mobile-toggle {
        display: block;
        z-index: 1001;
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.4s ease;
    }

    .mobile-toggle.active {
        color: var(--text-main) !important;
        transform: rotate(180deg);
        z-index: 1002;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        position: fixed;
        top: 0;
        right: 0;
        width: 82%;
        max-width: 320px;
        height: 100vh;
        background: #ffffff;
        padding: 6.5rem 2rem 2rem;
        gap: 1.25rem;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.2);
        z-index: 999;
        transform: translateX(100%);
        visibility: hidden;
        opacity: 0;
        transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease, visibility 0.45s ease;
    }

    .nav-links.mobile-open {
        transform: translateX(0);
        visibility: visible;
        opacity: 1;
    }

    /* Staggered Entrance Animation & Active State for Mobile Menu Items */
    .nav-links a {
        font-size: 1.05rem;
        font-weight: 700;
        color: var(--text-main) !important;
        width: 100%;
        padding: 0.85rem 1rem;
        border-bottom: 1px solid var(--border-color);
        border-left: 4px solid transparent;
        border-radius: var(--radius-sm);
        opacity: 0;
        transform: translateX(25px);
        transition: opacity 0.35s ease, transform 0.35s ease, background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    }

    .nav-links.mobile-open a {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-links a.active {
        color: var(--gold-accent) !important;
        background-color: var(--gold-subtle) !important;
        border-left-color: var(--gold-accent) !important;
        font-weight: 800 !important;
    }

    .nav-links a::after {
        display: none !important;
    }

    .nav-links.mobile-open a:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.mobile-open a:nth-child(2) { transition-delay: 0.15s; }
    .nav-links.mobile-open a:nth-child(3) { transition-delay: 0.2s; }
    .nav-links.mobile-open a:nth-child(4) { transition-delay: 0.25s; }
    .nav-links.mobile-open a:nth-child(5) { transition-delay: 0.3s; }
    .nav-links.mobile-open a:nth-child(6) { transition-delay: 0.35s; }

    /* Hide call button and WhatsApp pill from header on mobile as requested */
    .header-actions .call-pill,
    .header-actions .wa-btn-pill {
        display: none !important;
    }

    .brand-title {
        font-size: 1.15rem;
    }

    .brand-tagline {
        font-size: 0.62rem;
    }

    /* Hero Section Responsive */
    .hero-fullscreen {
        height: auto;
        min-height: 100vh;
        padding-top: 7rem;
        padding-bottom: 4rem;
    }

    .hero-badge {
        font-size: 0.67rem !important;
        padding: 0.45rem 0.85rem !important;
        letter-spacing: 0.04em !important;
        margin-bottom: 1.5rem !important;
    }

    .hero-main-title {
        font-size: 2.35rem;
        line-height: 1.2;
    }

    .hero-main-lead {
        font-size: 1.02rem;
        margin-bottom: 2rem;
    }

    /* Mobile Button Font Size Tweaks */
    .btn-spotlight-wa,
    .hero-btn-primary,
    .submit-wa-btn {
        font-size: 0.88rem !important;
        padding: 0.85rem 1.1rem !important;
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .hero-action-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.85rem;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 1.05rem 1.5rem;
        font-size: 0.98rem;
    }

    .hero-bottom-strip {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.25rem;
    }

    .strip-box {
        gap: 0.85rem;
    }

    /* Spotlight Section Responsive */
    .spotlight-section {
        padding: 4.5rem 0;
    }

    .spotlight-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .spotlight-title {
        font-size: 2rem;
    }

    .spotlight-desc {
        font-size: 1rem;
    }

    .btn-spotlight-wa {
        width: 100%;
        justify-content: center;
        font-size: 0.95rem;
        padding: 1rem 1.25rem;
    }

    /* Services Section Responsive */
    .services-modern-section {
        padding: 4.5rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-desc {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }

    .modern-services-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .modern-service-card {
        padding: 2rem 1.5rem;
    }

    /* Estimator Section Responsive */
    .estimator-section {
        padding: 4.5rem 0;
    }

    .estimator-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .estimator-info h2 {
        font-size: 2rem;
    }

    .estimator-card {
        padding: 2rem 1.25rem;
    }

    /* Contact & Hours Responsive */
    .contact-editorial-section {
        padding: 4.5rem 0;
    }

    .contact-grid-editorial {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .editorial-card {
        padding: 2rem 1.25rem;
    }

    .card-btn-row .btn-black,
    .card-btn-row .btn-border {
        width: 100%;
        justify-content: center;
    }

    /* Status Banner Text Size on Mobile */
    .status-live-banner,
    .status-live-banner span {
        font-size: 0.65rem !important;
        line-height: 1.35;
    }

    .status-live-banner {
        padding: 0.45rem 0.75rem !important;
        gap: 0.4rem !important;
    }

    /* Footer Responsive */
    .footer-editorial {
        padding: 4.5rem 0 2rem;
    }

    .footer-grid-map {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-bottom: 2.5rem;
    }

    /* User Requested Compact Round Floating WhatsApp Button on Mobile */
    .floating-wa-pill {
        bottom: 1.25rem;
        right: 1.25rem;
        width: 56px;
        height: 56px;
        padding: 0;
        border-radius: 50%;
        justify-content: center;
        box-shadow: 0 8px 25px rgba(22, 163, 74, 0.45);
    }

    .floating-wa-pill span {
        display: none !important;
    }

    .floating-wa-pill i {
        font-size: 1.6rem;
        margin: 0;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 1.15rem;
    }

    .hero-badge {
        font-size: 0.72rem;
        padding: 0.4rem 0.9rem;
    }

    .hero-main-title {
        font-size: 1.95rem;
    }

    .hero-main-lead {
        font-size: 0.94rem;
    }

    .spotlight-perks {
        grid-template-columns: 1fr;
    }

    .steam-stat-card {
        padding: 2.5rem 1.5rem;
    }

    .form-field input,
    .form-field select,
    .form-field textarea {
        font-size: 0.92rem;
    }

    /* Status Banner Text Size on Small Phones */
    .status-live-banner {
        font-size: 0.78rem;
        padding: 0.65rem 0.85rem;
        gap: 0.5rem;
    }

    .status-live-banner span {
        font-size: 0.78rem;
    }

    .footer-map-frame iframe {
        height: 230px;
    }
}