﻿:root {
    --primary: #8B6914;
    --primary-dark: #6B5310;
    --accent: #D4A84B;
    --dark: #2C2C2C;
    --darker: #1A1A1A;
    --bg: #FAFAF8;
    --bg-warm: #F5F3EF;
    --text: #333333;
    --text-light: #666666;
    --white: #FFFFFF;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --transition: cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans SC', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Noto Serif SC', serif;
    font-weight: 600;
    line-height: 1.3;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

/* 导航栏 */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s var(--transition);
}

    .navbar.scrolled {
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(10px);
        box-shadow: var(--shadow);
        padding: 15px 0;
    }

    .navbar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--white);
    transition: color 0.3s;
}

.navbar.scrolled .logo {
    color: var(--dark);
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .logo-icon svg {
        width: 28px;
        height: 28px;
        stroke: white;
    }

.logo-text {
    font-family: 'Noto Serif SC', serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

    .nav-links a {
        color: var(--white);
        text-decoration: none;
        font-size: 0.95rem;
        font-weight: 500;
        position: relative;
        padding: 5px 0;
        transition: color 0.3s;
    }

.navbar.scrolled .nav-links a {
    color: var(--dark);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--primary);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 4px;
    transition: all 0.3s !important;
}

    .nav-cta:hover {
        background: var(--primary-dark);
        transform: translateY(-2px);
    }

    .nav-cta::after {
        display: none !important;
    }

/* 移动端菜单 */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
}

    .menu-toggle span {
        width: 28px;
        height: 2px;
        background: var(--white);
        transition: all 0.3s;
    }

.navbar.scrolled .menu-toggle span {
    background: var(--dark);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--white);
    z-index: 2000;
    transition: right 0.4s var(--transition);
    padding: 80px 40px 40px;
    box-shadow: var(--shadow-lg);
}

    .mobile-menu.active {
        right: 0;
    }

.mobile-menu-close {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 40px;
    height: 40px;
    border: none;
    background: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

    .mobile-menu-links a {
        color: var(--dark);
        text-decoration: none;
        font-size: 1.1rem;
        font-weight: 500;
    }

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

/* Hero 区域 */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(26,26,26,0.85), rgba(44,44,44,0.75)), url('img/photo-1618221195710-dd6b41faaea6.jpg') center/cover;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(ellipse at 70% 50%, rgba(139,105,20,0.15), transparent 60%);
    }

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    color: var(--accent);
    font-size: 0.9rem;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s var(--transition) 0.3s forwards;
}

    .hero-badge svg {
        width: 18px;
        height: 18px;
    }

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--white);
    margin-bottom: 25px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s var(--transition) 0.5s forwards;
}

    .hero h1 span {
        color: var(--accent);
    }

.hero p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 40px;
    max-width: 550px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s var(--transition) 0.7s forwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s var(--transition) 0.9s forwards;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.3s var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(139,105,20,0.3);
}

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 30px rgba(139,105,20,0.4);
    }

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.4);
}

    .btn-secondary:hover {
        border-color: var(--accent);
        color: var(--accent);
    }

.btn svg {
    width: 20px;
    height: 20px;
}

/* 装饰元素 */
.hero-decoration {
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    opacity: 0;
    animation: floatIn 1.2s var(--transition) 1s forwards;
}

.deco-circle {
    position: absolute;
    border: 1px solid rgba(212,168,75,0.3);
    border-radius: 50%;
    animation: rotate 30s linear infinite;
}

    .deco-circle:nth-child(1) {
        width: 100%;
        height: 100%;
        animation-direction: reverse;
    }

    .deco-circle:nth-child(2) {
        width: 80%;
        height: 80%;
        top: 10%;
        left: 10%;
        animation-duration: 25s;
    }

    .deco-circle:nth-child(3) {
        width: 60%;
        height: 60%;
        top: 20%;
        left: 20%;
        animation-duration: 20s;
    }

.deco-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .deco-icon svg {
        width: 50px;
        height: 50px;
        stroke: white;
    }

/* 滚动指示器 */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    animation: bounce 2s infinite;
}

    .scroll-indicator svg {
        width: 24px;
        height: 24px;
        stroke: currentColor;
    }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatIn {
    to {
        opacity: 0.6;
    }
}

@keyframes rotate {
    to {
        transform: rotate(360deg);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* 通用区块样式 */
.section {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
}

.section-label {
    display: inline-block;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--dark);
    margin-bottom: 20px;
}

.section-desc {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* 服务优势 */
.advantages {
    background: var(--bg-warm);
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.advantage-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.4s var(--transition);
}

    .advantage-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-lg);
    }

.advantage-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, rgba(139,105,20,0.1), rgba(212,168,75,0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.advantage-card:hover .advantage-icon {
    background: linear-gradient(135deg, var(--primary), var(--accent));
}

.advantage-icon svg {
    width: 36px;
    height: 36px;
    stroke: var(--primary);
    transition: stroke 0.3s;
}

.advantage-card:hover .advantage-icon svg {
    stroke: var(--white);
}

.advantage-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.advantage-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* 精选案例 */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.case-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/5;
    cursor: pointer;
}

    .case-card:first-child {
        grid-row: span 2;
        aspect-ratio: auto;
    }

    .case-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s var(--transition);
    }

    .case-card:hover img {
        transform: scale(1.1);
    }

.case-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,26,26,0.9), transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.4s;
}

.case-card:hover .case-overlay {
    opacity: 1;
}

.case-tag {
    display: inline-block;
    background: var(--accent);
    color: var(--dark);
    padding: 4px 12px;
    border-radius: 2px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 10px;
    width: fit-content;
}

.case-overlay h3 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.case-overlay p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

/* 关于我们 */
.about {
    background: var(--bg-warm);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

    .about-image img {
        width: 100%;
        border-radius: 8px;
        box-shadow: var(--shadow-lg);
    }

    .about-image::before {
        content: '';
        position: absolute;
        top: -30px;
        left: -30px;
        width: 100%;
        height: 100%;
        border: 3px solid var(--accent);
        border-radius: 8px;
        z-index: -1;
    }

.about-stats {
    position: absolute;
    bottom: -40px;
    right: -40px;
    background: var(--primary);
    padding: 30px 40px;
    border-radius: 8px;
    display: flex;
    gap: 40px;
}

.stat-item {
    text-align: center;
    color: var(--white);
}

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 600;
    display: block;
}

.stat-label {
    font-size: 0.85rem;
    opacity: 0.8;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--dark);
}

    .about-content h2 span {
        color: var(--primary);
    }

.about-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 35px 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

    .about-feature svg {
        width: 24px;
        height: 24px;
        stroke: var(--accent);
        flex-shrink: 0;
    }

    .about-feature span {
        font-weight: 500;
        color: var(--dark);
    }

/* 服务流程 */
.process {
    background: var(--dark);
    color: var(--white);
}

    .process .section-label {
        color: var(--accent);
    }

    .process .section-title {
        color: var(--white);
    }

    .process .section-desc {
        color: rgba(255,255,255,0.7);
    }

.process-timeline {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    position: relative;
}

    .process-timeline::before {
        content: '';
        position: absolute;
        top: 45px;
        left: 8%;
        right: 8%;
        height: 2px;
        background: rgba(255,255,255,0.2);
    }

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: rgba(255,255,255,0.05);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: all 0.3s;
}

.process-step:hover .step-number {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1);
}

.step-number span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--accent);
}

.process-step:hover .step-number span {
    color: var(--white);
}

.process-step h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--white);
}

.process-step p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

/* 客户评价 */
.testimonials {
    background: var(--bg-warm);
}

.testimonial-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial-quote {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    opacity: 0.1;
}

    .testimonial-quote svg {
        width: 100%;
        height: 100%;
        fill: var(--primary);
    }

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

    .testimonial-stars svg {
        width: 18px;
        height: 18px;
        fill: var(--accent);
    }

.testimonial-text {
    color: var(--text);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h5 {
    font-family: 'Noto Sans SC', sans-serif;
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 4px;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* 预约表单 */
.contact {
    background: linear-gradient(135deg, var(--dark), #2a2a2a);
    color: var(--white);
}

.contact-wrapper {
    display: grid;
    gap: 80px;
    align-items: start;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.contact-info > p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .contact-icon svg {
        width: 24px;
        height: 24px;
        stroke: var(--accent);
    }

.contact-item h4 {
    font-family: 'Noto Sans SC', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
    margin-bottom: 5px;
}

.contact-item p {
    font-size: 1.1rem;
    color: var(--white);
}

.contact-form {
    background: rgba(255,255,255,0.05);
    padding: 50px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.form-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-align: center;
}

.form-group {
    margin-bottom: 25px;
}

    .form-group label {
        display: block;
        font-size: 0.9rem;
        color: rgba(255,255,255,0.8);
        margin-bottom: 8px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        width: 100%;
        padding: 14px 18px;
        background: rgba(255,255,255,0.08);
        border: 1px solid rgba(255,255,255,0.15);
        border-radius: 6px;
        color: var(--white);
        font-size: 1rem;
        font-family: inherit;
        transition: all 0.3s;
    }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(255,255,255,0.4);
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--accent);
            background: rgba(255,255,255,0.12);
        }

        .form-group select option {
            background: var(--dark);
            color: var(--white);
        }

    .form-group textarea {
        min-height: 120px;
        resize: vertical;
    }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-submit {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border: none;
    border-radius: 6px;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

    .form-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 30px rgba(139,105,20,0.4);
    }

.form-success {
    display: none;
    text-align: center;
    padding: 40px;
}

    .form-success svg {
        width: 80px;
        height: 80px;
        stroke: var(--accent);
        margin-bottom: 20px;
    }

    .form-success h3 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .form-success p {
        color: rgba(255,255,255,0.7);
    }

/* 页脚 */
.footer {
    background: var(--darker);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

    .footer-social a {
        width: 45px;
        height: 45px;
        background: rgba(255,255,255,0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s;
    }

        .footer-social a:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }

    .footer-social svg {
        width: 22px;
        height: 22px;
        stroke: var(--white);
    }

.footer-column h4 {
    font-family: 'Noto Sans SC', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--white);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

    .footer-links a {
        color: rgba(255,255,255,0.6);
        text-decoration: none;
        font-size: 0.95rem;
        transition: color 0.3s;
    }

        .footer-links a:hover {
            color: var(--accent);
        }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .footer-bottom p {
        color: rgba(255,255,255,0.5);
        font-size: 0.9rem;
    }

    .footer-bottom a {
        color: var(--accent);
        text-decoration: none;
    }

/* 动画 */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--transition);
}

    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }

/* 响应式 */
@media (max-width: 1200px) {
    .advantage-grid,
    .cases-grid,
    .testimonial-slider {
        grid-template-columns: repeat(2, 1fr);
    }

    .case-card:first-child {
        grid-row: span 1;
        aspect-ratio: 4/5;
    }

    .process-timeline {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

        .process-timeline::before {
            display: none;
        }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero {
        min-height: 100svh;
    }

    .hero-content {
        text-align: center;
        padding: 0 20px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-decoration {
        display: none;
    }

    .section {
        padding: 80px 0;
    }

    .advantage-grid,
    .cases-grid,
    .testimonial-slider {
        grid-template-columns: 1fr;
    }

    .about-wrapper,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-image {
        order: -1;
    }

    .about-stats {
        position: relative;
        bottom: 0;
        right: 0;
        margin-top: 30px;
        justify-content: center;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .process-timeline {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}
