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

/* Color Variables & Root Definitions */
:root {
    --primary-blue: #0057FF;
    --primary-blue-rgb: 0, 87, 255;
    --primary-yellow: #FFD400;
    --primary-yellow-rgb: 255, 212, 0;
    --secondary-dark: #0F172A;
    --secondary-light: #F8F9FA;
    --white: #FFFFFF;
    --text-muted: #64748B;
    --gradient-blue: linear-gradient(135deg, #0057FF 0%, #002D9C 100%);
    --gradient-yellow: linear-gradient(135deg, #FFD400 0%, #FFB000 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0.3) 100%);
    --gradient-glass-dark: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.6) 100%);
    --shadow-premium: 0 20px 40px -15px rgba(0, 87, 255, 0.12);
    --shadow-hover: 0 30px 60px -15px rgba(0, 87, 255, 0.22);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --border-radius-lg: 24px;
    --border-radius-md: 16px;
    --border-radius-sm: 8px;
}

/* Global Reset & Typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--secondary-light);
    color: var(--secondary-dark);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--secondary-light);
}
::-webkit-scrollbar-thumb {
    background: rgba(0, 87, 255, 0.3);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-blue);
}

/* Modern Loading Screen */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--secondary-dark);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

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

.paw-loader {
    font-size: 4rem;
    color: var(--primary-yellow);
    animation: pulse-paw 1.5s infinite ease-in-out;
}

.loader-text {
    font-family: 'Outfit', sans-serif;
    color: var(--white);
    font-weight: 700;
    letter-spacing: 2px;
    margin-top: 15px;
    font-size: 1.25rem;
}

.loader-bar {
    width: 150px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 10px auto 0;
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.loader-progress {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-yellow));
    position: absolute;
    left: -100%;
    animation: loader-slide 2s infinite linear;
}

@keyframes pulse-paw {
    0%, 100% { transform: scale(0.85); opacity: 0.7; }
    50% { transform: scale(1.1); opacity: 1; }
}

@keyframes loader-slide {
    0% { left: -100%; }
    50% { left: 0%; }
    100% { left: 100%; }
}

/* Premium Typography Utility */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto 3.5rem auto;
}

.text-gradient-blue {
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-yellow {
    background: var(--gradient-yellow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn-premium {
    padding: 0.85rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition-smooth);
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.btn-premium-primary {
    background: var(--gradient-blue);
    color: var(--white);
    box-shadow: 0 10px 20px -5px rgba(0, 87, 255, 0.3);
}

.btn-premium-primary:hover {
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 15px 25px -5px rgba(0, 87, 255, 0.4);
}

.btn-premium-secondary {
    background: var(--gradient-yellow);
    color: var(--secondary-dark);
    box-shadow: 0 10px 20px -5px rgba(255, 212, 0, 0.3);
}

.btn-premium-secondary:hover {
    color: var(--secondary-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 25px -5px rgba(255, 212, 0, 0.45);
}

.btn-premium-outline-white {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-premium-outline-white:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: translateY(-3px);
}

.btn-premium-outline-blue {
    background: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
}

.btn-premium-outline-blue:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-3px);
}

/* Sticky Navbar */
.navbar-petcab {
    background-color: transparent;
    padding: 1.5rem 0;
    transition: var(--transition-smooth);
    z-index: 1000;
}

.navbar-petcab.sticky {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.85rem 0;
    box-shadow: 0 10px 30px -10px rgba(0, 87, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.navbar-petcab .navbar-brand {
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--secondary-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-petcab .navbar-brand i {
    color: var(--primary-blue);
    font-size: 1.8rem;
    transition: var(--transition-smooth);
}

.navbar-petcab.sticky .navbar-brand i {
    color: var(--primary-blue);
}

.navbar-petcab .nav-link {
    font-weight: 500;
    color: var(--secondary-dark);
    margin: 0 0.5rem;
    position: relative;
    transition: var(--transition-smooth);
    opacity: 0.85;
}

.navbar-petcab .nav-link:hover,
.navbar-petcab .nav-link.active {
    color: var(--primary-blue);
    opacity: 1;
}

.navbar-petcab .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 8px;
    width: 0;
    height: 3px;
    background: var(--gradient-blue);
    border-radius: 5px;
    transition: var(--transition-smooth);
}

.navbar-petcab .nav-link:hover::after,
.navbar-petcab .nav-link.active::after {
    width: calc(100% - 16px);
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon-custom {
    width: 25px;
    height: 2px;
    background-color: var(--secondary-dark);
    display: block;
    position: relative;
    transition: var(--transition-smooth);
}

.navbar-toggler-icon-custom::before,
.navbar-toggler-icon-custom::after {
    content: '';
    width: 25px;
    height: 2px;
    background-color: var(--secondary-dark);
    display: block;
    position: absolute;
    transition: var(--transition-smooth);
}

.navbar-toggler-icon-custom::before {
    top: -8px;
}

.navbar-toggler-icon-custom::after {
    top: 8px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon-custom {
    background-color: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon-custom::before {
    transform: rotate(45deg);
    top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon-custom::after {
    transform: rotate(-45deg);
    top: 0;
}

/* Glassmorphism General Cards */
.glass-card {
    background: var(--gradient-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(255, 255, 255, 0.7);
}

/* 1. Hero Section */
.hero-section {
    position: relative;
    padding: 10rem 0 6rem 0;
    background: radial-gradient(circle at 10% 20%, rgba(0, 87, 255, 0.06) 0%, rgba(255, 212, 0, 0.03) 90.1%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-subtitle {
    font-weight: 600;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.hero-title {
    font-size: 3.75rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--secondary-dark);
    margin-bottom: 1.5rem;
}

.hero-text {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-blob {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 87, 255, 0.15) 0%, rgba(255, 212, 0, 0.05) 70%);
    filter: blur(50px);
    z-index: 0;
    animation: blob-bounce 10s infinite alternate;
}

.hero-image {
    max-width: 100%;
    height: auto;
    z-index: 1;
    position: relative;
    border-radius: var(--border-radius-lg);
    border: 6px solid var(--white);
    box-shadow: 0 30px 60px rgba(0, 87, 255, 0.15);
    animation: image-float 6s infinite ease-in-out;
}

/* Hero floating elements */
.floating-element {
    position: absolute;
    z-index: 2;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--border-radius-md);
    padding: 0.75rem 1.25rem;
    box-shadow: 0 15px 30px rgba(0, 87, 255, 0.08);
    display: flex;
    align-items: center;
    gap: 10px;
}

.fe-1 {
    top: 10%;
    left: -5%;
    animation: float-slow 8s infinite ease-in-out;
}
.fe-2 {
    bottom: 15%;
    right: -2%;
    animation: float-slow 7s infinite ease-in-out alternate;
}
.fe-3 {
    top: 50%;
    left: -10%;
    animation: float-slow 9s infinite ease-in-out 1s;
}

.floating-element i {
    font-size: 1.5rem;
}
.fe-1 i { color: var(--primary-blue); }
.fe-2 i { color: var(--primary-yellow); }
.fe-3 i { color: #10B981; }

.floating-element span {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--secondary-dark);
}

/* Wave shape divider */
.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.wave-divider .shape-fill {
    fill: var(--white);
}

@keyframes float-slow {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(3deg); }
}

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

@keyframes blob-bounce {
    0% { transform: scale(1) translate(0px, 0px); }
    100% { transform: scale(1.15) translate(20px, -20px); }
}

/* 2. Trusted Statistics Section */
.statistics-section {
    padding: 5rem 0;
    background: var(--white);
    position: relative;
    z-index: 2;
}

.stat-card {
    text-align: center;
    padding: 1.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* 3. About Section */
.about-section {
    padding: 8rem 0;
    position: relative;
    background: var(--secondary-light);
}

.about-img-wrapper {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
}

.about-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.about-img-wrapper:hover .about-img {
    transform: scale(1.03);
}

.about-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--gradient-blue);
    color: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
    box-shadow: 0 15px 30px rgba(0, 87, 255, 0.2);
    text-align: center;
    max-width: 180px;
}

.about-badge .number {
    font-size: 2.25rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.about-badge .text {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-card {
    background: var(--white);
    border: none;
    border-radius: var(--border-radius-md);
    padding: 1.75rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    height: 100%;
    transition: var(--transition-smooth);
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-premium);
}

.about-card-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 87, 255, 0.1);
    color: var(--primary-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
}

/* 4. Services Section */
.services-section {
    padding: 8rem 0;
    background: var(--white);
    position: relative;
}

.service-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-icon-box {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(0, 87, 255, 0.1) 0%, rgba(0, 87, 255, 0.03) 100%);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.75rem;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon-box {
    background: var(--gradient-blue);
    color: var(--white);
    transform: rotate(-5deg) scale(1.05);
}

.service-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--secondary-dark);
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.75rem;
}

.service-link {
    font-weight: 600;
    color: var(--primary-blue);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.service-link i {
    transition: var(--transition-smooth);
}

.service-card:hover .service-link {
    color: var(--secondary-dark);
}

.service-card:hover .service-link i {
    transform: translateX(5px);
}

/* SVG divider curve */
.curve-divider-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.curve-divider-top svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 70px;
}

.curve-divider-top .shape-fill {
    fill: var(--secondary-light);
}

/* 5. Why Choose Us Section */
.why-choose-section {
    padding: 8rem 0;
    background: var(--secondary-light);
}

.feature-box {
    display: flex;
    gap: 20px;
    background: var(--white);
    padding: 1.75rem;
    border-radius: var(--border-radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: var(--transition-smooth);
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-premium);
}

.feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(255, 212, 0, 0.15);
    color: #E29400; /* Darkened yellow for accessibility */
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
}

.feature-box:hover .feature-icon {
    background: var(--gradient-yellow);
    color: var(--secondary-dark);
}

.feature-box h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.feature-box p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* 6. How It Works Section */
.how-it-works-section {
    padding: 8rem 0;
    background: var(--white);
    position: relative;
}

.timeline-row {
    position: relative;
}

.timeline-line {
    position: absolute;
    top: 50px;
    left: 10%;
    width: 80%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--primary-yellow) 100%);
    z-index: 1;
    border-radius: 10px;
}

.timeline-step {
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-number-circle {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: var(--white);
    border: 4px solid var(--primary-blue);
    color: var(--primary-blue);
    font-size: 1.75rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.75rem auto;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
}

.timeline-step:hover .step-number-circle {
    background: var(--gradient-blue);
    border-color: var(--white);
    color: var(--white);
    transform: scale(1.1);
}

.timeline-step:nth-child(even) .step-number-circle {
    border-color: var(--primary-yellow);
    color: var(--secondary-dark);
}

.timeline-step:nth-child(even):hover .step-number-circle {
    background: var(--gradient-yellow);
    border-color: var(--white);
    color: var(--secondary-dark);
}

.timeline-step h5 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.timeline-step p {
    color: var(--text-muted);
    font-size: 0.9rem;
    max-width: 200px;
    margin: 0 auto;
}

/* Timeline Responsive Rules */
@media (max-width: 991.98px) {
    .timeline-line {
        display: none;
    }
    .timeline-step {
        margin-bottom: 3rem;
    }
}

/* 7. Fleet Showcase Section */
.fleet-section {
    padding: 8rem 0;
    background: var(--secondary-light);
}

.fleet-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    height: 100%;
    transition: var(--transition-smooth);
}

.fleet-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium);
}

.fleet-img-box {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle, rgba(0,87,255,0.03) 0%, rgba(255,212,0,0.02) 100%);
    padding: 2rem 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fleet-img {
    max-width: 80%;
    height: auto;
    transition: var(--transition-smooth);
}

.fleet-card:hover .fleet-img {
    transform: scale(1.06);
}

.fleet-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-yellow);
    color: var(--secondary-dark);
    font-weight: 700;
    padding: 0.4rem 1rem;
    border-radius: 30px;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.fleet-info {
    padding: 2rem;
}

.fleet-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.fleet-capacity {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.fleet-capacity i {
    color: var(--primary-blue);
}

.fleet-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.fleet-features li {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.fleet-features li i {
    color: #10B981;
    font-size: 0.8rem;
}

/* 8. Pet Safety Section */
.safety-section {
    padding: 8rem 0;
    background: var(--gradient-blue);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.safety-bg-blob {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 212, 0, 0.15) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    pointer-events: none;
}

.safety-section h2 {
    color: var(--white);
}

.safety-item {
    display: flex;
    gap: 20px;
    margin-bottom: 2rem;
}

.safety-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--primary-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.safety-item h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.safety-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.safety-video-wrapper {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    aspect-ratio: 16/9;
}

.safety-video-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.safety-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--gradient-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-dark);
    font-size: 1.5rem;
    border: none;
    box-shadow: 0 10px 25px rgba(255, 212, 0, 0.4);
    transition: var(--transition-smooth);
}

.safety-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 15px 35px rgba(255, 212, 0, 0.6);
}

/* 9. Testimonials Section */
.testimonials-section {
    padding: 8rem 0;
    background: var(--white);
}

.testimonial-carousel-container {
    max-width: 850px;
    margin: 0 auto;
}

.testimonial-card-premium {
    background: var(--secondary-light);
    border-radius: var(--border-radius-lg);
    padding: 3.5rem;
    position: relative;
    border: 1px solid rgba(0, 87, 255, 0.05);
}

.testimonial-card-premium::before {
    content: '“';
    position: absolute;
    top: 20px;
    left: 40px;
    font-size: 8rem;
    font-family: serif;
    color: rgba(0, 87, 255, 0.06);
    line-height: 1;
}

.testimonial-rating {
    color: var(--primary-yellow);
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--secondary-dark);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-user-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-blue);
}

.testimonial-user-name {
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0;
}

.testimonial-user-role {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

.carousel-indicators-custom {
    bottom: -60px !important;
}

.carousel-indicators-custom [data-bs-target] {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50%;
    background-color: var(--text-muted) !important;
    border: none !important;
    margin: 0 6px !important;
    opacity: 0.4;
    transition: var(--transition-smooth);
}

.carousel-indicators-custom .active {
    opacity: 1;
    background-color: var(--primary-blue) !important;
    width: 24px !important;
    border-radius: 10px;
}

/* 10. Gallery Section */
.gallery-section {
    padding: 8rem 0;
    background: var(--secondary-light);
}

.gallery-grid {
    column-count: 3;
    column-gap: 20px;
}

.gallery-item {
    display: inline-block;
    width: 100%;
    margin-bottom: 20px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.02);
    position: relative;
    background: var(--white);
}

.gallery-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: var(--transition-smooth);
    display: block;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 87, 255, 0.8) 0%, rgba(0, 87, 255, 0) 100%);
    opacity: 0;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
}

.gallery-overlay h5 {
    color: var(--white);
    font-weight: 700;
    margin: 0 0 5px 0;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.gallery-overlay span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    transform: translateY(20px);
    transition: var(--transition-smooth) 0.1s;
}

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

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

.gallery-item:hover .gallery-overlay h5,
.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

@media (max-width: 991.98px) {
    .gallery-grid {
        column-count: 2;
    }
}
@media (max-width: 575.98px) {
    .gallery-grid {
        column-count: 1;
    }
}

/* 11. Pricing Section */
.pricing-section {
    padding: 8rem 0;
    background: var(--white);
}

.pricing-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 3rem 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium);
}

.pricing-card.popular {
    background: var(--gradient-blue);
    color: var(--white);
    border: none;
    box-shadow: 0 20px 40px rgba(0, 87, 255, 0.2);
}

.pricing-badge-popular {
    position: absolute;
    top: 25px;
    right: -35px;
    background: var(--gradient-yellow);
    color: var(--secondary-dark);
    font-weight: 700;
    padding: 0.35rem 3rem;
    font-size: 0.75rem;
    transform: rotate(45deg);
    text-transform: uppercase;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pricing-price {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: baseline;
}

.pricing-price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
}

.pricing-card.popular .pricing-price span {
    color: rgba(255, 255, 255, 0.7);
}

.pricing-card.popular .pricing-header h3 {
    color: var(--white);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
}

.pricing-features li {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-features li i {
    color: #10B981;
    font-size: 0.9rem;
}

.pricing-card.popular .pricing-features li i {
    color: var(--primary-yellow);
}

.pricing-features li.disabled {
    color: var(--text-muted);
    text-decoration: line-through;
    opacity: 0.6;
}

.pricing-card.popular .pricing-features li.disabled {
    color: rgba(255, 255, 255, 0.4);
}

.pricing-btn {
    margin-top: auto;
}

/* 12. Mobile App Section */
.app-section {
    padding: 8rem 0;
    background: var(--secondary-dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.app-bg-blob {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 87, 255, 0.2) 0%, transparent 75%);
    bottom: -200px;
    left: -200px;
    pointer-events: none;
}

.app-mockup-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.app-mockup-img {
    max-width: 85%;
    height: auto;
    z-index: 2;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.4));
    animation: image-float 6s infinite ease-in-out;
}

.app-badge-btn {
    transition: var(--transition-smooth);
    border-radius: 8px;
    overflow: hidden;
}

.app-badge-btn:hover {
    transform: translateY(-3px);
    filter: brightness(1.1);
}

.app-features-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.app-features-list li {
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.app-features-list li i {
    color: var(--primary-yellow);
    font-size: 1.2rem;
    margin-top: 3px;
}

/* 13. FAQ Section */
.faq-section {
    padding: 8rem 0;
    background: var(--white);
}

.accordion-petcab {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-petcab .accordion-item {
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--border-radius-md) !important;
    margin-bottom: 1.25rem;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.01);
    transition: var(--transition-smooth);
}

.accordion-petcab .accordion-item:hover {
    box-shadow: 0 10px 25px rgba(0, 87, 255, 0.04);
}

.accordion-petcab .accordion-header {
    margin: 0;
}

.accordion-petcab .accordion-button {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-dark);
    padding: 1.5rem;
    background-color: var(--white);
    box-shadow: none !important;
}

.accordion-petcab .accordion-button:not(.collapsed) {
    color: var(--primary-blue);
    background-color: rgba(0, 87, 255, 0.02);
}

.accordion-petcab .accordion-button::after {
    background-image: none;
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.accordion-petcab .accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg);
    color: var(--primary-blue);
}

.accordion-petcab .accordion-body {
    padding: 1.5rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    border-top: 1px solid rgba(0, 0, 0, 0.03);
    background-color: rgba(0, 87, 255, 0.01);
}

/* 14. Blog Section */
.blog-section {
    padding: 8rem 0;
    background: var(--secondary-light);
}

.blog-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    border: none;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    transition: var(--transition-smooth);
}

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

.blog-img-box {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.blog-card:hover .blog-img {
    transform: scale(1.05);
}

.blog-date-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--white);
    color: var(--secondary-dark);
    font-weight: 700;
    padding: 0.4rem 1rem;
    border-radius: 30px;
    font-size: 0.75rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.blog-content {
    padding: 2rem;
}

.blog-tag {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 0.75rem;
}

.blog-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 1rem;
}

.blog-content h4 a {
    color: var(--secondary-dark);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.blog-content h4 a:hover {
    color: var(--primary-blue);
}

.blog-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.blog-more-btn {
    font-weight: 600;
    color: var(--primary-blue);
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.blog-more-btn i {
    transition: var(--transition-smooth);
}

.blog-card:hover .blog-more-btn {
    color: var(--secondary-dark);
}

.blog-card:hover .blog-more-btn i {
    transform: translateX(5px);
}

/* 15. Call To Action Banner */
.cta-banner {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #003cc2 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-banner .cta-shape {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 212, 0, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-banner h2 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--white);
}

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

/* 16. Contact Section */
.contact-section {
    padding: 8rem 0;
    background: var(--white);
}

.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.contact-info-icon {
    width: 45px;
    height: 45px;
    background: rgba(0, 87, 255, 0.08);
    color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-info-details h5 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--secondary-dark);
    margin-bottom: 2px;
}

.contact-info-details p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.map-wrapper {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    height: 250px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form .form-control {
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 0.85rem 1.25rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.95rem;
    font-family: inherit;
    background-color: var(--secondary-light);
    color: var(--secondary-dark);
    transition: var(--transition-smooth);
}

.contact-form .form-control:focus {
    background-color: var(--white);
    border-color: var(--primary-blue);
    box-shadow: 0 0 15px rgba(0, 87, 255, 0.08);
}

.contact-form textarea.form-control {
    resize: none;
}

/* 17. Footer Section */
.footer {
    background: var(--secondary-dark);
    color: rgba(255,255,255,0.75);
    padding: 6rem 0 2rem 0;
    font-size: 0.9rem;
}

.footer-logo {
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.5rem;
    text-decoration: none;
}

.footer-logo i {
    color: var(--primary-yellow);
}

.footer-text {
    margin-bottom: 2rem;
    line-height: 1.7;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.footer-social-link:hover {
    background: var(--gradient-blue);
    color: var(--white);
    transform: translateY(-3px);
}

.footer h5 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

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

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

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.footer-links a:hover {
    color: var(--primary-yellow);
    transform: translateX(3px);
}

.footer-newsletter p {
    margin-bottom: 1.25rem;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form .form-control {
    border: none;
    background: rgba(255,255,255,0.06);
    color: var(--white);
    border-radius: 30px;
    padding: 0.75rem 1.25rem;
    font-size: 0.85rem;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255,255,255,0.4);
}

.newsletter-form .form-control:focus {
    box-shadow: none;
    background: rgba(255,255,255,0.1);
}

.newsletter-btn {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    background: var(--gradient-yellow);
    border: none;
    border-radius: 50%;
    color: var(--secondary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.newsletter-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 212, 0, 0.4);
}

.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 0.85rem;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: var(--transition-smooth);
}

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

/* Modals */
.modal-petcab .modal-content {
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255,255,255,0.45);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 30px 60px rgba(0, 87, 255, 0.15);
}

.modal-petcab .modal-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 2rem 2rem 1.5rem 2rem;
}

.modal-petcab .modal-title {
    font-weight: 800;
    font-size: 1.5rem;
}

.modal-petcab .modal-body {
    padding: 2rem;
}

.modal-petcab .btn-close {
    box-shadow: none;
    background-color: var(--secondary-light);
    padding: 0.75rem;
    border-radius: 50%;
}
