/* Colonial Charm Wallcovering - Main Stylesheet */
/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap');

/* CSS Variables */
:root {
    --color-primary-bg: #FAFBFC;
    --color-secondary-bg: #E7EEF3;
    --color-white: #FFFFFF;
    --color-text: #243447;
    --color-accent: #5D88B3;
    --color-accent-hover: #48739E;
    --color-light-text: #5a6b7d;
    --color-border: #d8e2eb;
    --font-heading: 'Manrope', sans-serif;
    --font-body: 'Inter', sans-serif;
    --radius: 12px;
    --shadow-sm: 0 2px 8px rgba(36, 52, 71, 0.06);
    --shadow-md: 0 4px 16px rgba(36, 52, 71, 0.1);
    --shadow-lg: 0 8px 32px rgba(36, 52, 71, 0.12);
    --max-width: 1200px;
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-text);
    line-height: 1.3;
    font-weight: 700;
}

h1 { font-size: 2.8rem; margin-bottom: 1rem; }
h2 { font-size: 2rem; margin-bottom: 0.8rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.6rem; }

p { margin-bottom: 1rem; }

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== HEADER ===== */
.site-header {
    background: var(--color-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--color-border);
}

.header-top {
    background: var(--color-text);
    color: var(--color-white);
    padding: 8px 0;
    font-size: 14px;
}

.header-top .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 24px;
}

.header-top a {
    color: var(--color-white);
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
}

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

.header-top svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.header-main {
    padding: 16px 0;
}

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

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

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

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
}

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

.nav-list > li {
    position: relative;
}

.nav-list > li > a {
    display: block;
    padding: 10px 16px;
    color: var(--color-text);
    font-weight: 500;
    font-size: 15px;
    border-radius: 8px;
    transition: background var(--transition), color var(--transition);
}

.nav-list > li > a:hover,
.nav-list > li.active > a {
    background: var(--color-secondary-bg);
    color: var(--color-accent);
}

/* Dropdown */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--color-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    min-width: 240px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    border: 1px solid var(--color-border);
    z-index: 100;
}

.nav-list > li:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
    opacity: 0;
    transform: translateX(-10px);
    animation: dropdownItemIn 0.3s ease forwards;
}

.dropdown-menu li:nth-child(1) { animation-delay: 0.05s; }
.dropdown-menu li:nth-child(2) { animation-delay: 0.1s; }
.dropdown-menu li:nth-child(3) { animation-delay: 0.15s; }
.dropdown-menu li:nth-child(4) { animation-delay: 0.2s; }
.dropdown-menu li:nth-child(5) { animation-delay: 0.25s; }
.dropdown-menu li:nth-child(6) { animation-delay: 0.3s; }
.dropdown-menu li:nth-child(7) { animation-delay: 0.35s; }
.dropdown-menu li:nth-child(8) { animation-delay: 0.4s; }
.dropdown-menu li:nth-child(9) { animation-delay: 0.45s; }
.dropdown-menu li:nth-child(10) { animation-delay: 0.5s; }
.dropdown-menu li:nth-child(11) { animation-delay: 0.55s; }

.nav-list > li:not(:hover) > .dropdown-menu li {
    opacity: 0;
    transform: translateX(-10px);
    animation: none;
}

@keyframes dropdownItemIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--color-text);
    font-size: 14px;
    font-weight: 400;
    transition: background var(--transition), color var(--transition), padding-left var(--transition);
}

.dropdown-menu a:hover {
    background: var(--color-secondary-bg);
    color: var(--color-accent);
    padding-left: 26px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1100;
}

.mobile-menu-toggle svg {
    width: 28px;
    height: 28px;
    color: var(--color-text);
}

/* Mobile Navigation */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(36, 52, 71, 0.5);
    z-index: 1050;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 50%;
    min-width: 280px;
    height: 100%;
    background: var(--color-white);
    z-index: 1100;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -4px 0 20px rgba(0,0,0,0.15);
}

.mobile-nav.active {
    transform: translateX(0);
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--color-border);
}

.mobile-nav-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background var(--transition);
}

.mobile-nav-close:hover {
    background: var(--color-secondary-bg);
}

.mobile-nav-close svg {
    width: 24px;
    height: 24px;
    color: var(--color-text);
}

.mobile-nav-list {
    list-style: none;
    padding: 16px 0;
}

.mobile-nav-list li {
    border-bottom: 1px solid var(--color-border);
}

.mobile-nav-list > li > a {
    display: block;
    padding: 14px 24px;
    color: var(--color-text);
    font-weight: 500;
    font-size: 16px;
    text-align: left;
}

.mobile-nav-list > li > a:hover {
    color: var(--color-accent);
    background: var(--color-secondary-bg);
}

.mobile-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 24px;
    background: none;
    border: none;
    color: var(--color-text);
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    font-family: var(--font-body);
    text-align: left;
}

.mobile-dropdown-toggle svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.mobile-dropdown-toggle.open svg {
    transform: rotate(180deg);
}

.mobile-dropdown-list {
    list-style: none;
    display: none;
    background: var(--color-primary-bg);
    padding: 8px 0;
}

.mobile-dropdown-list.open {
    display: block;
}

.mobile-dropdown-list a {
    display: block;
    padding: 10px 24px 10px 40px;
    color: var(--color-light-text);
    font-size: 15px;
    text-align: left;
}

.mobile-dropdown-list a:hover {
    color: var(--color-accent);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(36, 52, 71, 0.75) 0%, rgba(93, 136, 179, 0.4) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: var(--color-white);
    max-width: 600px;
    padding: 60px 0;
}

.hero-content h1 {
    color: var(--color-white);
    font-size: 3rem;
    margin-bottom: 1.2rem;
}

.hero-content p {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-form {
    position: relative;
    z-index: 3;
    margin-left: auto;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* ===== SECTIONS ===== */
.section {
    padding: 80px 0;
}

.section-alt {
    background: var(--color-secondary-bg);
}

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

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.section-title p {
    color: var(--color-light-text);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== CARDS GRID ===== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.card {
    background: var(--color-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
    border: 1px solid var(--color-border);
}

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

.card-image {
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 24px;
}

.card-content h3 {
    margin-bottom: 0.5rem;
}

.card-content p {
    color: var(--color-light-text);
    font-size: 15px;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    font-weight: 600;
    font-size: 14px;
    color: var(--color-accent);
}

.card-link:hover {
    gap: 10px;
}

.card-content h2 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.card-compact {
    border: 1px solid var(--color-border);
}

.card-compact .card-content h2 a,
.card-compact .card-content h3 a {
    color: var(--color-text);
}

.card-compact .card-content h2 a:hover,
.card-compact .card-content h3 a:hover {
    color: var(--color-accent);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    height: 58px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    font-family: var(--font-body);
    cursor: pointer;
    transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
    border: none;
    text-decoration: none;
    gap: 8px;
}

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

.btn-primary:hover {
    background: var(--color-accent-hover);
    color: var(--color-white);
    box-shadow: 0 4px 16px rgba(93, 136, 179, 0.3);
    transform: translateY(-1px);
}

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

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

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

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

/* ===== FORM STYLES ===== */
.feedback-form-container {
    background: var(--color-white);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow-md);
    max-width: 480px;
    width: 100%;
}

.feedback-form-container h3 {
    text-align: center;
    margin-bottom: 24px;
    font-size: 1.3rem;
}

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

.form-group {
    margin-bottom: 16px;
    position: relative;
}

.form-row .form-group {
    margin-bottom: 0;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--color-border);
    border-radius: 8px;
    font-size: 15px;
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-primary-bg);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(93, 136, 179, 0.15);
}

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

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

.submit-btn {
    width: 100%;
    padding: 16px 32px;
    height: 58px;
    border-radius: 12px;
    background: var(--color-accent);
    color: var(--color-white);
    font-weight: 600;
    font-size: 16px;
    font-family: var(--font-body);
    border: none;
    cursor: pointer;
    transition: background var(--transition), box-shadow var(--transition);
}

.submit-btn:hover {
    background: var(--color-accent-hover);
    box-shadow: 0 4px 16px rgba(93, 136, 179, 0.3);
}

#form-success {
    text-align: center;
    padding: 24px;
}

#form-success p {
    color: var(--color-accent);
    font-weight: 500;
    font-size: 1.1rem;
}

.error-message {
    color: #ff6b6b;
    margin-top: 5px;
    font-size: 14px;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--color-text) 0%, #3a5570 100%);
    color: var(--color-white);
    padding: 60px 0;
    text-align: center;
}

.cta-section h2 {
    color: var(--color-white);
    margin-bottom: 1rem;
}

.cta-section p {
    opacity: 0.9;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-inline {
    background: var(--color-secondary-bg);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
    margin: 2rem 0;
}

.cta-inline p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

/* ===== MAP ===== */
.map-container {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
    display: block;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--color-text);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 24px;
}

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

.footer-brand .logo {
    color: var(--color-white);
    margin-bottom: 16px;
    display: block;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.8;
}

.footer-col h4 {
    color: var(--color-white);
    font-size: 16px;
    margin-bottom: 16px;
    font-weight: 600;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

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

.footer-col ul li a:hover {
    color: var(--color-white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    text-align: center;
    font-size: 14px;
    opacity: 0.6;
}

/* ===== STICKY QUOTE BUTTON ===== */
.sticky-quote-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 900;
    background: var(--color-accent);
    color: var(--color-white);
    padding: 16px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 4px 20px rgba(93, 136, 179, 0.4);
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.sticky-quote-btn:hover {
    background: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(93, 136, 179, 0.5);
}

/* ===== MODAL ===== */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(36, 52, 71, 0.6);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    position: relative;
    max-width: 520px;
    width: 100%;
    animation: modalIn 0.3s ease;
}

@keyframes modalIn {
    from { opacity: 0; transform: scale(0.95) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 36px;
    height: 36px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    z-index: 10;
    transition: background var(--transition);
}

.modal-close:hover {
    background: var(--color-secondary-bg);
}

.modal-close svg {
    width: 18px;
    height: 18px;
    color: var(--color-text);
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
    background: linear-gradient(135deg, var(--color-secondary-bg) 0%, var(--color-white) 100%);
    padding: 60px 0;
    text-align: center;
}

.page-hero h1 {
    margin-bottom: 0.5rem;
}

.page-hero p {
    color: var(--color-light-text);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== ABOUT PAGE ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.about-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    background: var(--color-secondary-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon svg {
    width: 22px;
    height: 22px;
    color: var(--color-accent);
}

.contact-info-text h3 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.contact-info-text p {
    color: var(--color-light-text);
    font-size: 15px;
    margin-bottom: 0;
}

/* ===== FAQ ===== */
.faq-item {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 24px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background var(--transition);
}

.faq-question:hover {
    background: var(--color-primary-bg);
}

.faq-question svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    color: var(--color-accent);
}

.faq-question.open svg {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 24px 20px;
    display: none;
    color: var(--color-light-text);
    line-height: 1.8;
}

.faq-answer.open {
    display: block;
}

/* ===== SERVICE AREAS LIST ===== */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.area-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 20px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    color: var(--color-text);
    font-weight: 500;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.area-link:hover {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-sm);
    color: var(--color-accent);
}

/* ===== FEATURES LIST ===== */
.features-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
}

.features-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
}

/* ===== CONTENT SECTIONS ===== */
.content-section {
    margin-bottom: 3rem;
}

.content-section h2 {
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-secondary-bg);
}

.content-section ul,
.content-section ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.content-section li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.neighborhoods-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 8px;
    list-style: none;
    padding: 0;
}

.neighborhoods-list li {
    padding: 8px 16px;
    background: var(--color-secondary-bg);
    border-radius: 6px;
    font-size: 14px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-form {
        margin-left: 0;
        width: 100%;
        max-width: 480px;
    }

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

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

    h1 { font-size: 2.2rem; }
    .hero-content h1 { font-size: 2.4rem; }
}

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

    .mobile-menu-toggle {
        display: block;
    }

    .mobile-nav-overlay,
    .mobile-nav {
        display: block;
    }

    .header-top .container {
        justify-content: center;
        flex-wrap: wrap;
        gap: 16px;
    }

    .hero {
        min-height: 500px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .section {
        padding: 50px 0;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

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

    .sticky-quote-btn {
        bottom: 16px;
        right: 50%;
        transform: translateX(50%);
    }

    .sticky-quote-btn:hover {
        transform: translateX(50%) translateY(-2px);
    }

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

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

    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }

    .feedback-form-container {
        padding: 24px 16px;
    }
}

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
