/**
 * Simply Dogs Berkshire — Premium Stylesheet
 * ============================================
 */

/* ═══ CSS Custom Properties ═══ */
:root {
    /* Colours */
    --primary: #347CB6;
    --primary-dark: #00335E;
    --primary-light: #5BA3D9;
    --accent: #3A9063;
    --accent-dark: #2D7550;
    --warm: #99714D;
    --warm-light: #C49A6C;
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --light-grey: #EEF1F4;
    --grey: #6B7B8D;
    --dark-grey: #3D4F5F;
    --dark: #1A2A3A;

    /* Typography */
    --font-primary: 'Raleway', sans-serif;
    --font-accent: 'Pacifico', cursive;

    /* Spacing */
    --section-pad: 5rem;
    --container-max: 1200px;

    /* Transitions */
    --transition: 0.3s ease;
    --transition-slow: 0.6s ease;

    /* Shadows */
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
    --shadow-hover: 0 16px 48px rgba(0, 0, 0, 0.18);

    /* Border radius */
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark-grey);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

a:hover {
    color: var(--primary-dark);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

.text-muted {
    color: var(--grey);
}

.lead {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.section {
    padding: var(--section-pad) 0;
    position: relative;
}

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

.section-title {
    text-align: center;
    font-size: 2.2rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.section-title.script {
    font-family: var(--font-accent);
    font-weight: 400;
}

.section-heading {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.section-heading.script {
    font-family: var(--font-accent);
    font-weight: 400;
    font-size: 2.4rem;
    color: var(--primary);
}

.section-subtitle {
    text-align: center;
    color: var(--grey);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

/* ═══ Buttons ═══ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    line-height: 1.4;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

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

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

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

.btn-light:hover {
    background: var(--off-white);
    color: var(--primary);
    transform: translateY(-2px);
}

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

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

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

.btn-block {
    display: flex;
    justify-content: center;
    width: 100%;
}

/* ═══ Header ═══ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.35s ease, background 0.35s ease;
}

.site-header.hidden {
    transform: translateY(-100%);
}

.header-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 0.25rem;
}

.nav-link {
    padding: 0.5rem 1rem;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--dark-grey);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background: rgba(52, 124, 182, 0.08);
}

.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: var(--accent);
    color: var(--white) !important;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition);
}

.header-cta:hover {
    background: var(--accent-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(58, 144, 99, 0.3);
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    position: relative;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: all 0.35s ease;
    position: absolute;
    left: 8px;
}

.hamburger {
    top: 19px;
}

.hamburger::before {
    content: '';
    top: -7px;
}

.hamburger::after {
    content: '';
    top: 7px;
}

.nav-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

/* ═══ Hero ═══ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(0, 51, 94, 0.75) 0%,
            rgba(52, 124, 182, 0.55) 50%,
            rgba(58, 144, 99, 0.45) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 750px;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ═══ Page Hero (inner pages) ═══ */
.page-hero {
    position: relative;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    margin-top: 70px;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(0, 51, 94, 0.8) 0%,
            rgba(52, 124, 182, 0.6) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

.page-hero-content h1 {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
}

.page-hero-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
}

.page-home .site-main .section:first-child {
    margin-top: 0;
}

/* If home page, no top margin. Other pages handled by page-hero */
body:not(.page-home) .site-main>.section:first-child {
    margin-top: 0;
}

/* ═══ About Grid ═══ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: center;
}

.about-grid-reverse {
    grid-template-columns: 1.2fr 1fr;
}

.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    object-fit: cover;
}

.about-text p {
    margin-bottom: 1rem;
}

/* ═══ Features Section ═══ */
.features-section {
    position: relative;
    overflow: hidden;
}

.features-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.features-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 51, 94, 0.88) 0%, rgba(52, 124, 182, 0.82) 100%);
}

.features-section .container {
    position: relative;
    z-index: 2;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all var(--transition);
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all var(--transition);
}

.feature-card:hover .feature-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

/* ═══ Services Preview ═══ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    perspective: 1000px;
    height: 380px;
    cursor: pointer;
}

.service-card-front,
.service-card-back {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    backface-visibility: hidden;
    transition: transform 0.7s ease;
    overflow: hidden;
}

.service-card {
    position: relative;
}

.service-card-front {
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
}

.service-card-front-overlay {
    width: 100%;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.service-card-front-overlay h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.service-price {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    font-weight: 600;
}

.service-extra {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.service-card-back {
    background: var(--primary);
    color: var(--white);
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
}

.service-card-back h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.service-card-back p {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.85);
}

.service-card:hover .service-card-front {
    transform: rotateY(-180deg);
}

.service-card:hover .service-card-back {
    transform: rotateY(0);
}

/* ═══ Testimonials ═══ */
.testimonials-section {
    background: var(--off-white);
}

.testimonials-carousel {
    max-width: 700px;
    margin: 2rem auto 0;
    position: relative;
}

.testimonials-track {
    position: relative;
    min-height: 250px;
    overflow: hidden;
}

.testimonial-card {
    position: absolute;
    inset: 0;
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.5s ease;
    pointer-events: none;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-avatar i {
    font-size: 1.8rem;
    color: var(--white);
}

.testimonial-name {
    font-size: 1rem;
    color: var(--dark);
}

.star-rating {
    display: flex;
    gap: 2px;
}

.star-rating i {
    color: #FFC107;
    font-size: 0.85rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--dark-grey);
    line-height: 1.7;
    border: none;
    margin: 0;
    padding: 0;
    position: relative;
}

.quote-icon {
    color: var(--primary-light);
    font-size: 1.2rem;
    margin-right: 0.3rem;
    opacity: 0.5;
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.carousel-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--primary-light);
    background: transparent;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

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

.carousel-dots {
    display: flex;
    gap: 8px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: var(--light-grey);
    cursor: pointer;
    transition: all var(--transition);
}

.carousel-dot.active {
    background: var(--primary);
    transform: scale(1.3);
}

/* ═══ Gallery ═══ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-sm);
    aspect-ratio: 3/2;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 51, 94, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-overlay i {
    color: var(--white);
    font-size: 1.5rem;
}

/* ═══ Lightbox ═══ */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}

.lightbox.open {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-img {
    max-width: 85vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition);
}

.lightbox-close:hover {
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.lightbox-prev {
    left: 1.5rem;
}

.lightbox-next {
    right: 1.5rem;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* ═══ Areas Section ═══ */
.areas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.area-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1.2rem;
    background: var(--white);
    border: 1px solid var(--light-grey);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark-grey);
    transition: all var(--transition);
}

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

.area-tag i {
    color: var(--primary);
    font-size: 0.8rem;
}

.area-tag:hover i {
    color: var(--white);
}

/* ═══ Contact Strip (homepage) ═══ */
.contact-strip {
    background: var(--off-white);
}

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

.contact-details {
    list-style: none;
    margin-top: 1.5rem;
}

.contact-details li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.contact-details i {
    color: var(--primary);
    width: 20px;
    text-align: center;
}

/* ═══ Contact Form ═══ */
.contact-form {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.contact-form h3 {
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--primary-dark);
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.35rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark-grey);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid var(--light-grey);
    border-radius: var(--radius-sm);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    transition: border-color var(--transition), box-shadow var(--transition);
    background: var(--white);
    color: var(--dark);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(52, 124, 182, 0.1);
}

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

.form-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--grey);
    margin-top: 0.75rem;
}

/* ═══ CTA Strip ═══ */
.cta-strip {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 3rem 0;
}

.cta-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-strip-text h2 {
    color: var(--white);
    font-size: 1.6rem;
    margin-bottom: 0.3rem;
}

.cta-strip-text p {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
}

.cta-strip-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ═══ Footer ═══ */
.site-footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2.5rem;
}

.footer-logo {
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
    opacity: 0.85;
    max-width: 180px;
    transition: opacity var(--transition);
}

.footer-logo:hover {
    opacity: 1;
}

.footer-about {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-social {
    margin-top: 1rem;
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white) !important;
    transition: all var(--transition);
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-col h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

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

.footer-links a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact a:hover {
    color: var(--white);
}

.footer-contact i {
    color: var(--primary-light);
    width: 16px;
    text-align: center;
}

.footer-areas {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.footer-areas li {
    font-size: 0.8rem;
    padding: 0.25rem 0.6rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
    margin-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.85rem;
}

/* ═══ Service Detail Page ═══ */
.service-detail {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
}

.service-detail-reverse {
    grid-template-columns: 1.2fr 1fr;
}

.service-detail-reverse .service-detail-content {
    order: -1;
}

.service-detail-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    max-height: 500px;
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.service-detail-content h3 {
    font-size: 1.25rem;
    margin: 1.5rem 0 0.75rem;
    color: var(--primary-dark);
}

.price-badge {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
}

.price-main {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
}

.price-main small {
    font-weight: 400;
    font-size: 0.9rem;
}

.price-extra {
    display: block;
    font-size: 0.9rem;
    opacity: 0.85;
    margin-top: 0.25rem;
}

.styled-list {
    list-style: none;
    margin: 1rem 0;
}

.styled-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 0.6rem;
    line-height: 1.5;
}

.styled-list i {
    color: var(--accent);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

/* ═══ Qualification Cards ═══ */
.qual-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.qual-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all var(--transition);
}

.qual-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.qual-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.qual-icon i {
    font-size: 1.6rem;
    color: var(--white);
}

.qual-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

/* ═══ Trust Stats ═══ */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    text-align: center;
}

.trust-item {
    padding: 1.5rem;
}

.trust-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.trust-label {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.95rem;
    color: var(--grey);
    font-weight: 500;
}

/* ═══ FAQ ═══ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: box-shadow var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-lg);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-primary);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark);
    text-align: left;
    transition: color var(--transition);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-icon {
    transition: transform var(--transition);
    color: var(--primary);
    flex-shrink: 0;
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 1.5rem 1.25rem;
    color: var(--dark-grey);
    line-height: 1.7;
}

.faq-cta {
    text-align: center;
    padding: 3rem 0 0;
}

.faq-cta h2 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.faq-cta p {
    color: var(--grey);
    margin-bottom: 1.5rem;
}

.faq-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ═══ Contact Page ═══ */
.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-card {
    background: var(--off-white);
    border-radius: var(--radius-sm);
    padding: 1rem 1.25rem;
    margin-bottom: 0.75rem;
}

.contact-card h3 {
    font-size: 0.9rem;
    color: var(--grey);
    margin-bottom: 0.25rem;
}

.contact-card h3 i {
    margin-right: 0.4rem;
    color: var(--primary);
}

.contact-link {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark) !important;
}

.expect-list {
    padding-left: 1.2rem;
}

.expect-list li {
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.map-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-wrap iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* ═══ Alerts ═══ */
.alert {
    padding: 1rem 1.5rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.alert i {
    margin-top: 0.1rem;
    font-size: 1.2rem;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #fce4e4;
    color: #8a1538;
    border: 1px solid #f5c6cb;
}

.content-block p {
    margin-bottom: 1rem;
}

/* ═══ Animations ═══ */
.animate-fade-up,
.animate-fade-left,
.animate-fade-right {
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-fade-up {
    transform: translateY(30px);
}

.animate-fade-left {
    transform: translateX(30px);
}

.animate-fade-right {
    transform: translateX(-30px);
}

.animate-fade-up.visible,
.animate-fade-left.visible,
.animate-fade-right.visible {
    opacity: 1;
    transform: translate(0);
}

/* Hero always shows immediately */
.hero .animate-fade-up {
    opacity: 1;
    transform: none;
    animation: heroFadeUp 1s ease forwards;
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ═══ Responsive ═══ */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

@media (max-width: 768px) {
    :root {
        --section-pad: 3.5rem;
    }

    /* Mobile nav */
    .nav-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: var(--shadow-lg);
        transform: translateY(-120%);
        opacity: 0;
        transition: all 0.4s ease;
        z-index: 999;
    }

    .main-nav.open {
        transform: translateY(0);
        opacity: 1;
    }

    .nav-list {
        flex-direction: column;
        padding: 1rem;
    }

    .nav-link {
        display: block;
        padding: 0.75rem 1rem;
        font-size: 1rem;
    }

    .header-cta span {
        display: none;
    }

    /* Hero */
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    /* Grids to single column */
    .about-grid,
    .about-grid-reverse,
    .services-grid,
    .contact-grid,
    .contact-page-grid,
    .service-detail,
    .service-detail-reverse {
        grid-template-columns: 1fr;
    }

    .service-detail-reverse .service-detail-content {
        order: 0;
    }

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

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

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

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

    .cta-strip-inner {
        flex-direction: column;
        text-align: center;
    }

    .cta-strip-buttons {
        justify-content: center;
    }

    .page-hero {
        min-height: 250px;
    }

    .page-hero-content h1 {
        font-size: 2rem;
    }

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

    .service-card {
        height: 300px;
    }

    .hero-bg {
        background-attachment: scroll;
    }

    .features-bg {
        background-attachment: scroll;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.6rem;
    }

    .gallery-grid,
    .gallery-full {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }

    .trust-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .trust-number {
        font-size: 2.2rem;
    }
}

/* ═══ Cookie Consent Banner ═══ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    background: rgba(26, 26, 30, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 0;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cookie-banner p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
    flex: 1;
}

.cookie-banner p i {
    color: #FFC107;
    margin-right: 0.5rem;
}

.cookie-banner p a {
    color: var(--white);
    text-decoration: underline;
    font-weight: 600;
}

.cookie-banner-buttons {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition);
}

.footer-bottom a:hover {
    color: var(--white);
}

@media (max-width: 768px) {
    .cookie-banner-inner {
        flex-direction: column;
        text-align: center;
    }

    .cookie-banner-buttons {
        justify-content: center;
    }
}

/* ═══ WhatsApp Button ═══ */
.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    border: none;
}

.btn-whatsapp:hover {
    background: #1DA851;
    color: var(--white);
}

.social-whatsapp {
    background: #25D366 !important;
}

.social-whatsapp:hover {
    background: #1DA851 !important;
    transform: translateY(-3px);
}

/* ═══ Mobile Bottom Nav Bar ═══ */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding: 0.4rem 0 env(safe-area-inset-bottom, 0.4rem);
}

.mobile-bottom-nav .mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 0.5rem 0;
    color: #666;
    text-decoration: none;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: color 0.2s ease, transform 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.mobile-bottom-nav .mobile-nav-item i {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
}

.mobile-bottom-nav .mobile-nav-item.active {
    color: var(--primary);
}

.mobile-bottom-nav .mobile-nav-item:active {
    transform: scale(0.92);
}

/* WhatsApp green highlight */
.mobile-bottom-nav .mobile-nav-whatsapp {
    color: #25D366;
}

.mobile-bottom-nav .mobile-nav-whatsapp i {
    font-size: 1.4rem;
}

/* Call blue highlight */
.mobile-bottom-nav .mobile-nav-call {
    color: var(--primary);
}

@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex;
    }

    /* Add padding so footer content isn't hidden behind mobile nav */
    body {
        padding-bottom: 70px;
    }

    /* Move cookie banner above mobile nav */
    .cookie-banner {
        bottom: 65px;
    }

    /* Hide the desktop CTA phone button on mobile since we have the nav bar */
    .header-cta {
        display: none;
    }
}