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

:root {
    /* Colors from Figma */
    --color-white: #FFFFFF;
    --color-black: #000000;
    --color-primary: #E52900;
    --color-secondary: #0174DF;
    --color-light-bg: #F6F2F9;
    --color-beige: #F5E7CC;
    --color-text-dark: rgba(0, 0, 0, 0.9);
    --color-text-medium: rgba(0, 0, 0, 0.8);
    --color-text-light: rgba(0, 0, 0, 0.6);
    --color-text-lighter: rgba(0, 0, 0, 0.5);
    
    /* Fonts */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Work Sans', sans-serif;
    --font-tertiary: 'Work Sans', sans-serif;
}

body {
    font-family: var(--font-secondary);
    color: var(--color-black);
    background: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography - Headings use Poppins, Paragraphs and Links use Work Sans */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    margin-bottom: 0;
}

p, a, span, li {
    font-family: var(--font-secondary);
}

p {
    margin-bottom: 8px;
}

body.menu-open {
    overflow: hidden;
}

/* ============================================
   KEYFRAME ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

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

@keyframes wiggle {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-5deg);
    }
    75% {
        transform: rotate(5deg);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* ============================================
   REUSABLE SECTION PATTERNS
   ============================================ */

/* Standard Section Padding - DRY principle */
.section-padding {
    padding: 80px 80px;
}

.section-padding-sm {
    padding: 60px 80px;
}

.section-padding-lg {
    padding: 100px 80px;
}

/* Responsive Section Padding */
@media (max-width: 1200px) {
    .section-padding,
    .section-padding-sm,
    .section-padding-lg {
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 24px;
    }
    
    .section-padding-sm {
        padding: 40px 24px;
    }
    
    .section-padding-lg {
        padding: 80px 24px;
    }
}

/* Button styles moved to components.css - importing from there */

/* Header Section */
.header-section {
    background: var(--color-white);
}

/* Ensure content doesn't jump when nav becomes sticky */
body {
    scroll-padding-top: 100px;
}

/* Top Menu */
.top-menu {
    background: var(--color-white);
    padding: 12px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 999;
}

.contact-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    opacity: 0.75;
}

.contact-container {
    display: flex;
    gap: 40px;
}

.location-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.icon-text {
    display: flex;
    align-items: center;
    gap: 8px;
}

.icon {
    width: 18px;
    height: 18px;
}

.contact-text {
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5em;
    color: var(--color-black);
}

/* Main Navigation */
.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background: var(--color-white);
    box-shadow: 0px 16px 12px 0px rgba(0, 0, 0, 0.03);
    border-radius: 20px;
    margin: 0 80px 0 40px;
    position: sticky;
    top: 20px;
    z-index: 1000;
    transition: all 0.3s ease;
}

.main-nav.scrolled {
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
    top: 20px;
}

.logo {
    height: 50px;
    z-index: 1001;
}

/* Hamburger Menu - Hidden by default */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: var(--color-black);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}


/* Navigation Menu Wrapper */
.nav-menu-wrapper {
    display: flex;
    align-items: center;
    gap: 24px;
}

.menu {
    display: flex;
    list-style: none;
    gap: 14px;
    align-items: center;
    margin: 0;
}

.menu-item {
    position: relative;
}

.menu-item a {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 14px;
    line-height: 1.5em;
    color: var(--color-black);
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.menu-item.active a {
    border: 2px solid var(--color-black);
    font-weight: 600;
}

.menu-item a:hover {
    border: 2px solid var(--color-black);
}

.nav-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
}

.nav-buttons .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 24px;
    white-space: nowrap;
}

/* Mobile Contact Info - Hidden on desktop, visible only on mobile */
.mobile-contact-info {
    display: none;
}

/* Mobile Menu Close Button */
.mobile-menu-close {
    display: none;
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    font-size: 28px;
    line-height: 1;
    color: var(--color-black);
    cursor: pointer;
    padding: 8px;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 1002;
}

.mobile-menu-close:hover {
    opacity: 0.7;
}

/* Mobile CTA Buttons - Hidden on desktop */
.mobile-cta-buttons {
    display: none;
}

/* Icon Text Links */
.icon-text {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.icon-text:hover {
    opacity: 0.8;
}

/* Hero Section */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 80px 80px;
    gap: 60px;
    position: relative;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    animation: slideInLeft 0.8s ease-out;
}

.hero-title {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
}

.hero-subtitle {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 24px;
    line-height: 1.5em;
    color: var(--color-black);
}

.hero-main {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 48px;
    line-height: 1.2em;
    color: var(--color-black);
}

.hero-description {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.description-text {
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.173em;
    color: var(--color-text-dark);
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

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

.hero-image-container::before {
    content: '';
    position: absolute;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, #E8DDF5 0%, #F6F2F9 70%, transparent 100%);
    border-radius: 50%;
    z-index: 0;
}

.hero-pattern {
    position: relative;
    z-index: 1;
    height: auto;
    animation: float 3s ease-in-out infinite;
}

/* Our Services Section */
.our-services {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 80px 80px;
    background: var(--color-light-bg);
}

.services-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.section-title {
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease-out;
}

.section-title h2 {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 40px;
    line-height: 1.2em;
    color: var(--color-black);
    margin-bottom: 10px;
}

.subtitle {
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.173em;
    color: var(--color-text-medium);
}

.services-container {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
}

.services-container::-webkit-scrollbar {
    display: none;
}

/* Service Card Component */
.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 18px;
    overflow: hidden;
    background: var(--color-white);
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
    padding: 24px;
    min-height: 420px;
    flex: 0 0 auto;
    min-width: 350px;
    max-width: 390px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.6s ease-out backwards;
}

.service-card:nth-child(1) {
    animation-delay: 0.1s;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.3s;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0px 12px 28px rgba(0, 0, 0, 0.15);
}
.service-number {
    font-family: var(--font-primary);
    font-weight: 275;
    font-size: 38px;
    line-height: 0.842em;
    color: var(--color-black);
    margin-bottom: 20px;
}

.service-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 2;
    position: relative;
    
    .learn-more-link{
        width: fit-content;
        border: 1px solid #000;
        padding: 8px 10px;
        border-radius: 8px;
    }
    .learn-more-link:hover{
        background: #000;
        color: #fff;
    }
}

.service-info h3 {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 24px;
    line-height: 1.3em;
    color: var(--color-black);
}

.service-info p {
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5em;
    color: var(--color-black);
}

.service-image {
    width: 100%;
    max-width: 100%;
    object-fit: contain;
    margin-top: 24px;
    align-self: flex-start;
    border-radius: 8px;
    transition: transform 0.4s ease;
}

.service-card:hover .service-image {
    transform: translateY(-5px) scale(1.05);
}

.service-card-link {
    text-decoration: none;
    color: inherit;
    display: inline-block;
}

.service-card-link:hover {
    text-decoration: none;
}

/* Why Us Section */
.why-us {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 80px 80px;
    background: var(--color-white);
    align-items: start;
}

.why-us-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.why-us-title {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.section-label {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 16px;
    line-height: 1.5em;
    text-transform: uppercase;
    color: var(--color-black);
}

.why-us-title h2 {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 40px;
    line-height: 1.2em;
    color: var(--color-black);
}

.why-us-image {
    width: 100%;
    max-width: 500px;
    height: auto;
}

.why-us-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
    
    .btn{
        width: 50%;
    }
}

.why-us-description {
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5em;
    color: var(--color-text-dark);
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.feature-icon-circle {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--color-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon {
    width: 20px;
    height: 20px;
    filter: invert(1);
}

.feature-item span {
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 18px;
    line-height: 1.4em;
    color: var(--color-black);
}

/* Testimonials Section */
.testimonials {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 80px;
    background: var(--color-light-bg);
}

.testimonials-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.testimonials-container {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
}

.testimonials-container::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 350px;
    max-width: 450px;
    background: var(--color-white);
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
    animation: fadeIn 0.8s ease-out backwards;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: scale(1.02);
}

.customer-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.customer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--color-beige);
    transition: transform 0.3s ease;
}

.customer-avatar:hover {
    transform: scale(1.1) rotate(5deg);
}

.customer-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.customer-name {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 18px;
    line-height: 1.3em;
    color: var(--color-black);
}

.customer-role {
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 14px;
    color: var(--color-text-medium);
}

.testimonial-title {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.testimonial-title h2 {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 40px;
    line-height: 1.2em;
    color: var(--color-black);
}

.testimonial-body {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

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

.stars svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    animation: scaleIn 0.4s ease-out backwards;
}

.stars svg:nth-child(1) { animation-delay: 0.1s; }
.stars svg:nth-child(2) { animation-delay: 0.2s; }
.stars svg:nth-child(3) { animation-delay: 0.3s; }
.stars svg:nth-child(4) { animation-delay: 0.4s; }
.stars svg:nth-child(5) { animation-delay: 0.5s; }

.stars svg path {
    fill: #FFD700;
}

.stars:hover svg {
    animation: bounce 0.6s ease-in-out;
}

.testimonial-text {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6em;
    color: var(--color-text-medium);
}

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


/* Navigation Arrows Container */
.testimonial-dots,
.doctor-dots {
    display: flex;
    gap: 12px;
    align-items: center;
}

/* Dot Button Styles */
.dot-btn {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: none;
    background: #D9D9D9;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.dot-btn:hover {
    background: #999;
    transform: scale(1.15);
}

.dot-btn.active {
    background: var(--color-black);
    transform: scale(1.1);
}

.dot-btn:active {
    transform: scale(0.95);
}

.testimonial-bg {
    width: 349px;
    height: auto;
    transition: opacity 0.3s ease;
}

/* Statistics Section */
.statistics {
    display: flex;
    justify-content: space-around;
    align-items: stretch;
    padding: 90px 100px 85px;
    background: var(--color-beige);
    gap: 165px;
}

.stat-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    animation: scaleIn 0.6s ease-out backwards;
}

.stat-item:nth-child(1) {
    animation-delay: 0.1s;
}

.stat-item:nth-child(2) {
    animation-delay: 0.2s;
}

.stat-item:nth-child(3) {
    animation-delay: 0.3s;
}

.stat-item:hover .stat-number {
    animation: pulse 0.6s ease-in-out;
}

.stat-number {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 74px;
    line-height: 1.304em;
    text-align: center;
    color: var(--color-black);
}

.stat-label {
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 24px;
    line-height: 1.173em;
    text-align: center;
    color: var(--color-text-medium);
}

/* Doctors Section */
.doctors {
    padding: 80px 80px;
    background: var(--color-light-bg);
}

.doctors-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.doctors-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 700px;
}

.doctors-info h2 {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 48px;
    line-height: 1.2em;
    color: var(--color-black);
    margin: 0;
}

.doctors-description {
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5em;
    color: var(--color-black);
}

.doctor-navigation-wrapper {
    display: flex;
    gap: 12px;
    align-items: center;
}

.doctors-container {
    display: flex;
    gap: 32px;
    overflow-x: auto;
    padding-bottom: 20px;
    scrollbar-width: thin;
}

.doctors-container::-webkit-scrollbar {
    height: 8px;
}

.doctors-container::-webkit-scrollbar-track {
    background: var(--color-light-bg);
}

.doctors-container::-webkit-scrollbar-thumb {
    background: var(--color-text-lighter);
    border-radius: 4px;
}

/* Doctor Card Component */
.doctor-card {
    flex: 0 0 350px;
    background: var(--color-white);
    border-radius: 18px;
    box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.6s ease-out backwards;
}

.doctor-card:hover {
    transform: translateY(-8px) rotate(1deg);
    box-shadow: 0px 12px 28px 0px rgba(0, 0, 0, 0.15);
}

.doctor-card:hover .doctor-image {
    transform: scale(1.05);
}

.doctor-image {
    width: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.doctor-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.doctor-info h3 {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 24px;
    line-height: 1.3em;
    color: var(--color-black);
    margin: 0;
}

.doctor-role {
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4em;
    color: var(--color-black);
    margin: 0;
}

.doctor-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.doctor-tag {
    padding: 8px 16px;
    background: var(--color-white);
    color: var(--color-black);
    border: 1px solid var(--color-black);
    border-radius: 100px;
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 10px;
    line-height: 1.4em;
    transition: all 0.3s ease;
}

.doctor-tag:hover {
    background: var(--color-black);
    color: var(--color-white);
}

/* FAQ Section */
.faq-section {
    padding: 80px 80px;
    background: var(--color-white);
}

.faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-label {
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 16px;
    line-height: 1.5em;
    text-transform: uppercase;
    color: var(--color-black);
    display: block;
    margin-bottom: 8px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.faq-title {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 48px;
    line-height: 1.2em;
    color: var(--color-black);
    margin: 0 0 40px;
    text-align: center;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
}

.faq-item {
    background: var(--color-white);
    border: 2px solid #E1E1E1;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--color-black);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: var(--font-secondary);
    font-weight: 500;
    font-size: 18px;
    line-height: 1.5em;
    color: var(--color-black);
    text-align: left;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(0, 0, 0, 0.02);
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 28px 28px;
}

.faq-answer p {
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6em;
    color: var(--color-text-medium);
    margin: 0;
}

/* Connect Banner Section */
.connect-banner {
    position: relative;
    padding: 60px 80px 140px;
    background-image: url('../assets/images/bottom-banner-background.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    overflow: hidden;
    min-height: 400px;
}

.banner-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.banner-label {
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5em;
    color: var(--color-black);
    display: block;
    margin-bottom: 8px;
}

.banner-title {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 48px;
    line-height: 1.2em;
    color: var(--color-black);
    margin: 0 0 32px;
}

.btn-banner {
    background: var(--color-black);
    color: var(--color-white);
    border: 2px solid var(--color-black);
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-banner:hover {
    background: var(--color-white);
    color: var(--color-black);
}

/* About Us Page Styles */

/* About Hero Section */
.about-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 80px 0px 80px;
    gap: 40px;
    background-image: url('../assets/images/about-section.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
}

.about-hero-content {
    max-width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Breadcrumb */
.breadcrumb {
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5em;
    color: var(--color-black);
    margin-bottom: 24px;
}

.breadcrumb a {
    color: var(--color-black);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.breadcrumb-separator {
    margin: 0 8px;
    color: var(--color-black);
}

.breadcrumb-current {
    color: var(--color-black);
    font-weight: 500;
}

.learn-more-link {
    font-family: var(--font-secondary);
    font-weight: 500;
    font-size: 14px;
    color: var(--color-black);
    text-decoration: none;
    transition: color 0.3s ease;
}

.learn-more-link:hover {
    color: var(--color-primary);
}

.about-hero-title {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 48px;
    line-height: 1.2em;
    color: var(--color-black);
}

.about-hero-description {
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6em;
    color: var(--color-text-medium);
    margin-bottom: 16px;
    max-width: 900px;
}

.about-hero-signature {
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6em;
    color: var(--color-text-medium);
    margin-bottom: 32px;
}

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

.about-pets-image {
    width: 100%;
    height: auto;
    max-width: 100%;
}

/* Who Are We Section */
.who-are-we {
    padding: 80px 80px;
    background: var(--color-light-bg);
}

.who-are-we-header {
    text-align: center;
    margin-bottom: 60px;
}

.who-are-we-header h2 {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 48px;
    line-height: 1.2em;
    color: var(--color-black);
    margin: 0 0 12px;
}

.who-are-we-subtitle {
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5em;
    color: var(--color-text-medium);
    max-width: 600px;
    margin: 0 auto;
}

.who-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
}

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

.who-are-we-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
}

.who-cards-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Mobile Slider - Hidden on Desktop */
.who-mobile-slider-wrapper {
    display: none;
    width: 100%;
}

.who-mobile-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0;
    padding-bottom: 20px;
}

.who-mobile-slider::-webkit-scrollbar {
    display: none;
}

.who-slide {
    flex: 0 0 100%;
    scroll-snap-align: start;
    min-width: 0;
    padding: 0 16px;
    box-sizing: border-box;
}

.who-slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.who-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: var(--color-text-lighter);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.who-dot.active {
    background: var(--color-black);
    width: 24px;
    border-radius: 5px;
}


.who-card {
    background: var(--color-white);
    padding: 32px;
    border-radius: 18px;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.who-card:hover {
    transform: translateY(-4px);
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
}

.card-icon {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 12px;
    line-height: 1;
}

.who-card h3 {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 24px;
    line-height: 1.3em;
    color: var(--color-black);
    margin: 0 0 12px;
}

.who-card p {
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6em;
    color: var(--color-text-medium);
    margin: 0;
}

/* Our Story Section */
.our-story-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 80px 0 80px;
    gap: 60px;
    background: var(--color-white);
}

.our-story-content {
    flex: 1;
    max-width: 600px;
}

.story-label {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5em;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.story-title {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 40px;
    line-height: 1.2em;
    color: var(--color-black);
    margin: 0 0 32px;
}

.story-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.story-text p {
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6em;
    color: var(--color-text-medium);
    margin: 0;
}

.our-story-image {
    flex-shrink: 0;
    width: 100%;
    max-width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.story-mascot {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
}

/* Statistics Section */
.statistics-section {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 80px 80px;
    background: var(--color-beige);
    gap: 60px;
}

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

.stat-number {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 72px;
    line-height: 1em;
    color: var(--color-black);
    margin: 0 0 12px;
}

.stat-label {
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 18px;
    line-height: 1.5em;
    color: var(--color-text-medium);
    margin: 0;
}

/* Services Page Styles */

/* Services Hero Section */
.services-hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 80px;
    background: var(--color-white);
    gap: 60px;
}

.services-hero-content {
    flex: 1;
    max-width: 600px;
}

.breadcrumb {
    margin-bottom: 24px;
}

.services-hero-title {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 48px;
    line-height: 1.2em;
    color: var(--color-black);
    margin: 0 0 24px;
}

.services-hero-description {
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6em;
    color: var(--color-text-medium);
    margin-bottom: 40px;
}

.services-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon-small {
    width: 24px;
    height: 24px;
}

.service-feature-item span {
    font-family: var(--font-secondary);
    font-weight: 500;
    font-size: 16px;
    color: var(--color-black);
}

.services-hero-image {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-pets-image {
    height: auto;
    max-width: 95%;
}

/* Comprehensive Services Section - Services Page Specific */
.comprehensive-services-page {
    padding: 80px 80px;
    background: var(--color-white);
}

.comprehensive-header {
    text-align: center;
    margin-bottom: 60px;
}

.comprehensive-header h2 {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 48px;
    line-height: 1.2em;
    color: var(--color-black);
    margin: 0 0 12px;
}

.comprehensive-subtitle {
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5em;
    color: var(--color-text-medium);
    margin: 0;
}

.comprehensive-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Row 1 - First card: 8 columns (wide) */
.comprehensive-card:nth-child(1) {
    grid-column: span 8;
}

/* Row 1 - Second card: 4 columns (narrow) */
.comprehensive-card:nth-child(2) {
    grid-column: span 4;
}

/* Row 2 - Third card: 4 columns (narrow) */
.comprehensive-card:nth-child(3) {
    grid-column: span 4;
}

/* Row 2 - Fourth card: 8 columns (wide) */
.comprehensive-card:nth-child(4) {
    grid-column: span 8;
}

.comprehensive-card {
    border-radius: 20px;
    padding: 40px;
    min-height: 410px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: var(--color-white);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.08);
}

/* Individual card backgrounds */
.card-veterinary {
    background-image: url('../assets/images/veterinary-consultations.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.card-preventive {
    background-image: url('../assets/images/preventive-care.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.card-emergency {
    background-image: url('../assets/images/emergency-services.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.card-home-services {
    background-image: url('../assets/images/home-veterinary-services.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.comprehensive-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 16px 32px rgba(0, 0, 0, 0.15);
}

.card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 100px;
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
    width: fit-content;
}

.badge-popular {
    background: var(--color-black);
    color: var(--color-white);
}

.badge-offer {
    background: var(--color-black);
    color: var(--color-white);
}

.badge-recommended {
    background: var(--color-black);
    color: var(--color-white);
}

.comprehensive-card h3 {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 28px;
    line-height: 1.3em;
    color: var(--color-black);
    margin: 0 0 24px;
}

.card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.card-list li {
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5em;
    color: var(--color-black);
    padding-left: 20px;
    position: relative;
}

.card-list li::before {
    content: "â€¢";
    position: absolute;
    left: 0;
    font-weight: bold;
    color: var(--color-black);
}

/* Services Statistics Section */
.services-statistics {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 100px 80px;
    background: var(--color-beige);
    gap: 60px;
    min-height: 300px;
}

.services-stat-item {
    text-align: center;
}

.services-stat-number {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 72px;
    line-height: 1em;
    color: var(--color-black);
    margin: 0 0 12px;
}

.services-stat-label {
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 18px;
    line-height: 1.5em;
    color: var(--color-text-medium);
    margin: 0;
}

/* ============================================
   SPECIALIZED SERVICES SECTION - Services Page
   ============================================ */
.specialized-services {
    padding: 80px 80px;
    background: var(--color-light-bg);
}

.specialized-header {
    margin-bottom: 40px;
}

.specialized-header h2 {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 48px;
    line-height: 1.2em;
    color: var(--color-black);
    margin: 0 0 8px;
}

.specialized-subtitle {
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5em;
    color: var(--color-text-medium);
    margin: 0;
}

/* Tab Navigation */
.specialized-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.specialized-tab {
    font-family: var(--font-secondary);
    font-weight: 500;
    font-size: 15px;
    padding: 12px 24px;
    background: transparent;
    border: 1.5px solid var(--color-black);
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--color-black);
    white-space: nowrap;
}

.specialized-tab:hover {
    background: rgba(0, 0, 0, 0.05);
}

.specialized-tab.active {
    background: var(--color-white);
    border-color: var(--color-black);
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
}

/* Content Wrapper */
.specialized-content-wrapper {
    position: relative;
}

.specialized-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.specialized-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.specialized-content-inner {
    background: var(--color-white);
    border-radius: 24px;
    padding: 48px;
    display: grid;
    grid-template-columns: 5fr 4fr 3fr;
    gap: 40px;
    align-items: center;
    position: relative;
    min-height: 400px;
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Text Section */
.specialized-text {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: fadeIn 0.5s ease-out 0.1s backwards;
}

@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.specialized-text h3 {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 28px;
    line-height: 1.3em;
    color: var(--color-black);
    margin: 0;
}

.specialized-text p {
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7em;
    color: var(--color-text-medium);
    margin: 0;
}

.specialized-text .btn {
    width: fit-content;
    margin-top: 8px;
}

/* Cat Illustration */
.specialized-illustration {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: end;
    animation: fadeIn 0.5s ease-out 0.3s backwards;
}

@keyframes slideInFromRight {
    0% {
        opacity: 0;
        transform: translateX(30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.cat-illustration {
    width: 100%;
    max-width: 280px;
    height: auto;
}

.specialized-service-image {
    width: 100%;
    height: auto;
}

/* Feature Cards */
.specialized-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: fadeIn 0.5s ease-out 0.2s backwards;
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.feature-card {
    background: var(--color-beige);
    border-radius: 16px;
    padding: 24px 28px;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.feature-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-card li {
    font-family: var(--font-secondary);
    font-weight: 500;
    font-size: 15px;
    line-height: 1.5em;
    color: var(--color-black);
    padding-left: 16px;
    position: relative;
}

.feature-card li::before {
    content: "â€¢";
    position: absolute;
    left: 0;
    font-weight: bold;
    color: var(--color-black);
}

/* Contact Page Styles */

/* Contact Hero Section */
.contact-hero {
    padding: 60px 80px;
    background-image: url('../assets/images/contact-header.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.contact-hero-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-hero-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-hero-label {
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5em;
    color: var(--color-black);
}

.contact-hero-title {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 48px;
    line-height: 1.2em;
    color: var(--color-black);
    margin: 0;
}

.contact-hero-description {
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6em;
    color: var(--color-text-medium);
    margin: 0;
}

.contact-hero-image {
    margin-top: 40px;
}

.contact-pets-image {
    width: 100%;
    max-width: 60%;
    height: auto;
}

/* Contact Form */
.contact-form-container {
    flex-shrink: 0;
    max-width: 100%;
    background: #fff;
    padding: 28px;
    border-radius: 14px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.contact-form {
    background: var(--color-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0px 16px 12px 0px rgba(0, 0, 0, 0.03);
}

.form-header {
    margin-bottom: 32px;
}

.form-header h2 {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 32px;
    line-height: 1.3em;
    color: var(--color-black);
    margin: 0 0 8px;
}

.form-header p {
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5em;
    color: var(--color-text-medium);
    margin: 0;
}

.form-fields {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

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

.form-group input,
.form-group select {
    padding: 14px 16px;
    font-family: var(--font-secondary);
    font-size: 16px;
    border: 1px solid #E1E1E1;
    border-radius: 6px;
    outline: none;
    transition: border-color 0.3s ease;
    width:100%;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--color-black);
}

.form-group input::placeholder {
    color: var(--color-text-medium);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23000000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.btn-submit {
    width: 100%;
    background: var(--color-white);
    color: var(--color-black);
    border: 2px solid var(--color-black);
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 1;
}

.btn-submit:hover {
    background: var(--color-black);
    color: var(--color-white);
}

.btn-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Google Maps Section */
.google-maps-section {
    padding: 80px 80px;
    background: #FBF5FF;
}

.maps-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.maps-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.maps-label {
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5em;
    color: var(--color-black);
}

.maps-title {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 48px;
    line-height: 1.2em;
    color: var(--color-black);
    margin: 0;
}

.maps-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 40px;
    min-height: 600px;
}

.clinic-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.clinic-card {
    background: var(--color-white);
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #E1E1E1;
    transition: all 0.3s ease;
    cursor: pointer;
}

.clinic-card:hover {
    border-color: var(--color-black);
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.08);
}

.clinic-card.active {
    border-color: var(--color-black);
    background: #F6F2F9;
    box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.1);
}

.clinic-card h3 {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 20px;
    line-height: 1.3em;
    color: var(--color-black);
    margin: 0 0 4px;
}

.clinic-card h4 {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 18px;
    line-height: 1.3em;
    color: var(--color-black);
    margin: 0 0 12px;
}

.clinic-card p {
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6em;
    color: var(--color-text-medium);
    margin: 0;
}

/* Pet Wellness Section */
.pet-wellness-section {
    padding: 80px 80px;
    background: var(--color-white);
}

.wellness-header {
    text-align: center;
    margin-bottom: 60px;
}

.wellness-header h2 {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 48px;
    line-height: 1.2em;
    color: var(--color-black);
    margin: 0 0 12px;
}

.wellness-subtitle {
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6em;
    color: var(--color-text-medium);
    max-width: 800px;
    margin: 0 auto;
}

.wellness-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
}

.wellness-card {
    background: var(--color-white);
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 400px;
}

.wellness-card:hover {
    transform: translateY(-4px);
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.12);
}

.wellness-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #F6F2F9;
    border-radius: 50%;
    font-size: 18px;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 24px;
    flex-shrink: 0;
    line-height: 1;
}

.wellness-card h3 {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 24px;
    line-height: 1.3em;
    color: var(--color-black);
    margin: 0 0 16px;
}

.wellness-card p {
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6em;
    color: var(--color-text-medium);
    margin: 0 0 32px;
    flex-grow: 1;
}

.wellness-card-image {
    position: relative;
    margin-top: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 220px;
    padding-top: 20px;
}

.wellness-card-image::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 75%;
    border-radius: 60% 40% 50% 50% / 50% 50% 40% 60%;
    z-index: 0;
    opacity: 0.85;
}

.wellness-illustration {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 220px;
    height: auto;
    object-fit: contain;
}

.maps-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0px 16px 24px 0px rgba(0, 0, 0, 0.08);
    height: 100%;
    min-height: 600px;
}

.maps-container iframe {
    display: block;
}

/* Footer */
.footer {
    background: var(--color-white);
    padding: 80px 80px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
    align-items: start;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-column h4 {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 18px;
    line-height: 1.5em;
    color: var(--color-black);
    margin-bottom: 20px;
    text-align: left;
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
}

.footer-description {
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.283em;
    color: var(--color-black);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.social-link {
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 24px;
    line-height: 1;
    color: var(--color-black);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--color-white);
    background: var(--color-black);
    transform: translateY(-3px) scale(1.1);
}

.social-link i {
    font-size: 20px;
}

.social-link span {
    display: none;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.footer-links li {
    margin-bottom: 12px;
    text-align: left;
    width: 100%;
}

.footer-links a {
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5em;
    color: var(--color-black);
    text-decoration: none;
    display: block;
    text-align: left;
}

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

.footer-bottom {
    text-align: center;
    padding: 20px 0 0;
    margin: 0;
    border-top: 2px solid #E1E1E1;
}

.footer-bottom p {
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 12px;
    line-height: 1.5em;
    color: var(--color-text-lighter);
    margin: 0;
    padding: 20px 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .main-nav,
    .top-menu,
    .hero,
    .our-services,
    .testimonials,
    .statistics,
    .doctors,
    .footer {
        padding-left: 40px;
        padding-right: 40px;
    }
    
    .main-nav {
        margin-left: 20px;
        margin-right: 20px;
        top: 15px;
    }
    
    .main-nav.scrolled {
        top: 15px;
    }
    
    .hero-image-container::before {
        width: 380px;
        height: 380px;
    }
    
    .hero-pattern {
        width: 400px;
    }
    
    .why-us {
        padding: 60px 40px;
        gap: 50px;
    }
    
    .why-us-image {
        max-width: 450px;
    }
    
    /* About Us Responsive */
    .about-hero,
    .who-are-we,
    .our-story-section,
    .statistics-section {
        padding-left: 40px;
        padding-right: 40px;
    }
    
    .who-content-wrapper {
        gap: 40px;
    }
    
    .who-image {
        max-width: 100%;
    }
    
    .about-pets-image {
        width: 350px;
    }
    
    .our-story-image {
        max-width: 400px;
    }
    
    .story-mascot {
        width: 100%;
        max-width: 100%;
    }
    
    /* Services Page Responsive */
    .services-hero,
    .comprehensive-services,
    .services-statistics {
        padding-left: 40px;
        padding-right: 40px;
    }
    
    .services-pets-image {
        max-width: 400px;
    }
    
    /* Contact Page Responsive */
    .contact-hero,
    .google-maps-section {
        padding-left: 40px;
        padding-right: 40px;
    }
    
    .pet-wellness-section {
        padding: 60px 40px;
    }
    
    .wellness-cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .wellness-header h2 {
        font-size: 40px;
    }
    
    .maps-content {
        grid-template-columns: 350px 1fr;
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .hero {
        flex-direction: column;
    }
    
    .hero-pattern {
        width: 100%;
        max-width: 400px;
    }
    
    .who-content-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .who-image-column {
        grid-column: 1 / -1;
        margin-bottom: 20px;
    }
    
    .who-are-we-image {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .who-cards-column {
        gap: 24px;
    }
    
    .services-container {
        display: flex;
        flex-direction: row;
        gap: 20px;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    
    .services-container::-webkit-scrollbar {
        display: none;
    }
    
    .service-card,
    .service-card-reverse {
        flex: 0 0 calc(50% - 10px);
    }
    
    .why-us {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 40px;
    }
    
    .why-us-image {
        max-width: 400px;
    }
    
    .testimonials {
        padding: 60px 40px;
        gap: 30px;
    }

    .testimonials-header-wrapper,
    .services-header-wrapper {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .testimonial-title h2 {
        font-size: 32px;
    }
    
    .testimonials-container {
        gap: 14px;
    }
    
    .statistics {
        gap: 80px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .faq-section {
        padding: 60px 40px;
    }
    
    .connect-banner {
        padding: 50px 40px 120px;
        min-height: 350px;
        background-image: url('../assets/images/bottom-banner-background.svg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
    
    
    /* About Us Responsive */
    .about-hero {
        padding: 50px 40px 60px;
        gap: 30px;
    }
    
    .about-hero-title {
        font-size: 40px;
    }
    
    .about-pets-image {
        width: 100%;
        max-width: 400px;
    }
    
    .breadcrumb {
        font-size: 14px;
        text-align: center;
        justify-content: center;
    }
    
    .who-are-we {
        padding: 60px 0 60px 40px;
    }
    
    .who-are-we-header {
        padding-right: 40px;
    }
    
    .who-content-wrapper {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        gap: 24px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-right: 40px;
    }
    
    .who-content-wrapper::-webkit-scrollbar {
        display: none;
    }
    
    .who-image-column,
    .who-cards-column {
        flex: 0 0 45%;
        min-width: 320px;
    }
    
    .who-are-we-image {
        max-width: 100%;
    }
    
    .who-cards-column {
        gap: 20px;
    }
    
    .our-story-section {
        flex-direction: column-reverse;
        padding: 60px 40px;
    }
    
    .our-story-image {
        max-width: 100%;
        width: 100%;
    }
    
    .story-mascot {
        width: 100%;
        max-width: 100%;
    }
    
    .statistics-section {
        flex-direction: column;
        gap: 40px;
        padding: 50px 40px;
    }
    
    /* Services Page Responsive */
    .services-hero {
        flex-direction: column;
        padding: 50px 40px;
        gap: 40px;
    }
    
    .services-hero-content {
        max-width: 100%;
    }
    
    .services-hero-title {
        font-size: 40px;
    }
    
    .services-pets-image {
        max-width: 400px;
    }
    
    /* Horizontal slider on tablet */
    .comprehensive-grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 20px;
        padding-bottom: 20px;
    }
    
    .comprehensive-grid::-webkit-scrollbar {
        display: none;
    }
    
    /* Reset grid spans on tablet */
    .comprehensive-card:nth-child(1),
    .comprehensive-card:nth-child(2),
    .comprehensive-card:nth-child(3),
    .comprehensive-card:nth-child(4) {
        grid-column: auto;
        flex: 0 0 calc(50% - 10px);
        scroll-snap-align: start;
    }
    
    .comprehensive-services-page {
        padding: 60px 40px;
    }
    
    .comprehensive-header {
        padding: 0 0 40px;
    }
    
    .comprehensive-card {
        min-height: 300px;
    }
    
    .services-statistics {
        flex-direction: column;
        gap: 40px;
        padding: 80px 40px;
        min-height: 280px;
    }
    
    /* Specialized Services Responsive - Tablet */
    .specialized-services {
        padding: 60px 40px;
    }
    
    .specialized-content-inner {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        gap: 30px;
        padding: 40px;
    }
    
    .specialized-text {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
    }
    
    .specialized-features {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
        flex-direction: column;
        gap: 20px;
    }
    
    .specialized-illustration {
        grid-column: 1 / 3;
        grid-row: 2 / 3;
    }
    
    .feature-card {
        flex: 1;
    }
    
    .specialized-tabs {
        gap: 10px;
    }
    
    .specialized-tab {
        font-size: 14px;
        padding: 10px 18px;
    }
    
    /* Contact Page Responsive */
    .contact-hero-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    
    .contact-form-container {
        width: 100%;
        max-width: 600px;
    }
    
    .contact-pets-image {
        max-width: 350px;
    }
    
    .maps-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
    
    .pet-wellness-section {
        padding: 60px 40px;
    }
    
    .wellness-cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .wellness-header h2 {
        font-size: 36px;
    }
    
    .maps-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .maps-container {
        min-height: 450px;
    }
}

@media (max-width: 768px) {
    .top-menu {
        display: none;
    }
    
    .contact-details {
        flex-direction: column;
        align-items: center;
        gap: 8px;
        width: 100%;
    }
    
    .location-container {
        text-align: center;
    }
    
    .contact-container {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    
    .icon-text {
        gap: 6px;
    }
    
    .icon {
        width: 14px;
        height: 14px;
    }
    
    .contact-text {
        font-size: 11px;
    }
    
    .main-nav {
        padding: 16px;
        margin: 0 16px 20px;
        border-radius: 12px;
        top: 10px;
    }
    
    .main-nav.scrolled {
        top: 10px;
    }
    
    .logo {
        height: 40px;
    }
    
    /* Show Hamburger Menu on Mobile */
    .hamburger-menu {
        display: flex;
    }
    
    /* Hide hamburger when mobile menu is active */
    .hamburger-menu.active {
        opacity: 0;
        pointer-events: none;
    }
    
    /* Mobile Menu Close Button */
    .mobile-menu-close {
        display: flex;
    }
    
    /* Mobile Menu Wrapper - Slide In from Right */
    .nav-menu-wrapper {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--color-white);
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 80px 24px 32px;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.08);
        z-index: 1000;
        transition: right 0.3s ease;
        overflow-y: auto;
    }
    
    .nav-menu-wrapper.active {
        right: 0;
    }
    
    /* Show Mobile CTA Buttons */
    .mobile-cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 12px;
        width: 100%;
        padding-top: 24px;
    }
    
    .mobile-cta-buttons .btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 14px;
        font-weight: 600;
        border-radius: 8px;
        text-align: center;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }
    
    /* Show Mobile Contact Info in menu */
    .mobile-contact-info {
        display: flex;
        flex-direction: column;
        gap: 8px;
        padding: 20px 0;
        margin-top: 20px;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
    }
    
    .mobile-contact-item {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 10px 0;
        text-decoration: none;
        color: var(--color-text-medium);
        font-family: var(--font-secondary);
        font-size: 14px;
        transition: color 0.3s ease;
    }
    
    .mobile-contact-item:hover {
        color: var(--color-black);
    }
    
    .mobile-contact-item .icon {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
        opacity: 0.7;
    }
    
    /* Hide nav-buttons on mobile */
    .nav-buttons {
        display: none;
    }
    
    .menu {
        flex-direction: column;
        gap: 0;
        width: 100%;
        margin-bottom: 0;
    }
    
    .menu-item {
        width: 100%;
        border-bottom: none;
    }
    
    .menu-item a {
        display: block;
        width: 100%;
        font-size: 16px;
        font-weight: 600;
        padding: 14px 0;
        border-radius: 0;
        border: none;
        color: var(--color-black);
    }
    
    .menu-item.active a {
        background: transparent;
        border: none;
        font-weight: 700;
        color: var(--color-primary);
    }
    
    .menu-item a:hover {
        background: transparent;
        border: none;
        color: var(--color-primary);
        transform: none;
    }
    
    /* Clinic Cards - Horizontal Slider on Tablet */
    .clinic-cards {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        gap: 20px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 8px;
    }
    
    .clinic-cards::-webkit-scrollbar {
        display: none;
    }
    
    .clinic-card {
        flex: 0 0 calc(50% - 10px);
        min-width: 280px;
    }
    
    /* Wellness Cards - Horizontal Slider on Tablet */
    .wellness-cards {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        gap: 20px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 8px;
    }
    
    .wellness-cards::-webkit-scrollbar {
        display: none;
    }
    
    .wellness-card {
        flex: 0 0 calc(50% - 10px);
        min-width: 300px;
    }
    
    /* Maps Section - Center and Reorder on Tablet */
    .maps-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
        margin-bottom: 32px;
    }
    
    .maps-text {
        align-items: center;
    }
    
    .google-maps-section {
        display: flex;
        flex-direction: column;
    }
    
    .maps-header .btn {
        order: 3;
        width: auto;
        min-width: 200px;
    }
    
    .maps-content {
        order: 2;
    }
    
    .hero {
        flex-direction: column;
        padding: 30px 16px 40px;
        gap: 30px;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-main {
        font-size: 28px;
    }
    
    .description-text {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        padding: 14px 20px;
    }
    
    .hero-image-container::before {
        width: 280px;
        height: 280px;
    }
    
    .hero-pattern {
        width: 100%;
        max-width: 300px;
    }
    
    .our-services {
        padding: 40px 0 40px 16px;
        gap: 30px;
    }

    .services-header-wrapper {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .section-title {
        padding-right: 16px;
        text-align: center;
    }
    
    .section-title h2 {
        font-size: 32px;
    }
    
    .subtitle {
        font-size: 14px;
    }
    
    .services-container {
        display: flex;
        flex-direction: row;
        gap: 16px;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        padding-right: 16px;
        scrollbar-width: none; /* Firefox */
    }
    
    .services-container::-webkit-scrollbar {
        display: none; /* Chrome, Safari */
    }
    
    .service-card,
    .service-card-reverse {
        flex: 0 0 85%;
        max-width: 320px;
        min-height: 280px;
        padding: 24px 20px 20px;
    }
    
    .service-number {
        font-size: 28px;
        margin-bottom: 12px;
    }
    
    .service-info {
        gap: 8px;
    }
    
    .service-info h3 {
        font-size: 18px;
    }
    
    .service-info p {
        font-size: 13px;
        line-height: 1.5em;
    }
    
    .service-image,
    .service-card-reverse .service-image {
        width: 100%;
        max-width: 100%;
        height: auto;
    }
    
    .why-us {
        padding: 40px 16px;
        gap: 24px;
        grid-template-columns: 1fr;
    }
    
    .why-us-left {
        gap: 24px;
    }
    
    .why-us-image {
        max-width: 100%;
    }
    
    .why-us-right {
        gap: 16px;
    }
    
    .why-us-title {
        text-align: center;
    }
    
    .why-us-title h2 {
        font-size: 28px;
    }
    
    .why-us-description {
        font-size: 14px;
        line-height: 1.6em;
    }
    
    .features-list {
        gap: 16px;
    }
    
    .feature-item {
        gap: 12px;
    }
    
    .feature-item span {
        font-size: 14px;
        line-height: 1.5em;
    }
    
    .feature-icon-circle {
        width: 36px;
        height: 36px;
        min-width: 36px;
    }
    
    .feature-icon {
        width: 16px;
        height: 16px;
    }
    
    .testimonials {
        padding: 50px 0 50px 16px;
        gap: 24px;
    }
    
    .testimonials-header-wrapper {
        flex-direction: column;
        gap: 16px;
        padding-right: 16px;
    }
    
    .testimonial-title h2 {
        font-size: 28px;
    }
    
    .testimonials-container {
        padding-right: 16px;
        gap: 14px;
    }
    
    .testimonial-card {
        flex: 0 0 85%;
        max-width: 340px;
        min-width: 280px;
        gap: 16px;
        padding: 24px;
    }
    
    .testimonial-body {
        gap: 12px;
    }
    
    .stars svg {
        width: 20px;
        height: 20px;
    }
    
    .testimonial-text {
        font-size: 16px;
        line-height: 1.5em;
    }
    
    .customer-avatar {
        width: 40px;
        height: 40px;
    }
    
    .customer-name {
        font-size: 16px;
    }
    
    .customer-role {
        font-size: 13px;
    }
    
    .testimonial-dots {
        gap: 8px;
    }
    
    .statistics {
        flex-direction: column;
        gap: 32px;
        padding: 60px 16px;
    }
    
    .stat-item {
        gap: 0;
    }
    
    .stat-number {
        font-size: 48px;
    }
    
    .stat-label {
        font-size: 18px;
    }
    
    .doctors {
        padding: 40px 16px;
    }
    
    .doctors-header {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 24px;
    }
    
    .doctors-info h2 {
        font-size: 28px;
    }
    
    .doctors-description {
        font-size: 14px;
    }
    
    .doctors-container {
        gap: 16px;
    }
    
    /* Responsive arrow buttons */
    .dot-btn {
        width: 12px;
        height: 12px;
    }
    
    .doctor-card {
        flex: 0 0 280px;
    }
    
    
    .doctor-info {
        padding: 16px;
        gap: 10px;
    }
    
    .doctor-info h3 {
        font-size: 18px;
    }
    
    .doctor-role {
        font-size: 14px;
    }
    
    .doctor-tags {
        gap: 6px;
        margin-top: 6px;
    }
    
    .doctor-tag {
        font-size: 11px;
        padding: 6px 10px;
    }
    
    .faq-section {
        padding: 40px 16px;
    }
    
    .faq-title {
        font-size: 28px;
    }
    
    .faq-question {
        font-size: 15px;
        padding: 16px 18px;
    }
    
    .faq-answer p {
        font-size: 13px;
        line-height: 1.6em;
    }
    
    .connect-banner {
        padding: 40px 16px 100px;
        min-height: 300px;
        background-image: url('../assets/images/bottom-banner-background.svg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
    
    .banner-label {
        font-size: 14px;
    }
    
    .banner-title {
        font-size: 28px;
        margin-bottom: 24px;
    }
    
    .btn-banner {
        padding: 14px 28px;
        font-size: 15px;
    }
    
    
    /* About Us Responsive */
    .about-hero {
        padding: 40px 16px 50px;
        gap: 24px;
    }
    
    .breadcrumb {
        font-size: 13px;
        margin-bottom: 16px;
    }
    
    .about-hero-title {
        font-size: 32px;
    }
    
    .about-hero-description,
    .about-hero-signature {
        font-size: 15px;
    }
    
    .about-pets-image {
        max-width: 320px;
    }
    
    .who-are-we {
        padding: 50px 0 50px 16px;
    }
    
    .who-are-we-header {
        margin-bottom: 40px;
        padding-right: 16px;
    }
    
    .who-are-we-header h2 {
        font-size: 32px;
    }
    
    .who-are-we-subtitle {
        font-size: 14px;
    }
    
    .who-content-wrapper {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        gap: 16px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-right: 16px;
    }
    
    .who-content-wrapper::-webkit-scrollbar {
        display: none;
    }
    
    .who-image-column,
    .who-cards-column {
        flex: 0 0 85%;
        min-width: 280px;
        max-width: 340px;
    }
    
    .who-are-we-image {
        max-width: 100%;
        width: 100%;
    }
    
    .who-cards-column {
        gap: 16px;
    }
    
    .who-card {
        min-height: auto;
    }
    
    .who-card {
        padding: 24px;
    }
    
    .who-card h3 {
        font-size: 20px;
    }
    
    .who-card p {
        font-size: 14px;
    }
    
    .our-story-section {
        padding: 50px 16px;
        gap: 30px;
    }
    
    .story-title {
        font-size: 32px;
    }
    
    .story-text p {
        font-size: 15px;
    }
    
    .our-story-image {
        max-width: 100%;
        width: 100%;
    }
    
    .story-mascot {
        width: 100%;
        max-width: 100%;
    }
    
    .statistics-section {
        padding: 40px 16px;
        gap: 30px;
    }
    
    .stat-number {
        font-size: 56px;
    }
    
    .stat-label {
        font-size: 16px;
    }
    
    /* Services Page Responsive */
    .services-hero {
        padding: 40px 16px;
        gap: 30px;
    }
    
    .services-hero-content {
        text-align: center;
    }
    
    .services-hero .breadcrumb {
        justify-content: center;
    }
    
    .services-hero-title {
        font-size: 32px;
    }
    
    .services-hero-description {
        font-size: 15px;
    }
    
    .services-pets-image {
        max-width: 320px;
    }
    
    .comprehensive-services-page {
        padding: 50px 0 50px 16px;
    }
    
    .comprehensive-header {
        padding: 0 16px 40px 0;
    }
    
    .comprehensive-header h2 {
        font-size: 32px;
    }
    
    .comprehensive-subtitle {
        font-size: 14px;
    }
    
    /* Horizontal slider for mobile */
    .comprehensive-grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 16px;
        padding-right: 16px;
    }
    
    .comprehensive-grid::-webkit-scrollbar {
        display: none;
    }
    
    .comprehensive-card:nth-child(1),
    .comprehensive-card:nth-child(2),
    .comprehensive-card:nth-child(3),
    .comprehensive-card:nth-child(4) {
        grid-column: auto;
        flex: 0 0 90%;
        max-width: 380px;
        scroll-snap-align: start;
    }
    
    .comprehensive-card {
        padding: 40px 32px 120px;
        min-height: 420px;
    }
    
    /* Mobile-specific background positioning for all cards */
    .card-veterinary,
    .card-preventive,
    .card-emergency,
    .card-home-services {
        background-size: contain;
        background-position: bottom center;
        background-repeat: no-repeat;
    }
    
    .card-badge {
        font-size: 13px;
        padding: 6px 14px;
        margin-bottom: 16px;
    }
    
    .comprehensive-card h3 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .card-list {
        gap: 12px;
    }
    
    .card-list li {
        font-size: 15px;
        line-height: 1.6em;
    }
    
    .services-statistics {
        padding: 60px 16px;
        gap: 30px;
        min-height: 240px;
    }
    
    .services-stat-number {
        font-size: 56px;
    }
    
    .services-stat-label {
        font-size: 16px;
    }
    
    /* Specialized Services Responsive - Mobile */
    .specialized-services {
        padding: 50px 16px;
    }
    
    .specialized-header h2 {
        font-size: 32px;
    }
    
    .specialized-subtitle {
        font-size: 14px;
    }
    
    .specialized-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 8px;
        margin-bottom: 20px;
    }
    
    .specialized-tabs::-webkit-scrollbar {
        display: none;
    }
    
    .specialized-tab {
        font-size: 13px;
        padding: 10px 16px;
        flex-shrink: 0;
        scroll-snap-align: start;
    }
    
    .specialized-content-inner {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 24px;
        padding: 28px 20px;
        min-height: auto;
    }
    
    .specialized-text {
        grid-column: 1;
        grid-row: 1;
        text-align: center;
    }
    
    .specialized-text h3 {
        font-size: 24px;
    }
    
    .specialized-text p {
        font-size: 15px;
    }
    
    .specialized-text .btn {
        margin: 8px auto 0;
    }
    
    .specialized-features {
        grid-column: 1;
        grid-row: 2;
        flex-direction: column;
        gap: 16px;
    }
    
    .specialized-illustration {
        grid-column: 1;
        grid-row: 3;
    }
    
    .cat-illustration {
        max-width: 220px;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .feature-card li {
        font-size: 14px;
    }
    
    /* Contact Page Responsive */
    .contact-hero {
        padding: 40px 16px;
    }
    
    .contact-hero-title {
        font-size: 36px;
    }
    
    .contact-hero-description {
        font-size: 15px;
    }
    
    .contact-pets-image {
        max-width: 300px;
    }
    
    .contact-form {
        padding: 32px 24px;
    }
    
    .form-header h2 {
        font-size: 28px;
    }
    
    .google-maps-section {
        padding: 50px 16px;
    }
    
    .pet-wellness-section {
        padding: 50px 16px;
    }
    
    .wellness-header {
        margin-bottom: 40px;
    }
    
    .wellness-header h2 {
        font-size: 32px;
    }
    
    .wellness-subtitle {
        font-size: 14px;
    }
    
    .wellness-cards {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .wellness-card {
        padding: 24px;
    }
    
    .wellness-card h3 {
        font-size: 20px;
    }
    
    .wellness-card p {
        font-size: 14px;
    }
    
    .wellness-card-image {
        min-height: 150px;
    }
    
    .wellness-illustration {
        max-width: 150px;
    }
    
    .maps-title {
        font-size: 36px;
    }
    
    .maps-content {
        gap: 24px;
        min-height: auto;
    }
    
    .clinic-card {
        padding: 20px;
    }
    
    .clinic-card h3 {
        font-size: 18px;
    }
    
    .clinic-card h4 {
        font-size: 16px;
    }
    
    .maps-container {
        min-height: 350px;
    }
    
    .maps-container iframe {
        height: 350px;
    }
    
    .footer {
        padding: 40px 16px 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: left;
    }
    
    .footer-column {
        align-items: center;
    }
    
    .footer-links {
        align-items: center;
    }
    
    .footer-column h4,
    .footer-links li,
    .footer-links a {
        text-align: left;
    }
    
    .footer-logo {
        height: 40px;
        margin-bottom: 16px;
    }
    
    .footer-description,
    .footer-links a {
        font-size: 14px;
    }
    
    .footer-column h4 {
        font-size: 16px;
        margin-bottom: 16px;
    }
    
    .social-links {
        gap: 16px;
    }
    
    .footer-bottom {
        padding: 16px 0 0;
        margin: 0;
    }
    
    .footer-bottom p {
        padding: 16px 0;
        margin: 0;
    }
    
    .footer-bottom p {
        font-size: 11px;
    }
    
    .footer-column h4,
    .footer-links li,
    .footer-links a {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-main {
        font-size: 24px;
    }
    
    .description-text {
        font-size: 14px;
    }
    
    .section-title h2 {
        font-size: 26px;
    }
    
    .why-us-title h2,
    .testimonial-title h2 {
        font-size: 24px;
    }
    
    .doctors-info h2 {
        font-size: 24px;
    }
    
    .stat-number {
        font-size: 42px;
    }
    
    .stat-label {
        font-size: 16px;
    }
    
    .about-hero-title {
        font-size: 28px;
    }
    
    .breadcrumb {
        font-size: 12px;
    }
    
    .doctor-card {
        flex: 0 0 260px;
    }
    
    .service-card,
    .service-card-reverse {
        min-width: 46vh;
        min-height: 40vh;
        padding: 18px;
    }
    
    .service-number {
        font-size: 24px;
    }
    
    .service-info h3 {
        font-size: 18px;
        margin-bottom: 0;
    }
    
    .service-info p {
        font-size: 12px;
    }
    
    .service-image,
    .service-card-reverse .service-image {
        width: 100%;
        max-width: 100%;
        height: auto;
    }
    
    .faq-title {
        font-size: 24px;
    }
    
    .faq-question {
        font-size: 14px;
        padding: 14px 16px;
    }
    
    .faq-answer p {
        font-size: 12px;
    }
    
    .banner-title {
        font-size: 24px;
    }
    
    /* Clinic Cards - Horizontal Slider on Mobile */
    .clinic-cards {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        gap: 16px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 8px;
    }
    
    .clinic-cards::-webkit-scrollbar {
        display: none;
    }
    
    .clinic-card {
        flex: 0 0 85%;
        max-width: 320px;
        min-width: 280px;
    }
    
    /* Wellness Cards - Horizontal Slider on Mobile */
    .wellness-cards {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        gap: 16px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 8px;
    }
    
    .wellness-cards::-webkit-scrollbar {
        display: none;
    }
    
    .wellness-card {
        flex: 0 0 85%;
        max-width: 340px;
        min-width: 300px;
    }
    
    /* Contact Page - Center Align on Mobile */
    .contact-hero-text,
    .contact-hero-image,
    .form-header {
        text-align: center;
    }
    
    .contact-hero .breadcrumb,
    .page-hero .breadcrumb {
        justify-content: center;
    }
    
    /* Maps Section - Center and Reorder on Mobile */
    .maps-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
        margin-bottom: 24px;
    }
    
    .maps-text {
        align-items: center;
    }
    
    .google-maps-section {
        display: flex;
        flex-direction: column;
    }
    
    .maps-header .btn {
        order: 3;
        width: 100%;
        max-width: 320px;
    }
    
    .maps-content {
        order: 2;
    }
    
}

/* ============================================
   GLOBAL IMPROVEMENTS
   ============================================ */

/* Hide Scrollbars for Scrollable Containers */
.services-container,
.doctors-container,
.menu,
.nav-menu-wrapper,
*::-webkit-scrollbar {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

*::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

/* Smooth Animations */
* {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.btn,
.service-card,
.doctor-card,
.stat-item,
.feature-item,
.faq-item,
.menu-item a,
.footer-links a,
.social-link {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover,
.doctor-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.btn:hover {
    transform: scale(1.02);
}

.menu-item a:hover,
.footer-links a:hover {
    transform: translateX(4px);
}

/* ============================================
   NEW PAGES STYLES
   ============================================ */

/* Page Hero (for FAQ, Privacy, Terms, 404) */
.page-hero {
    background: linear-gradient(135deg, #F6F2F9 0%, #E8DDF5 100%);
    padding: 80px 80px 60px;
    text-align: center;
}

.page-hero-content {
    max-width: 800px;
    margin: 0 auto;
    
 .breadcrumb {
     justify-content:center;
 }

}

.page-hero h1 {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 56px;
    line-height: 1.2em;
    color: var(--color-black);
    margin-bottom: 16px;
}

.page-hero p {
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6em;
    color: var(--color-text-medium);
    margin-top: 16px;
}

/* FAQ Page Section */
.faq-page-section {
    padding: 80px 80px;
    background: var(--color-white);
}

/* Legal Content Section (Privacy, Terms) */
.legal-content-section {
    padding: 80px 80px;
    background: var(--color-white);
}

.legal-container {
    max-width: 1000px;
    margin: 0 auto;
}

.legal-content h2 {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 36px;
    line-height: 1.3em;
    color: var(--color-black);
    margin-top: 48px;
    margin-bottom: 24px;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 24px;
    line-height: 1.4em;
    color: var(--color-black);
    margin-top: 32px;
    margin-bottom: 16px;
}

.legal-content p {
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8em;
    color: var(--color-text-medium);
    margin-bottom: 16px;
}

.legal-content ul {
    margin-left: 24px;
    margin-bottom: 24px;
}

.legal-content li {
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8em;
    color: var(--color-text-medium);
    margin-bottom: 8px;
}

.legal-content strong {
    font-weight: 600;
    color: var(--color-black);
}

.legal-content a {
    color: var(--color-secondary);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--color-primary);
}

/* 404 Error Page */
.error-404-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 80px;
    background: linear-gradient(135deg, #F6F2F9 0%, #E8DDF5 100%);
}

.error-404-content {
    text-align: center;
    max-width: 600px;
}

.error-404-number {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 120px;
    line-height: 1em;
    color: var(--color-primary);
    margin-bottom: 24px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-16px);
    }
}

.error-404-title {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 42px;
    line-height: 1.2em;
    color: var(--color-black);
    margin-bottom: 16px;
}

.error-404-description {
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6em;
    color: var(--color-text-medium);
    margin-bottom: 32px;
}

.error-404-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 48px;
}

.error-404-links {
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.error-404-links p {
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 14px;
    color: var(--color-text-light);
    margin-bottom: 16px;
}

.error-404-link-list {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.error-404-link-list a {
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 16px;
    color: var(--color-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.error-404-link-list a:hover {
    color: var(--color-primary);
    text-decoration: underline;
}

/* ============================================
   RESPONSIVE FOR NEW PAGES
   ============================================ */

@media (max-width: 1200px) {
    .page-hero,
    .faq-page-section,
    .legal-content-section,
    .error-404-section {
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 60px 24px 40px;
    }
    
    .page-hero h1 {
        font-size: 36px;
    }
    
    .page-hero p {
        font-size: 16px;
    }
    
    .faq-page-section,
    .legal-content-section {
        padding: 60px 24px;
    }
    
    .legal-content h2 {
        font-size: 28px;
        margin-top: 32px;
        margin-bottom: 16px;
    }
    
    .legal-content h3 {
        font-size: 20px;
        margin-top: 24px;
        margin-bottom: 12px;
    }
    
    .legal-content p,
    .legal-content li {
        font-size: 14px;
    }
    
    .error-404-section {
        padding: 60px 24px;
        min-height: 60vh;
    }
    
    .error-404-number {
        font-size: 80px;
        margin-bottom: 16px;
    }
    
    .error-404-title {
        font-size: 28px;
        margin-bottom: 12px;
    }
    
    .error-404-description {
        font-size: 16px;
        margin-bottom: 24px;
    }
    
    .error-404-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .error-404-actions .btn {
        width: 100%;
    }
}

/* ============================================
   SERVICE DETAILS PAGE STYLES
   ============================================ */

/* Service Details Hero Section */
.service-details-hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 80px;
    background: var(--color-light-bg);
    gap: 60px;
    min-height: 400px;
}

.service-details-hero-content {
    flex: 1;
    max-width: 600px;
}

.service-details-hero-title {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 40px;
    line-height: 1.2em;
    color: var(--color-black);
    margin: 0 0 24px;
}

.service-details-hero-description {
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6em;
    color: var(--color-text-medium);
    margin-bottom: 40px;
}

.service-quick-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.quick-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.info-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
}

.info-content h4 {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 16px;
    color: var(--color-black);
    margin: 0 0 4px;
}

.info-content p {
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 14px;
    color: var(--color-text-medium);
    margin: 0;
}

.service-details-hero-image {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-hero-image {
    width: 100%;
    max-width: 60vh;
    height: auto;
    border-radius: 14px;
}

/* Service Details Content */
.service-details-content {
    padding: 80px 80px;
    background: var(--color-white);
}

.service-details-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-details-main {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* Service Overview */
.service-overview h2 {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 36px;
    line-height: 1.2em;
    color: var(--color-black);
    margin: 0 0 32px;
}

.service-overview p {
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7em;
    color: var(--color-text-medium);
    margin: 0 0 20px;
}

.service-overview p:last-child {
    margin-bottom: 0;
}

/* Service Benefits */
.service-benefits h2 {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 36px;
    line-height: 1.2em;
    color: var(--color-black);
    margin: 0 0 40px;
}

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

.benefit-item {
    background: var(--color-light-bg);
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-4px);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
}

.benefit-item h4 {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 20px;
    color: var(--color-black);
    margin: 0 0 12px;
}

.benefit-item p {
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 15px;
    line-height: 1.6em;
    color: var(--color-text-medium);
    margin: 0;
}

/* Service Process */
.service-process h2 {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 36px;
    line-height: 1.2em;
    color: var(--color-black);
    margin: 0 0 40px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 32px;
    background: var(--color-light-bg);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-2px);
    box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.08);
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--color-primary);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 20px;
    flex-shrink: 0;
}

.step-content h4 {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 20px;
    color: var(--color-black);
    margin: 0 0 8px;
}

.step-content p {
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 15px;
    line-height: 1.6em;
    color: var(--color-text-medium);
    margin: 0;
}

/* Service FAQ */
.service-faq h2 {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 36px;
    line-height: 1.2em;
    color: var(--color-black);
    margin: 0 0 40px;
}

/* Service Sidebar */
.service-details-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Service Details Contact Form */
.service-details-sidebar .contact-form-container {
    background: var(--color-light-bg);
    
    border-radius: 16px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.service-details-sidebar .form-header {
    text-align: center;
    margin-bottom: 24px;
}

.service-details-sidebar .form-header h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.service-details-sidebar .form-header p {
    font-size: 14px;
    margin: 0;
}

.service-details-sidebar .form-fields {
    margin-bottom: 20px;
}

.service-details-sidebar .form-group {
    margin-bottom: 16px;
}

.service-details-sidebar .form-group input,
.service-details-sidebar .form-group select {
    padding: 12px 16px;
    font-size: 14px;
}

.service-details-sidebar .btn-submit {
    width: 100%;
    padding: 12px 20px;
}

.service-booking-card h3 {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 24px;
    color: var(--color-black);
    margin: 0 0 12px;
}

.service-booking-card p {
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 16px;
    color: var(--color-text-medium);
    margin: 0 0 24px;
}

.service-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-bottom: 24px;
    padding: 20px;
    background: var(--color-white);
    border-radius: 12px;
}

.price-amount {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 28px;
    color: var(--color-primary);
    margin: 0;
}

.price-note {
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 14px;
    color: var(--color-text-medium);
    margin: 0;
}

.service-contact-info {
    /* background: var(--color-light-bg); */
    padding: 24px;
    border-radius: 14px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
}

.service-contact-info h4 {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 20px;
    color: var(--color-black);
    margin: 0 0 24px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-method i {
    font-size: 20px;
    color: var(--color-primary);
    width: 24px;
}

.contact-method strong {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 16px;
    color: var(--color-black);
    display: block;
    margin-bottom: 2px;
}

.contact-method p {
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 14px;
    color: var(--color-text-medium);
    margin: 0;
}

.related-services {
    /* background: var(--color-light-bg); */
    padding: 24px;
    border-radius: 14px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
}

.related-services h4 {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 20px;
    color: var(--color-black);
    margin: 0 0 24px;
}

.related-services-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.related-service-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.5rem;
    background: var(--color-white);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}

.related-service-item:hover {
    transform: translateY(-2px);
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}

.related-service-icon {
    width: 5rem;
    border-radius: 4px;
    flex-shrink: 0;
}

.related-service-item span {
    font-family: var(--font-secondary);
    font-weight: 500;
    font-size: 14px;
    color: var(--color-black);
}

/* ============================================
   SERVICE DETAILS RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1200px) {
    .service-details-hero {
        padding: 60px 40px;
        gap: 40px;
    }

    .service-details-hero-title {
        font-size: 42px;
    }

    .service-quick-info {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .service-details-wrapper {
        grid-template-columns: 1fr 300px;
        gap: 40px;
    }

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

@media (max-width: 768px) {
    .service-details-hero {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
        gap: 40px;
        min-height: auto;
    }

    .service-details-hero-content {
        max-width: 100%;
    }

    .service-details-hero-title {
        font-size: 32px;
    }

    .service-details-hero-description {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .service-quick-info {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 32px;
    }

    .quick-info-item {
        justify-content: center;
    }

    .service-hero-image {
        max-width: 300px;
    }

    .service-details-content {
        padding: 40px 20px;
    }

    .service-details-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-details-main {
        order: -1;
        gap: 40px;
    }

    .service-details-sidebar {
        order: 1;
    }

    .service-overview h2,
    .service-benefits h2,
    .service-process h2,
    .service-faq h2 {
        font-size: 28px;
    }

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

    .process-step {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .step-number {
        align-self: center;
    }

    .service-details-sidebar .contact-form-container,
    .service-contact-info,
    .related-services {
        padding: 24px;
    }

    .service-details-sidebar .form-header h3 {
        font-size: 18px;
    }

    .service-details-sidebar .form-group input,
    .service-details-sidebar .form-group select {
        padding: 10px 14px;
        font-size: 13px;
    }

    .service-booking-card h3 {
        font-size: 20px;
    }

    .price-amount {
        font-size: 24px;
    }
}
