/* ==========================================================================
   Rebecca Hughes Pet Services - CSS Stylesheet
   Design Style: Premium, warm, force-free canine care
   ========================================================================== */

/* --- Custom Variables & Tokens --- */
:root {
    /* Color Palette */
    --color-primary-hue: 153;
    --color-primary-sat: 32%;
    --color-primary-light: 27%;

    --primary: hsl(var(--color-primary-hue), var(--color-primary-sat), var(--color-primary-light));
    --primary-light: hsl(var(--color-primary-hue), var(--color-primary-sat), 35%);
    --primary-dark: hsl(var(--color-primary-hue), var(--color-primary-sat), 18%);
    --primary-subtle: hsl(var(--color-primary-hue), var(--color-primary-sat), 94%);

    --secondary-hue: 45;
    --secondary-sat: 75%;
    --secondary-light: 50%;
    --secondary: hsl(var(--secondary-hue), var(--secondary-sat), var(--secondary-light));
    --secondary-dark: hsl(var(--secondary-hue), var(--secondary-sat), 38%);
    --secondary-subtle: hsl(var(--secondary-hue), var(--secondary-sat), 95%);

    --slate-dark: #0f172a;
    --slate-gray: #334155;
    --slate-light: #64748b;
    --border-color: #e2e8f0;

    --bg-light: #f8fafc;
    --bg-white: #ffffff;

    --success: #10b981;
    --error: #ef4444;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Layout & Effects */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-round: 50%;

    --shadow-sm: 0 4px 6px -1px rgb(0 0 0 / 0.05), 0 2px 4px -2px rgb(0 0 0 / 0.05);
    --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.08), 0 4px 6px -4px rgb(0 0 0 / 0.08);
    --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-glass: 0 8px 32px 0 rgba(15, 23, 42, 0.08);

    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--slate-gray);
    background-color: var(--bg-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* --- Typography Defaults --- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--slate-dark);
    font-weight: 700;
    line-height: 1.25;
}

p {
    margin-bottom: 1rem;
}

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

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

/* --- Reusable Components & Layout --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 8rem 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.section-header {
    max-width: 650px;
    margin: 0 auto 5rem auto;
    text-align: center;
}

.section-tag {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--secondary-dark);
    margin-bottom: 1rem;
    background-color: var(--secondary-subtle);
    padding: 0.25rem 1rem;
    border-radius: 50px;
}

.section-title {
    font-size: 2.75rem;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.section-desc {
    font-size: 1.125rem;
    color: var(--slate-light);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-normal);
    gap: 0.75rem;
}

.btn:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.btn-icon {
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

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

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

.btn-primary:hover .btn-icon {
    transform: translateX(4px);
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--slate-dark);
}

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

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

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

.btn-lg {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

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

/* --- Header / Navigation Bar --- */
.navbar-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition-normal);
}

.navbar-container.scrolled {
    padding: 0.875rem 0;
    background: rgba(255, 255, 255, 0.85);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    font-size: 1.75rem;
    color: var(--primary);
    background-color: var(--primary-subtle);
    padding: 0.5rem;
    border-radius: var(--radius-sm);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--slate-dark);
    letter-spacing: -0.03em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.25rem;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--slate-gray);
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition-fast);
}

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

.nav-btn {
    padding: 0.625rem 1.5rem;
    font-size: 0.9rem;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--slate-dark);
    z-index: 1100;
}

.close-menu-icon {
    display: none;
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    padding-top: 13rem;
    padding-bottom: 9rem;
    background-color: var(--bg-light);
    overflow: hidden;
}

.hero-bg-shapes .shape {
    position: absolute;
    border-radius: var(--radius-round);
    filter: blur(100px);
    z-index: 0;
}

.hero-bg-shapes .shape-1 {
    width: 450px;
    height: 450px;
    background: rgba(46, 90, 68, 0.06);
    top: -50px;
    right: -50px;
}

.hero-bg-shapes .shape-2 {
    width: 350px;
    height: 350px;
    background: rgba(212, 175, 55, 0.05);
    bottom: -50px;
    left: -100px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4.5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--primary-subtle);
    padding: 0.375rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.75rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: var(--radius-round);
    background-color: var(--primary);
    animation: pulse 2s infinite;
}

.badge-text {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary-dark);
}

.hero-title {
    font-size: 3.85rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

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

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--slate-gray);
    margin-bottom: 1.75rem;
    max-width: 580px;
}

/* Boutique Hotel Callout */
.hero-hotel-callout {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(240, 248, 255, 0.9) 100%);
    border: 1.5px solid rgba(52, 94, 75, 0.25);
    border-radius: 16px;
    padding: 0.9rem 1.4rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(52, 94, 75, 0.1), 0 1px 4px rgba(0, 0, 0, 0.06);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    max-width: 520px;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.hero-hotel-callout:hover {
    box-shadow: 0 8px 28px rgba(52, 94, 75, 0.18), 0 2px 6px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.hotel-callout-icon {
    font-size: 1.6rem;
    color: var(--primary);
    flex-shrink: 0;
}

.hero-hotel-callout div {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.hotel-callout-headline {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--slate-dark);
    line-height: 1.3;
}

.hotel-callout-sub {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--primary-light);
    letter-spacing: 0.01em;
}

.hero-ctas {
    display: flex;
    gap: 1.25rem;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: visible;
    box-shadow: var(--shadow-lg);
}

.hero-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.88);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 10;
}

.badge-1 {
    top: 15%;
    left: -15%;
    animation: float 4s ease-in-out infinite;
}

.badge-2 {
    bottom: 15%;
    right: -10%;
    animation: float 4s ease-in-out infinite 2s;
}

.gold-star {
    font-size: 1.5rem;
    color: var(--secondary);
}

.heart-icon {
    font-size: 1.5rem;
    color: var(--primary);
}

.badge-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--slate-dark);
}

.badge-label {
    display: block;
    font-size: 0.75rem;
    color: var(--slate-light);
}

/* --- Trust Bar Section --- */
.trust-bar {
    background-color: var(--slate-dark);
    padding: 2.25rem 0;
    color: var(--bg-white);
}

.trust-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.trust-icon {
    font-size: 1.5rem;
    color: var(--secondary);
}

.trust-text {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.trust-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-link:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--secondary);
    transform: translateY(-2px);
}




/* --- Intro Overview Section --- */
.intro-overview-section {
    background: var(--bg-white);
}

.intro-overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.intro-overview-title {
    margin-bottom: 1rem;
}

.intro-overview-lead {
    font-size: 1.05rem;
    color: var(--slate-gray);
    line-height: 1.75;
    margin-bottom: 2rem;
}

.intro-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.intro-service-pill {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, #f0f7f4 0%, #e0efe8 100%);
    border: 1px solid rgba(52, 94, 75, 0.18);
    border-radius: 10px;
    padding: 0.65rem 1rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--slate-dark);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.intro-service-pill i {
    font-size: 0.9rem;
    color: var(--primary);
    flex-shrink: 0;
}

.intro-service-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(52, 94, 75, 0.14);
    border-color: rgba(52, 94, 75, 0.4);
}

.intro-overview-body {
    font-size: 1rem;
    color: var(--slate-gray);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.intro-overview-body strong {
    color: var(--slate-dark);
    font-weight: 700;
}

.intro-mission-callout {
    display: flex;
    align-items: flex-start;
    gap: 1.1rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 16px;
    padding: 1.4rem 1.6rem;
    margin-top: 1.75rem;
    box-shadow: 0 6px 24px rgba(52, 94, 75, 0.25);
    color: #fff;
}

.intro-mission-icon {
    font-size: 2rem;
    flex-shrink: 0;
    opacity: 0.9;
    margin-top: 0.15rem;
}

.intro-mission-callout div {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.intro-mission-headline {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.3;
}

.intro-mission-sub {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.65;
}

/* --- Services Section --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.service-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(46, 90, 68, 0.25);
}

.service-card-btn {
    margin-top: auto;
}

.service-icon-wrapper {
    background-color: var(--primary-subtle);
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.service-icon {
    font-size: 1.75rem;
    color: var(--primary);
}

.service-card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card-desc {
    font-size: 1rem;
    color: var(--slate-light);
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-bullets {
    list-style: none;
    margin-bottom: 2.5rem;
}

.service-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    margin-bottom: 0.85rem;
    color: var(--slate-gray);
}

.check-bullet {
    color: var(--success);
    margin-top: 0.25rem;
    font-size: 0.85rem;
}

.service-link {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
}

.link-arrow {
    font-size: 0.75rem;
    transition: var(--transition-fast);
}

.service-link:hover {
    color: var(--primary-light);
}

.service-link:hover .link-arrow {
    transform: translateX(3px);
}

/* --- Philosophy & About Section --- */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.about-img-box {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.about-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.img-box-1 {
    transform: translateY(-20px);
}

.img-box-2 {
    transform: translateY(20px);
}

.about-content {
    padding-left: 1rem;
}

.about-subtitle {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--slate-dark);
}

.about-text {
    font-size: 1.05rem;
    color: var(--slate-gray);
    margin-bottom: 1.5rem;
}

.about-highlights {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.highlight-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.highlight-icon {
    font-size: 1.25rem;
    color: var(--primary);
    background-color: var(--primary-subtle);
    padding: 0.75rem;
    border-radius: var(--radius-sm);
}

.highlight-title {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.highlight-desc {
    font-size: 0.95rem;
    color: var(--slate-light);
}

/* --- Testimonials / Referrals Section --- */
.testimonials-section {
    background: radial-gradient(circle at 10% 20%, rgba(46, 90, 68, 0.03) 0%, rgba(212, 175, 55, 0.01) 90%);
}

.testimonials-slider-container {
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    padding: 1rem;
}

.testimonials-slider {
    position: relative;
    min-height: 360px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-slow), visibility var(--transition-slow);
    z-index: 1;
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 4rem;
    box-shadow: var(--shadow-md);
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 3rem;
    right: 4rem;
    font-size: 4rem;
    color: rgba(46, 90, 68, 0.05);
    line-height: 1;
}

.rating-stars {
    margin-bottom: 1.5rem;
}

.rating-stars i {
    color: var(--secondary);
    font-size: 1.1rem;
    margin-right: 0.125rem;
}

.testimonial-subject {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.testimonial-body {
    font-size: 1.1rem;
    color: var(--slate-gray);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background-color: var(--secondary-subtle);
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--secondary-dark);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--slate-dark);
}

.author-pet {
    font-size: 0.9rem;
    color: var(--slate-light);
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3.5rem;
    gap: 2rem;
}

.slider-btn {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    width: 48px;
    height: 48px;
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
    color: var(--slate-dark);
}

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

.slider-dots {
    display: flex;
    gap: 0.75rem;
}

.slider-dot {
    width: 10px;
    height: 10px;
    background-color: var(--border-color);
    border-radius: var(--radius-round);
    cursor: pointer;
    transition: var(--transition-fast);
}

.slider-dot.active {
    background-color: var(--primary);
    transform: scale(1.35);
}

/* --- Gallery Section --- */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 0.625rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-fast);
    color: var(--slate-gray);
    font-size: 0.95rem;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary);
    color: var(--bg-white);
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.gallery-search-container {
    max-width: 500px;
    margin: 0 auto 4rem auto;
}

.search-input-wrapper {
    position: relative;
}

.search-icon {
    position: absolute;
    top: 50%;
    left: 1.25rem;
    transform: translateY(-50%);
    color: var(--slate-light);
    font-size: 1rem;
}

#gallerySearch {
    width: 100%;
    padding: 1rem 1.5rem 1rem 3rem;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

#gallerySearch:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(46, 90, 68, 0.08);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    min-height: 400px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    aspect-ratio: 4 / 3;
    cursor: pointer;
    animation: fadeIn 0.4s ease forwards;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.2) 60%, transparent 100%);
    opacity: 0;
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    color: var(--bg-white);
}

.gallery-item:hover .gallery-image {
    transform: scale(1.08);
}

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

.gallery-info-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    transform: translateY(10px);
    transition: transform var(--transition-normal);
}

.gallery-info-desc {
    font-size: 0.85rem;
    opacity: 0.85;
    transform: translateY(10px);
    transition: transform var(--transition-normal) 0.05s;
}

.gallery-item:hover .gallery-info-title,
.gallery-item:hover .gallery-info-desc {
    transform: translateY(0);
}

.gallery-pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 4rem;
}

.page-num {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    background-color: var(--bg-white);
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.page-num:hover,
.page-num.active {
    background-color: var(--primary);
    color: var(--bg-white);
    border-color: var(--primary);
}

/* --- Lightbox Modal --- */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.95);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 85%;
    max-height: 80%;
    position: relative;
}

#lightboxImg {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
}

.lightbox-caption {
    color: var(--bg-white);
    margin-top: 1.5rem;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    text-align: center;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: var(--bg-white);
    font-size: 3rem;
    cursor: pointer;
    opacity: 0.7;
    transition: var(--transition-fast);
}

.lightbox-close:hover {
    opacity: 1;
}

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

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

.lightbox-prev {
    left: 3rem;
}

.lightbox-next {
    right: 3rem;
}

/* --- FAQ Section --- */
.faq-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 5rem;
    align-items: flex-start;
}

.faq-left-desc {
    font-size: 1.1rem;
    color: var(--slate-light);
    margin-bottom: 3rem;
}

.faq-image-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.faq-side-img {
    width: 100%;
    height: 340px;
    object-fit: cover;
}

.faq-accordion-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background-color: var(--bg-white);
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-item:hover {
    border-color: rgba(46, 90, 68, 0.2);
    box-shadow: var(--shadow-sm);
}

.faq-header {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    text-align: left;
}

.faq-header:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.faq-question {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--slate-dark);
}

.faq-icon-indicator {
    font-size: 1rem;
    color: var(--primary);
    transition: var(--transition-normal);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal) cubic-bezier(0, 1, 0, 1);
    background-color: var(--bg-light);
}

.faq-item.open .faq-content {
    max-height: 1000px;
    transition: max-height var(--transition-normal) cubic-bezier(1, 0, 1, 0);
}

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

.faq-answer {
    padding: 1.5rem 2rem;
    color: var(--slate-gray);
    font-size: 1rem;
    line-height: 1.7;
    border-top: 1px solid var(--border-color);
}

/* --- Contact & Booking Section --- */
.contact-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4.5rem;
    align-items: stretch;
}

.contact-form-wrapper {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 4rem;
    box-shadow: var(--shadow-md);
}

.contact-form-desc {
    font-size: 1.05rem;
    color: var(--slate-light);
    margin-bottom: 3rem;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--slate-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-fast);
    background-color: var(--bg-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background-color: var(--bg-white);
    box-shadow: 0 0 0 4px rgba(46, 90, 68, 0.08);
}

.form-group input.invalid,
.form-group select.invalid {
    border-color: var(--error);
    background-color: rgba(239, 68, 68, 0.02);
}

.error-msg {
    display: none;
    font-size: 0.8rem;
    color: var(--error);
    font-weight: 500;
}

.form-group input.invalid~.error-msg,
.form-group select.invalid~.error-msg {
    display: block;
}

/* --- Contact Details Card --- */
.contact-details-card {
    background-color: var(--slate-dark);
    border-radius: var(--radius-lg);
    padding: 4rem;
    color: var(--bg-white);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-md);
}

.contact-card-title {
    color: var(--bg-white);
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
}

.contact-card-text {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 2.25rem;
    margin-bottom: 3.5rem;
}

.contact-detail-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.contact-detail-icon {
    font-size: 1.25rem;
    color: var(--secondary);
    background: rgba(255, 255, 255, 0.08);
    padding: 0.875rem;
    border-radius: var(--radius-sm);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.detail-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.25rem;
}

.detail-value {
    display: block;
    font-weight: 600;
    font-size: 1.05rem;
}

.detail-value:hover {
    color: var(--secondary);
}

.inline-icon {
    font-size: 0.75rem;
    margin-left: 0.25rem;
}

.contact-cta-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 2rem;
}

.box-title {
    font-size: 1.15rem;
    color: var(--bg-white);
    margin-bottom: 0.5rem;
}

.box-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

/* WhatsApp elements */
.contact-detail-icon.whatsapp-color {
    color: #25D366;
    background: rgba(37, 211, 102, 0.1);
}

.whatsapp-cta-box {
    background: rgba(37, 211, 102, 0.06);
    border: 1px solid rgba(37, 211, 102, 0.25);
    margin-bottom: 1.5rem;
}

.whatsapp-cta-box .box-title {
    color: #25D366;
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background-color: #20ba5a;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.footer-whatsapp-icon {
    transition: var(--transition-fast);
}

.social-icons a:hover .footer-whatsapp-icon {
    color: #25D366;
}


/* --- Success Modal --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.6);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    z-index: 3000;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.success-modal {
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 3.5rem;
    max-width: 480px;
    width: 90%;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transform: translateY(20px);
    transition: transform var(--transition-normal);
}

.modal-overlay.active .success-modal {
    transform: translateY(0);
}

.success-icon-badge {
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--success);
    width: 72px;
    height: 72px;
    border-radius: var(--radius-round);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.modal-title {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.modal-text {
    color: var(--slate-light);
    margin-bottom: 2rem;
}

/* --- Footer --- */
.site-footer {
    background-color: var(--slate-dark);
    color: rgba(255, 255, 255, 0.65);
    padding-top: 6rem;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4.5rem;
    padding-bottom: 5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.6;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-size: 1.1rem;
    transition: var(--transition-fast);
}

.social-icons a:hover {
    background-color: var(--primary);
    transform: translateY(-2px);
}

.footer-links-group {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-title {
    color: var(--bg-white);
    font-size: 1.15rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-links a {
    font-size: 0.95rem;
}

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

.footer-bottom {
    padding: 2.25rem 0;
    font-size: 0.875rem;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

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

/* --- Animations --- */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

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

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(46, 90, 68, 0.4);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(46, 90, 68, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(46, 90, 68, 0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* --- Scroll Reveal Classes --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

/* Large Tablets & Small Desktops */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        text-align: center;
    }

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

    .hero-subtitle {
        margin: 0 auto 2rem auto;
    }

    .hero-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }

    .hero-img {
        height: 420px;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .img-box-1 {
        transform: translateY(0);
    }

    .img-box-2 {
        transform: translateY(0);
    }

    .about-content {
        padding-left: 0;
    }

    .faq-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .faq-side-img {
        height: 280px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

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

/* Mobile & Small Tablets */
@media (max-width: 768px) {
    .section-padding {
        padding: 5rem 0;
    }

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

    /* Toggle Mobile Navigation */
    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--slate-dark);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        padding: 3rem;
        transition: right var(--transition-normal);
        box-shadow: -10px 0 30px rgba(15, 23, 42, 0.15);
        z-index: 1050;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links .nav-link {
        color: rgba(255, 255, 255, 0.75);
        font-size: 1.15rem;
        width: 100%;
        text-align: center;
    }

    .nav-links .nav-link:hover,
    .nav-links .nav-link.active {
        color: var(--secondary);
    }

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

    .nav-links .nav-btn {
        width: 100%;
    }

    .menu-toggle[aria-expanded="true"] .open-menu-icon {
        display: none;
    }

    .menu-toggle[aria-expanded="true"] .close-menu-icon {
        display: block;
        color: var(--bg-white);
    }

    .hero-title {
        font-size: 2.85rem;
    }

    .hero-ctas {
        flex-direction: column;
        width: 100%;
    }

    .hero-ctas .btn {
        width: 100%;
    }

    .badge-1 {
        left: -5%;
    }

    .badge-2 {
        right: -5%;
    }

    .intro-overview-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

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

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

    .service-card {
        padding: 2rem;
    }

    .testimonial-card {
        padding: 2rem;
    }

    .quote-icon {
        top: 2rem;
        right: 2rem;
        font-size: 2.5rem;
    }

    .testimonial-subject {
        font-size: 1.25rem;
    }

    .testimonial-body {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .slider-controls {
        margin-top: 2.5rem;
    }

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

    .lightbox-nav {
        width: 48px;
        height: 48px;
    }

    .lightbox-prev {
        left: 1rem;
    }

    .lightbox-next {
        right: 1rem;
    }

    .contact-form-wrapper {
        padding: 2.25rem;
    }

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

    .contact-details-card {
        padding: 2.5rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* ==========================================================================
   SEO & CRO Additions
   ========================================================================== */

/* --- Local Area Coverage Strip --- */
.local-area-coverage {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-top: 1.25rem;
    padding: 0.9rem 1.1rem;
    background: var(--bg-light);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.local-area-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--slate-gray);
    display: flex;
    align-items: center;
    gap: 0.35rem;
    white-space: nowrap;
    padding-top: 0.15rem;
}

.local-area-label i {
    color: var(--primary);
}

.local-area-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.area-tag {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--primary-dark);
    background: var(--primary-subtle);
    border: 1px solid hsla(var(--color-primary-hue), var(--color-primary-sat), 50%, 0.25);
    border-radius: 20px;
    padding: 0.2rem 0.7rem;
    white-space: nowrap;
}

/* --- Services Value Tag --- */

.services-value-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--primary-subtle);
    border: 1px solid hsla(var(--color-primary-hue), var(--color-primary-sat), 60%, 0.35);
    border-radius: 50px;
    padding: 0.55rem 1.25rem;
    font-size: 0.875rem;
    color: var(--slate-gray);
    margin-top: 1.2rem;
    flex-wrap: wrap;
}

.services-value-icon {
    color: var(--primary);
    font-size: 0.8rem;
    flex-shrink: 0;
}

.services-value-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.services-value-link:hover {
    text-decoration: underline;
}

/* --- Form Privacy Note --- */
.form-privacy-note {
    font-size: 0.8rem;
    color: var(--slate-light);
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
    margin-bottom: 1rem;
    line-height: 1.5;
    opacity: 0.8;
}

.form-privacy-note i {
    font-size: 0.75rem;
    margin-top: 0.18rem;
    flex-shrink: 0;
    color: var(--primary);
}

/* --- Optional Field Label --- */
.field-optional {
    font-size: 0.78rem;
    font-weight: 400;
    color: var(--slate-light);
    margin-left: 0.25rem;
}

/* --- Section CTA Bars --- */
.section-cta-bar {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-subtle) 0%, var(--bg-light) 100%);
}

.section-cta-bar-alt {
    background: var(--primary);
}

.section-cta-bar-alt .section-cta-heading,
.section-cta-bar-alt .section-cta-text {
    color: #fff !important;
}

.section-cta-bar-alt .btn {
    background: #fff !important;
    color: var(--primary) !important;
    border-color: #fff !important;
}

.section-cta-bar-alt .btn:hover {
    background: var(--secondary-subtle) !important;
}

.section-cta-container {
    text-align: center !important;
}

.section-cta-content {
    max-width: 650px !important;
    margin: 0 auto !important;
}

.section-cta-heading {
    font-size: 2rem !important;
    font-family: var(--font-heading) !important;
    font-weight: 700 !important;
    color: var(--slate-dark) !important;
    margin-bottom: 0.75rem !important;
}

.section-cta-text {
    font-size: 1.1rem !important;
    color: var(--slate-light) !important;
    margin-bottom: 2rem !important;
}

/* --- Sticky Mobile CTA Bar --- */
.mobile-sticky-cta {
    display: none;
}

@media (max-width: 768px) {
    .mobile-sticky-cta {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 9999;
        background: #fff;
        border-top: 1px solid var(--border-color);
        padding: 0.75rem 1rem;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
        gap: 0.75rem;
        align-items: center;
        justify-content: center;
    }

    .mobile-sticky-cta .btn {
        flex: 1;
        max-width: 220px;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .mobile-sticky-cta .btn-whatsapp-sticky {
        background: #25D366;
        color: #fff;
        border-color: #25D366;
    }

    .mobile-sticky-cta .btn-whatsapp-sticky:hover {
        background: #1ebe5d;
    }

    body {
        padding-bottom: 4.5rem;
    }
}

/* --- Floating WhatsApp Button --- */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 2500;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: #25D366;
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px;
    padding: 0.75rem 1.4rem 0.75rem 1rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.2s ease;
    animation: whatsappPulse 2.8s ease-in-out infinite;
}

.whatsapp-float:hover {
    background: #1ebe5d;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
    animation: none;
}

.whatsapp-float-icon {
    font-size: 1.35rem;
    line-height: 1;
}

@keyframes whatsappPulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
    }

    50% {
        box-shadow: 0 4px 28px rgba(37, 211, 102, 0.7);
    }
}

/* Mobile: icon only on very small screens */
@media (max-width: 480px) {
    .whatsapp-float {
        padding: 0.85rem;
        border-radius: 50%;
        bottom: 1.25rem;
        right: 1.25rem;
    }

    .whatsapp-float-label {
        display: none;
    }

    .whatsapp-float-icon {
        font-size: 1.5rem;
    }
}