/* =========================================================
   J Quality Cleaning — Quiet Luxury Design System
   ========================================================= */

/* ----- CSS Custom Properties ----- */
:root {
    /* Palette */
    --navy:        #1a2744;
    --navy-light:  #243352;
    --navy-dark:   #0f1a2e;
    --gold:        #c9a96e;
    --gold-light:  #ddc08a;
    --gold-dark:   #b08f52;
    --beige:       #f7f3ee;
    --beige-warm:  #f0ebe3;
    --cream:       #fafaf8;
    --white:       #ffffff;
    --charcoal:    #2d2d2d;
    --slate:       #5a6370;
    --mist:        #8a9099;
    --border:      #e5e0d8;

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Sizes */
    --container:   1200px;
    --header-h:    72px;
    --top-bar-h:   40px;

    /* Transitions */
    --ease:        cubic-bezier(0.4, 0, 0.2, 1);
    --duration:    0.35s;

    /* Shadows */
    --shadow-sm:   0 1px 3px rgba(26,39,68,0.06);
    --shadow-md:   0 4px 16px rgba(26,39,68,0.08);
    --shadow-lg:   0 8px 32px rgba(26,39,68,0.12);
    --shadow-xl:   0 16px 64px rgba(26,39,68,0.16);

    /* Border Radius */
    --radius-sm:   6px;
    --radius-md:   12px;
    --radius-lg:   20px;
    --radius-xl:   32px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-h) + var(--top-bar-h) + 20px);
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--charcoal);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--duration) var(--ease);
}

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

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

/* ----- Section Headers ----- */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 600;
    color: var(--navy);
    line-height: 1.25;
    margin-bottom: 16px;
}

.section-title-left {
    text-align: left;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--slate);
    line-height: 1.6;
}

/* =========================================================
   TOP BAR
   ========================================================= */
.top-bar {
    background: var(--navy);
    color: rgba(255,255,255,0.85);
    font-size: 0.8rem;
    height: var(--top-bar-h);
    display: flex;
    align-items: center;
    position: relative;
    z-index: 100;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-text {
    letter-spacing: 0.03em;
}

.top-bar-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--gold-light);
    font-weight: 500;
    transition: color var(--duration) var(--ease);
}

.top-bar-phone:hover {
    color: var(--white);
}

/* =========================================================
   HEADER / NAV
   ========================================================= */
.header {
    position: sticky;
    top: 0;
    z-index: 99;
    background: rgba(250, 250, 248, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    height: var(--header-h);
    display: flex;
    align-items: center;
    transition: box-shadow var(--duration) var(--ease), background var(--duration) var(--ease);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
    background: rgba(250, 250, 248, 0.97);
}

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

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: var(--navy);
    color: var(--gold);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.logo-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
}

.logo-sub {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-dark);
}

/* Nav links */
.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--charcoal);
    position: relative;
    padding: 4px 0;
    letter-spacing: 0.01em;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width var(--duration) var(--ease);
}

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

.nav-link:hover {
    color: var(--navy);
}

.nav-cta {
    background: var(--navy);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: all var(--duration) var(--ease);
}

.nav-cta::after { display: none; }

.nav-cta:hover {
    background: var(--navy-light);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* Mobile menu button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: all var(--duration) var(--ease);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* =========================================================
   HERO SECTION
   ========================================================= */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(15,26,46,0.82) 0%,
        rgba(26,39,68,0.72) 40%,
        rgba(26,39,68,0.45) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    padding: 60px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 169, 110, 0.15);
    border: 1px solid rgba(201, 169, 110, 0.35);
    padding: 8px 18px;
    border-radius: var(--radius-xl);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--gold-light);
    margin-bottom: 28px;
    backdrop-filter: blur(8px);
    animation: fadeInUp 0.8s var(--ease) both;
}

.hero-headline {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5.5vw, 3.8rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s var(--ease) 0.15s both;
}

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

.hero-sub {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: rgba(255,255,255,0.82);
    line-height: 1.7;
    margin-bottom: 12px;
    max-width: 580px;
    animation: fadeInUp 0.8s var(--ease) 0.3s both;
}

.hero-desire {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--gold-light);
    margin-bottom: 36px;
    animation: fadeInUp 0.8s var(--ease) 0.45s both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s var(--ease) 0.6s both;
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: bounceDown 2s infinite;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: all var(--duration) var(--ease);
    white-space: nowrap;
    cursor: pointer;
    border: none;
    line-height: 1.4;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy-dark);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201,169,110,0.35);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.35);
}

.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.08);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
}

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

/* =========================================================
   TRUST STRIP
   ========================================================= */
.trust-strip {
    padding: 72px 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

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

.trust-item {
    text-align: center;
    padding: 28px 20px;
    border-radius: var(--radius-md);
    transition: all var(--duration) var(--ease);
}

.trust-item:hover {
    background: var(--beige);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.trust-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--beige), var(--beige-warm));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    transition: all var(--duration) var(--ease);
}

.trust-item:hover .trust-icon {
    background: var(--navy);
    color: var(--gold);
}

.trust-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
}

.trust-text {
    font-size: 0.88rem;
    color: var(--slate);
    line-height: 1.6;
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials {
    padding: 96px 0;
    background: var(--beige);
}

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

.testimonial-card {
    background: var(--white);
    padding: 36px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    transition: all var(--duration) var(--ease);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 16px;
    right: 24px;
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.2;
    line-height: 1;
}

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

.testimonial-stars {
    color: var(--gold);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testimonial-quote {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--charcoal);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    background: var(--navy);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
}

.testimonial-name {
    display: block;
    font-size: 0.9rem;
    color: var(--navy);
}

.testimonial-location {
    font-size: 0.78rem;
    color: var(--mist);
}

/* =========================================================
   SERVICES
   ========================================================= */
.services {
    padding: 96px 0;
    background: var(--cream);
}

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

.service-card {
    display: grid;
    grid-template-rows: 260px 1fr;
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all var(--duration) var(--ease);
}

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

.service-card-wide {
    grid-column: 1 / -1;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
}

.service-image {
    position: relative;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(26,39,68,0.15));
}

.service-content {
    padding: 32px;
}

.service-number {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: 0.05em;
}

.service-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 12px;
}

.service-desc {
    font-size: 0.92rem;
    color: var(--slate);
    line-height: 1.65;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin-bottom: 24px;
}

.service-features li {
    position: relative;
    padding-left: 22px;
    font-size: 0.88rem;
    color: var(--charcoal);
    margin-bottom: 8px;
    line-height: 1.5;
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--navy);
    transition: all var(--duration) var(--ease);
}

.service-link:hover {
    color: var(--gold-dark);
    gap: 12px;
}

/* =========================================================
   ABOUT
   ========================================================= */
.about {
    padding: 96px 0;
    background: var(--white);
}

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

.about-image {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius-md);
}

.about-image-accent {
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 120px;
    height: 120px;
    border: 3px solid var(--gold);
    border-radius: var(--radius-md);
    z-index: -1;
}

.about-text {
    font-size: 0.95rem;
    color: var(--slate);
    line-height: 1.75;
    margin-bottom: 16px;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--navy);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--mist);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 500;
}

/* =========================================================
   SPECIAL OFFER
   ========================================================= */
.offer {
    padding: 96px 0;
    background: var(--navy);
}

.offer-card {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    background: linear-gradient(135deg, var(--navy-light), var(--navy));
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(201,169,110,0.2);
    position: relative;
}

.offer-badge {
    position: absolute;
    top: 32px;
    left: 32px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: var(--navy-dark);
    padding: 8px 18px;
    border-radius: var(--radius-xl);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    z-index: 2;
}

.offer-content {
    padding: 80px 48px 48px;
    z-index: 1;
}

.offer-title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.25;
}

.offer-text {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 28px;
}

.offer-text strong {
    color: var(--gold-light);
}

.offer-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.offer-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
}

.offer-detail svg {
    color: var(--gold);
    flex-shrink: 0;
}

.offer-visual {
    position: relative;
    overflow: hidden;
}

.offer-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.offer-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--navy-light), transparent 50%);
}

/* =========================================================
   AREAS (SEO)
   ========================================================= */
.areas {
    padding: 80px 0;
    background: var(--beige);
}

.areas-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 28px;
}

.area-tag {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 10px 22px;
    border-radius: var(--radius-xl);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--navy);
    transition: all var(--duration) var(--ease);
    cursor: default;
}

.area-tag:hover {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.areas-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--slate);
}

.areas-note a {
    color: var(--gold-dark);
    font-weight: 600;
    border-bottom: 1px solid var(--gold);
    transition: all var(--duration) var(--ease);
}

.areas-note a:hover {
    color: var(--navy);
    border-color: var(--navy);
}

/* =========================================================
   CONTACT / LEAD FORM
   ========================================================= */
.contact {
    padding: 96px 0;
    background: var(--cream);
}

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

.contact-text {
    font-size: 1rem;
    color: var(--slate);
    line-height: 1.7;
    margin-bottom: 32px;
}

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

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border-radius: var(--radius-md);
    transition: all var(--duration) var(--ease);
}

.contact-method:hover {
    background: var(--beige);
}

.contact-method-icon {
    width: 52px;
    height: 52px;
    background: var(--navy);
    color: var(--gold);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-method strong {
    display: block;
    font-size: 0.88rem;
    color: var(--navy);
    margin-bottom: 2px;
}

.contact-method span {
    font-size: 0.88rem;
    color: var(--slate);
}

/* Form */
.contact-form-wrapper {
    position: relative;
}

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

.form-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: 4px;
}

.form-subtitle {
    color: var(--mist);
    font-size: 0.88rem;
    margin-bottom: 28px;
}

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

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
    letter-spacing: 0.02em;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--charcoal);
    background: var(--cream);
    transition: all var(--duration) var(--ease);
    outline: none;
    -webkit-appearance: none;
}

.form-group input::placeholder {
    color: var(--mist);
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(201,169,110,0.12);
}

.form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235a6370' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 42px;
}

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

.form-privacy {
    text-align: center;
    font-size: 0.78rem;
    color: var(--mist);
    margin-top: 14px;
}

/* Success state */
.form-success {
    background: var(--white);
    padding: 60px 40px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.success-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    background: rgba(201,169,110,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
}

.success-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--navy);
    margin-bottom: 12px;
}

.success-text {
    color: var(--slate);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.form-success .btn-outline {
    color: var(--navy);
    border-color: var(--border);
}

.form-success .btn-outline:hover {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
    background: var(--navy-dark);
    padding: 72px 0 0;
    color: rgba(255,255,255,0.75);
}

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

.logo-footer .logo-icon {
    background: rgba(201,169,110,0.15);
}

.logo-footer .logo-name {
    color: var(--white);
}

.footer-tagline {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    margin-top: 16px;
    margin-bottom: 20px;
}

.footer-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-size: 1rem;
    font-weight: 600;
    transition: color var(--duration) var(--ease);
}

.footer-phone:hover {
    color: var(--gold-light);
}

.footer-links h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links a {
    display: block;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 10px;
    transition: all var(--duration) var(--ease);
}

.footer-links a:hover {
    color: var(--gold);
    transform: translateX(4px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    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(--navy);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--duration) var(--ease);
    z-index: 50;
}

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

.back-to-top:hover {
    background: var(--gold);
    color: var(--navy-dark);
    transform: translateY(-3px);
}

/* =========================================================
   ANIMATIONS
   ========================================================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Intersection Observer animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================================
   RESPONSIVE — Tablet
   ========================================================= */
@media (max-width: 1024px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }

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

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

    .about-image {
        max-width: 540px;
    }

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

    .offer-visual {
        height: 300px;
    }

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

/* =========================================================
   RESPONSIVE — Mobile
   ========================================================= */
@media (max-width: 768px) {
    :root {
        --header-h: 64px;
    }

    .top-bar-text {
        display: none;
    }
    
    .top-bar-inner {
        justify-content: center;
    }

    /* Mobile nav */
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85vw;
        max-width: 360px;
        height: 100vh;
        background: var(--cream);
        flex-direction: column;
        padding: 80px 32px 40px;
        gap: 0;
        box-shadow: var(--shadow-xl);
        transition: right var(--duration) var(--ease);
        z-index: 200;
        align-items: stretch;
    }

    .nav.open {
        right: 0;
    }

    .nav-link {
        padding: 16px 0;
        font-size: 1rem;
        border-bottom: 1px solid var(--border);
    }

    .nav-link::after { display: none; }

    .nav-cta {
        text-align: center;
        margin-top: 20px;
        padding: 14px 24px;
    }

    .mobile-menu-btn {
        display: flex;
        z-index: 201;
    }

    /* Mobile overlay */
    .nav-overlay {
        position: fixed;
        inset: 0;
        background: rgba(15,26,46,0.5);
        z-index: 199;
        opacity: 0;
        visibility: hidden;
        transition: all var(--duration) var(--ease);
    }

    .nav-overlay.visible {
        opacity: 1;
        visibility: visible;
    }

    /* Hero */
    .hero {
        min-height: 85vh;
    }

    .hero-content {
        padding: 40px 0;
    }

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

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

    .hero-scroll-indicator {
        display: none;
    }

    /* Trust */
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .trust-item {
        display: flex;
        text-align: left;
        gap: 16px;
        padding: 20px;
    }

    .trust-icon {
        margin: 0;
        flex-shrink: 0;
        width: 52px;
        height: 52px;
    }

    /* Services */
    .service-card {
        grid-template-rows: 200px 1fr;
    }

    .service-card-wide {
        grid-template-columns: 1fr;
        grid-template-rows: 200px 1fr;
    }

    /* Offer */
    .offer-content {
        padding: 60px 24px 36px;
    }

    .offer-visual {
        height: 240px;
    }

    /* Form */
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

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

    /* About stats */
    .about-stats {
        gap: 24px;
    }

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

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

    /* Back to top */
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
    }
}

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

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

    .offer-title {
        font-size: 1.4rem;
    }

    .about-stats {
        flex-direction: column;
        gap: 16px;
    }

    .stat {
        flex-direction: row;
        align-items: baseline;
        gap: 8px;
    }
}
