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

:root {
    --gold: #b8964c;
    --gold-light: #d4b87a;
    --gold-dark: #9a7a3a;
    --gold-glow: rgba(184, 150, 76, 0.15);
    --cream: #faf8f4;
    --beige: #f3ede4;
    --beige-dark: #ebe3d7;
    --white: #ffffff;
    --off-white: #fdfcfa;
    --text-dark: #1a1714;
    --text-heading: #2a2520;
    --text-medium: #5c554b;
    --text-light: #8f8578;
    --text-muted: #b0a89e;
    --border: #e8e1d6;
    --border-light: #f0ebe3;
    --shadow-xs: 0 1px 3px rgba(26, 23, 20, 0.04);
    --shadow-sm: 0 2px 12px rgba(26, 23, 20, 0.06);
    --shadow-md: 0 8px 30px rgba(26, 23, 20, 0.08);
    --shadow-lg: 0 16px 50px rgba(26, 23, 20, 0.1);
    --shadow-xl: 0 24px 70px rgba(26, 23, 20, 0.12);
    --shadow-gold: 0 8px 30px rgba(184, 150, 76, 0.25);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 40px;
    --space-xl: 64px;
    --space-2xl: 100px;
    --space-3xl: 140px;
}

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

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: -0.01em;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

ul {
    list-style: none;
}

/* ===== TYPOGRAPHY HIERARCHY ===== */
h1, h2, h3, h4, h5 {
    font-family: var(--font-serif);
    color: var(--text-heading);
    letter-spacing: -0.02em;
    line-height: 1.15;
}

h1 {
    font-size: clamp(2.8rem, 5vw, 4rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 600;
}

h3 {
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1.3;
}

h4 {
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.3;
}

p {
    color: var(--text-medium);
    line-height: 1.75;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 0.92rem;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    font-family: var(--font-sans);
    letter-spacing: 0.01em;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--white);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(184, 150, 76, 0.35);
}

.btn-secondary {
    background: var(--white);
    color: var(--text-dark);
    border: 1.5px solid var(--border);
    box-shadow: var(--shadow-xs);
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
    box-shadow: var(--shadow-sm);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 1.5px solid var(--gold);
    padding: 12px 24px;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--white);
    box-shadow: var(--shadow-gold);
    transform: translateY(-1px);
}

.btn-sm {
    padding: 12px 24px;
    font-size: 0.85rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
    padding: 18px 32px;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
    border-bottom-color: var(--border-light);
    box-shadow: var(--shadow-sm);
}

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

.logo {
    display: inline-flex;
    align-items: center;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo:hover {
    transform: scale(1.03);
}

.logo-img {
    height: 110px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(184, 150, 76, 0.2));
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo:hover .logo-img {
    filter: drop-shadow(0 4px 14px rgba(184, 150, 76, 0.35));
}

.logo-footer {
    height: 140px;
    margin-bottom: 16px;
}

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

.nav-list {
    display: flex;
    gap: 40px;
}

.header-badge {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 0.02em;
    padding: 6px 14px;
    background: var(--cream);
    border: 1px solid var(--border-light);
    border-radius: 50px;
}

.nav-list a {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-medium);
    letter-spacing: 0.01em;
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-list a:hover {
    color: var(--text-dark);
}

.nav-list a:hover::after {
    width: 100%;
}

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

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ===== HERO ===== */
.hero {
    padding: 160px 0 var(--space-2xl);
    background: linear-gradient(160deg, var(--cream) 0%, var(--off-white) 50%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
    pointer-events: none;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-medium);
    margin-bottom: 32px;
    box-shadow: var(--shadow-xs);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.badge svg {
    color: var(--gold);
}

.hero h1 {
    margin-bottom: 28px;
}

.hero h1 .gold {
    color: var(--gold);
    display: block;
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 44px;
    max-width: 500px;
    letter-spacing: 0;
}

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

.trust-indicators {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    padding-top: 32px;
    border-top: 1px solid var(--border-light);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 0.01em;
}

.trust-item svg {
    color: var(--gold);
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.floating-card {
    position: absolute;
    bottom: -24px;
    left: -24px;
    background: var(--white);
    padding: 18px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--border-light);
}

.floating-card .stars {
    color: var(--gold);
    font-size: 1rem;
    letter-spacing: 2px;
}

.floating-card span {
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* ===== SECTION SHARED ===== */
.section-header {
    text-align: center;
    margin-bottom: 72px;
}

.section-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-header h2 {
    margin-bottom: 18px;
}

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

/* ===== SERVICES ===== */
.services {
    padding: var(--space-3xl) 0;
    background: var(--white);
}

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

.service-card {
    background: var(--off-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 40px 28px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 50%;
    color: var(--gold);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-xs);
}

.service-card h3 {
    margin-bottom: 14px;
}

.service-card p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 28px;
}

/* ===== WHY US ===== */
.why-us {
    padding: var(--space-3xl) 0;
    background: var(--beige);
    position: relative;
}

.why-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top left, var(--gold-glow), transparent 50%);
    pointer-events: none;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    position: relative;
}

.why-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 28px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-light);
}

.why-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--beige) 0%, var(--beige-dark) 100%);
    border-radius: 50%;
    color: var(--gold);
}

.why-card h4 {
    margin-bottom: 12px;
}

.why-card p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ===== OUR WORK ===== */
.work {
    padding: var(--space-3xl) 0;
    background: var(--white);
}

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

.work-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.work-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.work-item:hover img {
    transform: scale(1.06);
}

.work-label {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(26, 23, 20, 0.85);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(4px);
}

.work-label.after {
    background: rgba(184, 150, 76, 0.9);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: var(--space-3xl) 0;
    background: var(--beige);
}

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

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
}

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

.testimonial-card .stars {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.testimonial-card p {
    font-size: 0.94rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 28px;
    flex-grow: 1;
}

.testimonial-author {
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}

.testimonial-author strong {
    display: block;
    font-size: 0.92rem;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

/* ===== CONTACT ===== */
.contact {
    padding: var(--space-3xl) 0;
    background: var(--off-white);
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 36px;
    padding-top: 16px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.contact-item svg {
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item strong {
    display: block;
    font-size: 0.92rem;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.contact-item a,
.contact-item span {
    font-size: 0.9rem;
    color: var(--text-light);
}

.contact-item a:hover {
    color: var(--gold);
}

.contact-form {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-sm);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 0.84rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-dark);
    letter-spacing: 0.01em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.92rem;
    font-family: var(--font-sans);
    background: var(--off-white);
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px var(--gold-glow);
}

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

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

/* ===== FOOTER ===== */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 80px 0 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 4px;
    display: inline-block;
}

.footer-brand p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    max-width: 320px;
}

.footer-links h5 {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
}

/* ===== QUOTE MODAL ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 23, 20, 0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px;
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    transform: translateY(20px) scale(0.97);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.modal-overlay.active .modal {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 24px;
    width: 36px;
    height: 36px;
    border: none;
    background: var(--cream);
    border-radius: 50%;
    font-size: 1.4rem;
    color: var(--text-medium);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--beige);
    color: var(--text-dark);
}

.modal-header {
    margin-bottom: 32px;
}

.modal-header h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.modal-header p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.modal-form .form-group {
    margin-bottom: 20px;
}

.modal-form .form-group label {
    display: block;
    font-size: 0.84rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-dark);
    letter-spacing: 0.01em;
}

.modal-form .form-group input,
.modal-form .form-group select,
.modal-form .form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.92rem;
    font-family: var(--font-sans);
    background: var(--off-white);
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.modal-form .form-group input:focus,
.modal-form .form-group select:focus,
.modal-form .form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px var(--gold-glow);
}

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

@media (max-width: 480px) {
    .modal {
        padding: 28px;
        max-height: 85vh;
    }

    .modal-header h3 {
        font-size: 1.3rem;
    }
}

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

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

    .hero-inner {
        gap: 48px;
    }

    .contact-inner {
        gap: 48px;
    }
}

@media (max-width: 768px) {
    :root {
        --space-3xl: 100px;
    }

    .container {
        padding: 0 24px;
    }

    .header-inner {
        height: auto;
        padding: 4px 0;
    }

    .header-inner .btn-sm {
        display: none;
    }

    .header-badge {
        display: none;
    }

    .logo-img {
        height: 70px;
    }

    .nav {
        position: fixed;
        top: 78px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border-light);
        padding: 32px;
        transform: translateY(-110%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-list {
        flex-direction: column;
        gap: 20px;
    }

    .nav-list a {
        font-size: 1rem;
    }

    .mobile-toggle {
        display: flex;
    }

    .logo-footer {
        height: 110px;
    }

    .hero {
        padding: 110px 0 60px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-content {
        text-align: left;
    }

    .hero-image img {
        height: 340px;
    }

    .floating-card {
        bottom: -16px;
        left: 16px;
    }

    .services-grid,
    .why-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .work-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-form {
        padding: 32px;
    }

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

    .section-header {
        margin-bottom: 48px;
    }
}

@media (max-width: 480px) {
    :root {
        --space-3xl: 80px;
    }

    .hero {
        padding: 110px 0 60px;
    }

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

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

    .trust-indicators {
        flex-direction: column;
        gap: 14px;
    }

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

    .work-item img {
        height: 200px;
    }

    .contact-form {
        padding: 24px;
    }

    .testimonial-card {
        padding: 28px;
    }

    .service-card {
        padding: 32px 24px;
    }
}

/* ===== SCROLL ANIMATIONS ===== */
.animate-ready {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.service-card:nth-child(2).animate-ready,
.why-card:nth-child(2).animate-ready,
.work-item:nth-child(2).animate-ready,
.testimonial-card:nth-child(2).animate-ready {
    transition-delay: 0.1s;
}

.service-card:nth-child(3).animate-ready,
.why-card:nth-child(3).animate-ready,
.work-item:nth-child(3).animate-ready,
.testimonial-card:nth-child(3).animate-ready {
    transition-delay: 0.2s;
}

.service-card:nth-child(4).animate-ready,
.why-card:nth-child(4).animate-ready,
.work-item:nth-child(4).animate-ready,
.testimonial-card:nth-child(4).animate-ready {
    transition-delay: 0.3s;
}

.testimonial-card:nth-child(5).animate-ready,
.work-item:nth-child(5).animate-ready {
    transition-delay: 0.4s;
}

.work-item:nth-child(6).animate-ready {
    transition-delay: 0.5s;
}
