/* =========================================================================
   Hausfix — Landing Page Styles
   Theme: Gold (#C9A84C / #B8952A) + Off-White (#F7F5F0) + Dark (#1A1A1A)
   ========================================================================= */

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

:root {
    --gold:        #C9A84C;
    --gold-dark:   #B8952A;
    --gold-light:  #E8D5A0;
    --gold-bg:     #FDF8EE;
    --white:       #FFFFFF;
    --off-white:   #F7F5F0;
    --bg-light:    #F5F3EE;
    --dark:        #1A1A1A;
    --dark-2:      #2C2C2C;
    --text:        #333333;
    --text-muted:  #666666;
    --text-light:  #999999;
    --border:      #E8E4DA;
    --shadow-sm:   0 2px 8px rgba(0,0,0,0.08);
    --shadow-md:   0 4px 20px rgba(0,0,0,0.10);
    --shadow-lg:   0 8px 40px rgba(0,0,0,0.12);
    --radius-sm:   8px;
    --radius-md:   12px;
    --radius-lg:   20px;
    --radius-xl:   32px;
    --transition:  0.25s ease;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── FA icon base ──────────────────────────────────────────────────────── */
.service-card__icon i  { font-size: 1.5rem; line-height: 1; }
.step-card__icon       { font-size: 1.2rem; flex-shrink: 0; }
.logbook__feature i    { font-size: 1rem; color: var(--gold); flex-shrink: 0; }
.logbook__badge i      { margin-right: 4px; }
.hero__badge-float i   { font-size: 1.5rem; color: var(--gold); }
.testimonial-card__quote i { font-size: 0.7rem; }
.store-btn__icon       { font-size: 1.6rem !important; }
.footer__contact-item i { font-size: 0.85rem; color: rgba(255,255,255,0.55); flex-shrink: 0; margin-top: 2px; }
.footer__social i      { font-size: 0.8rem; }

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


/* ── Buttons ──────────────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}
#bookNowBtn {
    background-color: transparent;
   color: var(--white);
	border-color: #fff;
}
.btn-primary:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(201, 168, 76, 0.40);
}

.btn-outline {
    background: transparent;
    color: var(--dark);
    border-color: var(--border);
}
.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

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

/* ── Navbar ───────────────────────────────────────────────────────────── */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 0 0;
}

.navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.navbar__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.5px;
}
.navbar__logo img {
    height: 36px;
    width: auto;
}
.navbar__logo span { color: var(--gold); }

.navbar__links {
    display: flex;
    align-items: center;
    gap: 36px;
}
.navbar__links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    transition: color var(--transition);
    position: relative;
}
.navbar__links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width var(--transition);
}
.navbar__links a:hover { color: var(--gold); }
.navbar__links a:hover::after { width: 100%; }

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

.navbar__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
}
.navbar__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: all var(--transition);
}

/* ── Hero ─────────────────────────────────────────────────────────────── */
.hero {
    background: var(--off-white);
    padding: 80px 0 0;
    overflow: hidden;
    position: relative;
}

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

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1.5px solid var(--gold-light);
    color: var(--gold-dark);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 20px;
}
.hero__badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
}

/* Heading: "Book Trusted" and "Anytime, Anywhere" stay at base size */
.hero__heading {
    font-size: clamp(1.8rem, 3.2vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
    letter-spacing: -0.5px;
    margin-bottom: 18px;
}
/* "Home Services" — dominant gold line, much larger */
.hero__heading--gold {
    display: block;
    font-size: clamp(2.6rem, 5.5vw, 4.2rem);
    font-weight: 800;
    color: var(--gold);
    letter-spacing: -2px;
    line-height: 1.05;
}

.hero__sub {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 460px;
    margin-bottom: 24px;
    line-height: 1.7;
}

.hero__meta {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}
.hero__meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 500;
}
.hero__meta-item svg { color: var(--gold); }

.hero__stars { display: inline-flex; gap: 2px; }
.hero__stars i { font-size: 0.78rem; color: var(--gold); }
.hero__meta-item--stars { gap: 8px; }
.hero__meta-item--stars strong { color: var(--dark); font-size: 0.88rem; }

/* Image column */
.hero__image-wrap {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}
.hero__image-wrap img {
    width: 100%;
    max-width: 540px;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 1;
}

/* 50K+ badge — top right, vertical layout */
.hero__badge-float {
    position: absolute;
    top: 28px;
    right: 0;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 14px 20px;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    z-index: 2;
    animation: float 3s ease-in-out infinite;
}
.hero__badge-float__top {
    display: flex;
    align-items: center;
    gap: 8px;
}
.hero__badge-float__top strong {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.5px;
}
.hero__badge-float__top i {
    font-size: 1.2rem;
    color: var(--gold);
}
.hero__badge-float > span {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Wave decorators */
.hero__waves {
    position: absolute;
    z-index: 0;
    pointer-events: none;
}
.hero__waves--left  { left: 0;   top: 50%; transform: translateY(-50%); }
.hero__waves--right { right: -10px; top: 42%; transform: translateY(-50%); }

/* Sparkle decorators */
.hero__sparkle {
    position: absolute;
    color: var(--gold);
    pointer-events: none;
    user-select: none;
    z-index: 0;
    animation: sparklePulse 2.5s ease-in-out infinite;
}
.hero__sparkle--1 { font-size: 1.6rem; bottom: 35%; left: 12%;  animation-delay: 0s; }
.hero__sparkle--2 { font-size: 1rem;   top: 20%;    right: 28%; animation-delay: 0.6s; }
.hero__sparkle--3 { font-size: 1.3rem; bottom: 20%; right: 15%; animation-delay: 1.2s; }

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

/* ── Section Shared ───────────────────────────────────────────────────── */
.section { padding: 80px 0; }
.section--alt { background: var(--off-white); }
.section--dark { background: var(--dark); color: var(--white); }

.section__header {
    text-align: center;
    margin-bottom: 52px;
}
.section__title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.5px;
    margin-bottom: 10px;
}
.section--dark .section__title { color: var(--white); }
.section__sub {
    font-size: 0.95rem;
    color: var(--text-muted);
}
.section--dark .section__sub { color: rgba(255,255,255,0.6); }

/* ── Services Slider ──────────────────────────────────────────────────── */
.services-slider-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.services-slider {
    display: flex;
    gap: 20px;
    overflow: hidden;
    scroll-behavior: smooth;
    flex: 1;
    /* hide scrollbar but keep scrolling functional */
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.services-slider::-webkit-scrollbar { display: none; }

.services-slider .service-card {
    flex: 0 0 calc(20% - 16px);
    min-width: 160px;
}

.services-slider__btn {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--text-muted);
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
    z-index: 2;
}
.services-slider__btn:hover {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--white);
}
.services-slider__btn:disabled {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
}

.service-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px 20px 24px;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold-bg), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}
.service-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.service-card:hover::before { opacity: 1; }
.service-card.active {
    border-color: var(--gold);
    background: var(--gold-bg);
}

.service-card__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: var(--off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all var(--transition);
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.service-card:hover .service-card__icon,
.service-card.active .service-card__icon {
    background: var(--gold);
    color: var(--white);
}

/* Category image fills the circle */
.service-card__icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
/* Prevent gold tint on hover when showing an image */
.service-card:hover .service-card__icon:has(img),
.service-card.active .service-card__icon:has(img) {
    background: transparent;
}

.service-card__name {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--dark);
    position: relative;
    z-index: 1;
    margin-bottom: 4px;
}
.service-card__desc {
    font-size: 0.76rem;
    color: var(--text-muted);
    position: relative;
    z-index: 1;
}

/* ── How It Works ─────────────────────────────────────────────────────── */
.how-it-works__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.step-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    transition: all var(--transition);
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
}
.step-card:hover {
    border-color: var(--gold-light);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.step-card__num {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    font-weight: 800;
    margin-top: 2px;
}

.step-card__body {
    flex: 1;
    min-width: 0;
}

.step-card__icon-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.step-card__icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.step-card__title {
    font-size: 0.93rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
}
.step-card__desc {
    font-size: 0.81rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ── Logbook Section ──────────────────────────────────────────────────── */
.logbook {
    background: #fff;
}

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

.logbook__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: center;
}

.logbook__image-wrap {
    position: relative;
    background: var(--off-white);
    border-radius: var(--radius-xl);
}

/* Sparkle decorators */
.logbook__sparkle {
    position: absolute;
    color: var(--gold);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    animation: sparklePulse 2.5s ease-in-out infinite;
}
.logbook__sparkle--tl { top: 20%;  left: -28px; font-size: 4.4rem; animation-delay: 0s; }
.logbook__sparkle--tr { top: 12%;  right: 18px; font-size: 4.4rem;   animation-delay: 0.4s; }
.logbook__sparkle--br { bottom: 18%; right: -24px; font-size:4.4rem; animation-delay: 0.8s; }
.logbook__sparkle--bl { bottom: 28%; left: 20px; font-size: 4.4rem; animation-delay: 1.2s; }

@keyframes sparklePulse {
    0%, 100% { opacity: 0.5; transform: scale(1) rotate(0deg); }
    50%       { opacity: 1;   transform: scale(1.2) rotate(15deg); }
}
.logbook__image-wrap img {
    border-radius: var(--radius-xl);
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
}
.logbook__badge {
	position: absolute;
	top: 24px;
	left: -51px;
	background: #fff;
	color: var(--gold);
	font-size: 0.78rem;
	font-weight: 700;
	padding: 8px 16px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	gap: 6px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.logbook__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -1px;
    margin-bottom: 16px;
    line-height: 1.15;
}
.logbook__sub {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 36px;
    line-height: 1.7;
    max-width: 420px;
}

/* 2-column grid → 3rd tab naturally wraps to new row */
.logbook__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.logbook__feature {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--dark);
    transition: all var(--transition);
    cursor: default;
    white-space: nowrap;
}
.logbook__feature:hover {
    border-color: var(--gold);
    color: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* ── CTA Banner ───────────────────────────────────────────────────────── */
.cta-banner {
    background: #2C2A14;
    position: relative;
    overflow: hidden;
    margin: 0 70px;
    border-radius: 31px;
}

.cta-banner__inner {
    display: grid;
    grid-template-columns: 1fr 320px;
    align-items: stretch;
    min-height: 200px;
}

.cta-banner__content {
    padding: 22px 48px;
    position: relative;
    z-index: 1;
}

.cta-banner__img-wrap {
    border-radius: 60px 0 0 60px;
    overflow: hidden;
    height: 100%;
    min-height: 200px;
}

.cta-banner__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.cta-banner__title {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
    letter-spacing: -0.5px;
    line-height: 1.3;
}
.cta-banner__sub {
    color: rgba(255,255,255,0.6);
    font-size: 0.875rem;
    margin-bottom: 24px;
    line-height: 1.6;
    max-width: 380px;
}

/* ── Testimonials ─────────────────────────────────────────────────────── */
.testimonials { background: var(--white); }

.testimonials__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 20px;
}
.testimonials__nav {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.testimonials__btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--text-muted);
    transition: all var(--transition);
}
.testimonials__btn:hover,
.testimonials__btn.active {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--white);
}

/* Outer bordered wrapper — clips the scrollable inner track */
.testimonials__slider-wrap {
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

/* Scrollable flex track — shows 3 cards at a time */
.testimonials__grid {
    display: flex;
    overflow: hidden;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.testimonials__grid::-webkit-scrollbar { display: none; }

.testimonial-card {
    flex: 0 0 33.333%;
    min-width: 0;
    background: var(--white);
    padding: 40px 32px 36px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: background var(--transition);
    position: relative;
}
/* Vertical divider between cards */
.testimonial-card + .testimonial-card {
    border-left: 1.5px solid var(--border);
}
.testimonial-card:hover {
    background: var(--off-white);
}

/* Avatar wrap — holds image + quote badge */
.testimonial-card__avatar-wrap {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
}
.testimonial-card__avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}
/* Colored quote badge bottom-right of avatar */
.testimonial-card__quote {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    border: 2px solid var(--white);
}
.testimonial-card:nth-child(1) .testimonial-card__quote { background: #18B89A; }
.testimonial-card:nth-child(2) .testimonial-card__quote { background: #7C4DFF; }
.testimonial-card:nth-child(3) .testimonial-card__quote { background: #FF9800; }

.testimonial-card__text {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.75;
    margin-bottom: 28px;
    text-align: center;
}

/* Colored dot above author name */
.testimonial-card__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 auto 14px;
}
.testimonial-card:nth-child(1) .testimonial-card__dot { background: #18B89A; }
.testimonial-card:nth-child(2) .testimonial-card__dot { background: #7C4DFF; }
.testimonial-card:nth-child(3) .testimonial-card__dot { background: #FF9800; }

.testimonial-card__author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.testimonial-card__name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
}
.testimonial-card__role {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ── App Download ─────────────────────────────────────────────────────── */
.app-download {
    background: var(--off-white);
    position: relative;
    overflow: hidden;
}

/* Diamond wire background — diagonal crosshatch lines */
.app-download__wires {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        repeating-linear-gradient(
            45deg,
            rgba(201, 168, 76, 0.10) 0px,
            rgba(201, 168, 76, 0.10) 1px,
            transparent 1px,
            transparent 38px
        ),
        repeating-linear-gradient(
            -45deg,
            rgba(201, 168, 76, 0.10) 0px,
            rgba(201, 168, 76, 0.10) 1px,
            transparent 1px,
            transparent 38px
        );
    z-index: 0;
}

.app-download__container { position: relative; z-index: 1; }

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

.app-download__content { padding: 20px 0; }

/* Outlined badge — matches Figma "DOWNLOAD THE FREE" pill */
.app-download__tag {
    display: inline-block;
    background: transparent;
    color: var(--gold-dark);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 50px;
    border: 1.5px solid var(--gold);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.app-download__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -1px;
    line-height: 1.15;
    margin-bottom: 16px;
}
.app-download__title span { color: var(--gold); }

.app-download__sub {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 36px;
    line-height: 1.7;
}

.app-download__btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--dark);
    color: var(--white);
    border-radius: var(--radius-md);
    padding: 14px 24px;
    transition: all var(--transition);
    border: 2px solid var(--dark);
    min-width: 170px;
}
.store-btn:hover {
    background: #111;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}
.store-btn__icon { font-size: 1.9rem; flex-shrink: 0; }
.store-btn__text { text-align: left; }
.store-btn__label { font-size: 0.62rem; opacity: 0.7; display: block; letter-spacing: 0.3px; }
.store-btn__name  { font-size: 1rem; font-weight: 700; display: block; }

/* Phone mockup — larger, right-aligned */
.app-download__mockup {
    display: flex;
    justify-content: center;
    align-items: center;
}
.app-download__mockup img {
    width: 340px;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.18));
}

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

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.6fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 14px;
}
.footer__brand img { height: 30px; }
.footer__brand span { color: var(--gold); }

.footer__tagline {
    font-size: 0.82rem;
    opacity: 0.65;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 220px;
}

.footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 8px;
    line-height: 1.5;
}
.footer__contact-item span { font-size: 0.9rem; flex-shrink: 0; }

.footer__col-title {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 18px;
}

.footer__links li { margin-bottom: 10px; }
.footer__links a {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.6);
    transition: color var(--transition);
}
.footer__links a:hover { color: var(--gold); }

.footer__newsletter p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 14px;
    line-height: 1.5;
}
.footer__subscribe {
    display: flex;
    gap: 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1.5px solid rgba(255,255,255,0.15);
}
.footer__subscribe input {
    flex: 1;
    padding: 10px 14px;
    background: rgba(255,255,255,0.07);
    border: none;
    color: var(--white);
    font-size: 0.82rem;
    outline: none;
}
.footer__subscribe input::placeholder { color: rgba(255,255,255,0.35); }
.footer__subscribe button {
    padding: 10px 16px;
    background: var(--gold);
    border: none;
    color: var(--white);
    cursor: pointer;
    font-size: 0.82rem;
    font-weight: 600;
    transition: background var(--transition);
    white-space: nowrap;
}
.footer__subscribe button:hover { background: var(--gold-dark); }

.footer__socials {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}
.footer__social {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    transition: all var(--transition);
    cursor: pointer;
}
.footer__social:hover {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--white);
}

.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.footer__copy {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.4);
}
.footer__legal {
    display: flex;
    gap: 24px;
}
.footer__legal a {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.4);
    transition: color var(--transition);
}
.footer__legal a:hover { color: var(--gold); }

/* ── Placeholder image ────────────────────────────────────────────────── */
.img-placeholder {
    background: linear-gradient(135deg, var(--border) 0%, var(--off-white) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
}

/* ── Animations ───────────────────────────────────────────────────────── */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

.animate-in {
    animation: fadeInUp 0.5s ease both;
}
.animate-in:nth-child(2) { animation-delay: 0.1s; }
.animate-in:nth-child(3) { animation-delay: 0.2s; }
.animate-in:nth-child(4) { animation-delay: 0.3s; }
.animate-in:nth-child(5) { animation-delay: 0.4s; }

/* ── Responsive ───────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .services-slider .service-card { flex: 0 0 calc(33.333% - 14px); }
    .logbook__inner { gap: 40px; }
    .footer__grid   { grid-template-columns: 1fr 1fr 1fr; }
    .footer__grid > *:first-child { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    .section { padding: 60px 0; }

    /* ── Mobile nav drawer ── */
    .navbar__links,
    .navbar__actions { display: none; }
    .navbar__toggle  { display: flex; }

    .navbar__links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        padding: 24px;
        gap: 20px;
        z-index: 999;
        box-shadow: var(--shadow-md);
        overflow-y: auto;
    }
    .navbar__actions.open {
        display: flex;
        flex-direction: row;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: var(--white);
        border-top: 1px solid var(--border);
        padding: 16px 24px;
        gap: 12px;
        z-index: 1000;
        box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
    }
    .navbar__actions.open .btn { flex: 1; justify-content: center; }

    /* ── Hero ── */
    .hero { padding: 40px 0 0; }
    .hero__inner         { grid-template-columns: 1fr; gap: 32px; }
    .hero__content       { text-align: center; }
    .hero__sub           { max-width: 100%; margin-left: auto; margin-right: auto; }
    .hero__meta          { justify-content: center; }
    .hero__image-wrap    { justify-content: center; order: -1; }
    .hero__image-wrap img { max-width: 300px; margin: 0 auto; }
    .hero__badge-float   { display: none; }
    .hero__sparkle       { display: none; }
    .hero__waves         { display: none; }

    /* ── Services ── */
    .services-slider .service-card { flex: 0 0 calc(50% - 10px); }

    /* ── How It Works ── */
    .how-it-works__grid  { grid-template-columns: 1fr 1fr; }

    /* ── Logbook ── */
    .logbook__inner      { grid-template-columns: 1fr; gap: 40px; }
    .logbook__image-wrap { max-width: 400px; margin: 0 auto; }
    .logbook__badge      { left: 0; top: 16px; }
    .logbook__sparkle    { display: none; }
    .logbook__body       { text-align: center; }
    .logbook__sub        { max-width: 100%; margin-left: auto; margin-right: auto; }
    .logbook__features   { grid-template-columns: 1fr; }
    .logbook__feature    { white-space: normal; justify-content: center; }

    /* ── CTA Banner ── */
    .cta-banner          { margin: 0 20px; }
    .cta-banner__inner   { grid-template-columns: 1fr; }
    .cta-banner__img-wrap { height: 220px; border-radius: 0 0 31px 31px; }
    .cta-banner__img-wrap::before { display: none; }
    .cta-banner__content { padding: 36px 28px 24px; text-align: center; }
    .cta-banner__sub     { max-width: 100%; margin-left: auto; margin-right: auto; }

    /* ── Testimonials ── */
    .testimonials__header { flex-direction: column; align-items: center; text-align: center; }
    .testimonials__header .section__header { text-align: center !important; }
    .testimonial-card { flex: 0 0 100%; }
    .testimonial-card + .testimonial-card { border-left: none; border-top: 1.5px solid var(--border); }

    /* ── App Download ── */
    .app-download__inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .app-download__btns  { justify-content: center; }
    .app-download__mockup img { width: 200px; }

    /* ── Footer ── */
    .footer__grid        { grid-template-columns: 1fr 1fr; }
    .footer__grid > *:first-child { grid-column: 1 / -1; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }

    .section { padding: 48px 0; }
    .section__header { margin-bottom: 36px; }

    /* ── Hero ── */
    .hero { padding: 24px 0 0; }
    .hero__heading { font-size: 1.6rem; }
    .hero__heading--gold { font-size: 2.2rem; letter-spacing: -1px; }
    .hero__image-wrap img { max-width: 260px; }

    /* ── Services ── */
    .services-slider .service-card { flex: 0 0 calc(100% - 10px); }
    .services-slider__btn { width: 36px; height: 36px; font-size: 0.85rem; }

    /* ── How It Works ── */
    .how-it-works__grid { grid-template-columns: 1fr; }

    /* ── CTA Banner ── */
    .cta-banner { margin: 0 12px; border-radius: 20px; }
    .cta-banner__content { padding: 28px 20px 20px; }
    .cta-banner__img-wrap { height: 180px; border-radius: 0 0 20px 20px; }

    /* ── App Download ── */
    .app-download__mockup img { width: 160px; }
    .store-btn { flex: 1; min-width: 0; padding: 12px 16px; }

    /* ── Footer ── */
    .footer { padding: 48px 0 24px; }
    .footer__grid  { grid-template-columns: 1fr; gap: 32px; }
    .footer__grid > *:first-child { grid-column: auto; }
    .footer__bottom { flex-direction: column; text-align: center; gap: 12px; }
    .footer__legal { justify-content: center; }
    .footer__subscribe { flex-direction: column; }
    .footer__subscribe input { padding: 12px 14px; }
    .footer__subscribe button { padding: 12px 16px; }
}
