/* ===== ELITE WALLPAPER INSTALLATION PROS - MAIN STYLESHEET ===== */
/* Color Palette:
   Primary BG: #2A1F2D (deep plum)
   Secondary BG: #3A2B3F (smoked aubergine)
   Light sections: #F4F0EB (warm porcelain)
   Text on dark: #FAF7F2 (soft ivory)
   Text on light: #2E262D (dark espresso)
   Accent: #C1977B (muted rose gold)
*/

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    color: #2E262D;
    background-color: #F4F0EB;
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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

ul, ol {
    list-style: none;
}

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

/* ===== HEADER ===== */
.site-header {
    background: #2A1F2D;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.header-top {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 8px 20px;
    background: #1E151F;
    gap: 20px;
    font-size: 0.85rem;
}

.header-top a {
    color: #C1977B;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s;
}

.header-top a:hover {
    color: #FAF7F2;
}

.header-top .icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-text {
    font-family: 'Manrope', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: #FAF7F2;
    letter-spacing: -0.5px;
}

.logo-text span {
    color: #C1977B;
}

/* ===== NAVIGATION ===== */
.main-nav {
    display: flex;
    align-items: center;
    gap: 0;
}

.main-nav > ul {
    display: flex;
    align-items: center;
    gap: 0;
}

.main-nav > ul > li {
    position: relative;
}

.main-nav > ul > li > a {
    display: block;
    padding: 12px 16px;
    color: #FAF7F2;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s, background 0.3s;
    border-radius: 6px;
}

.main-nav > ul > li > a:hover {
    color: #C1977B;
    background: rgba(193, 151, 123, 0.1);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown > a::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    margin-left: 6px;
    vertical-align: middle;
    transition: transform 0.3s;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #2A1F2D;
    border: 1px solid rgba(193, 151, 123, 0.2);
    border-radius: 8px;
    min-width: 240px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
    z-index: 100;
}

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

.dropdown-menu li {
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.dropdown:hover .dropdown-menu li {
    opacity: 1;
    transform: translateX(0);
}

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

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #FAF7F2;
    font-size: 0.9rem;
    transition: background 0.3s, color 0.3s, padding-left 0.3s;
}

.dropdown-menu a:hover {
    background: rgba(193, 151, 123, 0.15);
    color: #C1977B;
    padding-left: 26px;
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    z-index: 1100;
}

.mobile-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: #FAF7F2;
    border-radius: 2px;
    transition: all 0.3s;
}

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

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

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

/* Mobile Menu */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 50%;
    height: 100vh;
    background: #2A1F2D;
    z-index: 1050;
    transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow-y: auto;
    padding: 80px 30px 30px;
    box-shadow: -5px 0 30px rgba(0,0,0,0.5);
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    background: rgba(193, 151, 123, 0.1);
    transition: background 0.3s;
}

.mobile-nav-close:hover {
    background: rgba(193, 151, 123, 0.3);
}

.mobile-nav-close svg {
    width: 20px;
    height: 20px;
    stroke: #FAF7F2;
    stroke-width: 2;
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-nav > ul > li {
    border-bottom: 1px solid rgba(193, 151, 123, 0.1);
}

.mobile-nav > ul > li > a {
    display: block;
    padding: 14px 0;
    color: #FAF7F2;
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
}

.mobile-nav > ul > li > a:hover {
    color: #C1977B;
}

.mobile-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 14px 0;
    color: #FAF7F2;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    background: none;
    border: none;
    text-align: left;
    font-family: inherit;
}

.mobile-dropdown-toggle::after {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: 2px solid #C1977B;
    border-bottom: 2px solid #C1977B;
    transform: rotate(45deg);
    transition: transform 0.3s;
}

.mobile-dropdown-toggle.active::after {
    transform: rotate(-135deg);
}

.mobile-submenu {
    display: none;
    padding-left: 15px;
    padding-bottom: 10px;
}

.mobile-submenu.active {
    display: block;
}

.mobile-submenu a {
    display: block;
    padding: 10px 0;
    color: #C1977B;
    font-size: 0.9rem;
    text-align: left;
}

.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1040;
    opacity: 0;
    transition: opacity 0.3s;
}

.mobile-overlay.active {
    display: block;
    opacity: 1;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(42, 31, 45, 0.85) 0%, rgba(58, 43, 63, 0.7) 50%, rgba(42, 31, 45, 0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.hero-text h1 {
    font-size: 3rem;
    color: #FAF7F2;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-text h1 span {
    color: #C1977B;
}

.hero-text p {
    color: rgba(250, 247, 242, 0.85);
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: #C1977B;
    color: #2A1F2D;
    font-weight: 600;
    border-radius: 10px;
    font-size: 1rem;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}

.hero-cta:hover {
    background: #AA8167;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(193, 151, 123, 0.4);
}

/* ===== FORM STYLES ===== */
.feedback-form-container {
    background: rgba(42, 31, 45, 0.95);
    border: 1px solid rgba(193, 151, 123, 0.3);
    border-radius: 16px;
    padding: 35px;
    backdrop-filter: blur(10px);
}

.feedback-form-container h3 {
    font-family: 'Manrope', sans-serif;
    color: #FAF7F2;
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
}

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

.contact-form .form-group {
    position: relative;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(250, 247, 242, 0.08);
    border: 1px solid rgba(193, 151, 123, 0.3);
    border-radius: 8px;
    color: #FAF7F2;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(250, 247, 242, 0.5);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #C1977B;
    box-shadow: 0 0 0 3px rgba(193, 151, 123, 0.15);
}

.contact-form textarea {
    min-height: 100px;
    resize: vertical;
    margin-bottom: 12px;
}

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

.submit-btn {
    display: inline-block;
    padding: 16px 40px;
    background: #C1977B;
    color: #2A1F2D;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
    font-family: 'Inter', sans-serif;
    width: 100%;
}

.submit-btn:hover {
    background: #AA8167;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(193, 151, 123, 0.4);
}

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

#form-success p {
    color: #C1977B;
    font-size: 1.1rem;
    font-weight: 500;
}

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

.section-dark {
    background: #2A1F2D;
    color: #FAF7F2;
}

.section-medium {
    background: #3A2B3F;
    color: #FAF7F2;
}

.section-light {
    background: #F4F0EB;
    color: #2E262D;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    font-size: 1.05rem;
    opacity: 0.8;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-card {
    background: rgba(250, 247, 242, 0.05);
    border: 1px solid rgba(193, 151, 123, 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card-content {
    padding: 25px;
}

.service-card-content h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #C1977B;
}

.service-card-content p {
    font-size: 0.95rem;
    opacity: 0.85;
    margin-bottom: 15px;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #C1977B;
    font-weight: 600;
    font-size: 0.9rem;
    transition: gap 0.3s;
}

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

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

.area-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    background: rgba(193, 151, 123, 0.08);
    border: 1px solid rgba(193, 151, 123, 0.2);
    border-radius: 8px;
    color: #FAF7F2;
    font-weight: 500;
    transition: all 0.3s;
}

.area-link:hover {
    background: rgba(193, 151, 123, 0.2);
    transform: translateX(5px);
    color: #C1977B;
}

.area-link .pin {
    color: #C1977B;
    font-size: 1.1rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
    text-align: center;
    padding: 60px 20px;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.05rem;
    margin-bottom: 30px;
    opacity: 0.85;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    background: #C1977B;
    color: #2A1F2D;
    font-weight: 700;
    border-radius: 10px;
    font-size: 1rem;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #AA8167;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(193, 151, 123, 0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    background: transparent;
    color: #C1977B;
    font-weight: 600;
    border: 2px solid #C1977B;
    border-radius: 10px;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #C1977B;
    color: #2A1F2D;
}

/* ===== MAP SECTION ===== */
.map-section {
    padding: 0;
}

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

/* ===== CONTENT PAGES ===== */
.page-hero {
    background: #2A1F2D;
    padding: 80px 20px 60px;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    color: #FAF7F2;
    margin-bottom: 15px;
}

.page-hero p {
    color: rgba(250, 247, 242, 0.8);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.content-section {
    padding: 60px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.content-section h2 {
    font-size: 1.8rem;
    color: #2A1F2D;
    margin: 40px 0 15px;
    padding-top: 20px;
}

.content-section h3 {
    font-size: 1.3rem;
    color: #3A2B3F;
    margin: 25px 0 10px;
}

.content-section p {
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.8;
}

.content-section ul,
.content-section ol {
    margin: 15px 0;
    padding-left: 25px;
}

.content-section ul {
    list-style: disc;
}

.content-section ol {
    list-style: decimal;
}

.content-section li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.content-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    margin: 30px 0;
}

.cta-block {
    background: #3A2B3F;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    margin: 40px 0;
}

.cta-block p {
    color: #FAF7F2;
    font-size: 1.05rem;
    margin-bottom: 15px;
}

.cta-block .btn-primary {
    display: inline-flex;
}

/* ===== FAQ ===== */
.faq-item {
    background: rgba(250, 247, 242, 0.05);
    border: 1px solid rgba(193, 151, 123, 0.2);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover {
    background: rgba(193, 151, 123, 0.1);
}

.faq-answer {
    padding: 0 25px 20px;
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.85;
}

/* ===== FOOTER ===== */
.site-footer {
    background: #1E151F;
    color: #FAF7F2;
    padding: 60px 20px 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(193, 151, 123, 0.15);
}

.footer-col h4 {
    font-family: 'Manrope', sans-serif;
    color: #C1977B;
    font-size: 1.1rem;
    margin-bottom: 18px;
}

.footer-col p,
.footer-col a {
    font-size: 0.9rem;
    color: rgba(250, 247, 242, 0.75);
    line-height: 1.8;
}

.footer-col a {
    display: block;
    padding: 4px 0;
    transition: color 0.3s, padding-left 0.3s;
}

.footer-col a:hover {
    color: #C1977B;
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    max-width: 1200px;
    margin: 0 auto;
    font-size: 0.85rem;
    opacity: 0.6;
}

/* ===== STICKY QUOTE BUTTON ===== */
.sticky-quote-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 16px 28px;
    background: #C1977B;
    color: #2A1F2D;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 5px 25px rgba(193, 151, 123, 0.5);
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
}

.sticky-quote-btn:hover {
    background: #AA8167;
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(193, 151, 123, 0.6);
}

/* ===== MODAL ===== */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

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

.modal-content {
    background: #2A1F2D;
    border-radius: 16px;
    padding: 40px;
    max-width: 550px;
    width: 100%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    background: rgba(193, 151, 123, 0.15);
    transition: background 0.3s;
    border: none;
}

.modal-close:hover {
    background: rgba(193, 151, 123, 0.3);
}

.modal-close svg {
    width: 18px;
    height: 18px;
    stroke: #FAF7F2;
    stroke-width: 2;
}

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

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(193, 151, 123, 0.05);
    border: 1px solid rgba(193, 151, 123, 0.15);
    border-radius: 10px;
    margin-bottom: 15px;
}

.contact-info-card .icon-wrap {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(193, 151, 123, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-card .icon-wrap svg {
    width: 20px;
    height: 20px;
    stroke: #C1977B;
    fill: none;
    stroke-width: 2;
}

.contact-info-card h4 {
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
    margin-bottom: 4px;
    color: #2A1F2D;
}

.contact-info-card p,
.contact-info-card a {
    font-size: 0.9rem;
    color: #3A2B3F;
}

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

.about-grid img {
    border-radius: 12px;
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

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

    .main-nav {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .mobile-nav {
        display: block;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 70vh;
    }

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

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

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

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

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

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

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

    .mobile-nav {
        width: 50%;
    }

    .header-top {
        justify-content: center;
        flex-wrap: wrap;
    }
}

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

    .feedback-form-container {
        padding: 25px 20px;
    }

    .modal-content {
        padding: 30px 20px;
    }

    .mobile-nav {
        width: 50%;
    }
}

/* ===== UTILITY ===== */
.text-accent {
    color: #C1977B;
}

.mb-0 { margin-bottom: 0; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }

/* Animation for error messages */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}
