/* ============================================
   NOVO RENOVATIONS INC. — STYLESHEET
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    --navy: #1B2A4A;
    --navy-dark: #111D35;
    --navy-light: #2A3F6A;
    --accent: #C8A456;
    --accent-hover: #B8933F;
    --accent-light: #F5EDD6;
    --blue: #3B7DD8;
    --blue-light: #E8F0FC;
    --white: #FFFFFF;
    --off-white: #F8F9FC;
    --gray-50: #F5F6FA;
    --gray-100: #ECEEF4;
    --gray-200: #D8DBE5;
    --gray-300: #B0B5C5;
    --gray-400: #8A90A2;
    --gray-500: #6B7185;
    --gray-600: #4A4F60;
    --gray-700: #353848;
    --text: #2D3142;
    --text-light: #5A5F72;
    --shadow-sm: 0 1px 3px rgba(27,42,74,0.06), 0 1px 2px rgba(27,42,74,0.04);
    --shadow-md: 0 4px 12px rgba(27,42,74,0.08), 0 2px 6px rgba(27,42,74,0.04);
    --shadow-lg: 0 12px 36px rgba(27,42,74,0.12), 0 4px 12px rgba(27,42,74,0.06);
    --shadow-xl: 0 24px 60px rgba(27,42,74,0.16), 0 8px 20px rgba(27,42,74,0.08);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;
}

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

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

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
    list-style: none;
}

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

.section {
    padding: 100px 0;
}

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

/* ---------- Section Headers ---------- */
.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}

.section-label-light {
    color: var(--accent-light);
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 17px;
    color: var(--text-light);
    max-width: 620px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

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

.btn-primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200,164,86,0.35);
}

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

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

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

.btn-outline-light:hover {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white);
    color: var(--navy);
}

.btn-white:hover {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

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

.btn-sm {
    padding: 8px 20px;
    font-size: 14px;
}

.btn-block {
    width: 100%;
    padding: 16px;
    font-size: 16px;
}

/* ---------- Top Bar ---------- */
.top-bar {
    background: var(--navy-dark);
    color: rgba(255,255,255,0.8);
    font-size: 13px;
    padding: 8px 0;
}

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

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar a {
    color: rgba(255,255,255,0.8);
}

.top-bar a:hover {
    color: var(--accent);
}

.top-bar i {
    margin-right: 4px;
    color: var(--accent);
    font-size: 11px;
}

.top-bar-divider {
    color: rgba(255,255,255,0.2);
    margin: 0 8px;
}

/* ---------- Navbar ---------- */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
    transition: var(--transition);
}

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

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

.nav-logo img {
    height: 150px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--navy);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

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

.nav-cta {
    background: var(--accent);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 14px;
}

.nav-cta:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(200,164,86,0.3);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

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

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5.5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5.5px);
}

/* ---------- Hero Section ---------- */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1920&h=1080&fit=crop') center/cover no-repeat;
    opacity: 0.15;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(17,29,53,0.6) 0%, rgba(27,42,74,0.85) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 0;
    display: flex;
    align-items: center;
    gap: 60px;
    width: 100%;
}

.hero-left {
    flex: 1;
    min-width: 0;
}

.hero-right {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo {
    width: 460px;
    max-width: 100%;
    filter: brightness(0) invert(1) drop-shadow(0 0 50px rgba(200,164,86,0.45));
}

.hero-badge {
    display: inline-block;
    background: rgba(200,164,86,0.15);
    border: 1px solid rgba(200,164,86,0.3);
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 58px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
}

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

.hero-left > p {
    font-size: 19px;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 600px;
}

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

.hero-stats {
    display: flex;
    align-items: center;
    gap: 36px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat strong {
    display: block;
    font-size: 34px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 4px;
}

.hero-stat span {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.hero-stat-divider {
    width: 1px;
    height: 44px;
    background: rgba(255,255,255,0.15);
}

/* ---------- About Section ---------- */
.about {
    background: var(--white);
}

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

.about-images {
    position: relative;
}

.about-img-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-img-secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 220px;
}

.about-img-secondary img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: var(--radius-md);
    border: 5px solid var(--white);
    box-shadow: var(--shadow-lg);
}

.about-experience-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--accent);
    color: var(--white);
    padding: 18px 22px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.exp-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
}

.exp-text {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
    line-height: 1.3;
}

.about-content .section-label {
    margin-bottom: 12px;
}

.about-content h2 {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 20px;
}

.about-lead {
    font-size: 17px;
    color: var(--text);
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 12px;
}

.about-content > p {
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.7;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 32px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
}

.about-feature:hover {
    border-color: var(--accent);
    background: var(--accent-light);
}

.about-feature-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    color: var(--accent);
    border-radius: var(--radius-sm);
    font-size: 16px;
    flex-shrink: 0;
}

.about-feature strong {
    display: block;
    font-size: 14px;
    color: var(--navy);
}

.about-feature span {
    font-size: 12px;
    color: var(--gray-500);
}

/* ---------- Services Section ---------- */
.services {
    background: var(--off-white);
}

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

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
}

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

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

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.service-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(27,42,74,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover .service-img-overlay,
.service-card:focus-within .service-img-overlay {
    opacity: 1;
}

.service-card:focus-within .service-img img {
    transform: scale(1.05);
}

.service-body {
    padding: 24px;
}

.service-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-light);
    color: var(--accent);
    border-radius: var(--radius-sm);
    font-size: 20px;
    margin-bottom: 16px;
}

.service-body h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--navy);
    margin-bottom: 10px;
}

.service-body p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.65;
}

/* ---------- Why Choose Us Section ---------- */
.why-us {
    position: relative;
    background: var(--navy);
    color: var(--white);
    overflow: hidden;
}

.why-us-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1541123603104-512919d6a96c?w=1920&h=800&fit=crop') center/cover no-repeat;
    opacity: 0.06;
}

.why-us .section-header {
    position: relative;
    z-index: 2;
}

.why-us .section-header h2 {
    color: var(--white);
}

.why-us .section-header p {
    color: rgba(255,255,255,0.7);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 2;
}

.why-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.why-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--accent);
    transform: translateY(-4px);
}

.why-card-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200,164,86,0.15);
    color: var(--accent);
    font-size: 24px;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.why-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--white);
}

.why-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.65;
}

/* ---------- Process Section ---------- */
.process {
    background: var(--white);
}

.process-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.process-step {
    text-align: center;
    flex: 1;
    max-width: 240px;
    padding: 0 16px;
    position: relative;
}

.process-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--gray-100);
    line-height: 1;
    margin-bottom: 16px;
    font-family: var(--font-heading);
}

.process-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-light);
    color: var(--accent);
    font-size: 26px;
    border-radius: 50%;
    margin: 0 auto 20px;
    border: 3px solid var(--accent);
}

.process-step h3 {
    font-family: var(--font-heading);
    font-size: 19px;
    color: var(--navy);
    margin-bottom: 10px;
}

.process-step p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.65;
}

.process-connector {
    display: flex;
    align-items: center;
    padding-top: 95px;
    color: var(--gray-200);
    font-size: 20px;
}

/* ---------- Reviews Section ---------- */
.reviews {
    background: var(--off-white);
}

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

.review-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.review-stars {
    display: flex;
    gap: 3px;
    color: #F59E0B;
    font-size: 16px;
    margin-bottom: 18px;
}

.review-text {
    font-size: 15px;
    color: var(--text);
    line-height: 1.7;
    font-style: italic;
    flex-grow: 1;
    margin-bottom: 24px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid var(--gray-100);
}

.review-avatar {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    color: var(--accent);
    font-size: 15px;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}

.review-author strong {
    display: block;
    font-size: 15px;
    color: var(--navy);
}

.review-author span {
    font-size: 12px;
    color: var(--gray-500);
}

/* ---------- CTA Banner ---------- */
.cta-banner {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, var(--navy-dark), var(--navy), var(--navy-light));
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1600585154340-be6161a89e0c?w=1920&h=600&fit=crop') center/cover no-repeat;
    opacity: 0.1;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 40px;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 32px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---------- Contact / Quote Section ---------- */
.contact {
    background: var(--white);
}

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

.contact-info h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--navy);
    margin-bottom: 16px;
    line-height: 1.2;
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 36px;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-detail-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-light);
    color: var(--accent);
    border-radius: var(--radius-sm);
    font-size: 16px;
    flex-shrink: 0;
}

.contact-detail strong {
    display: block;
    font-size: 14px;
    color: var(--navy);
    margin-bottom: 2px;
}

.contact-detail span,
.contact-detail a {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
}

.contact-detail a:hover {
    color: var(--accent);
}

.contact-license {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--navy);
    color: var(--white);
    padding: 18px 22px;
    border-radius: var(--radius-md);
}

.contact-license i {
    font-size: 28px;
    color: var(--accent);
}

.contact-license strong {
    display: block;
    font-size: 15px;
}

.contact-license span {
    font-size: 13px;
    opacity: 0.8;
}

/* ---------- Quote Form ---------- */
.quote-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-100);
}

.quote-form-card h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    color: var(--navy);
    margin-bottom: 6px;
}

.quote-form-card > p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 28px;
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
}

.required {
    color: #EF4444;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-primary);
    font-size: 15px;
    color: var(--text);
    background: var(--gray-50);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(200,164,86,0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%236B7185' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.form-row {
    display: flex;
    gap: 16px;
}

.form-disclaimer {
    font-size: 12px;
    color: var(--gray-400);
    text-align: center;
    margin-top: 14px;
}

.form-success {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    font-size: 56px;
    color: #10B981;
    margin-bottom: 20px;
}

.form-success h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--navy);
    margin-bottom: 12px;
}

.form-success p {
    color: var(--text-light);
    margin-bottom: 24px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* ---------- Map Section ---------- */
.map-section {
    line-height: 0;
}

.map-section iframe {
    filter: grayscale(20%) contrast(1.05);
}

/* ---------- Footer ---------- */
.footer {
    background: var(--navy-dark);
    color: rgba(255,255,255,0.75);
    padding: 70px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
    height: 160px;
    width: auto;
    margin-bottom: 18px;
    filter: brightness(0) invert(1);
}

.footer-about p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: rgba(255,255,255,0.6);
}

.footer-license {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    background: rgba(200,164,86,0.1);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(200,164,86,0.2);
}

.footer h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--white);
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 12px;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent);
}

.footer-links-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links-col a {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}

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

.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
}

.footer-contact i {
    color: var(--accent);
    font-size: 14px;
    margin-top: 4px;
    width: 16px;
    text-align: center;
}

.footer-contact a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding: 24px 0;
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}

/* ---------- Floating Call Button ---------- */
.floating-call {
    display: none;
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 6px 24px rgba(200,164,86,0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse-call 2s infinite;
}

.floating-call:hover {
    background: var(--accent-hover);
    transform: scale(1.1);
}

@keyframes pulse-call {
    0%, 100% { box-shadow: 0 6px 24px rgba(200,164,86,0.4); }
    50% { box-shadow: 0 6px 36px rgba(200,164,86,0.6); }
}

/* ---------- Back to Top ---------- */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 46px;
    height: 46px;
    background: var(--navy);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 998;
    box-shadow: var(--shadow-md);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

/* ---------- Animations ---------- */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

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

    .about-grid {
        gap: 40px;
    }

    .contact-grid {
        gap: 40px;
    }

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

@media (max-width: 900px) {
    .section {
        padding: 70px 0;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .hero h1 {
        font-size: 42px;
    }

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

    .about-images {
        max-width: 500px;
    }

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

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

    .process-connector {
        display: none;
    }

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

    .process-step {
        max-width: none;
    }

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

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 8px;
        z-index: 1000;
    }

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

    .nav-links a {
        font-size: 20px;
        padding: 12px 24px;
    }

    .nav-cta {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 16px;
    }

    .section {
        padding: 60px 0;
    }

    .top-bar-left,
    .top-bar-right {
        flex-wrap: wrap;
    }

    .top-bar-inner {
        flex-direction: column;
        gap: 4px;
    }

    .top-bar-divider {
        display: none;
    }

    .hero {
        min-height: 80vh;
    }

    .hero-content {
        flex-direction: column;
        gap: 32px;
    }

    .hero-right {
        display: none;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-left > p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

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

    .hero-stats {
        flex-wrap: wrap;
        gap: 24px;
    }

    .hero-stat-divider {
        display: none;
    }

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

    .hero-stat strong {
        font-size: 28px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .section-header p {
        font-size: 15px;
    }

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

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

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

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

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .quote-form-card {
        padding: 28px 20px;
    }

    .about-img-secondary {
        right: 10px;
        bottom: -20px;
        width: 170px;
    }

    .about-content h2 {
        font-size: 30px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .contact-info h2 {
        font-size: 28px;
    }

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

    .floating-call {
        display: flex;
        bottom: 20px;
        right: 20px;
    }

    .back-to-top {
        bottom: 20px;
        right: 88px;
    }

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

    .cta-buttons .btn {
        width: 100%;
        max-width: 320px;
    }
}

@media (max-width: 400px) {
    .hero h1 {
        font-size: 28px;
    }

    .nav-logo img {
        height: 70px;
    }

    .nav-inner {
        height: 82px;
    }
}

/* ---------- Skip Link ---------- */
.skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    background: var(--accent);
    color: var(--white);
    padding: 12px 24px;
    font-weight: 600;
    font-size: 15px;
    z-index: 9999;
    border-radius: 0 0 var(--radius-sm) 0;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 0;
}

/* ---------- Global Focus Styles (WCAG 2.1 AA) ---------- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
    border-radius: 2px;
}

.mobile-toggle:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 4px;
    border-radius: var(--radius-sm);
}

/* ---------- Honeypot Field ---------- */
.hp-field {
    position: absolute;
    left: -9999px;
    top: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* ---------- Form Required Note ---------- */
.form-required-note {
    font-size: 0.8rem;
    color: var(--text-light);
    margin: 0 0 12px;
}

/* ---------- Form Estimate Disclaimer ---------- */
.form-estimate-disclaimer {
    background: var(--gray-50);
    border-left: 3px solid var(--accent);
    padding: 12px 16px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin-top: 16px;
}

.form-estimate-disclaimer p {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* ---------- Form SMS Consent Checkbox ---------- */
.form-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 14px;
    cursor: pointer;
}

.form-checkbox-label input[type="checkbox"] {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin-top: 2px;
    accent-color: var(--accent);
    cursor: pointer;
}

.form-checkbox-label span {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ---------- Form Disclaimer Links ---------- */
.form-disclaimer a {
    color: var(--accent);
    text-decoration: underline;
}

.form-disclaimer a:hover {
    color: var(--accent-hover);
}

/* ---------- Form Error Message ---------- */
.form-error-msg {
    background: #FEF2F2;
    border: 1px solid #FECACA;
    color: #B91C1C;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    margin-top: 12px;
}

/* ---------- Modal ---------- */
.modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.modal[hidden] {
    display: none;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(17, 29, 53, 0.75);
    backdrop-filter: blur(4px);
    cursor: pointer;
}

.modal-container {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 760px;
    max-height: 88vh;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 32px;
    border-bottom: 1px solid var(--gray-100);
    flex-shrink: 0;
}

.modal-header h2 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--navy);
    margin: 0;
}

.modal-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: 50%;
    color: var(--gray-600);
    font-size: 14px;
    cursor: pointer;
    flex-shrink: 0;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--gray-100);
    color: var(--navy);
}

.modal-body {
    padding: 28px 32px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.modal-effective-date {
    font-size: 13px;
    color: var(--gray-400);
    margin-bottom: 20px;
}

.modal-body h3 {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    margin-top: 24px;
    margin-bottom: 10px;
}

.modal-body h3:first-of-type {
    margin-top: 0;
}

.modal-body p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 12px;
}

.modal-body ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 12px;
}

.modal-body ul li {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 4px;
}

.modal-body a {
    color: var(--accent);
    text-decoration: underline;
}

.modal-body a:hover {
    color: var(--accent-hover);
}

/* ---------- Footer Legal Links ---------- */
.footer-legal-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.footer-legal-links a {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    text-decoration: underline;
    transition: var(--transition);
}

.footer-legal-links a:hover {
    color: var(--accent);
}

.footer-legal-links span {
    color: rgba(255,255,255,0.2);
    font-size: 13px;
}

@media (max-width: 640px) {
    .modal-header {
        padding: 20px;
    }

    .modal-body {
        padding: 20px;
    }

    .modal-header h2 {
        font-size: 20px;
    }
}
