@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&family=Great+Vibes&display=swap');

/* --- Variables & Reset --- */
:root {
    --primary-color: #84C2D4; /* Light teal blue */
    --primary-dark: #6CAEBD;
    --primary-light: #B8DCE5;
    --text-color: #2D3748;
    --heading-color: #1A202C;
    --bg-light: #F7FAFC;
    --white: #FFFFFF;
    --font-sans: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --transition: all 0.3s ease;
}

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

body {
    overflow-x: hidden;
    font-family: var(--font-sans);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--heading-color);
    line-height: 1.2;
}

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

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

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

.section {
    padding: 80px 0;
}

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

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

.mt-4 {
    margin-top: 2rem;
}

.relative {
    position: relative;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(132, 194, 212, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), #589AAB);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(132, 194, 212, 0.6);
}

.btn-primary-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 10px 26px;
}

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

.btn-white {
    background-color: var(--white);
    color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

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

.btn-white-small {
    background-color: var(--white);
    color: var(--primary-color);
    padding: 8px 20px;
    font-size: 0.85rem;
    border-radius: 4px;
}

.btn-white-small:hover {
    background-color: #f1f1f1;
}

/* --- Typography --- */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 500;
}

.section-subtitle {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}
/* --- Utility Top Bar --- */
.utility-bar {
    background-color: #0F172A; /* Dark Slate to match footer */
    color: #A0AEC0;
    padding: 8px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.utility-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.utility-left a, .utility-right a {
    color: #A0AEC0;
    text-decoration: none;
    transition: var(--transition);
}

.utility-left a:hover, .utility-right a:hover {
    color: var(--white);
}

.utility-left i {
    color: var(--primary-color);
    margin-right: 5px;
}

.utility-divider {
    margin: 0 15px;
    color: rgba(255,255,255,0.2);
}

.utility-right {
    display: flex;
    gap: 15px;
}

/* --- Header --- */
.header {
    background-color: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.4s ease;
}

/* Glassmorphic State when scrolled */
.header.scrolled {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 10px 0;
}

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

.logo img {
    height: 90px;
    max-width: 250px;
    object-fit: contain;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-list a {
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    text-decoration: none;
    padding-bottom: 5px;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-list a:hover::after, .nav-list a.active::after {
    width: 100%;
}

.nav-list a:hover, .nav-list a.active {
    color: var(--primary-color);
}

/* --- Premium Hero Section --- */
.premium-hero {
    background-image: url('../images/hero_image_clean.png');
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    padding: 0;
    min-height: 65vh; /* Reduced to bring repeater above the fold */
    display: flex;
    align-items: center;
    position: relative;
}

.hero-bg-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* Gradient overlay to ensure text is perfectly readable over any image */
    background: linear-gradient(90deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.8) 50%, transparent 100%);
}

.hero-container {
    z-index: 2;
    width: 100%;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    padding: 60px 50px;
    max-width: 750px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.hero-trust-badge {
    display: inline-flex;
    align-items: center;
    background: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 25px;
    box-shadow: var(--shadow-sm);
    gap: 10px;
    border: 1px solid var(--primary-light);
}

.hero-trust-badge .stars i {
    font-size: 0.9rem;
}

.hero-trust-badge span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--heading-color);
}

.hero-subtitle {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
    letter-spacing: 2px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    color: var(--heading-color);
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #4A5568;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.hero-actions .btn {
    white-space: nowrap;
}

@media (max-width: 768px) {
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .glass-panel {
        padding: 40px 30px;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-bg-overlay {
        background: rgba(255,255,255,0.9);
    }
}
/* --- Section Headers --- */
.section-header {
    margin-bottom: 60px;
}

.section-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--heading-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.text-highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #718096;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* --- Services Section --- */
.services-hero-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.hero-service-card {
    position: relative;
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-md);
}

.hero-service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.6) 40%, rgba(0,0,0,0.95) 100%);
    transition: background 0.3s ease;
}

.hero-service-card:hover::before {
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.9) 100%);
}

.hero-service-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 30px;
    color: var(--white);
    transform: translateY(20px);
    transition: transform 0.3s ease;
    text-shadow: 0 2px 4px rgba(0,0,0,0.6);
}

.hero-service-card:hover .hero-service-overlay {
    transform: translateY(0);
}

.hero-service-overlay h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 1px;
    color: var(--white);
}

.hero-service-overlay p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    line-height: 1.6;
}

.hero-service-overlay .btn {
    text-shadow: none;
}

/* --- Included Services (The Premium Standard) --- */
.included-services-wrapper {
    background: var(--white);
    border-radius: 12px;
    padding: 50px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    border: 1px solid #E2E8F0;
}

.included-title {
    font-size: 2rem;
    color: var(--heading-color);
    margin-bottom: 10px;
    font-weight: 800;
}

.included-subtitle {
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 50px;
}

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

.included-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.icon-circle {
    width: 70px;
    height: 70px;
    background-color: var(--primary-light);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.included-card:hover .icon-circle {
    transform: scale(1.1);
    background-color: var(--primary-color);
}

.included-card h4 {
    font-size: 1.1rem;
    color: var(--heading-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.included-card p {
    font-size: 0.9rem;
    color: #718096;
    line-height: 1.5;
}

/* --- Trust Badges Bar (Repeater) --- */
.trust-badges-bar {
    background: linear-gradient(to right, #ffffff, #f7fafc, #ffffff);
    padding: 30px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    border-top: 1px solid rgba(0,0,0,0.05);
    overflow: hidden;
}

.ticker-wrapper {
    width: 100%;
    overflow: hidden;
}

.ticker-content {
    display: flex;
    width: max-content;
    animation: ticker 35s linear infinite;
    gap: 80px;
    padding-right: 80px; /* Essential: must match the gap to loop seamlessly */
}

.ticker-content:hover {
    animation-play-state: paused; /* Pauses the ticker when hovering over it */
}

@keyframes ticker {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-33.3333%, 0, 0); } /* Moves exactly 1/3 of the total width */
}

.custom-badge {
    height: 70px;
    max-width: 250px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.custom-badge:hover {
    transform: translateY(-3px);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 15px;
}

.trust-badge i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.trust-badge-text {
    display: flex;
    flex-direction: column;
}

.trust-badge-text .title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--heading-color);
    line-height: 1;
}

.trust-badge-text .label {
    font-size: 0.85rem;
    color: #718096;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

/* --- About Section --- */
.bg-light-blue {
    background-color: var(--bg-light);
}

.about {
    padding-top: 0;
}

/* --- Premium CTA Banner --- */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 60px 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
    margin-bottom: 80px;
}

/* Subtle background pattern/overlay for premium feel */
.cta-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(circle at 100% 0%, rgba(255,255,255,0.1) 0%, transparent 50%),
                      radial-gradient(circle at 0% 100%, rgba(255,255,255,0.05) 0%, transparent 50%);
    pointer-events: none;
}

.cta-banner-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta-banner-text h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--white);
    letter-spacing: 0.5px;
}

.cta-banner-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.2);
}

.about-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image {
    flex: 1;
}

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

.about-content {
    flex: 1;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #4A5568;
}

/* --- Premium Steps Section --- */
.premium-steps-section {
    background-color: var(--white);
    position: relative;
    padding: 100px 0;
}

.premium-steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    margin-top: 60px;
    margin-bottom: 50px;
}

.steps-connector {
    position: absolute;
    top: 50px; /* Aligns with the center of the 100px tall icon wrapper */
    left: 15%;
    right: 15%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-light), transparent);
    z-index: 0;
}

.premium-step-card {
    background: var(--bg-light);
    border-radius: 20px;
    padding: 50px 40px 40px;
    text-align: center;
    position: relative;
    z-index: 1;
    border: 1px solid #E2E8F0;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    overflow: hidden;
}

.premium-step-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.step-number-bg {
    position: absolute;
    top: -20px;
    right: -10px;
    font-size: 8rem;
    font-weight: 800;
    color: rgba(132, 194, 212, 0.08); /* Faint primary color */
    line-height: 1;
    z-index: -1;
    font-family: var(--font-heading);
}

.step-icon-wrapper {
    width: 100px;
    height: 100px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 30px;
    box-shadow: 0 10px 25px rgba(132, 194, 212, 0.3);
    border: 4px solid var(--bg-light);
    position: relative;
}

.step-icon-wrapper i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.premium-step-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--heading-color);
}

.premium-step-card p {
    font-size: 1.05rem;
    color: #4A5568;
    line-height: 1.7;
}

/* Hide connector on mobile */
@media (max-width: 992px) {
    .premium-steps-container {
        grid-template-columns: 1fr;
    }
    .steps-connector {
        display: none;
    }
}

/* --- Testimonials Section (Premium Design) --- */
.bg-dark-image {
    background-image: url('https://images.unsplash.com/photo-1544568100-847a948585b9?q=80&w=1920&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    padding: 100px 0;
}

.testimonials-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(11, 15, 21, 0.95) 0%, rgba(26, 32, 44, 0.85) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.premium-review-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 50px 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.premium-review-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.quote-icon {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.05);
}

.stars {
    color: #F6E05E;
    font-size: 1.1rem;
    margin-bottom: 25px;
    display: flex;
    gap: 4px;
}

.review-text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 30px;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
}

.reviewer-avatar {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 700;
}

.reviewer-details {
    display: flex;
    flex-direction: column;
}

.reviewer-details strong {
    color: var(--white);
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.reviewer-details span {
    color: var(--primary-light);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Footer --- */
.footer-main {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    color: #A0AEC0;
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-main::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(circle at 0% 0%, rgba(132, 194, 212, 0.08) 0%, transparent 50%),
                      radial-gradient(circle at 100% 100%, rgba(132, 194, 212, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

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

.footer-logo {
    max-width: 250px;
    max-height: 90px;
    object-fit: contain;
    margin-bottom: 25px;
    filter: brightness(0) invert(1);
}

.footer-blurb {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #CBD5E0;
}

.badges p {
    font-size: 0.85rem;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.footer-col h4 {
    font-size: 0.95rem;
    margin-bottom: 25px;
    letter-spacing: 2px;
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #A0AEC0;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.footer-col ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

/* Service Areas Grid */
.areas-grid {
    display: flex;
    gap: 30px;
}

.areas-grid ul {
    flex: 1;
}

.areas-grid ul li {
    position: relative;
    padding-left: 15px;
    color: #A0AEC0;
    font-size: 0.9rem;
}

.areas-grid ul li::before {
    content: '◇';
    position: absolute;
    left: 0;
    color: #4A5568;
    font-size: 0.8rem;
    top: 2px;
}

/* CTA Column */
.hotline-title {
    font-size: 0.75rem;
    color: #A0AEC0;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.hotline-number {
    font-size: 1.6rem;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
    line-height: 1.2;
    white-space: nowrap;
}

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

.mt-3 {
    margin-top: 15px;
}

/* Footer Bottom */
.footer-bottom {
    background-color: var(--primary-color);
    padding: 25px 0;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--white);
    margin: 0;
}

/* --- Inner Page Hero --- */
.inner-hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 0 100px;
    position: relative;
    text-align: center;
    border-bottom: 5px solid var(--primary-light);
}

.inner-hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(15,23,42,0.85) 0%, rgba(30,41,59,0.7) 100%);
}

.inner-hero-container {
    z-index: 2;
}

/* --- About Story Layout --- */
.story-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.story-lead {
    font-size: 1.25rem;
    color: var(--heading-color);
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 25px;
}

.story-main p {
    font-size: 1.1rem;
    color: #4A5568;
    line-height: 1.8;
    margin-bottom: 20px;
}

.premium-callout {
    background: rgba(132, 194, 212, 0.05);
    border-left: 4px solid var(--primary-color);
    padding: 30px;
    border-radius: 0 12px 12px 0;
    display: flex;
    gap: 25px;
    margin: 40px 0;
    box-shadow: var(--shadow-sm);
}

.callout-icon-wrapper i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.callout-text h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--heading-color);
}

.callout-text p {
    margin-bottom: 0;
    font-size: 1.05rem;
}

.story-checklist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 30px 0 40px;
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--heading-color);
    font-weight: 500;
}

.glass-sidebar-card {
    background: var(--white);
    border: 1px solid rgba(132, 194, 212, 0.2);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 120px;
}

.premium-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.premium-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.premium-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.list-icon {
    width: 40px;
    height: 40px;
    background: rgba(132, 194, 212, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.list-text strong {
    display: block;
    color: var(--heading-color);
    margin-bottom: 5px;
}

.list-text span {
    font-size: 0.9rem;
    color: #718096;
    line-height: 1.5;
}

/* --- Memorial Collage --- */
.memorial-collage {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
    padding: 40px;
    background: rgba(132, 194, 212, 0.03);
    border-radius: 30px;
}

.collage-item {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

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

.collage-left, .collage-right {
    width: 280px;
    height: 350px;
    opacity: 0.9;
    transform: scale(0.95);
}

.collage-center {
    width: 350px;
    height: 450px;
    z-index: 2;
    position: relative;
    border: 4px solid var(--white);
}

.collage-item:hover {
    transform: scale(1.02);
    opacity: 1;
    z-index: 3;
}

.collage-badge {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    padding: 10px 25px;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--heading-color);
    white-space: nowrap;
}

.collage-badge i {
    color: #e53e3e;
}

/* --- Services Page Layout --- */
.policies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.policy-card {
    display: flex;
    flex-direction: column;
}

.policy-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 25px;
    box-shadow: 0 10px 20px rgba(132, 194, 212, 0.3);
}

.policy-card h3 {
    font-size: 1.35rem;
    color: var(--heading-color);
    margin-bottom: 15px;
}

.policy-card p {
    color: #4A5568;
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.core-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.core-service-card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
}

.core-service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(132, 194, 212, 0.3);
}

.core-service-title {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--heading-color);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.core-service-content p {
    color: #4A5568;
    line-height: 1.6;
    margin-bottom: 30px;
}

.core-service-footer {
    margin-top: auto;
}

.core-service-footer {
    margin-top: auto;
}

/* --- Locations Page Layout --- */
.regions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.region-card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 20px;
    padding: 50px;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.region-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(132, 194, 212, 0.4);
}

.region-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.region-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 2.2rem;
    margin: 0 auto 20px;
    box-shadow: 0 10px 20px rgba(132, 194, 212, 0.3);
}

.region-header h3 {
    font-size: 2rem;
    color: var(--heading-color);
    margin-bottom: 5px;
}

.region-header p {
    color: #718096;
    font-size: 1.1rem;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.region-content {
    flex-grow: 1;
    margin-bottom: 40px;
}

.city-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.city-list li a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #4A5568;
    font-size: 1.1rem;
    text-decoration: none;
    padding: 12px 20px;
    background: var(--bg-light);
    border-radius: 10px;
    transition: var(--transition);
    font-weight: 500;
}

.city-list li a i {
    color: var(--primary-color);
}

.city-list li a:hover {
    background: var(--primary-light);
    color: var(--primary-dark);
    transform: translateX(5px);
}

.region-footer {
    margin-top: auto;
}

/* --- Contact Page Layout --- */
.contact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0,0,0,0.05);
}

.contact-title {
    font-size: 2rem;
    color: var(--heading-color);
    margin-bottom: 30px;
}

.premium-form .form-group {
    margin-bottom: 25px;
}

.premium-form label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--heading-color);
    font-size: 0.95rem;
}

.premium-form label .required {
    color: #e53e3e;
}

.premium-form input,
.premium-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-color);
    transition: var(--transition);
    background: var(--bg-light);
}

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

.premium-form input:focus,
.premium-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(132, 194, 212, 0.2);
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
}

.contact-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-md);
}

.contact-info-content h2 {
    font-size: 2.2rem;
    color: var(--heading-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-info-content p {
    color: #4A5568;
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 30px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.detail-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 5px;
}

.detail-item div {
    display: flex;
    flex-direction: column;
}

.detail-item strong {
    color: var(--heading-color);
    font-size: 1.05rem;
    margin-bottom: 5px;
}

.detail-item span {
    color: #4A5568;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* --- Blog Page Layout --- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.blog-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.blog-thumbnail {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
}

.blog-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-category {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.blog-title {
    font-size: 1.4rem;
    color: var(--heading-color);
    line-height: 1.4;
    margin-bottom: 15px;
}

.blog-excerpt {
    color: #4A5568;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.footer-bottom-links {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 0.75rem !important;
    letter-spacing: 1px;
    font-weight: 600;
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        padding-top: 40px;
    }
    .hero-content {
        padding: 0 0 40px 0;
    }
    .hero-description {
        margin: 0 auto 2.5rem;
    }
    .services-grid, .steps-grid, .testimonials-slider, .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-container, .story-grid {
        flex-direction: column;
        grid-template-columns: 1fr;
    }
    .policies-grid {
        grid-template-columns: 1fr;
    }
    .core-services-grid {
        grid-template-columns: 1fr;
    }
    .regions-grid, .blog-grid {
        grid-template-columns: 1fr;
    }
    .contact-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .memorial-collage {
        flex-direction: column;
    }
    .collage-left, .collage-right, .collage-center {
        width: 100%;
        height: auto;
        aspect-ratio: 4/5;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
    }
    .nav-list {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .services-grid, .steps-grid, .testimonials-slider {
        grid-template-columns: 1fr;
    }
    .about .top-bar .container, .footer-cta-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .badges-grid {
        gap: 40px;
    }
}

/* --- Premium Enhancements --- */
.header.scrolled {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.text-gradient {
    background: linear-gradient(135deg, var(--heading-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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



.step-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
}

/* Scroll Reveals */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

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

/* --- Mobile Menu Styles --- */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--primary-dark);
    cursor: pointer;
}

/* --- Mobile Overrides (Appended for specific fixes) --- */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block !important;
    }
    .header-container {
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        flex-wrap: wrap !important;
    }
    .header-cta {
        display: none !important; /* Hide CTA to clean up header */
    }
    .nav {
        width: 100% !important;
    }
    .nav-list {
        display: none !important;
        flex-direction: column !important;
        width: 100% !important;
        text-align: center !important;
        gap: 15px !important;
        padding-top: 15px !important;
        border-top: 1px solid rgba(0,0,0,0.05) !important;
        margin-top: 15px !important;
    }
    .nav-list.active {
        display: flex !important;
    }
    .hero-title {
        font-size: 2.2rem !important;
    }
    .premium-hero {
        min-height: 50vh !important;
    }
    .hero-content.glass-panel {
        padding: 30px 20px !important;
    }
    .services-grid, .steps-grid, .testimonials-slider {
        grid-template-columns: 1fr !important;
    }
    .services-hero-grid {
        grid-template-columns: 1fr !important;
    }
    
    /* Fix: Included Services Layout on Mobile */
    .included-grid {
        grid-template-columns: 1fr !important;
    }
    .included-card {
        display: grid !important;
        grid-template-columns: auto 1fr !important;
        grid-template-rows: auto auto !important;
        gap: 5px 15px !important;
        text-align: left !important;
        align-items: start !important;
        padding: 20px !important;
    }
    .included-card .icon-circle {
        grid-row: 1 / span 2 !important;
        margin-bottom: 0 !important;
    }
    .included-card h4 {
        margin-bottom: 0 !important;
        align-self: end !important;
    }
    .included-card p {
        align-self: start !important;
        margin-bottom: 0 !important;
    }
    
    /* Fix: CTA Banner Layout on Mobile */
    .cta-banner-container {
        flex-direction: column !important;
        text-align: center !important;
        gap: 20px !important;
    }
    .cta-banner-action {
        width: 100% !important;
    }
    .cta-banner-action .btn {
        width: 100% !important;
        display: block !important;
    }
}

/* --- Extra Tightening & Hard Overflow Fixes --- */
html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
    width: 100% !important;
}

@media (max-width: 768px) {
    /* Tighten Header */
    .header {
        padding: 8px 0 !important;
    }
    .logo img {
        height: 55px !important; /* Smaller logo to bring everything up */
    }
    
    /* Tighten Hero */
    .premium-hero {
        min-height: auto !important; /* Let content dictate height */
        padding: 30px 0 !important; /* Reduced padding */
    }
    .hero-content.glass-panel {
        padding: 20px 15px !important;
        margin-bottom: 0 !important;
    }
    .hero-title {
        font-size: 2rem !important;
        margin-bottom: 10px !important;
    }
    .hero-subtitle {
        margin-bottom: 5px !important;
    }
    .hero-description {
        font-size: 1rem !important;
        margin-bottom: 20px !important;
    }
    .hero-actions {
        flex-direction: column !important;
        gap: 10px !important;
    }
    .hero-actions .btn {
        width: 100% !important;
    }
    .hero-trust-badge {
        margin-bottom: 15px !important;
        padding: 5px 12px !important;
    }
    
    /* Ensure no weird padding causes horizontal scrolling */
    .container {
        padding: 0 15px !important;
        max-width: 100vw !important;
        box-sizing: border-box !important;
    }
}

/* --- About Section Image & Badge Fixes --- */
.about-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image-wrapper {
    flex: 1;
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

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

.memorial-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--white);
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 2;
    border: 2px solid var(--primary-color);
}

.memorial-badge i {
    color: #e74c3c;
    font-size: 1.2rem;
}

.memorial-badge span {
    font-weight: 700;
    color: var(--heading-color);
    font-size: 0.95rem;
}

.about-content {
    flex: 1;
}

.founder-signature {
    font-family: 'Great Vibes', cursive;
    font-size: 3.5rem;
    color: var(--primary-color);
    margin: 30px 0;
    line-height: 1;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.05);
}

@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }
    .memorial-badge {
        right: 50%;
        transform: translateX(50%);
        width: max-content;
    }
    .section-header {
        text-align: center !important;
    }
}


/* --- Testimonials Grid Fixes & Footer 2-Column --- */
.footer-services-grid {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    width: 100%;
}

.footer-services-list {
    list-style: none;
    flex: 1;
    text-align: left;
}

.footer-services-list li {
    margin-bottom: 12px;
}

.footer-services-list a {
    color: #A0AEC0;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-services-list a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-services-list i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr !important;
    }
    .footer-services-grid {
        justify-content: center;
        gap: 30px;
    }
}

/* --- Agency Footer Link --- */
.footer-bottom-links .agency-link {
    color: var(--white) !important;
    text-decoration: none;
    transition: var(--transition);
}
.footer-bottom-links .agency-link:hover {
    color: var(--primary-color) !important;
}

/* --- Final Mobile Polish: Header & Hero Spacing --- */
@media (max-width: 768px) {
    /* Header Reordering */
    .header-container {
        display: flex !important;
        flex-wrap: wrap !important;
        align-items: center !important;
        justify-content: space-between !important;
    }
    .logo {
        order: 1 !important;
        flex-shrink: 0 !important;
    }
    .header-cta {
        order: 2 !important;
        display: block !important; /* Bring back the Book Now button */
        margin: 0 auto !important; /* Center it between logo and hamburger */
    }
    .header-cta .btn {
        padding: 8px 16px !important;
        font-size: 0.8rem !important;
    }
    .mobile-menu-btn {
        order: 3 !important;
        display: block !important;
    }
    .nav {
        order: 4 !important;
        width: 100% !important;
    }
    
    /* Make Logo Bigger without increasing header height */
    .header {
        padding: 5px 0 !important;
    }
    .logo img {
        height: 70px !important; /* Much larger */
        margin: -5px 0 !important; /* Negative margin to pull it out of bounds so header stays tight */
    }
    
    /* Hero Spacing Fix */
    .premium-hero {
        padding: 20px 0 50px 0 !important; /* Less space on top, more space on bottom to push container up */
    }
    .hero-content.glass-panel {
        margin-bottom: 0 !important;
    }
}

/* --- Inner Hero Mobile Adjustments --- */
@media (max-width: 768px) {
    .inner-hero {
        /* Scale down the container padding to make it thinner */
        padding: 20px 0 150px 0 !important; 
        /* The massive bottom padding exposes the background image below the glass panel */
        background-position: center bottom !important; /* Ensures the animal is in the bottom frame */
    }
    
    .inner-hero .glass-panel {
        padding: 20px !important;
        margin-top: 0 !important;
    }
    
    .inner-hero .hero-title {
        font-size: 2rem !important;
        line-height: 1.2 !important;
    }
    
    .inner-hero .hero-subtitle {
        font-size: 0.8rem !important;
        margin-bottom: 5px !important;
    }

    /* --- Contact Page Mobile Layout --- */
    .contact-split {
        display: flex !important;
        flex-direction: column !important;
    }
    
    /* Push Form to Bottom */
    .contact-form-wrapper {
        order: 2 !important;
    }
    
    /* Info at Top */
    .contact-info-wrapper {
        order: 1 !important;
        display: flex !important;
        flex-direction: column !important;
    }
    
    /* Move the image below the content */
    .contact-image {
        order: 2 !important;
        margin-top: 30px !important;
        margin-bottom: 0 !important;
    }
    
    .contact-info-content {
        order: 1 !important;
    }
}

/* --- Final Contact & Hero Refinements --- */
@media (max-width: 768px) {
    /* Push 'Let's chat' tightly up against the repeater */
    .contact-section.section {
        padding-top: 25px !important; 
    }
    /* Hyper-compress the glass panel to expose more of the background image */
    .inner-hero .glass-panel {
        padding: 12px 15px !important; 
    }
    /* Reduce font size so long titles (like on contact page) don't wrap as much */
    .inner-hero .hero-title {
        font-size: 1.5rem !important; 
        line-height: 1.1 !important;
    }
}

/* --- Specific Contact Hero Override --- */
@media (max-width: 768px) {
    .contact-hero {
        /* Reverse the padding geometry for the contact page */
        padding: 150px 0 20px 0 !important; 
        background-position: center top !important; /* Force pet's face into the top viewing window */
    }
}

/* --- Specific Blog Hero Override --- */
@media (max-width: 768px) {
    .blog-hero {
        /* Pushes the container to the absolute bottom of the image */
        padding: 180px 0 20px 0 !important; 
        background-position: center top !important; /* Forces the top of the image to be visible */
    }
}

/* --- Specific Location Hero Override --- */
@media (max-width: 768px) {
    .location-hero {
        /* Pushes the container to the absolute bottom of the image */
        padding: 180px 0 20px 0 !important; 
        background-position: center top !important; /* Forces the top of the image to be visible */
    }
}

/* --- Specific Services Hero Override --- */
@media (max-width: 768px) {
    .services-hero {
        /* Pushes the container to the absolute bottom of the image */
        padding: 180px 0 20px 0 !important; 
        background-position: center top !important; /* Forces the top of the image to be visible */
    }
    
    /* Ensure the title stays on one single line */
    .services-hero .hero-title {
        font-size: 1.4rem !important; 
        white-space: nowrap !important;
    }
    
    .services-hero .hero-subtitle {
        font-size: 0.75rem !important;
        white-space: nowrap !important;
    }
}

/* --- Specific About Hero Override --- */
@media (max-width: 768px) {
    .about-hero {
        /* Pushes the container to the absolute bottom of the image */
        padding: 180px 0 20px 0 !important; 
        
        /* Forces the top of the image to be visible, and shifts it left to reveal the dog's face */
        background-position: 20% top !important; 
    }
    
    /* Ensure the title stays on one single line */
    .about-hero .hero-title {
        font-size: 1.15rem !important; /* Smaller size to fit the long sentence on one line */
        white-space: nowrap !important;
    }
    
    .about-hero .hero-subtitle {
        font-size: 0.7rem !important;
        white-space: nowrap !important;
    }
}

/* --- Tighten Gap Below Repeater Globally --- */
.trust-badges-bar + .section {
    padding-top: 35px !important; /* Tightens the gap on desktop */
}

@media (max-width: 768px) {
    .trust-badges-bar + .section {
        padding-top: 15px !important; /* Hyper-compresses the gap on mobile */
    }
}
