/* ==========================================================================
   Busia Movers Limited — Stylesheet
   Brand colours (no gradients):
   --primary:   #1B577B  Deep Blue
   --secondary: #32A7D6  Sky Blue
   --accent:    #D95C47  Orange/Coral
   --bg:        #F0F0F0  Soft Grey
   --text:      #333333  Dark Grey
   --text-light:#5C6670  Supporting text
   --cyan:      #B4EFF9  Light Cyan
   --teal:      #5CBCD9  Teal Blue
   --lt-orange: #F3BF92  Light Orange
   ========================================================================== */

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

:root {
    --primary: #1B577B;
    --secondary: #32A7D6;
    --accent: #D95C47;
    --bg: #F0F0F0;
    --text: #333333;
    --text-light: #5C6670;
    --cyan: #B4EFF9;
    --teal: #5CBCD9;
    --lt-orange: #F3BF92;
    --white: #FFFFFF;
    --shadow-sm: 0 1px 3px rgba(27, 87, 123, 0.08);
    --shadow-md: 0 4px 16px rgba(27, 87, 123, 0.1);
    --shadow-lg: 0 8px 32px rgba(27, 87, 123, 0.15);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width: 1200px;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
    touch-action: manipulation;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary);
}

a {
    color: var(--secondary);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--accent);
}

img, svg {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

/* --- Layout utilities --------------------------------------------------- */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 64px 0;
}

.section--tight {
    padding: 40px 0;
}

.section--primary {
    background: var(--primary);
    color: var(--white);
}

.section--primary h1,
.section--primary h2,
.section--primary h3 {
    color: var(--white);
}

.section--cyan {
    background: var(--cyan);
}

.section--white {
    background: var(--white);
}

.section__header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 48px;
}

.section__label {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}

.section__title {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    margin-bottom: 16px;
}

.section__subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

.section--primary .section__subtitle {
    color: rgba(255, 255, 255, 0.85);
}

/* --- Buttons ------------------------------------------------------------ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
    white-space: nowrap;
}

.btn--accent {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.btn--accent:hover {
    background: #c04a38;
    color: var(--white);
    border-color: #c04a38;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--secondary {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
}

.btn--secondary:hover {
    background: #2a91be;
    color: var(--white);
    border-color: #2a91be;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn--outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn--outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.6);
}

.btn--outline-light:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

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

.btn--block {
    width: 100%;
}

/* --- Topbar ------------------------------------------------------------- */
.topbar {
    background: var(--primary);
    color: var(--white);
    font-size: 0.85rem;
    padding: 8px 0;
    transition: transform 0.3s ease, max-height 0.3s ease, opacity 0.3s ease;
    max-height: 40px;
    overflow: hidden;
}

.topbar.is-hidden {
    transform: translateY(-100%);
    max-height: 0;
    opacity: 0;
    padding: 0;
}

.topbar__inner {
    display: flex;
    align-items: center;
    gap: 24px;
}

.topbar__item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.topbar__item:hover {
    color: var(--lt-orange);
}

.topbar__item--right {
    margin-left: auto;
}

.topbar__item--hide-mobile {
    display: flex;
}

/* --- Navigation --------------------------------------------------------- */
.nav {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: box-shadow var(--transition);
}

.nav.scrolled {
    box-shadow: var(--shadow-md);
}

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

.nav__logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}

.nav__logo-img {
    height: auto;
    width: auto;
    max-height: 56px;
    max-width: 280px;
    object-fit: contain;
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav__link {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    position: relative;
}

.nav__link:hover {
    color: var(--primary);
    background: rgba(50, 167, 214, 0.08);
}

.nav__link.active {
    color: var(--primary);
}

.nav__link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 16px;
    right: 16px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

.nav__cta {
    margin-left: 8px;
}

.nav__call {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.nav__toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: all var(--transition);
    margin: 0 auto;
}

.nav__toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav__toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* --- Hero --------------------------------------------------------------- */
.hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--primary);
}

.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero__bg-poster,
.hero__bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero__bg-poster {
    z-index: 1;
    transition: opacity 0.8s ease;
}

.hero__bg-poster.is-hidden {
    opacity: 0;
}

.hero__bg-video {
    z-index: 2;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.hero__bg-video.is-visible {
    opacity: 1;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(27, 87, 123, 0.72);
    z-index: 3;
}

.hero__inner {
    position: relative;
    z-index: 4;
    padding-top: 64px;
    padding-bottom: 64px;
    width: 100%;
}

.hero__content {
    max-width: 620px;
}

.hero__tagline-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(180, 239, 249, 0.95);
    color: var(--primary);
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.hero__tagline-pill svg {
    color: var(--accent);
}

.hero__title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--white);
}

.hero__title span {
    color: var(--lt-orange);
}

.hero__subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 32px;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.hero__stats {
    display: flex;
    gap: 32px;
    padding-top: 24px;
    border-top: 2px solid rgba(255, 255, 255, 0.15);
}

.hero__stat {
    text-align: left;
}

.hero__stat-num {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.hero__stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4px;
}

/* --- Video showcase ----------------------------------------------------- */
.video-showcase {
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--primary);
}

.video-showcase__player {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16 / 9;
    background: var(--primary);
}

/* --- Photo gallery (home page) ------------------------------------------ */
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.photo-gallery__item {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
}

.photo-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.photo-gallery__item:hover img {
    transform: scale(1.08);
}

/* --- About gallery ------------------------------------------------------ */
.about-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.about-gallery__item {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: var(--shadow-sm);
}

.about-gallery__item--wide {
    grid-column: span 2;
    aspect-ratio: 8 / 3;
}

.about-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.about-gallery__item:hover img {
    transform: scale(1.05);
}

/* --- Contact info image ------------------------------------------------- */
.contact-info__image {
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
    aspect-ratio: 16 / 10;
}

.contact-info__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- Booking form image ------------------------------------------------- */
.form-card__image {
    margin: -28px -28px 28px;
    border-radius: var(--radius) var(--radius) 0 0;
    overflow: hidden;
    height: 240px;
}

.form-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- Trust badges ------------------------------------------------------- */
.trust-bar {
    background: var(--primary);
    padding: 20px 0;
}

.trust-bar__inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
}

.trust-badge svg {
    color: var(--lt-orange);
    flex-shrink: 0;
}

.trust-badge__divider {
    width: 1px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
}

/* --- Service cards ------------------------------------------------------ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 28px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.service-card__icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    background: var(--cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0;
    transition: background var(--transition);
}

.service-card:hover .service-card__icon {
    background: var(--secondary);
}

.service-card__icon svg {
    color: var(--primary);
    transition: color var(--transition);
}

.service-card:hover .service-card__icon svg {
    color: var(--white);
}

.service-card__title {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.service-card__text {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-card__link {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap var(--transition);
}

.service-card__link:hover {
    color: var(--accent);
    gap: 10px;
}

/* --- Pet highlight ------------------------------------------------------ */
.pet-highlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.pet-highlight__visual {
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 320px;
    box-shadow: var(--shadow-md);
}

.pet-highlight__img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    display: block;
}

.pet-highlight__content h2 {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    margin-bottom: 20px;
}

.pet-highlight__content p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 24px;
}

.pet-highlight__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 32px;
}

.pet-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text);
}

.pet-feature svg {
    color: var(--accent);
    flex-shrink: 0;
}

/* --- Why choose us ------------------------------------------------------ */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
}

@media (max-width: 600px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

.why-card {
    text-align: center;
    padding: 32px 20px;
}

.why-card__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-card__icon svg {
    color: var(--lt-orange);
}

.why-card__title {
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 10px;
}

.why-card__text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

/* --- CTA section -------------------------------------------------------- */
.cta-section {
    text-align: center;
    padding: 56px 0;
}

.cta-section h2 {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 32px;
    opacity: 0.9;
}

.cta-section__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- Page banner -------------------------------------------------------- */
.page-banner {
    background: var(--primary);
    color: var(--white);
    padding: 56px 0 48px;
    text-align: center;
}

.page-banner h1 {
    color: var(--white);
    font-size: clamp(1.8rem, 5vw, 2.6rem);
    margin-bottom: 12px;
}

.page-banner p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb a {
    color: var(--lt-orange);
}

/* --- Services page ------------------------------------------------------ */
.service-group {
    margin-bottom: 56px;
}

.service-group__title {
    font-size: 1.4rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-group__title::before {
    content: '';
    width: 4px;
    height: 28px;
    background: var(--accent);
    border-radius: 2px;
}

.service-group__desc {
    color: var(--text-light);
    margin-bottom: 28px;
    font-size: 1rem;
}

/* Service detail card (services page) */
.service-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
}

@media (max-width: 768px) {
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.service-detail {
    background: var(--white);
    border-radius: var(--radius);
    padding: 0;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    border: 1px solid transparent;
    scroll-margin-top: 90px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-detail:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--cyan);
}

.service-detail__image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    flex-shrink: 0;
}

.service-detail__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-detail:hover .service-detail__image img {
    transform: scale(1.05);
}

.service-detail__header,
.service-detail__desc,
.service-detail__features,
.service-detail__cta {
    padding-left: 32px;
    padding-right: 32px;
}

.service-detail__header {
    padding-top: 28px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}

.service-detail__icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    background: var(--cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-detail__icon svg {
    color: var(--primary);
}

.service-detail__title {
    font-size: 1.3rem;
    margin-bottom: 4px;
}

.service-detail__desc {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-detail__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
}

.service-detail__feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text);
}

.service-detail__feature svg {
    color: var(--secondary);
    flex-shrink: 0;
}

.service-detail__cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    padding-bottom: 32px;
}

/* --- About page --------------------------------------------------------- */
.about-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.about-hero__content h2 {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    margin-bottom: 20px;
}

.about-hero__content p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-hero__visual {
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 340px;
    box-shadow: var(--shadow-md);
}

.about-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

@media (max-width: 600px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

.value-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 28px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    text-align: center;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.value-card__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--cyan);
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-card__icon svg {
    color: var(--primary);
}

.value-card__title {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.value-card__text {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* --- Forms -------------------------------------------------------------- */
.form-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

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

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

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

.form-label {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 6px;
}

.form-label .required {
    color: var(--accent);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--text);
    background: var(--bg);
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--secondary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(50, 167, 214, 0.12);
}

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

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231B577B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
}

.form-hint {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 6px;
}

/* --- Contact page ------------------------------------------------------- */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}

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

.contact-info-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 24px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all var(--transition);
}

.contact-info-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.contact-info-card__icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: var(--cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-card__icon svg {
    color: var(--primary);
}

.contact-info-card__label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-bottom: 4px;
}

.contact-info-card__value {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary);
}

.contact-info-card__value a {
    color: var(--primary);
}

.contact-info-card__value a:hover {
    color: var(--accent);
}

/* --- Success message ---------------------------------------------------- */
.alert {
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.alert--success {
    background: #e0f5e9;
    color: #1a7a3e;
    border: 1px solid #a3d9b8;
}

.alert--success svg {
    color: #1a7a3e;
    flex-shrink: 0;
}

/* --- Footer ------------------------------------------------------------- */
.footer {
    background: var(--primary);
    color: rgba(255, 255, 255, 0.8);
    padding: 56px 0 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer__logo {
    margin-bottom: 16px;
}

.footer__logo-img {
    max-width: 220px;
    width: 100%;
    height: auto;
}

.footer__tagline {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.footer__badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.badge {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--lt-orange);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.footer__heading {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
}

.footer__list li {
    margin-bottom: 10px;
}

.footer__list a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition);
}

.footer__list a:hover {
    color: var(--lt-orange);
}

.footer__list--contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

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

.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: 8px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* --- Floating action button -------------------------------------------- */
.fab {
    position: fixed;
    right: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 90;
    transition: all var(--transition);
}

.fab--call {
    bottom: 24px;
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(217, 92, 71, 0.4);
    animation: fab-pulse 2.5s ease-in-out infinite;
}

.fab--call:hover {
    background: #c04a38;
    color: var(--white);
    transform: scale(1.1);
}

.fab--whatsapp {
    bottom: 92px;
    background: #25D366;
    color: var(--white);
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    animation: fab-pulse-wa 2.5s ease-in-out infinite;
}

.fab--whatsapp:hover {
    background: #1da851;
    color: var(--white);
    transform: scale(1.1);
}

@keyframes fab-pulse {
    0%, 100% { box-shadow: 0 4px 16px rgba(217, 92, 71, 0.4); }
    50% { box-shadow: 0 4px 24px rgba(217, 92, 71, 0.6); }
}

@keyframes fab-pulse-wa {
    0%, 100% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.6); }
}

/* --- Scroll animations -------------------------------------------------- */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* --- Responsive --------------------------------------------------------- */
@media (max-width: 980px) {
    .pet-highlight {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .pet-highlight__visual {
        order: -1;
    }

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

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

    .about-gallery__item--wide {
        grid-column: span 2;
    }

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

    .about-hero__visual {
        order: -1;
        min-height: 260px;
    }

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

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

    .footer__col--brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .topbar__item--hide-mobile {
        display: none;
    }

    .topbar__inner {
        justify-content: center;
        gap: 16px;
    }

    .nav__toggle {
        display: flex;
    }

    .nav__menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        padding: 16px 20px 24px;
        gap: 4px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition);
        max-height: calc(100vh - 72px);
        overflow-y: auto;
    }

    .nav__menu.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav__link {
        padding: 14px 16px;
        font-size: 1.05rem;
        border-radius: var(--radius-sm);
    }

    .nav__link.active::after {
        display: none;
    }

    .nav__link.active {
        background: var(--cyan);
    }

    .nav__cta {
        margin-left: 0;
        margin-top: 8px;
        padding: 14px 16px;
        font-size: 1.05rem;
    }

    .nav__call {
        margin-top: 4px;
        padding: 14px 16px;
        font-size: 1.05rem;
    }

    .nav__logo-img {
        max-height: 48px;
        max-width: 180px;
    }

    .section {
        padding: 48px 0;
    }

    .hero {
        min-height: 440px;
    }

    .hero__inner {
        padding-top: 64px;
        padding-bottom: 40px;
    }

    .hero__stats {
        gap: 20px;
    }

    .hero__stat-num {
        font-size: 1.5rem;
    }

    .trust-bar__inner {
        gap: 20px;
    }

    .trust-badge__divider {
        display: none;
    }

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

    .service-detail__features,
    .pet-highlight__features {
        grid-template-columns: 1fr;
    }

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

    .form-card__image {
        margin: -28px -20px 28px;
        height: 180px;
    }

    .service-card {
        padding: 20px 16px;
    }

    .service-card__title {
        font-size: 1.05rem;
    }

    .service-card__text {
        font-size: 0.88rem;
    }

    .why-card {
        padding: 20px 12px;
    }

    .why-card__title {
        font-size: 1rem;
    }

    .why-card__text {
        font-size: 0.85rem;
    }

    .value-card {
        padding: 20px 14px;
    }

    .value-card__title {
        font-size: 1rem;
    }

    .value-card__text {
        font-size: 0.85rem;
    }

    .service-detail__image {
        height: 180px;
    }

    .photo-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .about-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .about-gallery__item--wide {
        grid-column: span 1;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

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

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

    .hero__actions {
        flex-wrap: wrap;
    }

    .hero__actions .btn {
        flex: 1;
        min-width: 140px;
    }

    .cta-section__actions {
        flex-direction: column;
    }

    .cta-section__actions .btn {
        width: 100%;
    }

    .hero__stats {
        flex-wrap: wrap;
        gap: 12px 20px;
    }

    .hero__stat-num {
        font-size: 1.3rem;
    }

    .hero__stat-label {
        font-size: 0.78rem;
    }

    .hero__title {
        font-size: 1.6rem;
    }

    .hero__inner {
        padding-top: 72px;
        padding-bottom: 36px;
    }

    .hero__subtitle {
        font-size: 1rem;
    }

    .section__title {
        font-size: 1.5rem;
    }

    .section__subtitle {
        font-size: 0.95rem;
    }

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

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

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

    .service-card {
        padding: 18px 16px;
    }

    .service-card__icon {
        width: 44px;
        height: 44px;
    }

    .service-card__icon svg {
        width: 22px;
        height: 22px;
    }

    .why-card {
        padding: 18px 12px;
    }

    .why-card__icon {
        width: 48px;
        height: 48px;
    }

    .why-card__icon svg {
        width: 24px;
        height: 24px;
    }

    .value-card {
        padding: 18px 14px;
    }

    .value-card__icon {
        width: 44px;
        height: 44px;
    }

    .value-card__icon svg {
        width: 22px;
        height: 22px;
    }

    .service-detail__cta {
        flex-direction: column;
    }

    .service-detail__cta .btn {
        width: 100%;
    }

    .service-detail__header,
    .service-detail__desc,
    .service-detail__features,
    .service-detail__cta {
        padding-left: 20px;
        padding-right: 20px;
    }

    .service-detail__image {
        height: 160px;
    }

    .pet-highlight__img {
        min-height: 240px;
    }

    .contact-info__image {
        aspect-ratio: 16 / 9;
    }

    .nav__logo-img {
        max-height: 40px;
        max-width: 140px;
    }

    .fab {
        width: 52px;
        height: 52px;
        right: 16px;
    }

    .fab--call {
        bottom: 16px;
    }

    .fab--whatsapp {
        bottom: 80px;
    }
}

/* --- Reduced motion ----------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
