/* ═══════════════════════════════════════════════════════
   Carl Parsons Automotive — Brand Styles
   Palette: Plum (#6B2F5B) + Amber (#F5A623)
   Fonts: Outfit (headings) + Plus Jakarta Sans (body)
   ═══════════════════════════════════════════════════════ */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --plum: #6B2F5B;
    --plum-deep: #4A1E3F;
    --plum-light: #8B4078;
    --plum-pale: #F3E5F0;
    --amber: #F5A623;
    --amber-light: #FFD07B;
    --amber-dark: #D4891A;
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    --gray-50: #F8F7F9;
    --gray-100: #F0EEF2;
    --gray-200: #E2DFE6;
    --gray-400: #9893A0;
    --gray-600: #5C5666;
    --gray-800: #2A2433;
    --gray-900: #1A1420;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;
    --shadow-sm: 0 2px 8px rgba(107, 47, 91, 0.06);
    --shadow-md: 0 6px 24px rgba(107, 47, 91, 0.10);
    --shadow-lg: 0 12px 48px rgba(107, 47, 91, 0.14);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    color: var(--gray-800);
    background: var(--off-white);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    line-height: 1.15;
    color: var(--plum-deep);
}

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

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

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

.accent {
    color: var(--amber);
}

/* ── Background shapes ── */
.bg-shape {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.04;
}
.bg-shape.shape-1 {
    width: 700px;
    height: 700px;
    background: var(--plum);
    top: -200px;
    right: -200px;
}
.bg-shape.shape-2 {
    width: 500px;
    height: 500px;
    background: var(--amber);
    bottom: 20%;
    left: -150px;
}
.bg-shape.shape-3 {
    width: 300px;
    height: 300px;
    background: var(--plum-light);
    top: 50%;
    right: 5%;
}

/* ── Header ── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 250, 250, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--gray-100);
    transition: box-shadow var(--transition);
}
.site-header.scrolled {
    box-shadow: var(--shadow-md);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--plum-deep);
    line-height: 1.15;
}
.logo-sub {
    font-weight: 500;
    font-size: 0.85rem;
    color: var(--gray-600);
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
}
.nav-link {
    padding: 8px 16px;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--gray-600);
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
}
.nav-link:hover {
    color: var(--plum);
    background: var(--plum-pale);
}
.nav-cta {
    background: var(--plum);
    color: var(--white) !important;
    border-radius: var(--radius-sm);
    margin-left: 6px;
    transition: background var(--transition), transform var(--transition);
}
.nav-cta:hover {
    background: var(--plum-deep);
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}
.menu-toggle .bar {
    width: 24px;
    height: 2.5px;
    background: var(--plum-deep);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}
.menu-toggle[aria-expanded="true"] .bar:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] .bar:nth-child(2) {
    opacity: 0;
}
.menu-toggle[aria-expanded="true"] .bar:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* ── Hero ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--plum-pale) 0%, var(--off-white) 50%, #FFF8E8 100%);
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--amber);
    color: var(--plum-deep);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 24px;
    letter-spacing: 0.02em;
}

.hero-headline {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    color: var(--plum-deep);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}
.hero-headline .accent {
    color: var(--amber-dark);
    position: relative;
}
.hero-headline .accent::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--amber-light);
    border-radius: 3px;
    z-index: -1;
}

.hero-desc {
    font-size: 1.12rem;
    color: var(--gray-600);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 520px;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.btn:hover {
    transform: translateY(-2px);
}
.btn-primary {
    background: var(--plum);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(107, 47, 91, 0.3);
}
.btn-primary:hover {
    background: var(--plum-deep);
    box-shadow: 0 8px 28px rgba(107, 47, 91, 0.35);
}
.btn-secondary {
    background: var(--white);
    color: var(--plum);
    border: 2px solid var(--plum-pale);
}
.btn-secondary:hover {
    border-color: var(--plum);
    box-shadow: var(--shadow-sm);
}
.btn-light {
    background: var(--white);
    color: var(--plum);
    box-shadow: var(--shadow-md);
}
.btn-light:hover {
    box-shadow: var(--shadow-lg);
}
.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-light:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--white);
}
.btn-lg {
    padding: 17px 34px;
    font-size: 1.08rem;
}
.btn-full {
    width: 100%;
    justify-content: center;
}

/* Hero image area */
.hero-right {
    position: relative;
}

.hero-img-wrap {
    position: relative;
}

.hero-img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 5/4;
    background: var(--gray-200);
}
.hero-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Floating stat cards */
.float-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    box-shadow: var(--shadow-lg);
    z-index: 2;
    animation: float 4s ease-in-out infinite;
}
.float-card-1 {
    bottom: -20px;
    left: -30px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    animation-delay: 0s;
}
.float-card-num {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--amber-dark);
    line-height: 1;
}
.float-card-label {
    font-size: 0.78rem;
    color: var(--gray-600);
    font-weight: 600;
}
.float-card-2 {
    top: 30px;
    right: -20px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation-delay: 1s;
}
.float-card-2 span {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--plum-deep);
    line-height: 1.3;
}
.float-card-3 {
    bottom: 60px;
    right: -40px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation-delay: 2s;
}
.float-card-3 span {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
    color: var(--plum-deep);
}

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

/* Hero geometric accents */
.hero-geo {
    position: absolute;
    pointer-events: none;
}
.geo-1 {
    width: 120px;
    height: 120px;
    background: var(--amber);
    border-radius: var(--radius-lg);
    top: 10%;
    right: 3%;
    transform: rotate(25deg);
    opacity: 0.15;
}
.geo-2 {
    width: 60px;
    height: 60px;
    background: var(--plum);
    border-radius: 50%;
    bottom: 18%;
    left: 48%;
    opacity: 0.08;
}

/* ── Section shared ── */
section {
    position: relative;
    z-index: 1;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--amber-dark);
    margin-bottom: 14px;
}
.section-label::before {
    content: '';
    width: 28px;
    height: 3px;
    background: var(--amber);
    border-radius: 2px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.9rem);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-desc {
    font-size: 1.08rem;
    color: var(--gray-600);
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 48px;
}

/* ── Services ── */
.services {
    padding: 100px 0;
    background: var(--white);
}
.services .container { text-align: center; }
.services .section-desc { margin-left: auto; margin-right: auto; }

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

.service-card {
    background: var(--off-white);
    border: 1.5px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: left;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--plum), var(--amber));
    opacity: 0;
    transition: opacity var(--transition);
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--plum-pale);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--plum);
    margin-bottom: 20px;
    transition: background var(--transition), color var(--transition);
}
.service-card:hover .service-icon {
    background: var(--plum);
    color: var(--amber);
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--plum-deep);
}
.service-card p {
    font-size: 0.94rem;
    color: var(--gray-600);
    line-height: 1.65;
    margin-bottom: 18px;
}

.service-tag {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--amber-dark);
    background: rgba(245, 166, 35, 0.12);
    padding: 5px 12px;
    border-radius: 50px;
}

/* ── About ── */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--plum-deep) 0%, var(--plum) 100%);
    color: var(--white);
    overflow: hidden;
}
.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about .section-label { color: var(--amber); }
.about .section-label::before { background: var(--amber); }
.about .section-title { color: var(--white); }
.about .section-title .accent { color: var(--amber); }
.about-text {
    font-size: 1.02rem;
    color: rgba(255,255,255,0.78);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-values {
    margin-top: 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.value-item {
    display: flex;
    align-items: center;
    gap: 12px;
}
.value-check {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.value-item span {
    font-size: 0.92rem;
    font-weight: 500;
    color: rgba(255,255,255,0.88);
}

/* About image stack */
.about-visual {
    position: relative;
}
.about-img-stack {
    position: relative;
    height: 520px;
}
.about-img-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 72%;
    height: 85%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-img-1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-img-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 50%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--plum);
}
.about-img-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-accent-box {
    position: absolute;
    top: 50%;
    right: 15%;
    transform: translateY(-50%);
    background: var(--amber);
    color: var(--plum-deep);
    padding: 20px 28px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}
.accent-box-num {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.accent-box-year {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 2.6rem;
    font-weight: 900;
    line-height: 1;
}

.geo-dots {
    position: absolute;
    bottom: 40px;
    right: 40px;
    width: 80px;
    height: 80px;
    background-image: radial-gradient(circle, var(--amber) 1.5px, transparent 1.5px);
    background-size: 12px 12px;
    opacity: 0.3;
    pointer-events: none;
}

/* ── Why Us ── */
.why-us {
    padding: 100px 0;
    background: var(--gray-50);
}
.why-us-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 8px;
}
.why-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}
.why-num {
    font-family: 'Outfit', sans-serif;
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--amber);
    line-height: 1;
    flex-shrink: 0;
    opacity: 0.7;
}
.why-text h4 {
    font-size: 1.15rem;
    color: var(--plum-deep);
    margin-bottom: 6px;
}
.why-text p {
    font-size: 0.94rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.why-visual {
    position: relative;
}
.why-img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/5;
    background: var(--gray-200);
}
.why-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.why-stat-card {
    position: absolute;
    bottom: -24px;
    left: -24px;
    background: var(--amber);
    color: var(--plum-deep);
    padding: 24px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
}
.why-stat-num {
    font-family: 'Outfit', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.why-stat-year {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
}
.why-stat-label {
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 4px;
}

/* ── Reviews ── */
.reviews {
    padding: 100px 0;
    background: var(--white);
}
.reviews .container { text-align: center; }
.reviews .section-desc { margin-left: auto; margin-right: auto; }

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

.review-card {
    background: var(--off-white);
    border: 1.5px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    text-align: left;
    transition: transform var(--transition), box-shadow var(--transition);
}
.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.review-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 18px;
}

.review-text {
    font-size: 0.98rem;
    color: var(--gray-600);
    line-height: 1.75;
    margin-bottom: 22px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.review-avatar {
    width: 40px;
    height: 40px;
    background: var(--plum);
    color: var(--amber);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1rem;
}
.review-name {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--plum-deep);
}

/* ── CTA ── */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--plum-deep) 0%, var(--plum) 60%, var(--plum-light) 100%);
    overflow: hidden;
}
.cta-inner {
    position: relative;
    z-index: 1;
}
.cta-shape-1 {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--amber);
    border-radius: var(--radius-xl);
    top: -80px;
    right: -60px;
    transform: rotate(30deg);
    opacity: 0.1;
    pointer-events: none;
}
.cta-shape-2 {
    position: absolute;
    width: 180px;
    height: 180px;
    background: var(--amber-light);
    border-radius: 50%;
    bottom: -60px;
    left: 10%;
    opacity: 0.08;
    pointer-events: none;
}

.cta-content {
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}
.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}
.cta-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 36px;
    line-height: 1.7;
}
.cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

/* ── Contact ── */
.contact {
    padding: 100px 0 60px;
    background: var(--gray-50);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.contact-desc {
    font-size: 1.02rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: none;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--plum-pale);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-item strong {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--plum-deep);
    margin-bottom: 3px;
}
.contact-item span,
.contact-item a {
    font-size: 0.92rem;
    color: var(--gray-600);
    line-height: 1.6;
}
.contact-item a:hover {
    color: var(--plum);
    text-decoration: underline;
}

/* Contact form */
.contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1.5px solid var(--gray-100);
}
.contact-form h3 {
    font-size: 1.5rem;
    color: var(--plum-deep);
    margin-bottom: 6px;
}
.form-note {
    font-size: 0.9rem;
    color: var(--gray-400);
    margin-bottom: 28px;
}
.form-group {
    margin-bottom: 18px;
}
.form-group label {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--plum);
    margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--gray-800);
    background: var(--off-white);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--plum);
    box-shadow: 0 0 0 3px rgba(107, 47, 91, 0.1);
    background: var(--white);
}
.form-group textarea {
    resize: vertical;
    min-height: 100px;
}
.form-success {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding: 14px 18px;
    background: #F0FDF4;
    border: 1px solid #BBF7D0;
    border-radius: var(--radius-sm);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.92rem;
    color: #16A34A;
}

/* Map */
.map-wrap {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 4px solid var(--white);
}

/* ── Footer ── */
.footer {
    background: var(--gray-900);
    color: rgba(255,255,255,0.65);
    padding: 60px 0 0;
}
.footer-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--white);
    margin-bottom: 14px;
    line-height: 1.2;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-links a {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.6);
    transition: color var(--transition);
}
.footer-links a:hover {
    color: var(--amber);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-contact a {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.6);
    transition: color var(--transition);
}
.footer-contact a:hover {
    color: var(--amber);
}
.footer-contact span {
    font-size: 0.92rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 22px 0;
}
.footer-bottom p {
    text-align: center;
    font-size: 0.84rem;
    color: rgba(255,255,255,0.35);
}

/* ── Scroll reveal ── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .hero-inner {
        gap: 40px;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .reviews-grid .review-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        box-shadow: var(--shadow-lg);
        padding: 100px 32px 40px;
        transition: right var(--transition);
        z-index: 1000;
    }
    .nav.open {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    .nav-link {
        width: 100%;
        padding: 12px 16px;
        font-size: 1rem;
    }
    .nav-cta {
        margin-left: 0;
        margin-top: 12px;
        text-align: center;
        width: 100%;
        justify-content: center;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .hero-right {
        order: -1;
    }
    .hero-img-main {
        aspect-ratio: 4/3;
    }
    .float-card-1 { left: 10px; bottom: -10px; }
    .float-card-2 { right: 10px; top: 10px; }
    .float-card-3 { right: 0; bottom: 40px; }

    .about-inner,
    .why-us-inner,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-visual { order: -1; }
    .about-img-stack { height: 360px; }
    .about-values { grid-template-columns: 1fr; }

    .services-grid {
        grid-template-columns: 1fr;
    }
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    .reviews-grid .review-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }

    .why-stat-card {
        left: 10px;
        bottom: -16px;
    }

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

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

@media (max-width: 480px) {
    .container {
        padding: 0 18px;
    }
    .hero-headline {
        font-size: 2rem;
    }
    .hero-actions {
        flex-direction: column;
    }
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    .cta-actions .btn {
        width: 100%;
        justify-content: center;
    }
}
