/* ===================================
   Dr. Raghav Suthar - Portfolio Styles
   Refined Medical Luxury Aesthetic
   =================================== */

/* CSS Custom Properties */
:root {
    /* Colors */
    --primary: #0A1628;
    --primary-light: #142440;
    --accent: #C9A962;
    --accent-light: #E5D4A8;
    --background: #F8F6F1;
    --background-dark: #EDE9E0;
    --text: #2D3436;
    --text-light: #636E72;
    --white: #FFFFFF;

    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Libre Franklin', -apple-system, sans-serif;

    /* Spacing */
    --section-padding: 120px;
    --container-width: 1200px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(10, 22, 40, 0.08);
    --shadow-md: 0 8px 32px rgba(10, 22, 40, 0.12);
    --shadow-lg: 0 16px 48px rgba(10, 22, 40, 0.16);
}

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

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

body {
    font-family: var(--font-body);
    background-color: var(--background);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.3;
}

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

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

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Section Styles */
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header .section-subtitle {
    margin: 0 auto;
}

/* ===================================
   Navigation
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition-medium);
}

.navbar.scrolled {
    background: rgba(248, 246, 241, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
}

.logo-img {
    height: 100px;
    width: auto;
    transition: transform var(--transition-fast);
}

.logo-img:hover {
    transform: scale(1.02);
}

.navbar.scrolled .logo-img {
    height: 80px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    position: relative;
    padding: 8px 0;
}

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

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

.nav-link.nav-cta {
    background: var(--primary);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 4px;
}

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

.nav-link.nav-cta:hover {
    background: var(--primary-light);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--primary);
    transition: all var(--transition-fast);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding: 140px 24px 100px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--background) 0%, var(--background-dark) 50%, rgba(201, 169, 98, 0.05) 100%);
    z-index: -2;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A962' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.8;
}

.hero-content {
    max-width: var(--container-width);
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-subtitle {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px;
    line-height: 1.1;
}

.hero-label {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 1.1rem;
    letter-spacing: 0.25em;
    padding: 10px 20px;
    background: rgba(201, 169, 98, 0.12);
    border: 1px solid rgba(201, 169, 98, 0.25);
    border-radius: 4px;
}

/* Hero Credentials Tags */
.hero-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.credential-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    background: rgba(201, 169, 98, 0.15);
    border: 1px solid rgba(201, 169, 98, 0.3);
    padding: 6px 14px;
    border-radius: 20px;
    letter-spacing: 0.02em;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 520px;
}

.hero-description strong {
    color: var(--text);
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition-medium);
    border: 2px solid transparent;
}

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

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

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

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

/* Stats */
.hero-stats {
    display: flex;
    gap: 48px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 4px;
}

/* Hero Image */
.hero-image {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.image-frame img {
    width: 100%;
    height: auto;
    object-fit: contain;
    aspect-ratio: 3/4;
}

.image-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--accent);
    border-radius: 8px;
    z-index: -1;
}

/* Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.hero-scroll span {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid var(--accent);
    border-radius: 12px;
    position: relative;
}

.scroll-indicator::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--accent);
    border-radius: 2px;
    animation: scroll-bounce 1.5s infinite;
}

@keyframes scroll-bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }

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

/* ===================================
   Image Carousel Section
   =================================== */
.carousel-section {
    padding: 80px 0;
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.carousel-section .section-label {
    color: var(--accent-light);
}

.carousel-section .section-title {
    color: var(--white);
}

.carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
}

.carousel-track-container {
    overflow: hidden;
    border-radius: 12px;
    flex: 1;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
}

.carousel-slide img {
    width: 100%;
    height: 500px;
    object-fit: contain;
    border-radius: 12px;
    background: var(--primary);
}

.carousel-btn {
    position: relative;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all var(--transition-medium);
    flex-shrink: 0;
    z-index: 2;
}

.carousel-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.1);
}

.carousel-btn svg {
    width: 20px;
    height: 20px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    cursor: pointer;
    transition: all var(--transition-fast);
    padding: 0;
}

.carousel-dot.active {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.2);
}

.carousel-dot:hover {
    border-color: var(--accent);
}

/* ===================================
   About Section
   =================================== */
.about {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    aspect-ratio: 5/6;
    object-fit: cover;
    object-position: top;
}

.about-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(10, 22, 40, 0.4));
}

.about-content .section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
}

.about-text {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-text strong {
    color: var(--text);
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.highlight {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: var(--background);
    border-radius: 8px;
}

.highlight-icon {
    font-size: 1.5rem;
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.highlight-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.highlight-text strong {
    font-size: 0.95rem;
    color: var(--primary);
}

.highlight-text span {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ===================================
   Credentials Section
   =================================== */
.credentials {
    padding: var(--section-padding) 0;
    background: var(--background-dark);
    position: relative;
    overflow: hidden;
}

.credentials .section-label {
    color: var(--accent);
}

.credentials .section-title {
    color: var(--primary);
}

.credentials .section-subtitle {
    color: var(--text-light);
}

/* Credentials Card Grid */
.credentials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.credential-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px 24px 28px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(10, 22, 40, 0.06);
    border: 1px solid rgba(201, 169, 98, 0.12);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
    text-align: center;
}

.credential-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.credential-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(10, 22, 40, 0.12);
}

.credential-card:hover::before {
    opacity: 1;
}

.credential-year-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--accent);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 6px 18px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.credential-card-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 18px;
    color: var(--accent);
}

.credential-card-icon svg {
    width: 100%;
    height: 100%;
}

.credential-card-title {
    font-size: 1.15rem;
    font-family: var(--font-display);
    color: var(--primary);
    margin-bottom: 8px;
    line-height: 1.3;
}

.credential-card-place {
    font-size: 0.85rem;
    color: var(--text);
    margin-bottom: 10px;
    line-height: 1.5;
}

.credential-card-desc {
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===================================
   Expertise Section
   =================================== */
.expertise {
    padding: var(--section-padding) 0;
    background: var(--background);
}

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

.expertise-card {
    background: var(--white);
    padding: 0;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-medium);
    border: 1px solid transparent;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.expertise-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.expertise-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.expertise-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.expertise-card-content {
    padding: 28px 28px 32px;
    flex: 1;
}

.expertise-title {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.expertise-desc {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.expertise-list {
    list-style: none;
}

.expertise-list li {
    position: relative;
    padding-left: 20px;
    font-size: 0.9rem;
    color: var(--text);
    margin-bottom: 8px;
}

.expertise-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

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

.contact-header {
    text-align: center;
    margin-bottom: 64px;
}

.contact-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 640px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 64px;
    align-items: start;
}

.contact-info-title {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 24px;
}

.contact-info .section-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
}

.contact-text {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--background);
    border-radius: 12px;
    color: var(--accent);
}

.contact-icon svg {
    width: 20px;
    height: 20px;
}

.contact-icon.whatsapp-icon {
    background: #25D366;
    color: var(--white);
}

.contact-icon.whatsapp-icon svg {
    width: 22px;
    height: 22px;
}

.contact-icon.google-icon {
    background: #f1f3f4;
}

.contact-icon.google-icon svg {
    width: 22px;
    height: 22px;
}

.contact-item div:not(.contact-icon) {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-item strong {
    font-size: 0.9rem;
    color: var(--primary);
}

.contact-item a {
    color: var(--text);
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.contact-item a:hover {
    color: var(--accent);
}

.locations-title {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 24px;
}

.location-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.location-card {
    background: var(--background);
    padding: 24px 28px;
    border-radius: 12px;
    transition: all var(--transition-medium);
    border: 1px solid transparent;
}

.location-card:hover {
    background: var(--background-dark);
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
}

/* Primary clinic card - Atulya Hospital */
.location-card-primary {
    background: var(--white);
    border: 2px solid var(--accent);
    padding: 28px 32px;
    box-shadow: 0 4px 20px rgba(201, 169, 98, 0.12);
    position: relative;
}

.location-card-primary::before {
    content: 'Primary Clinic';
    position: absolute;
    top: 0;
    right: 20px;
    background: var(--accent);
    color: var(--primary);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 0 0 8px 8px;
}

.location-card-primary:hover {
    background: var(--background);
    box-shadow: 0 8px 30px rgba(201, 169, 98, 0.18);
}

.location-card-primary h4 {
    font-size: 1.15rem;
}

/* Expandable Additional Hospitals Card */
.location-card-expandable {
    cursor: pointer;
    padding: 20px 28px;
    border: 1px dashed rgba(201, 169, 98, 0.3);
    background: var(--background-dark);
    transition: all var(--transition-medium);
}

.location-card-expandable:hover {
    border-color: var(--accent);
    background: var(--background);
}

.expandable-card-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.expandable-card-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.expandable-card-left h4 {
    font-size: 0.95rem;
}

.expandable-card-left .location-role {
    font-size: 0.78rem;
    opacity: 0.7;
}

.expandable-card-chevron {
    color: var(--accent);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.location-card-expandable.expanded .expandable-card-chevron {
    transform: rotate(180deg);
}

.expandable-card-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
    padding: 0;
}

.location-card-expandable.expanded .expandable-card-content {
    max-height: 500px;
    padding-top: 20px;
}

.expandable-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 98, 0.3), transparent);
    margin: 16px 0;
}

.expandable-hospital {
    padding: 0 4px;
}

.expandable-hospital-header {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 8px;
}

.expandable-hospital-header h5 {
    font-size: 0.92rem;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--primary);
    margin: 0;
}

.expandable-hospital-header .location-role {
    font-size: 0.75rem;
}

.expandable-hospital .location-address {
    font-size: 0.8rem;
    padding-left: 0;
    margin-bottom: 8px;
}

.expandable-hospital .location-map-link {
    padding-left: 0;
    font-size: 0.75rem;
}

/* Patient Review Link */
.location-review-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent);
    padding-left: 58px;
    transition: all var(--transition-fast);
    margin-top: 4px;
}

.location-review-link:hover {
    color: var(--primary);
    transform: translateX(4px);
}

.location-review-link svg {
    flex-shrink: 0;
}

.location-card-header {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 12px;
}

.location-icon-badge {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 10px;
    color: var(--accent);
    box-shadow: var(--shadow-sm);
}

.location-icon-badge svg {
    width: 22px;
    height: 22px;
}

.atulya-logo-badge {
    background: white;
    padding: 4px;
    border-radius: 10px;
    overflow: hidden;
}

.atulya-logo-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 6px;
}

.location-card h4 {
    font-size: 1rem;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 2px;
}

.location-role {
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 500;
}

.location-address {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 12px;
    padding-left: 58px;
}

.location-map-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent);
    padding-left: 58px;
    transition: all var(--transition-fast);
}

.location-map-link:hover {
    color: var(--primary);
    transform: translateX(4px);
}

.location-map-link svg {
    flex-shrink: 0;
}

/* ===================================
   Google Review Button
   =================================== */
.google-review-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 10px 24px;
    background: linear-gradient(135deg, #fbbc04, #ea4335);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all var(--transition-fast);
    letter-spacing: 0.02em;
}

.google-review-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(234, 67, 53, 0.3);
    color: var(--white);
}

.google-review-btn svg {
    fill: rgba(255, 255, 255, 0.9);
    stroke: none;
}

/* ===================================
   Reviews Section
   =================================== */
.reviews-section {
    padding: 100px 0;
    background: var(--primary);
    color: var(--white);
}

.reviews-section .section-label {
    color: var(--accent);
}

.reviews-section .section-title {
    color: var(--white);
}

.reviews-rating-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 12px;
}

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

.star-icon {
    color: #fbbc04;
    font-size: 1.4rem;
}

.rating-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.reviews-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 48px;
}

.reviews-track-container {
    overflow: hidden;
    flex: 1;
    border-radius: 12px;
    margin: 0 -8px;
    padding: 0 8px;
}

.reviews-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 20px;
}

.review-card {
    min-width: calc(33.333% - 14px);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all var(--transition-medium);
    backdrop-filter: blur(10px);
}

.review-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
    transform: translateY(-4px);
}

.review-stars {
    color: #fbbc04;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.review-text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
    flex: 1;
}

.review-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.review-author strong {
    font-size: 0.9rem;
    color: var(--white);
}

.review-author span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

.reviews-btn-prev,
.reviews-btn-next {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    flex-shrink: 0;
}

.reviews-btn-prev:hover,
.reviews-btn-next:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--primary);
}

.reviews-see-all {
    text-align: center;
    margin-top: 40px;
}

.reviews-see-all .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.reviews-see-all .btn-outline:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--primary);
}

.reviews-see-all .btn-outline svg {
    fill: #fbbc04;
    stroke: none;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--primary);
    padding: 60px 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    text-align: center;
}

.footer-logo-img {
    height: 80px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 4px;
}

.footer-brand p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
}

.footer-nav {
    display: flex;
    gap: 32px;
}

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

.footer-nav a:hover {
    color: var(--accent);
}

.footer-copy {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ===================================
   Animations
   =================================== */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-fade-left {
    opacity: 0;
    transform: translateX(50px);
    animation: fadeLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}

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

@keyframes fadeLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

    .hero-content {
        gap: 48px;
    }

    .about-grid {
        gap: 48px;
    }

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

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

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

    /* Mobile navbar logo */
    .logo-img {
        height: 85px;
    }

    .navbar.scrolled .logo-img {
        height: 75px;
    }

    .nav-container {
        justify-content: center;
    }

    .nav-toggle {
        position: absolute;
        right: 24px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 100px 40px;
        gap: 24px;
        box-shadow: var(--shadow-lg);
        transition: right var(--transition-medium);
    }

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

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Mobile hero section */
    .hero {
        min-height: auto;
        padding: 120px 16px 40px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 24px;
    }

    .hero-subtitle {
        font-size: 0.75rem;
        margin-bottom: 8px;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 12px;
    }

    .hero-credentials {
        justify-content: center;
    }

    .hero-description {
        font-size: 1rem;
        margin: 0 auto 24px;
    }

    .hero-cta {
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 32px;
    }

    .hero-stats {
        justify-content: center;
        gap: 32px;
    }

    .hero-image {
        order: -1;
        max-width: 200px;
        margin: 0 auto 16px;
    }

    .image-frame img {
        aspect-ratio: 1/1;
        object-fit: cover;
        object-position: top;
    }

    .image-accent {
        top: -10px;
        right: -10px;
    }

    .hero-scroll {
        display: none;
    }

    /* Carousel responsiveness */
    .carousel-slide img {
        height: 300px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
    }

    .carousel-btn svg {
        width: 16px;
        height: 16px;
    }

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

    .about-image {
        max-width: 500px;
        margin: 0 auto;
    }

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

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

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

    .location-address {
        padding-left: 0;
    }

    .location-map-link {
        padding-left: 0;
    }

    .location-review-link {
        padding-left: 0;
    }

    /* Reviews responsive */
    .review-card {
        min-width: calc(50% - 10px);
    }

    .reviews-btn-prev,
    .reviews-btn-next {
        display: none;
    }

    .reviews-track-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .reviews-track-container::-webkit-scrollbar {
        display: none;
    }

    .reviews-track {
        transform: none !important;
    }

    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px 24px;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 14px 24px;
        font-size: 0.85rem;
    }

    .hero-stats {
        gap: 24px;
    }

    .stat-number {
        font-size: 2rem;
    }

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

    .credential-card {
        padding: 24px 20px 22px;
    }

    .carousel-slide img {
        height: 220px;
    }

    .carousel-btn {
        width: 36px;
        height: 36px;
    }

    .credential-tag {
        font-size: 0.7rem;
        padding: 4px 10px;
    }
}

/* ===================================
   Performance Optimizations
   =================================== */

/* Skip rendering of below-the-fold sections until near viewport */
.credentials,
.expertise,
.contact,
.footer {
    content-visibility: auto;
    contain-intrinsic-size: auto 800px;
}

/* GPU-accelerated animations */
.animate-on-scroll,
.credential-card,
.expertise-card {
    will-change: transform, opacity;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}