:root {
    --bg-dark: #0b0d10;
    --bg-card: #14171d;
    --bg-card-hover: #1c212a;
    --accent-red: #ff3344;
    --accent-red-glow: rgba(255, 51, 68, 0.4);
    --accent-orange: #ff6600;
    --text-main: #f0f2f5;
    --text-muted: #9aa2b1;
    --border-color: #272d38;
    --border-highlight: #ff3344;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;
}

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

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
    position: relative;
    touch-action: pan-y;
}

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

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Typography Helpers */
h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.text-center { text-align: center; }
.text-green { color: #00e676; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #ff3344 0%, #d61a2b 100%);
    color: #fff;
    box-shadow: 0 4px 20px var(--accent-red-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 51, 68, 0.6);
}

.btn-accent {
    background: linear-gradient(135deg, #ff6600 0%, #ff3344 100%);
    color: #fff;
    box-shadow: 0 4px 20px rgba(255, 102, 0, 0.4);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 102, 0, 0.6);
}

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

.btn-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 16px;
}

.btn-full {
    width: 100%;
}

/* Top Bar */
.top-bar {
    background: #060709;
    border-bottom: 1px solid var(--border-color);
    padding: 8px 0;
    font-size: 13px;
    color: var(--text-muted);
}

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

.top-info {
    display: flex;
    gap: 20px;
}

.top-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-link {
    color: var(--accent-red);
    font-weight: 700;
    text-decoration: none;
}

.rating-badge {
    color: #ffb703;
    font-weight: 600;
}

/* Header */
.header {
    position: relative;
    z-index: 100;
    background: #0b0d10;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px 0;
}

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

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

.logo-urban {
    font-size: 24px;
    font-weight: 900;
    color: #fff;
    letter-spacing: 2px;
    line-height: 1;
}

.logo-studio {
    font-size: 12px;
    font-weight: 700;
    color: var(--accent-red);
    letter-spacing: 4px;
}

.logo-tag {
    font-size: 9px;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.nav {
    display: flex;
    gap: 24px;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-link:hover, .nav-link.active {
    color: #fff;
}

.nav-link.highlight {
    color: var(--accent-orange);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 100px 0 120px 0;
    background: url('hero.jpg') no-repeat center center/cover;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #0b0d10 0%, rgba(11, 13, 16, 0.85) 50%, rgba(11, 13, 16, 0.65) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(255, 51, 68, 0.15);
    border: 1px solid var(--accent-red);
    border-radius: 50px;
    color: var(--accent-red);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-red);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-red);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 51, 68, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(255, 51, 68, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 51, 68, 0); }
}

.hero-title {
    font-size: 46px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    margin-bottom: 35px;
}

.hero-features {
    display: flex;
    gap: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.h-feature {
    font-size: 14px;
    font-weight: 600;
    color: #e0e0e0;
}

.h-feature i {
    color: var(--accent-red);
    margin-right: 6px;
}

/* Hero Card Offer */
.hero-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.hero-card-header {
    background: linear-gradient(135deg, #1f242e 0%, #14171d 100%);
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

.hero-card-header h3 {
    font-size: 18px;
    color: var(--accent-orange);
}

.hero-card-header p {
    font-size: 13px;
    color: var(--text-muted);
}

.hero-offer-body {
    padding: 24px;
}

.offer-price-tag {
    position: relative;
    background: rgba(255, 51, 68, 0.08);
    border: 1px dashed var(--accent-red);
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.off-badge {
    position: absolute;
    top: -12px;
    right: 16px;
    background: var(--accent-red);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 2px 10px;
    border-radius: 20px;
}

.offer-name {
    display: block;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 4px;
}

.price-wrap {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 18px;
}

.new-price {
    font-size: 32px;
    font-weight: 900;
    color: #fff;
}

.offer-list {
    list-style: none;
    margin-bottom: 24px;
}

.offer-list li {
    font-size: 14px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Services Bar */
.services-nav-section {
    padding: 80px 0;
    background: #0f1217;
}

.section-subtitle {
    font-size: 13px;
    font-weight: 800;
    color: var(--accent-red);
    letter-spacing: 2px;
    display: block;
    margin-bottom: 6px;
}

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

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

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 30px 20px;
    border-radius: 14px;
    position: relative;
    transition: all 0.3s;
}

.service-card.active {
    border-color: var(--accent-red);
    background: linear-gradient(180deg, rgba(255, 51, 68, 0.05) 0%, var(--bg-card) 100%);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 51, 68, 0.5);
}

.service-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--accent-red);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.service-link {
    font-size: 13px;
    font-weight: 700;
    color: var(--accent-red);
}

.badge-coming {
    font-size: 11px;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.08);
    padding: 4px 10px;
    border-radius: 4px;
}

/* Calculator Section */
.calculator-section {
    padding: 90px 0;
    background: var(--bg-dark);
}

.calculator-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.calc-header {
    text-align: center;
    margin-bottom: 40px;
}

/* Service Tab Controls */
.calc-service-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.calc-service-tabs .tab-btn {
    background: var(--bg-dark);
    border: 2px solid var(--border-color);
    color: var(--text-muted);
    padding: 12px 24px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.calc-service-tabs .tab-btn i {
    color: var(--text-muted);
    transition: color 0.3s;
}

.calc-service-tabs .tab-btn:hover {
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}

.calc-service-tabs .tab-btn.active {
    background: var(--accent-red);
    border-color: var(--accent-red);
    color: #fff;
    box-shadow: 0 4px 15px var(--accent-red-glow);
}

.calc-service-tabs .tab-btn.active i {
    color: #fff;
}

/* Service Panels */
div.calc-service-panel {
    display: none !important;
}

div.calc-service-panel.active {
    display: block !important;
    animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.service-card {
    cursor: pointer;
}

.calc-step {
    margin-bottom: 35px;
}

.step-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 700;
    font-family: var(--font-heading);
    margin-bottom: 16px;
}

.step-num {
    width: 28px;
    height: 28px;
    background: var(--accent-red);
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.options-grid {
    display: grid !important;
    gap: 16px !important;
}

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

button.opt-card, .opt-card {
    background: var(--bg-dark);
    border: 2px solid var(--border-color);
    padding: 16px 14px;
    border-radius: 12px;
    color: var(--text-main);
    text-align: left;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    min-height: 90px;
    box-sizing: border-box;
    font-family: var(--font-body);
    outline: none;
}

.opt-card * {
    pointer-events: none;
}

.opt-card:hover {
    border-color: rgba(255, 255, 255, 0.3);
}

.opt-card.active {
    border-color: var(--accent-red);
    background: rgba(255, 51, 68, 0.05);
}

.opt-card i {
    font-size: 20px;
    color: var(--accent-red);
    margin-bottom: 8px;
    display: block;
}

.opt-card span {
    display: block;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 4px;
    line-height: 1.2;
    color: #ffffff;
}

.opt-card small {
    display: block;
    color: var(--text-muted);
    font-size: 11px;
    line-height: 1.3;
    white-space: normal;
    word-break: break-word;
}

.card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--accent-orange);
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 4px;
}

/* Trust Badges & Urgency Banner */
.calc-trust-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 25px 0;
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed var(--border-color);
    border-radius: 12px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-item i {
    font-size: 22px;
    color: var(--accent-red);
}

.trust-item strong {
    display: block;
    font-size: 13px;
    color: #fff;
}

.trust-item small {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
}

.calc-cta-group {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.urgency-badge {
    font-size: 11px;
    font-weight: 700;
    color: var(--accent-orange);
    display: flex;
    align-items: center;
    gap: 6px;
}

@media (max-width: 768px) {
    .calc-trust-bar {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .calc-cta-group {
        align-items: center;
        width: 100%;
    }
}

/* Shades Selector */
.shades-selector {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.shade-btn {
    background: var(--bg-dark);
    border: 2px solid var(--border-color);
    padding: 14px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.shade-btn.active {
    border-color: var(--accent-red);
    background: rgba(255, 51, 68, 0.08);
}

.shade-btn input {
    display: none;
}

.vlt-box {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    border: 1px solid #555;
}

.vlt-5 { background: #050505; }
.vlt-15 { background: #1a1a1a; }
.vlt-35 { background: #3a3a3a; }
.vlt-70 { background: rgba(200, 220, 255, 0.3); }

/* Calc Summary & Sub-page Summary Card Fixes */
.calc-summary {
    background: linear-gradient(135deg, rgba(255, 51, 68, 0.08) 0%, rgba(15, 18, 23, 0.98) 100%);
    border: 2px solid var(--accent-red);
    padding: 24px 30px;
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    box-shadow: 0 0 25px rgba(255, 51, 68, 0.25), inset 0 0 15px rgba(255, 51, 68, 0.05);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.calc-summary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent-red);
    box-shadow: 0 0 10px var(--accent-red);
}

.calc-summary .summary-card {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.calc-summary .summary-card h3 {
    display: none;
}

.calc-summary .summary-card::before {
    display: none !important;
}

.calc-summary .summary-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.calc-summary .price-display {
    font-size: 38px;
    font-weight: 900;
    color: #fff;
    font-family: var(--font-heading);
    display: flex;
    align-items: baseline;
}

.calc-summary .summary-note {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
}

.sum-label {
    font-size: 14px;
    color: var(--text-muted);
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.sum-price {
    font-size: 42px;
    font-weight: 900;
    color: #ffffff;
    font-family: var(--font-heading);
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.3);
}

.warranty-text {
    font-size: 13px;
    color: #00e676;
    margin-left: 10px;
    text-shadow: 0 0 8px rgba(0, 230, 118, 0.4);
}

/* Shades Showcase */
.shades-showcase {
    padding: 90px 0;
    background: #0f1217;
}

.section-desc {
    color: var(--text-muted);
    max-width: 650px;
    margin: -25px auto 40px auto;
}

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

@media (max-width: 992px) {
    .showcase-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .showcase-grid-4 {
        grid-template-columns: 1fr;
    }
}

.showcase-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s;
    display: flex;
    flex-direction: column;
}

.showcase-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent-red);
}

.showcase-img-wrap {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.showcase-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.showcase-card:hover .showcase-img-wrap img {
    transform: scale(1.08);
}

.showcase-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--accent-red);
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 1px;
}

.showcase-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.showcase-body h4 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
    color: #fff;
}

.showcase-body p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.link-btn {
    color: var(--accent-red);
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.2s;
}

.link-btn:hover {
    gap: 12px;
}

.shade-info-item {
    border-right: 1px solid var(--border-color);
    padding-right: 15px;
}

.shade-info-item:last-child {
    border-right: none;
}

.s-percent {
    font-size: 20px;
    font-weight: 900;
    color: var(--accent-red);
    display: block;
    margin-bottom: 6px;
}

.shade-info-item h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.shade-info-item p {
    font-size: 13px;
    color: var(--text-muted);
}

/* Why Us */
.why-us {
    padding: 100px 0;
}

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

.why-image {
    position: relative;
}

.why-image img {
    width: 100%;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--accent-red);
    padding: 20px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 30px rgba(255, 51, 68, 0.4);
}

.exp-num {
    font-size: 32px;
    font-weight: 900;
}

.exp-text {
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
}

.why-features {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.wf-item {
    display: flex;
    gap: 18px;
}

.wf-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 51, 68, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--accent-red);
    flex-shrink: 0;
}

/* Gallery */
.gallery-section {
    padding: 90px 0;
    background: #0f1217;
}

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

.gallery-item {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    height: 280px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(0deg, rgba(11, 13, 16, 0.95) 0%, rgba(11, 13, 16, 0) 100%);
}

.g-tag {
    background: var(--accent-red);
    font-size: 10px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 6px;
}

/* Reviews */
.reviews-section {
    padding: 90px 0;
}

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

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 28px;
    border-radius: 16px;
}

/* Leave a Review Card & Form */
.leave-review-card {
    margin-top: 50px;
    background: var(--bg-card);
    border: 1px dashed var(--border-color);
    border-radius: 16px;
    padding: 35px 25px;
}

.leave-review-card h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.leave-review-card p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 20px;
}

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

.btn-outline {
    background: transparent;
    border: 2px solid var(--border-color);
    color: var(--text-main);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-outline:hover {
    border-color: var(--accent-red);
    color: var(--accent-red);
}

.hidden-review-form {
    display: none;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid var(--border-color);
    text-align: left;
    animation: fadeIn 0.4s ease;
}

.hidden-review-form.active {
    display: block;
}

.star-rating-select {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}

.star-rating-select input {
    display: none;
}

.star-rating-select label {
    font-size: 24px;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.2s;
}

.star-rating-select input:checked ~ label,
.star-rating-select label:hover,
.star-rating-select label:hover ~ label {
    color: #ffb703;
}

.hidden-review-msg {
    display: none;
    margin-top: 20px;
    color: #00e676;
    font-weight: 700;
    font-size: 15px;
}

.hidden-review-msg.active {
    display: block;
}

.rev-stars {
    color: #ffb703;
    margin-bottom: 14px;
}

.rev-text {
    font-size: 14px;
    color: #d0d5dd;
    margin-bottom: 20px;
    font-style: italic;
}

.rev-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rev-avatar {
    width: 40px;
    height: 40px;
    background: var(--accent-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

/* Booking */
.booking-section {
    padding: 100px 0;
    background: #0f1217;
}

.booking-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
}

.contact-info-list {
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.c-info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.c-info-item i {
    font-size: 20px;
    color: var(--accent-red);
    margin-top: 3px;
}

.booking-form-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 35px;
    border-radius: 20px;
}

.booking-form-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-muted);
}

input, select, textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 14px;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--accent-red);
}

.readonly-quote {
    color: #00e676;
    font-weight: 700;
    border-color: rgba(0, 230, 118, 0.3);
}

.form-success-msg {
    text-align: center;
    padding: 30px 10px;
}

.form-success-msg i {
    font-size: 50px;
    color: #00e676;
    margin-bottom: 15px;
}

.hidden { display: none; }

/* Footer */
.footer {
    background: #060709;
    border-top: 1px solid var(--border-color);
    padding: 60px 0 0 0;
}

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

.footer-brand p {
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 15px;
    max-width: 350px;
}

.footer-links ul {
    list-style: none;
    margin-top: 15px;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #fff;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
}

.footer-bottom {
    background: #030405;
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Responsive Mobile Master Fixes */
@media (max-width: 992px) {
    .top-bar-content {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    .top-info, .top-actions {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    .header-container {
        flex-direction: column;
        gap: 16px;
    }
    .nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px 16px;
    }
    .hero-content, .why-grid, .booking-container {
        grid-template-columns: 1fr;
    }
    .services-grid, .shades-info-grid, .gallery-grid, .reviews-grid, .showcase-grid-4 {
        grid-template-columns: 1fr;
    }
    .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr !important; }
    .shades-selector { grid-template-columns: 1fr 1fr; }
    img, svg, video, iframe {
        max-width: 100% !important;
        height: auto;
    }
    *, *::before, *::after {
        max-width: 100vw;
    }
}

@media (max-width: 600px) {
    html, body {
        overflow-x: hidden !important;
        width: 100vw;
        position: relative;
    }
    .container {
        padding: 0 16px;
        box-sizing: border-box;
    }
    .top-bar {
        font-size: 11px;
    }
    .nav-link {
        font-size: 12px;
    }
    .hero {
        padding: 40px 0 60px 0;
        min-height: auto;
    }
    .hero-title {
        font-size: 26px !important;
        line-height: 1.25 !important;
        word-break: break-word;
    }
    .hero-subtitle {
        font-size: 14px;
        line-height: 1.5;
    }
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }
    .services-grid, .shades-info-grid, .gallery-grid, .reviews-grid {
        grid-template-columns: 1fr;
    }
    .form-row { 
        grid-template-columns: 1fr; 
    }
    .calc-summary { 
        flex-direction: column; 
        gap: 20px; 
        text-align: center; 
    }
    .calculator-wrapper {
        padding: 20px 16px;
    }
    .opt-card span {
        font-size: 13px;
    }
}

/* Dedicated Sub-pages Calculator & Radio Card Styling Fixes */
.calc-grid {
    display: grid;
    gap: 14px;
}
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 992px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

.radio-card {
    background: var(--bg-dark);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    position: relative;
}

.radio-card input[type="radio"] {
    display: none;
}

.radio-card.active {
    border-color: var(--accent-red);
    background: rgba(255, 51, 68, 0.08);
    box-shadow: 0 4px 15px rgba(255, 51, 68, 0.15);
}

.radio-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.radio-content i {
    font-size: 22px;
    color: var(--accent-red);
}

.radio-content span {
    font-weight: 700;
    font-size: 14px;
    color: #fff;
}

.vlt-selector {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 12px;
}

.vlt-option input[type="radio"] {
    display: none;
}

.vlt-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    background: var(--bg-dark);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-weight: 700;
    font-size: 13px;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s;
}

.vlt-option input[type="radio"]:checked + .vlt-btn {
    border-color: var(--accent-red);
    color: #fff;
    background: rgba(255, 51, 68, 0.12);
}

/* Floating Sticky Mobile CTA Bar (For 83% Mobile Traffic) */
.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(11, 13, 16, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border-color);
    padding: 10px 16px;
    z-index: 9999;
    box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.7);
}

.mobile-sticky-bar .btn {
    flex: 1;
    padding: 12px 14px;
    font-size: 13px;
    border-radius: 8px;
    font-weight: 800;
}

.btn-call-mobile {
    background: #14171d;
    border: 2px solid var(--accent-red);
    color: var(--accent-red);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.btn-book-mobile {
    background: linear-gradient(135deg, #ff3344 0%, #d61a2b 100%);
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

@media (max-width: 768px) {
    .mobile-sticky-bar {
        display: flex;
        gap: 10px;
    }
    body {
        padding-bottom: 75px; /* Offset for sticky bar */
    }
    
    /* Ultra-Compact Premium Mobile UI Engine */
    .hero {
        padding: 30px 0 40px 0 !important;
        min-height: auto !important;
    }
    .hero-title {
        font-size: 28px !important;
        line-height: 1.25 !important;
        margin-bottom: 12px !important;
    }
    .hero-subtitle {
        font-size: 14px !important;
        line-height: 1.45 !important;
        margin-bottom: 20px !important;
    }
    .hero-card {
        padding: 18px !important;
        border-radius: 14px !important;
        margin-top: 15px !important;
    }
    .calculator-wrapper {
        padding: 18px 14px !important;
        border-radius: 16px !important;
    }
    .calc-header h2 {
        font-size: 22px !important;
    }
    .calc-step {
        margin-bottom: 22px !important;
    }
    .step-label {
        font-size: 15px !important;
        margin-bottom: 12px !important;
    }
    .radio-card {
        padding: 12px 14px !important;
        border-radius: 10px !important;
    }
    .radio-content span {
        font-size: 13px !important;
    }
    .radio-content i {
        font-size: 18px !important;
    }
    .calc-summary {
        padding: 18px 16px !important;
        flex-direction: column !important;
        gap: 14px !important;
        text-align: center !important;
        border-radius: 12px !important;
    }
    .calc-summary .price-display {
        font-size: 32px !important;
        justify-content: center !important;
    }
    .calc-summary .btn {
        width: 100% !important;
        padding: 14px 16px !important;
        font-size: 14px !important;
    }
    
    /* Compact Service Cards & Showcase */
    .showcase-card, .service-card, .gallery-item {
        border-radius: 12px !important;
    }
    .showcase-body, .service-card {
        padding: 16px !important;
    }
    .showcase-body h4, .service-card h3 {
        font-size: 17px !important;
    }
    .showcase-body p, .service-card p {
        font-size: 13px !important;
        line-height: 1.4 !important;
    }
    .section-title {
        font-size: 22px !important;
        line-height: 1.25 !important;
    }
    .section-subtitle {
        font-size: 12px !important;
        letter-spacing: 1px !important;
    }
    .why-us, .services-section, .shades-showcase, .calculator-section, .reviews-section, .gallery-section {
        padding: 40px 0 !important;
    }
    .booking-wrapper {
        padding: 20px 16px !important;
        border-radius: 16px !important;
    }
    .form-field input, .form-field select, .form-field textarea {
        padding: 12px 14px !important;
        font-size: 14px !important;
        border-radius: 8px !important;
    }
}




/* Quick Floating Contact Widget */
.floating-contact-widget {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    font-family: system-ui, -apple-system, sans-serif;
}
.floating-btn-main {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00e5ff 0%, #ff0055 100%);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    outline: none;
}
.floating-btn-main:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(255, 0, 85, 0.8);
}
.floating-options {
    display: none;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 5px;
}
.floating-options.active {
    display: flex;
}
.floating-opt-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #14171d;
    border: 1px solid #00e5ff;
    color: #ffffff;
    padding: 12px 18px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    transition: all 0.2s ease;
    white-space: nowrap;
}
.floating-opt-btn:hover {
    background: #00e5ff;
    color: #0d0f12;
    transform: translateY(-2px);
}
