/* -------------------------------------------------------------
   DR. CSŐ LANDING PAGE - PREMIUM STYLESHEET
   ------------------------------------------------------------- */

/* CSS Reset & Variables */
:root {
    --primary: #0B192C;
    --primary-light: #1E3E62;
    --primary-bg: #030a16;
    --accent: #FF6500;
    --accent-hover: #E05300;
    --accent-rgb: 255, 101, 0;
    --success: #10B981;
    --text-dark: #1F2937;
    --text-muted: #4B5563;
    --text-light: #F3F4F6;
    --text-slate: #9CA3AF;
    --bg-light: #F8FAFC;
    --bg-white: #FFFFFF;
    --border-color: #E2E8F0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --shadow-accent: 0 10px 20px -3px rgba(255, 101, 0, 0.3);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Utilities */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-white { color: var(--bg-white) !important; }
.text-light { color: var(--text-light) !important; }
.text-slate { color: var(--text-slate) !important; }
.accent-color { color: var(--accent) !important; }

.accent-gradient {
    background: linear-gradient(135deg, #FF8A00 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--primary-light);
    color: var(--bg-white);
}

.btn-primary:hover {
    background-color: #274c77;
    transform: translateY(-2px);
}

.btn-accent {
    background-color: var(--accent);
    color: var(--bg-white);
    box-shadow: var(--shadow-accent);
}

.btn-accent:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px -3px rgba(255, 101, 0, 0.45);
}

.btn-outline {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--bg-white);
}

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

.btn-large {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

/* Header Styles */
.main-header {
    background-color: rgba(11, 25, 44, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

.main-header.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-lg);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--bg-white);
}

.logo-icon {
    width: 38px;
    height: 38px;
    color: var(--accent);
    filter: drop-shadow(0 0 8px rgba(255, 101, 0, 0.4));
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 0.5px;
}

.logo-sub {
    font-size: 0.7rem;
    color: var(--text-slate);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.status-badge-container {
    display: flex;
    align-items: center;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--success);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--success);
    border-radius: 50%;
    position: relative;
    display: inline-block;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--success);
    border-radius: 50%;
    top: 0;
    left: 0;
    animation: pulse 1.8s infinite ease-in-out;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(3.5); opacity: 0; }
}

.header-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.phone-block {
    display: flex;
    flex-direction: column;
    text-align: right;
}

.phone-label {
    font-size: 0.75rem;
    color: var(--text-slate);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.phone-number {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--bg-white);
    text-decoration: none;
    transition: var(--transition);
}

.phone-number:hover {
    color: var(--accent);
}

.btn-header-cta {
    padding: 10px 20px;
    font-size: 0.85rem;
}

/* Hero Section */
.hero-section {
    background-color: var(--primary-bg);
    background-image: url('media__1781719918090.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 160px 0 100px 0;
    color: var(--bg-white);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(3, 10, 22, 0.65) 0%, rgba(3, 10, 22, 0.92) 100%);
    pointer-events: none;
}

.hero-container-centered {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-container-centered .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.hero-container-centered .hero-lead {
    margin-left: auto;
    margin-right: auto;
}

.hero-container-centered .hero-benefits {
    align-items: center;
}

.hero-container-centered .hero-actions {
    justify-content: center;
}

.hero-container-centered .hero-trust-indicators {
    justify-content: center;
}

.emergency-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 101, 0, 0.15);
    border: 1px solid rgba(255, 101, 0, 0.4);
    color: var(--accent);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-lead {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 650px;
    font-weight: 300;
}

.hero-benefits {
    list-style: none;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.check-icon {
    width: 22px;
    height: 22px;
    color: var(--accent);
    background-color: rgba(255, 101, 0, 0.1);
    border-radius: 50%;
    padding: 3px;
    flex-shrink: 0;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.pulse-animation {
    position: relative;
}

.pulse-animation::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--accent);
    border-radius: var(--radius-md);
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.4;
    animation: btnPulse 2s infinite;
}

@keyframes btnPulse {
    0% { transform: scale(1); opacity: 0.4; }
    100% { transform: scale(1.15); opacity: 0; }
}

.hero-trust-indicators {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.indicator-item {
    display: flex;
    flex-direction: column;
}

.rating-stars {
    color: #FBBF24;
    font-size: 1.25rem;
    letter-spacing: 2px;
    margin-bottom: 4px;
}

.rating-stars.small {
    font-size: 1rem;
    margin-bottom: 8px;
}

.indicator-text {
    font-size: 0.8rem;
    color: var(--text-slate);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.highlight-text {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1.2;
}

.separator {
    color: rgba(255, 255, 255, 0.15);
    font-weight: 300;
}

/* Hero Form Card */
.hero-form-card {
    background: rgba(30, 62, 98, 0.25);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 36px;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.card-badge {
    position: absolute;
    top: -12px;
    right: 30px;
    background-color: var(--success);
    color: var(--bg-white);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.3);
}

.hero-form-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.hero-form-card p {
    font-size: 0.9rem;
    color: var(--text-slate);
    margin-bottom: 24px;
}

/* Floating Input Forms */
.form-group-floating {
    position: relative;
    margin-bottom: 20px;
}

.form-group-floating input {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    padding: 18px 16px 6px 16px;
    color: var(--bg-white);
    outline: none;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group-floating input:focus {
    border-color: var(--accent);
    background-color: rgba(255, 255, 255, 0.08);
}

.form-group-floating label {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    font-size: 0.95rem;
    color: var(--text-slate);
    pointer-events: none;
    transition: var(--transition);
}

.form-group-floating input:focus ~ label,
.form-group-floating input:not(:placeholder-shown) ~ label {
    top: 12px;
    font-size: 0.7rem;
    color: var(--accent);
    transform: translateY(0);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 24px;
    text-align: left;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 4px;
    cursor: pointer;
    accent-color: var(--accent);
}

.form-checkbox label {
    font-size: 0.8rem;
    color: var(--text-slate);
    line-height: 1.3;
}

.simple-link {
    color: var(--accent);
    text-decoration: underline;
}

.simple-link:hover {
    color: var(--accent-hover);
}

/* Trust Section (Badges) */
.trust-section {
    background-color: var(--bg-white);
    padding: 60px 0;
    border-bottom: 1px solid var(--border-color);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.trust-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.trust-icon-wrapper {
    width: 48px;
    height: 48px;
    color: var(--accent);
    background-color: rgba(255, 101, 0, 0.08);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.trust-icon-wrapper svg {
    width: 24px;
    height: 24px;
}

.trust-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
}

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

/* Section Title Component */
.section-title-wrapper {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 56px auto;
}

.section-subtitle {
    display: inline-block;
    color: var(--accent);
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-subtitle.text-white {
    background-color: rgba(255, 101, 0, 0.15);
    padding: 6px 16px;
    border-radius: 50px;
    border: 1px solid rgba(255, 101, 0, 0.3);
}

.section-title-wrapper h2 {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1rem;
    color: var(--text-muted);
}

/* Services Section */
.services-section {
    background-color: var(--bg-light);
    padding: 100px 0;
}

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

.service-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 101, 0, 0.2);
}

.service-card.featured {
    border-color: var(--accent);
    box-shadow: 0 10px 25px -5px rgba(255, 101, 0, 0.1), 0 8px 10px -6px rgba(255, 101, 0, 0.05);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 40px;
    background: linear-gradient(135deg, #FF8A00 0%, var(--accent) 100%);
    color: var(--bg-white);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 14px;
    border-radius: 50px;
}

.service-icon-bg {
    width: 60px;
    height: 60px;
    background-color: rgba(30, 62, 98, 0.06);
    color: var(--primary-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition);
}

.service-card:hover .service-icon-bg {
    background-color: rgba(255, 101, 0, 0.08);
    color: var(--accent);
}

.service-icon-bg svg {
    width: 30px;
    height: 30px;
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 14px;
}

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

.service-list {
    list-style: none;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.service-list li {
    font-size: 0.85rem;
    color: var(--text-dark);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-list li::before {
    content: '•';
    color: var(--accent);
    font-size: 1.3rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--accent-hover);
    gap: 10px;
}

.service-info-card {
    background-color: var(--primary);
    background-image: radial-gradient(circle at 100% 0%, rgba(30, 62, 98, 0.3) 0%, transparent 80%);
    color: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-info-card h3 {
    font-size: 1.4rem;
    margin-bottom: 14px;
}

.service-info-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 24px;
}

.info-tag {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 24px;
    text-align: center;
}

/* Why Choose Us Section */
.why-us-section {
    background-color: var(--primary);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

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

.why-us-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 16px 0 24px 0;
}

.benefits-vertical-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.benefit-item-v {
    display: flex;
    gap: 20px;
}

.benefit-icon-v {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 101, 0, 0.15);
    border: 1px solid rgba(255, 101, 0, 0.3);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    flex-shrink: 0;
}

.benefit-item-v h4 {
    font-size: 1.15rem;
    color: var(--bg-white);
    margin-bottom: 6px;
    font-weight: 700;
}

.benefit-item-v p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.why-us-visual {
    position: relative;
}

.visual-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.badge-accent {
    display: inline-block;
    background-color: rgba(255, 101, 0, 0.08);
    color: var(--accent);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.visual-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.visual-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.comparison-bar {
    margin-bottom: 20px;
}

.comparison-title {
    font-size: 0.85rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.bar-outer {
    width: 100%;
    height: 24px;
    background-color: var(--bg-light);
    border-radius: 50px;
    overflow: hidden;
}

.bar-inner {
    height: 100%;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 12px;
    color: var(--bg-white);
    font-size: 0.75rem;
    font-weight: 800;
    transition: width 1s ease-out;
}

.accent-bar {
    background: linear-gradient(90deg, #FF8A00, var(--accent));
}

.grey-bar {
    background-color: var(--text-slate);
}

.stat-highlight-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 32px 0;
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
}

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

.stat-num {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.btn-shadow {
    box-shadow: 0 10px 20px rgba(255, 101, 0, 0.2);
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--bg-white);
    padding: 100px 0;
}

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

.testimonial-card {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 101, 0, 0.15);
}

.test-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.user-avatar-placeholder {
    width: 48px;
    height: 48px;
    background-color: var(--primary-light);
    color: var(--bg-white);
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.test-header h4 {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.2;
}

.test-location {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.test-text {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.5;
    flex-grow: 1;
}

.test-date {
    font-size: 0.75rem;
    color: var(--text-slate);
    align-self: flex-start;
}

/* FAQ Accordion Section */
.faq-section {
    background-color: var(--bg-light);
    padding: 100px 0;
    border-top: 1px solid var(--border-color);
}

.faq-accordion-wrapper {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(30, 62, 98, 0.3);
}

.faq-trigger {
    width: 100%;
    background: none;
    border: none;
    padding: 24px;
    text-align: left;
    font-family: inherit;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    transition: transform 0.3s ease;
}

.faq-icon svg {
    transition: transform 0.3s ease;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
    padding: 0 24px;
}

.faq-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    padding-bottom: 24px;
    line-height: 1.6;
}

/* Open FAQ State */
.faq-item.active {
    border-color: var(--accent);
    box-shadow: var(--shadow-sm);
}

.faq-item.active .faq-icon svg {
    transform: rotate(45deg);
    color: var(--accent);
}

.faq-item.active .faq-content {
    max-height: 500px; /* high enough threshold */
    transition: max-height 0.4s cubic-bezier(1, 0, 1, 0);
}

/* Contact Section & Form */
.contact-section {
    background-color: var(--primary);
    background-image: radial-gradient(circle at 100% 100%, rgba(30, 62, 98, 0.2) 0%, transparent 60%);
    padding: 100px 0;
}

.contact-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-call-card {
    background: rgba(30, 62, 98, 0.25);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 40px;
    width: 100%;
    max-width: 600px;
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.contact-call-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 101, 0, 0.3);
    box-shadow: 0 15px 30px rgba(255, 101, 0, 0.1);
}

.call-card-icon {
    width: 64px;
    height: 64px;
    background-color: var(--accent);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: var(--shadow-accent);
    animation: wiggle 1.5s infinite ease-in-out;
}

.call-card-icon svg {
    width: 30px;
    height: 30px;
}

.call-card-label {
    font-size: 0.85rem;
    color: var(--text-slate);
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 8px;
}

.call-card-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--bg-white);
    text-decoration: none;
    transition: var(--transition);
    line-height: 1.2;
    margin-bottom: 16px;
}

.call-card-number:hover {
    color: var(--accent);
}

.call-card-sub {
    font-size: 0.85rem;
    color: var(--text-light);
}

.contact-details-row {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.detail-inline-item {
    display: flex;
    gap: 10px;
    align-items: center;
}

.detail-inline-label {
    font-size: 0.8rem;
    color: var(--text-slate);
    text-transform: uppercase;
}

.detail-inline-link {
    color: var(--bg-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.detail-inline-link:hover {
    color: var(--accent);
}

.detail-inline-text {
    color: var(--bg-white);
    font-weight: 600;
    font-size: 0.95rem;
}

.guarantee-seal-centered {
    display: flex;
    align-items: center;
    gap: 16px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    text-align: left;
    max-width: 500px;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(3, 10, 22, 0.8);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.modal-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 48px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal-overlay.open .modal-card {
    transform: translateY(0);
}

/* Larger scrolling modal for policy */
.modal-large {
    max-width: 650px;
    text-align: left;
}

.modal-scroll-area {
    max-height: 300px;
    overflow-y: auto;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 16px;
    margin-bottom: 24px;
    font-size: 0.85rem;
    color: var(--text-muted);
    background-color: var(--bg-light);
}

.modal-scroll-area p {
    margin-bottom: 12px;
    text-align: left;
}

/* Sticky Mobile CTA (Calling footer on mobile) */
.sticky-mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary);
    border-top: 2px solid var(--accent);
    padding: 12px 24px;
    z-index: 999;
    display: none;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
}

.sticky-call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--accent);
    color: var(--bg-white);
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    padding: 14px 20px;
    border-radius: var(--radius-md);
    width: 100%;
    box-shadow: var(--shadow-accent);
}

.phone-icon-animated {
    animation: wiggle 1.2s infinite ease-in-out;
}

@keyframes wiggle {
    0% { transform: rotate(0); }
    15% { transform: rotate(-15deg); }
    30% { transform: rotate(12deg); }
    45% { transform: rotate(-10deg); }
    60% { transform: rotate(10deg); }
    75% { transform: rotate(-4deg); }
    90% { transform: rotate(4deg); }
    100% { transform: rotate(0); }
}

/* Footer */
.main-footer {
    background-color: #030811;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 80px 0 0 0;
    color: var(--text-slate);
}

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

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-desc {
    font-size: 0.85rem;
    line-height: 1.6;
}

.google-badge-footer {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--bg-white);
}

.footer-links h4 {
    color: var(--bg-white);
    font-size: 1.05rem;
    margin-bottom: 24px;
    font-weight: 700;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links ul a {
    text-decoration: none;
    color: var(--text-slate);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links ul a:hover {
    color: var(--accent);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 0;
    font-size: 0.75rem;
}

.bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

/* Plumber Showcase Section */
.plumber-showcase-section {
    background-color: var(--bg-white);
    padding: 100px 0;
    border-bottom: 1px solid var(--border-color);
}

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

.showcase-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 6px solid var(--bg-light);
}

.showcase-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: var(--transition);
}

.showcase-image-wrapper:hover .showcase-img {
    transform: scale(1.02);
}

.image-caption {
    background-color: var(--primary);
    color: var(--bg-white);
    padding: 14px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.caption-dot {
    width: 8px;
    height: 8px;
    background-color: var(--success);
    border-radius: 50%;
    position: relative;
}

.caption-dot::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--success);
    border-radius: 50%;
    top: 0;
    left: 0;
    animation: pulse 1.8s infinite ease-in-out;
}

.showcase-text h2 {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.25;
    margin: 16px 0 24px 0;
}

.showcase-bullets {
    margin: 32px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bullet-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.bullet-check {
    width: 20px;
    height: 20px;
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 0.75rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.showcase-action-box {
    background-color: var(--bg-light);
    border-left: 4px solid var(--accent);
    padding: 24px;
    border-radius: var(--radius-md);
    margin-top: 36px;
}

.showcase-action-box p {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

/* -------------------------------------------------------------
   RESPONSIVENESS & MEDIA QUERIES
   ------------------------------------------------------------- */

@media (max-width: 1024px) {
    html {
        font-size: 15px;
    }

    .hero-container-grid {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 32px;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .service-info-card {
        grid-column: span 2;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    .header-container {
        height: 70px;
    }

    .btn-header-cta {
        display: none;
    }

    .status-badge-container {
        display: none;
    }

    .hero-section {
        padding: 120px 0 80px 0;
    }

    .hero-container-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

    .hero-lead {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-benefits {
        align-items: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-trust-indicators {
        justify-content: center;
    }

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

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-info-card {
        grid-column: span 1;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .contact-call-card {
        padding: 30px 20px;
    }
    .call-card-number {
        font-size: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Show Mobile Sticky CTA */
    .sticky-mobile-cta {
        display: block;
    }

    body {
        padding-bottom: 70px; /* space for sticky button */
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .contact-call-card {
        padding: 24px 16px;
    }
    .call-card-number {
        font-size: 1.6rem;
    }
}
