/* ===================================
   EyeCatcher Signs — Custom Styles
   Palette: Burgundy + Blush
   =================================== */

/* --- CSS Custom Properties --- */
:root {
    --burgundy-900: #4A0E1C;
    --burgundy-800: #5C1026;
    --burgundy-700: #6E1430;
    --burgundy-600: #80183A;
    --burgundy-500: #941C45;
    --burgundy-400: #A82050;
    --burgundy-300: #C43A6A;
    --burgundy-200: #E06490;
    --burgundy-100: #F5A0B8;
    --burgundy-50:  #FDD4E0;

    --blush-50:  #FFF5F7;
    --blush-100: #FFE8ED;
    --blush-200: #FFD0DA;
    --blush-300: #FFA8C0;
    --blush-400: #FF7DA0;
    --blush-500: #FF5080;

    --neutral-950: #0F0F14;
    --neutral-900: #1A1A24;
    --neutral-800: #2A2A38;
    --neutral-700: #3D3D50;
    --neutral-600: #55556A;
    --neutral-500: #6E6E82;
    --neutral-400: #8E8EA0;
    --neutral-300: #B0B0C0;
    --neutral-200: #D0D0DC;
    --neutral-100: #E8E8F0;
    --neutral-50:  #F5F5FA;
    --neutral-25:  #FAFAFC;
    --white:       #FFFFFF;

    --font-heading: 'Montserrat', sans-serif;
    --font-body:    'Open Sans', sans-serif;

    --shadow-sm:  0 1px 3px rgba(10, 10, 20, 0.08);
    --shadow-md:  0 4px 16px rgba(10, 10, 20, 0.10);
    --shadow-lg:  0 12px 40px rgba(10, 10, 20, 0.14);
    --shadow-xl:  0 24px 60px rgba(10, 10, 20, 0.18);

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

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

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

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

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

/* --- Scroll Reveal (progressive enhancement) --- */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--neutral-900);
}

.section-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--burgundy-600);
    background: var(--burgundy-50);
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(28px, 4vw, 48px);
    margin-bottom: 16px;
    color: var(--neutral-900);
}

.section-subtitle {
    font-size: clamp(16px, 2vw, 18px);
    color: var(--neutral-500);
    max-width: 640px;
    line-height: 1.7;
}

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

.btn-primary {
    background: var(--burgundy-600);
    color: var(--white);
    border-color: var(--burgundy-600);
}
.btn-primary:hover {
    background: var(--burgundy-700);
    border-color: var(--burgundy-700);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(110, 20, 48, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--burgundy-600);
    border-color: var(--burgundy-600);
}
.btn-outline:hover {
    background: var(--burgundy-50);
    transform: translateY(-2px);
}

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

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

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

/* ===================================
   NAVBAR
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--neutral-100);
    transition: var(--transition);
}
.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    color: var(--neutral-900);
}
.logo .accent {
    color: var(--burgundy-600);
}
.logo-icon {
    color: var(--burgundy-600);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-links a {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--neutral-700);
    transition: var(--transition);
}
.nav-links a:hover {
    color: var(--burgundy-600);
}

.nav-cta {
    background: var(--burgundy-600) !important;
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
}
.nav-cta:hover {
    background: var(--burgundy-700) !important;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--neutral-800);
    border-radius: 2px;
    transition: var(--transition);
}
.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.open {
    transform: translateX(0);
}
.mobile-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--neutral-700);
    padding: 8px;
}
.mobile-menu ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.mobile-link {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--neutral-800);
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.mobile-link:hover {
    color: var(--burgundy-600);
    background: var(--burgundy-50);
}
.mobile-cta {
    margin-top: 16px;
    background: var(--burgundy-600);
    color: var(--white) !important;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
}

/* ===================================
   HERO
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(
        135deg,
        var(--burgundy-900) 0%,
        var(--burgundy-700) 25%,
        var(--burgundy-500) 50%,
        var(--blush-400) 75%,
        var(--blush-200) 100%
    );
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 80%, rgba(74, 14, 28, 0.6) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(255, 125, 160, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 120px 24px 80px;
    max-width: 860px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 28px;
    backdrop-filter: blur(8px);
}

.hero-title {
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.08;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    max-width: 620px;
    margin: 0 auto 40px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.hero-buttons .btn-outline {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.6);
}
.hero-buttons .btn-outline:hover {
    background: var(--white);
    color: var(--burgundy-700);
    border-color: var(--white);
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}
.stat {
    text-align: center;
}
.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 4px;
}
.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}
.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.25);
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.5);
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ===================================
   SERVICES
   =================================== */
.services {
    padding: 100px 0;
    background: var(--neutral-25);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}
.section-header .section-subtitle {
    margin: 0 auto;
}

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

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    border: 1px solid var(--neutral-100);
    transition: var(--transition);
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--burgundy-100);
}

.service-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--burgundy-50);
    border-radius: var(--radius-md);
    color: var(--burgundy-600);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--neutral-900);
}

.service-card p {
    font-size: 15px;
    color: var(--neutral-500);
    line-height: 1.7;
}

/* ===================================
   WORK / PORTFOLIO
   =================================== */
.work {
    padding: 100px 0;
    background: var(--white);
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: 20px;
    margin-top: 56px;
}

.work-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}
.work-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.work-item:hover img {
    transform: scale(1.05);
}

.work-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(74, 14, 28, 0.85) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.work-item:hover .work-overlay {
    opacity: 1;
}
.work-overlay span {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--burgundy-100);
    margin-bottom: 4px;
}
.work-overlay h4 {
    font-size: 20px;
    color: var(--white);
}

/* Grid placement */
.work-item--large {
    grid-column: span 7;
    min-height: 360px;
}
.work-item:not(.work-item--large):not(.work-item--tall) {
    grid-column: span 5;
    min-height: 260px;
}
.work-item--tall {
    grid-column: span 5;
    grid-row: span 2;
    min-height: 540px;
}

/* ===================================
   WHY US
   =================================== */
.why-us {
    padding: 100px 0;
    background: var(--neutral-25);
}

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

.why-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
}
.why-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-xl);
}

.why-image-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-lg);
}
.badge-number {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: var(--burgundy-600);
    line-height: 1;
}
.badge-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--neutral-700);
    line-height: 1.4;
}

.why-content .section-title {
    margin-bottom: 20px;
}
.why-text {
    font-size: 16px;
    color: var(--neutral-500);
    line-height: 1.8;
    margin-bottom: 36px;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.why-feature {
    display: flex;
    gap: 16px;
}
.why-feature-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--burgundy-50);
    border-radius: var(--radius-sm);
    color: var(--burgundy-600);
}
.why-feature h4 {
    font-size: 16px;
    margin-bottom: 4px;
    color: var(--neutral-900);
}
.why-feature p {
    font-size: 14px;
    color: var(--neutral-500);
    line-height: 1.65;
}

/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}
.cta-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        var(--burgundy-900) 0%,
        var(--burgundy-700) 50%,
        var(--burgundy-500) 100%
    );
}
.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}
.cta-title {
    font-size: clamp(28px, 4vw, 48px);
    color: var(--white);
    margin-bottom: 20px;
}
.cta-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 40px;
}
.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.cta-buttons .btn-primary {
    background: var(--white);
    color: var(--burgundy-700);
    border-color: var(--white);
}
.cta-buttons .btn-primary:hover {
    background: var(--blush-100);
    border-color: var(--blush-100);
}

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

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 56px;
    margin-top: 56px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--neutral-25);
    padding: 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--neutral-100);
}
.contact-card-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--burgundy-50);
    border-radius: var(--radius-sm);
    color: var(--burgundy-600);
}
.contact-card h4 {
    font-size: 15px;
    margin-bottom: 4px;
    color: var(--neutral-900);
}
.contact-card p {
    font-size: 14px;
    color: var(--neutral-500);
    line-height: 1.6;
}
.contact-card a {
    color: var(--burgundy-600);
    font-weight: 600;
    transition: var(--transition);
}
.contact-card a:hover {
    color: var(--burgundy-400);
}

.contact-hours {
    background: var(--burgundy-600);
    padding: 28px;
    border-radius: var(--radius-md);
    color: var(--white);
}
.contact-hours h4 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 16px;
}
.contact-hours ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.contact-hours li {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.contact-hours li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.contact-hours li span:first-child {
    font-weight: 600;
    color: var(--white);
}

/* Form */
.contact-form-wrapper {
    background: var(--neutral-25);
    border-radius: var(--radius-lg);
    padding: 36px;
    border: 1px solid var(--neutral-100);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: var(--neutral-700);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--neutral-900);
    background: var(--white);
    border: 1.5px solid var(--neutral-200);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    transition: var(--transition);
    outline: none;
    width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--burgundy-400);
    box-shadow: 0 0 0 3px rgba(148, 28, 69, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--neutral-400);
}

.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 48px 24px;
    gap: 16px;
}
.form-success.show {
    display: flex;
}
.success-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--burgundy-50);
    border-radius: 50%;
    color: var(--burgundy-600);
}
.form-success h3 {
    font-size: 24px;
    color: var(--neutral-900);
}
.form-success p {
    font-size: 15px;
    color: var(--neutral-500);
    max-width: 320px;
}

/* ===================================
   MAP
   =================================== */
.map-section {
    border-top: 1px solid var(--neutral-100);
}
.map-container {
    height: 350px;
    filter: grayscale(30%);
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--neutral-900);
    color: var(--neutral-300);
    padding: 72px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 56px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.75;
    color: var(--neutral-400);
    margin-top: 16px;
    max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-links a,
.footer-contact a {
    font-size: 14px;
    color: var(--neutral-400);
    transition: var(--transition);
}
.footer-links a:hover,
.footer-contact a:hover {
    color: var(--burgundy-300);
}
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--neutral-400);
}
.footer-contact li svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--burgundy-400);
}

.footer-bottom {
    border-top: 1px solid var(--neutral-800);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p {
    font-size: 13px;
    color: var(--neutral-500);
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .work-item--large {
        grid-column: span 12;
        min-height: 300px;
    }
    .work-item:not(.work-item--large):not(.work-item--tall) {
        grid-column: span 6;
        min-height: 240px;
    }
    .work-item--tall {
        grid-column: span 6;
        grid-row: span 1;
        min-height: 400px;
    }
    .why-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .why-image {
        max-width: 500px;
    }
    .contact-layout {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .mobile-toggle {
        display: flex;
    }
    .hero {
        min-height: 100svh;
    }
    .hero-content {
        padding: 100px 20px 80px;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .hero-stats {
        gap: 20px;
    }
    .stat-divider {
        display: none;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .work-grid {
        grid-template-columns: 1fr;
    }
    .work-item--large,
    .work-item:not(.work-item--large):not(.work-item--tall),
    .work-item--tall {
        grid-column: span 1;
        grid-row: span 1;
        min-height: 240px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    .hero-title {
        font-size: 32px;
    }
    .section-title {
        font-size: 28px;
    }
    .contact-form-wrapper {
        padding: 24px;
    }
}
