/* =========================================
   2026 HIGH-CONVERT LANDING PAGE CSS
   Premium Light Theme - Swiss Clean Design
   ========================================= */

:root {
    /* Colors - Premium Light Palette */
    --bg-main: #ffffff;
    --bg-soft: #f8f9fa;
    --bg-dark: #1a1a1a;
    --text-primary: #1d1d1f;
    --text-secondary: #6e6e73;
    --accent: #9f1f50;
    /* Bordeaux/Dark Red */
    --accent-hover: #7d1840;
    --accent-light: rgba(159, 31, 80, 0.08);
    --success: #34c759;
    --border: #e5e5e7;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

body {
    font-family: var(--font);
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

/* --- FOMO Banner (Sticky Top) --- */
.fomo-banner {
    background: var(--accent);
    color: white;
    padding: 10px 0;
    font-size: 0.9rem;
    position: sticky;
    top: 0;
    z-index: 1001;
}

.fomo-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

/* --- Navigation --- */
.navbar {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
    position: sticky;
    top: 40px;
    /* Below FOMO bar */
    z-index: 1000;
}

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

.logo img {
    height: 32px;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.25s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--text-primary);
    color: white;
    border-color: var(--text-primary);
}

.btn-primary:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--border);
}

.btn-outline:hover {
    border-color: var(--text-primary);
    background: var(--bg-soft);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.05rem;
}

.btn-block {
    width: 100%;
}

.btn-nav {
    padding: 10px 20px;
    font-size: 0.9rem;
    border-radius: var(--radius-md);
}

/* --- Hero Section --- */
.hero {
    padding: 32px 0 60px;
    background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg-main) 100%);
}

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

/* --- TCS Partner Badge --- */
.tcs-partner-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    border: 1px solid var(--border);
    padding: 6px 16px 6px 6px;
    border-radius: 12px;
    margin-bottom: 10px;
    box-shadow: var(--shadow-sm);
}

.tcs-partner-badge.floating-top-right {
    position: absolute;
    top: -20px;
    right: 20px;
    margin-bottom: 0;
    z-index: 10;
    box-shadow: var(--shadow-md);
    animation: float 4s ease-in-out infinite reverse;
}

.tcs-partner-badge .tcs-logo {
    height: 36px;
    width: 36px;
    object-fit: contain;
    border-radius: 6px;
}

.tcs-partner-badge span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.badge-trust {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-light);
    color: var(--accent);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.hero-text h1 {
    font-size: 3.2rem;
    margin-bottom: 16px;
    letter-spacing: -1.5px;
}

.hero-text h1 .highlight {
    color: var(--accent);
}

.hero-text .lead {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    max-width: 500px;
}

.hero-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    margin-bottom: 24px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.benefit i {
    color: var(--success);
}

.hero-actions {
    display: flex;
    gap: 16px;
}

.hero-visual {
    position: relative;
}

.hero-image {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.floating-badge {
    position: absolute;
    bottom: -20px;
    left: 20px;
    background: var(--accent);
    color: white;
    padding: 12px 20px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* --- Brands Bar --- */
.brands-bar {
    background: var(--bg-soft);
    padding: 40px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.brands-title {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.brands-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px 48px;
}

.brand-logo {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-secondary);
    opacity: 0.7;
    transition: opacity 0.3s;
}

.brand-logo:hover {
    opacity: 1;
}

/* --- Reviews Bar (Social Proof) --- */
.reviews-bar {
    background: var(--bg-main);
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.reviews-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.review-stars {
    color: #fbbf24;
    font-size: 1.1rem;
}

.review-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.review-link {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    transition: opacity 0.3s;
}

.review-link:hover {
    opacity: 0.8;
}

.review-link i {
    font-size: 0.75rem;
    margin-left: 4px;
}

/* Google Logo Inline */
.google-logo-inline {
    height: 20px;
    vertical-align: middle;
    margin-left: 4px;
}

/* --- Workshop Location --- */
.workshop-location {
    margin-top: 24px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.workshop-location i {
    margin-right: 8px;
    color: var(--accent);
}

/* --- Section Header --- */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    background: var(--accent-light);
    color: var(--accent);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 2.5rem;
}

/* --- Process Section --- */
.process-section {
    background: var(--bg-main);
}

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

.step-card {
    text-align: center;
    padding: 32px 24px;
    background: var(--bg-soft);
    border-radius: var(--radius-lg);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.step-num {
    font-size: 4rem;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.03);
    position: absolute;
    top: 10px;
    right: 20px;
}

.step-icon {
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 16px;
}

.step-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

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

/* --- Tech Section --- */
.tech-section {
    background: var(--bg-soft);
}

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

.tech-image-wrapper img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.tech-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.tech-content p {
    color: var(--text-secondary);
    margin-bottom: 28px;
}

.tech-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.tech-list i {
    color: var(--accent);
    font-size: 1.1rem;
}

/* --- Pricing Section --- */
.pricing-section {
    background: var(--bg-main);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Make smaller service cards span 3 columns on a new row */
.pricing-card-small {
    padding: 28px;
}

.pricing-card-small .card-header {
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.pricing-card-small .price {
    font-size: 2rem;
}

/* On desktop, show 3 smaller cards in a row */
@media (min-width: 993px) {
    .pricing-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .pricing-card:not(.pricing-card-small) {
        grid-column: span 3;
    }

    .pricing-card-small {
        grid-column: span 2;
    }
}

.pricing-card {
    background: var(--bg-main);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-light);
}

.badge-popular {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.card-header {
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border);
}

.card-header h3 {
    font-size: 1.4rem;
    margin-bottom: 4px;
}

.card-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.price {
    font-size: 2.8rem;
    font-weight: 800;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.features-list li i {
    color: var(--success);
    min-width: 18px;
    text-align: center;
}

.features-list li.muted {
    color: #bbb;
}

.features-list li.muted i {
    color: #ccc;
}

.features-list li.highlight {
    color: var(--text-primary);
    font-weight: 500;
}

.features-list li.highlight i {
    color: var(--accent);
}

.pricing-card .btn {
    margin-top: 24px;
}

/* --- Optional Services --- */
.optional-services {
    margin-top: 50px;
    padding: 30px 40px;
    background: var(--bg-soft);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.optional-services h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.optional-services h4 i {
    color: var(--accent);
}

.optional-price {
    display: inline-block;
    background: var(--accent-light);
    color: var(--accent);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.optional-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 24px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.optional-list li {
    color: var(--text-secondary);
    font-size: 0.9rem;
    position: relative;
    padding-left: 16px;
}

.optional-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent);
}

/* --- CTA Banner --- */
.cta-banner {
    background: linear-gradient(135deg, #9f1f50 0%, #7d1840 50%, #5a1030 100%);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-content {
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.cta-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.cta-icon i {
    font-size: 1.8rem;
    color: white;
}

.cta-text {
    flex: 1;
}

.cta-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.cta-text h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 6px;
    font-weight: 700;
}

.cta-text p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.95rem;
}

.btn-cta {
    flex-shrink: 0;
    background: white;
    color: #9f1f50;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    background: #f8f8f8;
}

.btn-cta i {
    transition: transform 0.3s ease;
}

.btn-cta:hover i {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .cta-content {
        flex-direction: column;
        text-align: center;
    }

    .cta-icon {
        margin-bottom: 10px;
    }

    .cta-text h3 {
        font-size: 1.3rem;
    }

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

/* --- Booking Section --- */
.booking-section {
    background: var(--bg-dark);
    color: white;
}

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

.section-tag-light {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

.booking-info h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.booking-info p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 28px;
}

.booking-perks li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.85);
}

.booking-perks i {
    color: var(--success);
}

/* Form Styling */
.booking-form-card {
    background: white;
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-primary);
    text-align: left;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
    background: var(--bg-soft);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-light);
}

.form-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 16px;
}

.form-note i {
    margin-right: 5px;
}

/* --- Footer --- */
.footer {
    background: var(--bg-soft);
    padding: 30px 0;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.footer-links a {
    margin-left: 24px;
}

.footer-links a:hover {
    color: var(--text-primary);
}

/* --- Responsive --- */
@media (max-width: 992px) {

    .hero-grid,
    .tech-grid,
    .booking-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.8rem;
    }

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

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

    .hero-visual {
        margin-top: 40px;
    }

    .floating-badge {
        left: 50%;
        transform: translateX(-50%);
        bottom: -20px;
    }

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

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

    .tech-image-wrapper {
        order: 1;
    }

    .tech-content {
        order: 2;
    }

    /* =========================================
       MOBILE ALIGNMENT FIX - Centered Blocks
       Lists are centered as blocks but left-aligned inside
       ========================================= */

    /* Tech list - center the block, left-align text */
    .tech-list {
        display: inline-block;
        text-align: left;
    }

    /* Booking perks - center the block, left-align text */
    .booking-perks {
        display: inline-block;
        text-align: left;
    }

    /* Workshop location - center */
    .workshop-location {
        text-align: center;
    }

    /* Booking info wrapper */
    .booking-info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .booking-info p {
        max-width: 400px;
    }
}

@media (max-width: 600px) {

    /* FOMO bar - prevent wrapping, single line */
    .fomo-banner {
        font-size: 0.75rem;
        padding: 8px 12px;
        white-space: nowrap;
        overflow: hidden;
    }

    .fomo-content {
        gap: 6px;
    }

    /* Navbar: Position below FOMO bar */
    .navbar {
        top: 36px;
        /* Single-line FOMO bar height */
        padding: 10px 0;
    }

    .nav-content {
        gap: 8px;
    }

    .logo img {
        height: 26px;
    }

    /* CTA button on mobile - compact */
    .navbar .btn-nav {
        padding: 8px 12px;
        font-size: 0.75rem;
        white-space: nowrap;
    }

    .hero-text h1 {
        font-size: 2rem;
        letter-spacing: -0.5px;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 10px;
    }

    /* Reduce section padding */
    .section {
        padding: 60px 0;
    }

    /* Brands bar more compact */
    .brands-logos {
        gap: 12px 20px;
    }

    .brand-logo {
        font-size: 0.9rem;
    }

    /* Reviews bar stacked on mobile */
    .reviews-content {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    /* Pricing cards full width with less padding */
    .pricing-card {
        padding: 24px;
    }

    /* Booking form */
    .booking-form-card {
        padding: 24px;
    }

    .booking-perks li {
        font-size: 0.9rem;
    }

    .booking-info h2 {
        font-size: 1.7rem;
    }
}