/* ============================================
   AMAC Enterprises, Inc. — Stylesheet
   Fresh, airy, terracotta + sand palette
   ============================================ */

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

:root {
    --terracotta-50: #FDF0EC;
    --terracotta-100: #F9DED4;
    --terracotta-200: #F5C4B0;
    --terracotta-300: #EC9E82;
    --terracotta-400: #E07A5F;
    --terracotta-500: #C4725A;
    --terracotta-600: #B5604A;
    --terracotta-700: #9A4D3C;
    --sand-50: #FDFCFA;
    --sand-100: #F9F5EE;
    --sand-200: #F2EBDC;
    --sand-300: #E8DCC4;
    --sand-400: #D9C8A8;
    --cream: #FFFBF5;
    --text-dark: #3D2B1F;
    --text-medium: #6B5344;
    --text-light: #9A8272;
    --white: #FFFFFF;
    --shadow-sm: 0 1px 3px rgba(61, 43, 31, 0.06), 0 1px 2px rgba(61, 43, 31, 0.04);
    --shadow-md: 0 4px 16px rgba(61, 43, 31, 0.08), 0 2px 6px rgba(61, 43, 31, 0.04);
    --shadow-lg: 0 12px 40px rgba(61, 43, 31, 0.10), 0 4px 12px rgba(61, 43, 31, 0.05);
    --shadow-xl: 0 20px 60px rgba(61, 43, 31, 0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text-dark);
    background-color: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* --- Container --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Section Labels & Titles --- */
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--terracotta-500);
    background: var(--terracotta-50);
    border: 1px solid var(--terracotta-100);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.section-title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.section-title em {
    font-style: italic;
    color: var(--terracotta-500);
}

.section-subtitle {
    font-size: 1.0625rem;
    color: var(--text-medium);
    line-height: 1.7;
    max-width: 560px;
}

.section-header-center {
    text-align: center;
}

.section-header-center .section-subtitle {
    margin: 0 auto;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.9375rem;
    padding: 14px 28px;
    border-radius: 100px;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--terracotta-500);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(196, 114, 90, 0.3);
}

.btn-primary:hover {
    background: var(--terracotta-600);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(196, 114, 90, 0.35);
}

.btn-ghost {
    background: var(--white);
    color: var(--text-dark);
    border: 1.5px solid var(--sand-300);
}

.btn-ghost:hover {
    border-color: var(--terracotta-300);
    color: var(--terracotta-600);
    transform: translateY(-2px);
}

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

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 251, 245, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(232, 220, 196, 0.5);
    transition: all var(--transition);
}

.nav.scrolled {
    background: rgba(253, 251, 245, 0.95);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.25rem;
    color: var(--text-dark);
}

.nav-logo-mark {
    width: 36px;
    height: 36px;
    background: var(--terracotta-500);
    color: var(--white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'DM Serif Display', Georgia, serif;
}

.nav-logo-text {
    letter-spacing: -0.01em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-medium);
    padding: 8px 16px;
    border-radius: 100px;
    transition: all var(--transition);
}

.nav-link:hover {
    color: var(--terracotta-600);
    background: var(--terracotta-50);
}

.nav-link-cta {
    background: var(--terracotta-500);
    color: var(--white) !important;
    margin-left: 8px;
}

.nav-link-cta:hover {
    background: var(--terracotta-600);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
}

.nav-toggle-line {
    width: 100%;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all var(--transition);
}

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

.nav-toggle.active .nav-toggle-line:nth-child(2) {
    opacity: 0;
}

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

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 24px 60px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(165deg, var(--cream) 0%, var(--sand-50) 40%, var(--terracotta-50) 100%);
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}

.hero-shape-1 {
    width: 600px;
    height: 600px;
    background: var(--terracotta-100);
    top: -200px;
    right: -100px;
}

.hero-shape-2 {
    width: 400px;
    height: 400px;
    background: var(--sand-200);
    bottom: -100px;
    left: -100px;
}

.hero-shape-3 {
    width: 250px;
    height: 250px;
    background: var(--terracotta-200);
    top: 40%;
    left: 35%;
    opacity: 0.3;
}

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

.hero-content {
    max-width: 540px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--terracotta-600);
    background: var(--white);
    border: 1px solid var(--terracotta-100);
    padding: 8px 16px;
    border-radius: 100px;
    margin-bottom: 28px;
    box-shadow: var(--shadow-sm);
}

.hero-headline {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.hero-headline em {
    font-style: italic;
    color: var(--terracotta-500);
}

.hero-subheadline {
    font-size: 1.125rem;
    color: var(--text-medium);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-cards {
    position: relative;
    min-height: 580px;
}

.hero-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 10px 16px;
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-dark);
    box-shadow: var(--shadow-md);
}

/* Floating Stat Cards */
.float-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 18px 22px;
    box-shadow: var(--shadow-lg);
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

.float-card-icon {
    width: 40px;
    height: 40px;
    background: var(--terracotta-50);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terracotta-500);
    margin-bottom: 10px;
}

.float-card-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 4px;
}

.float-card-value {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.125rem;
    color: var(--text-dark);
}

.float-card-1 {
    top: 20px;
    right: -30px;
    animation-delay: 0s;
}

.float-card-2 {
    bottom: 120px;
    left: -40px;
    animation-delay: -2s;
}

.float-card-3 {
    bottom: 20px;
    right: -20px;
    animation-delay: -4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}

.hero-scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    color: var(--text-light);
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* --- Services Section --- */
.services {
    padding: 100px 0;
    background: var(--white);
}

.services .container {
    max-width: 1200px;
}

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

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

.service-card {
    position: relative;
    background: var(--cream);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
    border: 1px solid transparent;
}

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

.service-card-accent {
    height: 4px;
    background: linear-gradient(90deg, var(--terracotta-400), var(--terracotta-200));
}

.service-card-body {
    padding: 32px 28px;
}

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--terracotta-50);
    border: 1px solid var(--terracotta-100);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terracotta-500);
    margin-bottom: 20px;
    transition: all var(--transition);
}

.service-card:hover .service-icon {
    background: var(--terracotta-500);
    color: var(--white);
    border-color: var(--terracotta-500);
}

.service-title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.375rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.service-description {
    font-size: 0.9375rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--text-medium);
}

.service-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--terracotta-400);
    border-radius: 50%;
    flex-shrink: 0;
}

/* --- About Section --- */
.about {
    padding: 100px 0;
    background: var(--cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-wrap {
    position: relative;
}

.about-image-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
}

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

.about-image-accent {
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--terracotta-100);
    border-radius: var(--radius-xl);
    bottom: -30px;
    right: -30px;
    z-index: 0;
}

.about-stat-float {
    position: absolute;
    bottom: 40px;
    right: -20px;
    background: var(--white);
    padding: 20px 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    z-index: 2;
    text-align: center;
}

.about-stat-number {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.5rem;
    color: var(--terracotta-500);
}

.about-stat-text {
    font-size: 0.8125rem;
    color: var(--text-light);
    font-weight: 500;
}

.about-content {
    max-width: 480px;
}

.about-body {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}

.about-value {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.about-value-icon {
    width: 40px;
    height: 40px;
    background: var(--terracotta-50);
    border: 1px solid var(--terracotta-100);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terracotta-500);
    flex-shrink: 0;
}

.about-value strong {
    display: block;
    font-size: 0.9375rem;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.about-value span {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* --- Process Section --- */
.process {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--sand-50) 0%, var(--cream) 100%);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 44px;
    left: calc(16.66% + 16px);
    right: calc(16.66% + 16px);
    height: 2px;
    background: linear-gradient(90deg, var(--terracotta-200), var(--terracotta-400), var(--terracotta-200));
    z-index: 0;
}

.process-step {
    position: relative;
    z-index: 1;
    text-align: center;
}

.process-step-number {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 3rem;
    font-weight: 400;
    color: var(--terracotta-200);
    line-height: 1;
    margin-bottom: 16px;
}

.process-step-line {
    width: 48px;
    height: 2px;
    background: var(--terracotta-300);
    margin: 0 auto 20px;
}

.process-step-icon {
    width: 64px;
    height: 64px;
    background: var(--white);
    border: 2px solid var(--terracotta-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terracotta-500);
    margin: 0 auto 20px;
    transition: all var(--transition);
}

.process-step:hover .process-step-icon {
    background: var(--terracotta-500);
    border-color: var(--terracotta-500);
    color: var(--white);
    transform: scale(1.1);
}

.process-step-title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.process-step-desc {
    font-size: 0.9375rem;
    color: var(--text-medium);
    line-height: 1.7;
    max-width: 280px;
    margin: 0 auto;
}

/* --- Trust Section --- */
.trust {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--terracotta-500) 0%, var(--terracotta-700) 100%);
    color: var(--white);
}

.trust .container {
    max-width: 900px;
}

.trust-content {
    text-align: center;
}

.trust-quote-wrap {
    position: relative;
    margin-bottom: 48px;
}

.trust-quote-mark {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--terracotta-300);
}

.trust-quote {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-style: italic;
    line-height: 1.5;
    color: var(--white);
    max-width: 720px;
    margin: 0 auto;
}

.trust-divider {
    width: 60px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    margin: 0 auto 48px;
    border-radius: 2px;
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.trust-stat {
    text-align: center;
}

.trust-stat-number {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 4px;
}

.trust-stat-label {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

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

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

.contact-intro {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.75;
    margin-bottom: 36px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-detail-icon {
    width: 44px;
    height: 44px;
    background: var(--terracotta-50);
    border: 1px solid var(--terracotta-100);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terracotta-500);
    flex-shrink: 0;
}

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

.contact-detail span,
.contact-detail a {
    font-size: 0.9375rem;
    color: var(--text-medium);
    transition: color var(--transition);
}

.contact-detail a:hover {
    color: var(--terracotta-500);
}

/* Contact Form */
.contact-form-wrap {
    background: var(--cream);
    border-radius: var(--radius-xl);
    padding: 40px;
    border: 1px solid var(--sand-200);
}

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

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

.form-group-full {
    grid-column: 1 / -1;
}

.form-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 0.02em;
}

.form-input {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    color: var(--text-dark);
    background: var(--white);
    border: 1.5px solid var(--sand-300);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    transition: all var(--transition);
    outline: none;
    width: 100%;
}

.form-input:focus {
    border-color: var(--terracotta-400);
    box-shadow: 0 0 0 3px rgba(196, 114, 90, 0.1);
}

.form-input::placeholder {
    color: var(--text-light);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M3 4.5L6 7.5L9 4.5' stroke='%239A8272' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

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

/* Form Success */
.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;
}

.form-success-icon {
    width: 64px;
    height: 64px;
    background: var(--terracotta-50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terracotta-500);
}

.form-success-title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.5rem;
    color: var(--text-dark);
}

.form-success-text {
    font-size: 0.9375rem;
    color: var(--text-medium);
    line-height: 1.7;
    max-width: 320px;
}

/* --- Location Section --- */
.location {
    padding: 80px 0;
    background: var(--cream);
}

.location-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--sand-200);
}

.location-content {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location-desc {
    font-size: 0.9375rem;
    color: var(--text-medium);
    line-height: 1.75;
    margin-bottom: 28px;
}

.location-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.location-map {
    min-height: 400px;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

/* --- Footer --- */
.footer {
    padding: 64px 0 0;
    background: var(--text-dark);
    color: rgba(255, 255, 255, 0.7);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.125rem;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-logo-mark {
    width: 32px;
    height: 32px;
    background: var(--terracotta-500);
    color: var(--white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    font-family: 'DM Serif Display', Georgia, serif;
}

.footer-tagline {
    font-size: 0.875rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer-nav-title,
.footer-contact strong,
.footer-hours strong {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-link {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition);
}

.footer-link:hover {
    color: var(--terracotta-300);
}

.footer-contact-text,
.footer-hours-text {
    font-size: 0.875rem;
    line-height: 1.8;
}

.footer-contact a,
.footer-hours a {
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition);
}

.footer-contact a:hover,
.footer-hours a:hover {
    color: var(--terracotta-300);
}

.footer-hours-note {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copyright,
.footer-legal {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
}

/* --- Back to Top --- */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: var(--terracotta-500);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: all var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--terracotta-600);
    transform: translateY(-4px);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-cards {
        max-width: 480px;
        margin: 0 auto;
        min-height: 480px;
    }

    .hero-content {
        text-align: center;
        margin: 0 auto;
    }

    .hero-subheadline {
        margin: 0 auto 36px;
    }

    .hero-actions {
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .process-steps::before {
        display: none;
    }

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

    .location-card {
        grid-template-columns: 1fr;
    }

    .location-map {
        min-height: 300px;
    }

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

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(253, 251, 245, 0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 24px;
        gap: 8px;
        border-bottom: 1px solid var(--sand-200);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition);
    }

    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-link-cta {
        margin-left: 0;
        text-align: center;
        justify-content: center;
    }

    .hero {
        padding: 100px 24px 80px;
        min-height: auto;
    }

    .hero-cards {
        min-height: 400px;
    }

    .float-card-1 {
        right: 0;
        top: 10px;
    }

    .float-card-2 {
        left: 0;
        bottom: 80px;
    }

    .float-card-3 {
        right: 0;
        bottom: 10px;
    }

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

    .process-steps {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .trust-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .contact-form-wrap {
        padding: 28px;
    }

    .location-content {
        padding: 32px;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 1.75rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

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

    .hero-cards {
        min-height: 360px;
    }

    .float-card {
        padding: 14px 16px;
    }

    .float-card-value {
        font-size: 1rem;
    }

    .float-card-1 { right: 0; }
    .float-card-2 { left: 0; }
    .float-card-3 { right: 0; }

    .about-image-main img {
        height: 320px;
    }

    .about-stat-float {
        right: 10px;
        bottom: 20px;
    }

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

/* --- Animations --- */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
