/* ===== CSS Variables — Luxurious Door Hanger Palette ===== */
:root {
    --deep-teal: #0b4a4e;
    --teal: #0e5e63;
    --teal-accent: #1a8a7d;
    --teal-light: #5bb5a2;
    --teal-bg: #edf7f4;
    --navy: #0a2e3a;
    --gold: #c9a84c;
    --gold-bright: #dabb5e;
    --gold-light: #f5e6b8;
    --gold-muted: rgba(201,168,76,0.15);
    --cream: #faf8f2;
    --white: #ffffff;
    --off-white: #f7f6f3;
    --gray-50: #f9f8f6;
    --gray-100: #f0eeea;
    --gray-200: #e2e0dc;
    --gray-300: #ccc9c3;
    --gray-400: #9c9890;
    --gray-500: #6e6a62;
    --gray-600: #4a4740;
    --gray-700: #33312c;
    --gray-800: #1f1e1b;
    --shadow-sm: 0 1px 3px rgba(10,46,58,0.06);
    --shadow: 0 4px 12px rgba(10,46,58,0.08);
    --shadow-md: 0 8px 24px rgba(10,46,58,0.1);
    --shadow-lg: 0 16px 40px rgba(10,46,58,0.12);
    --shadow-xl: 0 24px 56px rgba(10,46,58,0.18);
    --shadow-gold: 0 4px 20px rgba(201,168,76,0.25);
    --radius: 16px;
    --radius-lg: 24px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--gray-600);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--cream);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    color: var(--navy);
    line-height: 1.15;
}

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

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

.hidden { display: none !important; }

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

/* ===== Top Banner ===== */
.top-banner {
    background: var(--navy);
    color: rgba(255,255,255,0.85);
    text-align: center;
    padding: 12px 20px;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    border-bottom: 2px solid var(--gold);
}

.top-banner strong {
    color: var(--gold-bright);
    font-weight: 700;
}

/* ===== Navbar ===== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-bottom: 1px solid rgba(201,168,76,0.15);
}

.logo {
    position: relative;
    z-index: 10;
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    height: 80px;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 36px;
}

.nav-links a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--gray-600);
    letter-spacing: 0.3px;
    position: relative;
}

.nav-links a:not(.btn):hover {
    color: var(--deep-teal);
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-bright));
    transition: width 0.3s ease;
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 26px;
    height: 2px;
    background: var(--navy);
    transition: var(--transition);
    border-radius: 2px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 32px;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--deep-teal), var(--teal));
    color: var(--white);
    border-color: var(--deep-teal);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--teal), var(--teal-accent));
    border-color: var(--teal);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--deep-teal);
    border-color: var(--deep-teal);
}

.btn-outline:hover {
    background: var(--deep-teal);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-bright));
    color: var(--navy);
    border-color: var(--gold);
    font-weight: 700;
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-bright), #e6c96a);
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

.btn-nav {
    background: linear-gradient(135deg, var(--gold), var(--gold-bright));
    color: var(--navy) !important;
    padding: 10px 28px;
    border-radius: 8px;
    font-weight: 700;
    border-color: var(--gold);
}

.btn-nav:hover {
    box-shadow: var(--shadow-gold);
    transform: translateY(-1px);
}

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

.btn-lg {
    padding: 18px 40px;
    font-size: 1.05rem;
}

.btn-block {
    width: 100%;
}

.btn-text {
    background: none;
    border: none;
    color: var(--gold);
    padding: 0;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.btn-text:hover {
    color: var(--gold-bright);
    gap: 12px;
}

/* ===== Hero ===== */
.hero {
    position: relative;
    background: linear-gradient(160deg, var(--navy) 0%, var(--deep-teal) 50%, #0e5e63 100%);
    color: var(--white);
    padding: 100px 0 150px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 80% 20%, rgba(201,168,76,0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 80%, rgba(91,181,162,0.06) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: var(--gold-muted);
    backdrop-filter: blur(10px);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 28px;
    border: 1px solid rgba(201,168,76,0.3);
    color: var(--gold-bright);
    text-transform: uppercase;
}

.hero h1 {
    font-size: 3.8rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.08;
}

.text-accent {
    color: var(--gold-bright);
    display: block;
}

.hero-subtitle {
    font-size: 1.15rem;
    opacity: 0.85;
    margin-bottom: 40px;
    max-width: 520px;
    line-height: 1.8;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero .btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-bright));
    border-color: var(--gold);
    color: var(--navy);
    font-weight: 700;
}

.hero .btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-bright), #e6c96a);
    border-color: var(--gold-bright);
    box-shadow: var(--shadow-gold);
}

.hero .btn-outline {
    border-color: rgba(255,255,255,0.5);
    color: var(--white);
}

.hero .btn-outline:hover {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
}

.hero-trust {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}

.trust-item svg {
    color: var(--gold);
    opacity: 0.9;
}

/* Hero Card */
.hero-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 44px 36px;
    text-align: center;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, var(--gold), var(--gold-bright), var(--teal-light));
    border-radius: calc(var(--radius-lg) + 3px);
    z-index: -1;
}

.hero-card-icon {
    margin-bottom: 16px;
}

.hero-card-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--gray-400);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.hero-card-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--deep-teal);
    line-height: 1;
    margin-bottom: 12px;
}

.hero-card-price .dollar {
    font-size: 2rem;
    vertical-align: super;
    margin-right: 2px;
    color: var(--gold);
}

.hero-card-note {
    color: var(--gray-400);
    font-size: 0.85rem;
    margin-bottom: 28px;
    line-height: 1.5;
}

.hero-card .btn-primary {
    background: linear-gradient(135deg, var(--deep-teal), var(--teal));
    border-color: var(--deep-teal);
    color: var(--white);
}

.hero-card .btn-primary:hover {
    box-shadow: var(--shadow-md);
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 120px;
}

.hero-wave svg path {
    fill: var(--cream);
}

/* ===== Section Styles ===== */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--gold);
    background: var(--gold-muted);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
    border: 1px solid rgba(201,168,76,0.2);
}

.section-header h2 {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--navy);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray-400);
    line-height: 1.7;
}

/* ===== Gold Divider ===== */
.gold-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-bright));
    margin: 0 auto;
    border-radius: 2px;
}

/* ===== Services ===== */
.services {
    padding: 110px 0;
    background: var(--cream);
}

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

.service-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 40px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), transparent);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    border-color: rgba(201,168,76,0.3);
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}

.service-card:hover::after {
    opacity: 1;
}

.service-card.featured {
    border-color: var(--gold);
    background: linear-gradient(160deg, var(--white), var(--cream));
}

.service-card.featured::after {
    opacity: 1;
    background: linear-gradient(90deg, var(--gold), var(--gold-bright));
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--gold), var(--gold-bright));
    color: var(--navy);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.service-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--deep-teal), var(--teal));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(11,74,78,0.2);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--navy);
}

.service-card > p {
    color: var(--gray-400);
    margin-bottom: 24px;
    font-size: 0.95rem;
    line-height: 1.7;
}

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

.service-features li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--gray-500);
    position: relative;
    padding-left: 24px;
}

.service-features li::before {
    content: '✦';
    position: absolute;
    left: 0;
    top: 8px;
    color: var(--gold);
    font-size: 0.7rem;
}

/* ===== Bin Washing ===== */
.bin-washing {
    padding: 110px 0;
    background: linear-gradient(160deg, var(--navy) 0%, var(--deep-teal) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.bin-washing::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.bin-washing::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(91,181,162,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.bin-washing-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.bin-washing-text .section-tag {
    background: rgba(201,168,76,0.15);
    color: var(--gold-bright);
    border-color: rgba(201,168,76,0.25);
}

.bin-washing-text h2 {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 24px;
}

.bin-intro {
    font-size: 1.05rem;
    opacity: 0.8;
    margin-bottom: 36px;
    line-height: 1.8;
}

.bin-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.bin-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.bin-feature-icon {
    flex-shrink: 0;
    color: var(--gold);
}

.bin-feature strong {
    display: block;
    margin-bottom: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
}

.bin-feature p {
    font-size: 0.9rem;
    opacity: 0.65;
}

.bin-cta {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.bin-cta .btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-bright));
    border-color: var(--gold);
    color: var(--navy);
    font-weight: 700;
}

.bin-cta .btn-primary:hover {
    box-shadow: var(--shadow-gold);
}

.bin-price {
    font-size: 0.95rem;
    opacity: 0.75;
}

.bin-price strong {
    color: var(--gold-bright);
    font-size: 1.1rem;
}

/* Bin Visual Card */
.bin-visual-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: var(--radius-lg);
    padding: 52px 40px;
    text-align: center;
}

.bin-icon-large {
    margin-bottom: 36px;
    opacity: 0.4;
}

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

.stat {
    display: flex;
    flex-direction: column;
    padding: 16px 0;
    border-top: 1px solid rgba(201,168,76,0.2);
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--gold-bright);
}

.stat-label {
    font-size: 0.8rem;
    opacity: 0.6;
    margin-top: 6px;
    letter-spacing: 0.5px;
}

/* ===== Why Us ===== */
.why-us {
    padding: 110px 0;
    background: var(--white);
}

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

.why-card {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 40px 32px;
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-bright));
    border-radius: 0 0 4px 4px;
    opacity: 0;
    transition: var(--transition);
}

.why-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-6px);
    border-color: rgba(201,168,76,0.3);
}

.why-card:hover::before {
    opacity: 1;
    width: 60px;
}

.why-icon {
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg, var(--deep-teal), var(--teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--white);
    box-shadow: 0 4px 12px rgba(11,74,78,0.2);
}

.why-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: var(--navy);
}

.why-card p {
    color: var(--gray-400);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ===== Pricing ===== */
.pricing {
    padding: 110px 0;
    background: var(--white);
}

.pricing-toggle {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 48px;
    background: var(--gray-100);
    border-radius: 12px;
    padding: 6px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.toggle-btn {
    flex: 1;
    padding: 14px 24px;
    border: none;
    background: transparent;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--gray-400);
    cursor: pointer;
    border-radius: 8px;
    transition: var(--transition);
}

.toggle-btn.active {
    background: var(--white);
    color: var(--navy);
    box-shadow: var(--shadow);
}

.toggle-btn:hover:not(.active) {
    color: var(--gray-600);
}

.pricing-panel {
    display: none;
}

.pricing-panel.active {
    display: block;
}

.pricing-table-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.pricing-highlight {
    text-align: center;
    margin-bottom: 36px;
}

.highlight-label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray-400);
    margin-bottom: 8px;
}

.highlight-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: var(--deep-teal);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 36px;
}

.pricing-table thead th {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    padding: 14px 20px;
    text-align: left;
    border-bottom: 2px solid var(--gold);
}

.pricing-table thead th:last-child {
    text-align: right;
}

.pricing-table tbody td {
    padding: 16px 20px;
    font-size: 1rem;
    color: var(--gray-600);
    border-bottom: 1px solid var(--gray-200);
}

.pricing-table tbody tr:hover {
    background: var(--cream);
}

.price-cell {
    text-align: right !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--deep-teal);
}

.sqft-note {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 28px 32px;
    border-left: 4px solid var(--gold);
}

.sqft-note h4 {
    font-size: 0.95rem;
    color: var(--navy);
    margin-bottom: 16px;
}

.sqft-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px 24px;
    font-size: 0.9rem;
    color: var(--gray-500);
}

.sqft-grid span:nth-child(even) {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--deep-teal);
    text-align: right;
}

/* Bin Pricing Grid */
.bin-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 900px;
    margin: 0 auto;
}

.bin-plan-card {
    background: var(--cream);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    position: relative;
    text-align: center;
    transition: var(--transition);
}

.bin-plan-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.bin-plan-card.featured-bin {
    border: 2px solid var(--gold);
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: scale(1.04);
}

.bin-plan-card.featured-bin:hover {
    transform: scale(1.04) translateY(-4px);
}

.bin-plan-card .popular-badge {
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.bin-plan-header {
    margin-bottom: 24px;
}

.bin-plan-card.featured-bin .bin-plan-header {
    margin-top: 16px;
}

.bin-plan-header h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.bin-plan-header p {
    font-size: 0.85rem;
    color: var(--gray-400);
    line-height: 1.5;
}

.bin-plan-body {
    margin-bottom: 24px;
}

.bin-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-200);
    font-size: 0.95rem;
    color: var(--gray-500);
}

.bin-price-row:last-child {
    border-bottom: none;
}

.bin-price-row .price-cell {
    text-align: right;
}

.bin-price-row small {
    font-size: 0.7rem;
    color: var(--gray-400);
    font-weight: 400;
}

/* Add-Ons & Discounts */
.pricing-extras {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 28px;
    margin-top: 64px;
}

.extras-card {
    background: var(--cream);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 36px;
}

.extras-card h3 {
    font-size: 1.3rem;
    margin-bottom: 24px;
    color: var(--navy);
}

.addon-list {
    display: flex;
    flex-direction: column;
}

.addon-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-200);
    font-size: 0.95rem;
    color: var(--gray-500);
}

.addon-row:last-child {
    border-bottom: none;
}

.addon-row span:last-child {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--deep-teal);
}

.addon-row.highlight-row {
    background: var(--gold-muted);
    margin: 0 -16px;
    padding: 12px 16px;
    border-radius: 8px;
    border-bottom: none;
}

.addon-row.highlight-row span:last-child {
    color: var(--gold);
}

.discount-card {
    background: linear-gradient(160deg, var(--navy), var(--deep-teal));
    color: var(--white);
    border: none;
    text-align: center;
}

.discount-card h3 {
    color: var(--white);
}

.discount-intro {
    font-size: 0.95rem;
    opacity: 0.75;
    margin-bottom: 28px;
}

.discount-tiers {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.discount-tier {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.discount-pct {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--gold-bright);
    line-height: 1;
}

.discount-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.7;
    font-weight: 600;
}

.discount-card .btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-bright));
    border-color: var(--gold);
    color: var(--navy);
}

/* Plan starting price */
.plan-starting {
    font-size: 0.9rem;
    color: var(--gray-400);
    margin-top: 8px;
}

.plan-starting strong {
    color: var(--gold);
    font-size: 1.1rem;
}

.service-starting {
    font-size: 0.9rem;
    color: var(--gray-400);
    margin: 4px 0 0;
}

.service-starting strong {
    color: var(--gold);
    font-size: 1.05rem;
}

@media (max-width: 768px) {
    .pricing-toggle {
        flex-direction: column;
    }

    .bin-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .bin-plan-card.featured-bin {
        transform: none;
    }

    .bin-plan-card.featured-bin:hover {
        transform: translateY(-4px);
    }

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

    .highlight-price {
        font-size: 3rem;
    }
}

/* ===== Plans ===== */
.plans {
    padding: 110px 0;
    background: var(--cream);
}

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

.plan-card {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    background: var(--white);
}

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

.plan-card.popular {
    border: 2px solid var(--gold);
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(201,168,76,0.1);
    transform: scale(1.05);
}

.plan-card.popular:hover {
    transform: scale(1.05) translateY(-6px);
    box-shadow: var(--shadow-xl), var(--shadow-gold);
}

.popular-badge {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--gold), var(--gold-bright));
    color: var(--navy);
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    padding: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.plan-header {
    padding: 40px 32px 20px;
    text-align: center;
}

.popular .plan-header {
    padding-top: 56px;
}

.plan-header h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--navy);
}

.plan-type {
    font-size: 0.75rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.plan-body {
    padding: 0 32px 40px;
}

.plan-desc {
    color: var(--gray-400);
    font-size: 0.95rem;
    margin-bottom: 28px;
    text-align: center;
    line-height: 1.7;
}

.plan-features {
    list-style: none;
    margin-bottom: 32px;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 0.95rem;
    color: var(--gray-500);
    border-bottom: 1px solid var(--gray-100);
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features svg {
    flex-shrink: 0;
    color: var(--gold);
    stroke: var(--gold);
}

/* ===== Promise ===== */
.promise {
    padding: 100px 0;
    background: linear-gradient(160deg, var(--navy) 0%, var(--deep-teal) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.promise::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.promise::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.promise-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.promise-icon {
    margin-bottom: 28px;
}

.promise-icon svg {
    filter: drop-shadow(0 4px 12px rgba(201,168,76,0.3));
}

.promise h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--white);
}

.promise p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 44px;
    line-height: 1.8;
}

.promise-badges {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.85);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.3px;
}

.badge svg {
    color: var(--gold);
}

/* ===== Service Area ===== */
.service-area {
    padding: 100px 0;
    background: var(--cream);
}

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

.area-text .section-tag {
    margin-bottom: 20px;
}

.area-text h2 {
    font-size: 2.4rem;
    margin-bottom: 16px;
    color: var(--navy);
}

.area-text p {
    font-size: 1.05rem;
    color: var(--gray-400);
    line-height: 1.8;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.location-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--gray-600);
    transition: var(--transition);
}

.location-item svg {
    color: var(--gold);
    flex-shrink: 0;
}

.location-item:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.location-item.featured-location {
    background: linear-gradient(135deg, var(--deep-teal), var(--teal));
    color: var(--white);
    border-color: transparent;
    grid-column: 1 / -1;
    justify-content: center;
    font-size: 1.1rem;
}

.location-item.featured-location svg {
    color: var(--gold-bright);
}

@media (max-width: 768px) {
    .area-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .area-locations {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

/* ===== Contact ===== */
.contact {
    padding: 110px 0;
    background: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info .section-tag {
    margin-bottom: 20px;
}

.contact-info h2 {
    font-size: 2.6rem;
    margin-bottom: 16px;
    color: var(--navy);
}

.contact-info > p {
    color: var(--gray-400);
    font-size: 1.05rem;
    margin-bottom: 36px;
    line-height: 1.7;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: var(--cream);
    border-radius: var(--radius);
    margin-bottom: 24px;
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

.contact-method:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow);
    transform: translateX(6px);
}

.contact-method-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold), var(--gold-bright));
    color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-gold);
}

.contact-method strong {
    display: block;
    font-family: 'Montserrat', sans-serif;
    color: var(--gray-500);
    margin-bottom: 4px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.phone-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--deep-teal);
}

.contact-hours {
    margin-bottom: 28px;
    color: var(--gray-400);
    font-size: 0.95rem;
}

.welcome-offer-box {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: linear-gradient(160deg, var(--navy), var(--deep-teal));
    color: var(--white);
    padding: 28px;
    border-radius: var(--radius);
    border: 1px solid rgba(201,168,76,0.3);
    position: relative;
    overflow: hidden;
}

.welcome-offer-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-bright));
}

.offer-sparkle {
    font-size: 2.2rem;
    color: var(--gold-bright);
    line-height: 1;
}

.welcome-offer-box strong {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--gold-bright);
    letter-spacing: 0.5px;
}

.welcome-offer-box p {
    font-size: 0.9rem;
    opacity: 0.85;
    line-height: 1.7;
}

/* Contact Form */
.contact-form-wrapper {
    position: sticky;
    top: 100px;
}

.contact-form {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 44px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--deep-teal), var(--gold), var(--deep-teal));
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 28px;
    text-align: center;
    color: var(--navy);
}

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

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

.addons-label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--navy);
    margin-bottom: 10px;
}

.addons-grid {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.addon-check {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: var(--cream);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}

.addon-check:hover {
    border-color: var(--gold);
    background: var(--white);
}

.addon-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--deep-teal);
    cursor: pointer;
    flex-shrink: 0;
}

.addon-check input[type="checkbox"]:checked + .addon-name {
    color: var(--deep-teal);
    font-weight: 600;
}

.addon-name {
    flex: 1;
    color: var(--gray-500);
}

.addon-price {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--gold);
    white-space: nowrap;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--gray-600);
    transition: var(--transition);
    background: var(--cream);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-muted);
    background: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form .btn-primary {
    background: linear-gradient(135deg, var(--deep-teal), var(--teal));
    border-color: var(--deep-teal);
    margin-top: 8px;
}

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

/* ===== Footer ===== */
.footer {
    background: var(--navy);
    color: rgba(255,255,255,0.6);
    padding: 70px 0 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--deep-teal), var(--gold), var(--deep-teal));
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(201,168,76,0.15);
}

.footer-logo {
    height: 48px;
    margin-bottom: 20px;
    border-radius: 6px;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 12px;
}

.footer-tagline {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--gold);
    font-size: 0.95rem;
    font-style: italic;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}
.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
    transition: background 0.2s, color 0.2s;
}
.footer-socials a:hover {
    background: var(--gold);
    color: #fff;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 0.85rem;
    color: var(--gold);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.footer-links ul {
    list-style: none;
}

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

.footer-links a {
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--gold-bright);
    padding-left: 6px;
}

.footer-phone {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold-bright) !important;
    display: block;
    margin-bottom: 10px;
}

.footer-contact p {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0;
    font-size: 0.85rem;
}

.footer-motto {
    font-style: italic;
    opacity: 0.5;
    color: var(--gold-bright);
}

/* ===== Professional Section (Landing Page) ===== */
.pro-section {
    padding: 110px 0;
    background: linear-gradient(160deg, var(--navy) 0%, var(--deep-teal) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.pro-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 30%, rgba(201,168,76,0.06) 0%, transparent 60%);
}

.pro-section-content {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
}

.pro-section-text .section-tag {
    background: rgba(201,168,76,0.15);
    border-color: rgba(201,168,76,0.3);
}

.pro-section-text h2 {
    color: var(--white);
    font-size: 2.4rem;
    margin-bottom: 20px;
    margin-top: 12px;
}

.pro-section-text > p {
    font-size: 1.05rem;
    opacity: 0.8;
    line-height: 1.8;
    margin-bottom: 32px;
}

.pro-section-clients {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.pro-client-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85);
}

.pro-section-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    color: var(--gray-600);
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.pro-section-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-bright), var(--teal-light));
}

.pro-section-card h3 {
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 20px;
}

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

.pro-section-list li {
    padding: 10px 0;
    font-size: 0.95rem;
    color: var(--gray-500);
    padding-left: 28px;
    position: relative;
}

.pro-section-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    top: 10px;
    color: var(--gold);
    font-size: 0.7rem;
}

.pro-section-divider {
    width: 100%;
    height: 1px;
    background: var(--gray-200);
    margin-bottom: 20px;
}

.pro-section-note {
    font-size: 0.9rem;
    color: var(--gray-400);
    line-height: 1.6;
    margin-bottom: 24px;
}

@media (max-width: 1024px) {
    .pro-section-content {
        grid-template-columns: 1fr;
    }
    .pro-section-card {
        max-width: 440px;
    }
    .pro-section-text h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .pro-section-clients {
        grid-template-columns: 1fr;
    }
}

/* ===== Scroll Reveal ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.15s; }
.reveal:nth-child(4) { transition-delay: 0.2s; }
.reveal:nth-child(5) { transition-delay: 0.25s; }
.reveal:nth-child(6) { transition-delay: 0.3s; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

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

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

    .hero-image {
        display: flex;
        justify-content: center;
    }

    .hero-card {
        max-width: 380px;
    }

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

    .bin-washing-content {
        grid-template-columns: 1fr;
    }

    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 460px;
        margin: 0 auto;
    }

    .plan-card.popular {
        transform: none;
    }

    .plan-card.popular:hover {
        transform: translateY(-6px);
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 18px;
        box-shadow: var(--shadow-lg);
        border-top: 2px solid var(--gold);
    }

    .nav-links.active {
        display: flex;
    }

    .hero {
        padding: 60px 0 120px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

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

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

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

    .bin-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .promise-badges {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

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

    .hero-card-price {
        font-size: 3.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .top-banner {
        font-size: 0.8rem;
        padding: 8px 12px;
    }

    .contact-form {
        padding: 28px;
    }

    .bin-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* ===== Booking Page ===== */

.booking-hero {
    padding: 160px 0 60px;
    background: linear-gradient(135deg, var(--deep-teal), var(--teal));
    color: var(--white);
    text-align: center;
}

.booking-hero h1 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    margin: 12px 0 16px;
}

.booking-hero p {
    font-size: 1.1rem;
    opacity: 0.85;
    max-width: 520px;
    margin: 0 auto;
}

.booking-section {
    padding: 60px 0 80px;
    background: var(--cream);
}

/* ===== Appointment Request Layout ===== */
.appointment-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: start;
}

.appointment-info h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--navy);
    margin-bottom: 28px;
}

.appointment-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 36px;
}

.appt-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.appt-step-num {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-bright));
    color: var(--navy);
    font-weight: 800;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.appt-step strong {
    display: block;
    color: var(--navy);
    font-size: 1rem;
    margin-bottom: 4px;
}

.appt-step p {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

.appt-contact-card {
    background: linear-gradient(135deg, var(--navy), var(--deep-teal));
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    color: var(--white);
    text-align: center;
}

.appt-contact-card p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.85;
    line-height: 1.6;
}

.appt-contact-card p strong {
    color: var(--white);
    opacity: 1;
}

.appt-phone {
    display: block;
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    margin: 10px 0;
}

.appt-phone:hover {
    color: var(--gold-bright);
}

.appointment-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.appointment-form-wrapper h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--navy);
    margin: 0 0 24px;
    text-align: center;
}

.appointment-form-wrapper label:not(.addon-check) {
    display: block;
    font-weight: 600;
    color: var(--navy);
    font-size: 0.85rem;
    margin-bottom: 6px;
}

.form-disclaimer {
    text-align: center;
    font-size: 0.8rem;
    color: var(--gray-400);
    margin: 16px 0 0;
}

@media (max-width: 768px) {
    .appointment-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .appointment-info {
        order: 2;
    }

    .appointment-form-wrapper {
        order: 1;
        padding: 28px 20px;
    }

    .appointment-info h2 {
        font-size: 1.3rem;
    }
}

.booking-layout {
    max-width: 700px;
    margin: 0 auto;
}

.booking-step {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: var(--shadow);
}

.booking-step.hidden { display: none; }

.step-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.step-number {
    width: 36px;
    height: 36px;
    background: var(--gold);
    color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.step-header h2 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--navy);
    margin: 0;
}

/* Calendar */
.calendar-wrapper {
    position: relative;
}

.calendar-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.cal-nav-btn {
    background: var(--off-white);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    padding: 8px;
    cursor: pointer;
    color: var(--navy);
    transition: var(--transition);
}

.cal-nav-btn:hover { background: var(--gray-100); }
.cal-nav-btn:disabled { opacity: 0.3; cursor: default; }

.cal-month-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--navy);
    margin: 0;
}

.calendar-grid, .calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.cal-header {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-500);
    padding: 8px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cal-day {
    text-align: center;
    padding: 10px 4px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-400);
    cursor: default;
    transition: var(--transition);
}

.cal-day.empty { visibility: hidden; }
.cal-day.past { color: var(--gray-300); }
.cal-day.unavailable { color: var(--gray-300); }

.cal-day.available {
    color: var(--navy);
    background: var(--gold-muted);
    cursor: pointer;
    font-weight: 600;
}

.cal-day.available:hover {
    background: var(--gold-light);
    transform: scale(1.05);
}

.cal-day.selected {
    background: var(--deep-teal) !important;
    color: var(--white) !important;
    font-weight: 700;
}

.calendar-legend {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 16px;
    font-size: 0.8rem;
    color: var(--gray-500);
}

.legend-item { display: flex; align-items: center; gap: 6px; }

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 4px;
}

.legend-dot.available { background: var(--gold-muted); border: 1px solid var(--gold); }
.legend-dot.selected { background: var(--deep-teal); }
.legend-dot.unavailable { background: var(--gray-100); border: 1px solid var(--gray-300); }

.cal-loading {
    text-align: center;
    color: var(--gray-400);
    padding: 20px;
    font-size: 0.9rem;
    display: none;
}

.cal-error {
    text-align: center;
    padding: 16px;
    margin-top: 12px;
    background: #fff3f3;
    border: 1px solid #e8c4c4;
    border-radius: 8px;
    color: #8b3a3a;
    font-size: 0.9rem;
}
.cal-error button {
    margin-top: 10px;
    padding: 8px 20px;
    background: var(--deep-teal);
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85rem;
}
.cal-error button:hover {
    background: var(--dark-teal);
}

/* Time Slots */
.selected-date-label {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--deep-teal);
    font-size: 1rem;
    margin-bottom: 16px;
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
    margin-bottom: 20px;
}

.time-slot-btn {
    padding: 12px 16px;
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    background: var(--white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--navy);
    cursor: pointer;
    transition: var(--transition);
}

.time-slot-btn:hover {
    border-color: var(--gold);
    background: var(--gold-muted);
}

.time-slot-btn.selected {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--navy);
    box-shadow: var(--shadow-gold);
}

.no-slots {
    text-align: center;
    color: var(--gray-400);
    padding: 20px;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    color: var(--gray-500);
    font-size: 0.85rem;
    cursor: pointer;
    padding: 0;
}

.btn-back:hover { color: var(--deep-teal); }

/* Booking Summary */
.booking-summary { margin-bottom: 24px; }

.summary-card {
    background: var(--cream);
    border-radius: 10px;
    padding: 16px 20px;
    border: 1px solid var(--gold-light);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
}

.summary-label { color: var(--gray-500); font-size: 0.9rem; }
.summary-value { font-weight: 600; color: var(--navy); font-size: 0.9rem; }

.form-hint {
    font-size: 0.75rem;
    color: var(--gray-400);
    margin-top: 4px;
}

.btn-full { width: 100%; }

/* ===== Pro Page Hero ===== */
.pro-hero {
    position: relative;
    background: linear-gradient(160deg, var(--navy) 0%, var(--deep-teal) 50%, #0e5e63 100%);
    color: var(--white);
    padding: 100px 0 120px;
    overflow: hidden;
}

.pro-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 80% 20%, rgba(201,168,76,0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 80%, rgba(91,181,162,0.06) 0%, transparent 50%);
}

.pro-hero-content {
    position: relative;
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.pro-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.15;
}

.pro-hero h1 span {
    color: var(--gold-bright);
}

.pro-hero-subtitle {
    font-size: 1.15rem;
    opacity: 0.85;
    margin-bottom: 16px;
    line-height: 1.8;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.pro-hero-clients {
    font-size: 0.95rem;
    opacity: 0.7;
    margin-bottom: 40px;
}

.pro-hero .btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-bright));
    border-color: var(--gold);
    color: var(--navy);
    font-weight: 700;
}

.pro-hero .btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-bright), #e6c96a);
    border-color: var(--gold-bright);
    box-shadow: var(--shadow-gold);
}

.pro-hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
}

.pro-hero-wave svg {
    width: 100%;
    height: 80px;
}

/* ===== Who We Serve ===== */
.pro-serve {
    padding: 100px 0;
    background: var(--cream);
}

.pro-serve-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 56px;
}

.pro-serve-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
}

.pro-serve-card:hover {
    border-color: rgba(201,168,76,0.3);
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}

.pro-serve-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--deep-teal), var(--teal));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin: 0 auto 20px;
    box-shadow: 0 4px 12px rgba(11,74,78,0.2);
}

.pro-serve-card h3 {
    font-size: 1.05rem;
    margin-bottom: 10px;
    color: var(--navy);
}

.pro-serve-card p {
    font-size: 0.9rem;
    color: var(--gray-400);
    line-height: 1.6;
}

/* ===== Core Services ===== */
.pro-services {
    padding: 100px 0;
    background: var(--white);
}

.pro-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 56px;
}

.pro-service-card {
    background: var(--cream);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 40px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.pro-service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), transparent);
    opacity: 0;
    transition: var(--transition);
}

.pro-service-card:hover {
    border-color: rgba(201,168,76,0.3);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.pro-service-card:hover::after {
    opacity: 1;
}

.pro-service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--navy);
}

.pro-service-card p {
    font-size: 0.95rem;
    color: var(--gray-400);
    line-height: 1.7;
}

.pro-service-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold-muted);
    line-height: 1;
    margin-bottom: 16px;
    display: block;
}

/* ===== About Block ===== */
.pro-about {
    padding: 100px 0;
    background: linear-gradient(160deg, var(--navy) 0%, var(--deep-teal) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.pro-about::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(201,168,76,0.06) 0%, transparent 60%);
}

.pro-about-content {
    position: relative;
    max-width: 780px;
    margin: 0 auto;
}

.pro-about-content h2 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.pro-about-content > p {
    font-size: 1.05rem;
    opacity: 0.85;
    line-height: 1.8;
    margin-bottom: 16px;
}

/* ===== Three Column Lists ===== */
.pro-lists {
    padding: 100px 0;
    background: var(--cream);
}

.pro-lists-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 56px;
}

.pro-list-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 36px;
    transition: var(--transition);
}

.pro-list-card:hover {
    box-shadow: var(--shadow-md);
}

.pro-list-card h3 {
    font-size: 1.15rem;
    margin-bottom: 20px;
    color: var(--navy);
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gold-muted);
}

.pro-list-card ul {
    list-style: none;
    padding: 0;
}

.pro-list-card li {
    padding: 10px 0;
    font-size: 0.9rem;
    color: var(--gray-500);
    position: relative;
    padding-left: 24px;
    line-height: 1.5;
}

.pro-list-card li::before {
    content: '\2726';
    position: absolute;
    left: 0;
    top: 10px;
    color: var(--gold);
    font-size: 0.7rem;
}

/* ===== CTA ===== */
.pro-cta {
    padding: 100px 0;
    background: var(--white);
    text-align: center;
}

.pro-cta-box {
    max-width: 640px;
    margin: 0 auto;
    background: linear-gradient(160deg, var(--navy), var(--deep-teal));
    border-radius: var(--radius-lg);
    padding: 60px 48px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.pro-cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-bright), var(--gold));
}

.pro-cta-box::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 30%, rgba(201,168,76,0.08) 0%, transparent 60%);
}

.pro-cta-box > * {
    position: relative;
    z-index: 1;
}

.pro-cta-box h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 12px;
}

.pro-cta-box p {
    opacity: 0.85;
    font-size: 1rem;
    margin-bottom: 32px;
    line-height: 1.7;
}

.pro-cta-box .btn {
    background: linear-gradient(135deg, var(--gold), var(--gold-bright));
    border-color: var(--gold);
    color: var(--navy);
    font-weight: 700;
}

.pro-cta-box .btn:hover {
    background: linear-gradient(135deg, var(--gold-bright), #e6c96a);
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

.pro-cta-serving {
    font-size: 0.85rem !important;
    margin-top: 24px;
    margin-bottom: 0 !important;
    opacity: 0.6 !important;
    font-style: italic;
}

/* ===== Pro Quote Form ===== */
.pro-quote {
    padding: 100px 0;
    background: var(--cream);
}

.pro-quote-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.pro-quote-info h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.pro-quote-info > p {
    font-size: 1.05rem;
    color: var(--gray-400);
    line-height: 1.8;
    margin-bottom: 32px;
}

.pro-quote-steps {
    list-style: none;
    padding: 0;
    margin-bottom: 36px;
}

.pro-quote-steps li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 24px;
}

.pro-step-num {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--deep-teal), var(--teal));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.pro-step-text strong {
    display: block;
    font-family: 'Montserrat', sans-serif;
    color: var(--navy);
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.pro-step-text span {
    font-size: 0.9rem;
    color: var(--gray-400);
    line-height: 1.5;
}

.pro-quote-contact {
    display: flex;
    gap: 16px;
    align-items: center;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-left: 4px solid var(--gold);
    border-radius: var(--radius);
    padding: 20px 24px;
}

.pro-quote-contact svg {
    flex-shrink: 0;
    color: var(--gold);
}

.pro-quote-contact strong {
    display: block;
    font-family: 'Montserrat', sans-serif;
    color: var(--navy);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.pro-quote-contact a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--deep-teal);
}

.pro-form {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 44px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.pro-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--deep-teal), var(--gold), var(--deep-teal));
}

.pro-form h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    text-align: center;
    color: var(--navy);
}

.pro-form-subtitle {
    text-align: center;
    font-size: 0.85rem;
    color: var(--gray-400);
    margin-bottom: 28px;
}

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

.pro-form input,
.pro-form select,
.pro-form textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--gray-600);
    background: var(--cream);
    transition: var(--transition);
}

.pro-form input:focus,
.pro-form select:focus,
.pro-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-muted);
    background: var(--white);
}

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

.pro-form .form-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--gray-400);
    margin-top: 16px;
    line-height: 1.5;
}

.pro-form .form-note a {
    color: var(--gold);
    text-decoration: underline;
}

.pro-inspection-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--gold-muted);
    border: 1px solid rgba(201,168,76,0.25);
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 24px;
}

.pro-inspection-badge svg {
    flex-shrink: 0;
    color: var(--gold);
}

.pro-inspection-badge span {
    font-size: 0.85rem;
    color: var(--gray-500);
    font-weight: 600;
    line-height: 1.4;
}

@media (max-width: 1024px) {
    .pro-quote-wrapper {
        grid-template-columns: 1fr;
    }
    .pro-serve-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pro-lists-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .pro-hero {
        padding: 70px 0 100px;
    }
    .pro-hero h1 {
        font-size: 2.2rem;
    }
    .pro-services-grid {
        grid-template-columns: 1fr;
    }
    .pro-serve-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    .pro-about-content h2 {
        font-size: 1.8rem;
    }
    .pro-cta-box {
        padding: 44px 28px;
    }
    .pro-cta-box h2 {
        font-size: 1.6rem;
    }
}

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

