:root {
    --primary-color: #2563eb;
    --secondary-color: #1d4ed8;
    --accent-color: #eff6ff;
    --text-color: #1e293b;
    --light-gray: #f8fafc;
    --star-color: #fbbf24;
    --success-color: #22c55e;
    --dark-blue: #111827;
    --gradient-start: #1e3a8a;
    --gradient-end: #3b82f6;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.5;
    background-color: var(--light-gray);
    font-size: 0.95rem;
}

/* Header Styles */
.doctor-header {
    position: relative;
    min-height: 80vh;
    display: grid;
    place-items: center;
    overflow: hidden;
    background-color: var(--dark-blue);
}

.header-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    opacity: 0.9;
    z-index: 0;
}

.header-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 2rem;
    width: 90%;
    max-width: 1200px;
}

.name-container {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.stacked-name {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.name-part {
    font-size: 7rem;
    font-weight: 900;
    line-height: 0.25;
    color: white;
    text-transform: none;
    letter-spacing: -0.04em;
    transform: scaleY(1.1);
    position: relative;
    transition: all 0.3s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.name-part:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 4px;
    background-color: var(--accent-color);
    transition: width 0.4s ease;
}

.name-part:hover:after {
    width: 100%;
}

.name-part:hover {
    transform: scaleY(1.1) translateX(10px);
    color: var(--accent-color);
}

.credentials {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 1.5rem;
    border-left: 4px solid var(--primary-color);
    padding-left: 1.5rem;
}

.role, .specialty {
    color: white;
    font-size: 1.5rem;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0.05em;
    opacity: 0.85;
}

.specialty {
    font-weight: 700;
    color: var(--accent-color);
}

.image-container {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
}

.doctor-image {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(0);
    transition: all 0.5s ease;
    position: relative;
    z-index: 2;
}

.doctor-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.doctor-image:after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    z-index: -1;
    border-radius: 10px;
    opacity: 0.2;
    transition: all 0.5s ease;
}

.header-cta {
    grid-column: 1/3;
    grid-row: 2;
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.phone-link, .prof-link {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    gap: 0.8rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.phone-link:before, .prof-link:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255,255,255,0), rgba(255,255,255,0.1), rgba(255,255,255,0));
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.phone-link:hover:before, .prof-link:hover:before {
    transform: translateX(100%);
}

.phone-link:hover, .prof-link:hover {
    background-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.phone-link i, .prof-link i {
    font-size: 1.2rem;
    color: var(--accent-color);
}

/* Navigation Styles */
.main-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: transparent;
    padding: 1rem 5%;
}

.nav-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    z-index: -1;
}

.nav-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1rem;
}

.main-nav a {
    color: var(--text-color);
    text-decoration: none;
    padding: 0.8rem 1.2rem;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.main-nav a:not(.button):before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease, left 0.3s ease;
    transform: none;
}

.main-nav a:not(.button):hover:before {
    width: 80%;
    left: 10%;
}

.main-nav a.button {
    background-color: var(--primary-color);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.main-nav a.button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

/* Section Styling Consistency */
.section {
    padding: 5rem 5%;
    position: relative;
    background-color: white;
    margin: 3rem auto;
    max-width: 1200px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
}

.section h2 {
    font-size: 2.5rem;
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.section h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .name-part {
        font-size: 5rem;
    }
    
    .header-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
    }
    
    .name-container {
        grid-column: 1;
        grid-row: 1;
        text-align: center;
        align-items: center;
    }
    
    .stacked-name {
        align-items: center;
    }
    
    .credentials {
        align-items: center;
        border-left: none;
        border-bottom: 4px solid var(--primary-color);
        padding-left: 0;
        padding-bottom: 1.5rem;
    }
    
    .image-container {
        grid-column: 1;
        grid-row: 2;
        justify-content: center;
        margin: 2rem 0;
    }
    
    .header-cta {
        grid-column: 1;
        grid-row: 3;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .name-part {
        font-size: 4rem;
    }
    
    .nav-container {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .doctor-image {
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .name-part {
        font-size: 3rem;
    }
    
    .role, .specialty {
        font-size: 1.2rem;
    }
    
    .doctor-image {
        max-width: 250px;
    }
    
    .phone-link, .prof-link {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Additional Responsive Adjustments */
@media (max-width: 768px) {
    .hero-header {
        padding: 3rem 1.5rem;
    }
    
    .header-content-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }
    
    .name-part {
        font-size: 2.8rem;
        transform: perspective(500px) rotateY(0deg);
    }
    
    .name-part:nth-child(2) {
        margin-left: 1rem;
    }
    
    .name-part:nth-child(3) {
        margin-left: 2rem;
    }
    
    .header-cta {
        align-items: flex-start;
        width: 100%;
        margin-top: 1rem;
    }

    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
        padding: 3rem 1.5rem;
    }

    .stacked-name {
        align-items: center;
    }
    
    .stacked-name span {
        font-size: 2.2rem;
    }

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

    .hero h2 {
        font-size: 2rem;
    }

    .hero-cta {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .button.secondary {
        margin-left: 0;
    }

    .hero img {
        order: -1;
        margin: 0 auto;
        max-width: 250px;
    }

    .section {
        padding: 3rem 1.5rem;
    }

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

    .expertise-card,
    .review-card,
    .contact-card {
        padding: 1.2rem;
    }

    header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .hero-cta {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }

    nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    nav a.button {
        margin: 0.5rem 1rem;
    }
}

/* Additional UI Improvements */
.button i {
    font-size: 0.9rem;
}

.section {
    transition: all 0.3s ease;
}

/* Make all links consistent */
a {
    color: var(--primary-color);
    transition: color 0.3s ease;
    text-decoration: none;
}

a:hover {
    color: var(--secondary-color);
}

/* Improve video section additional styles */
.video-section h2 {
    margin-bottom: 1rem;
}

.expertise-card {
    height: 100%;
}

/* Header Link Styles */
.prof-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    gap: 0.5rem;
    transition: color 0.3s ease;
    margin-left: 1.5rem;
    background: var(--accent-color);
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
}

.prof-link:hover {
    color: var(--secondary-color);
    background: #e1ebff;
}

.prof-link i {
    font-size: 0.9rem;
}

/* Reviews Link Styles */
.reviews-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    gap: 0.5rem;
    transition: all 0.3s ease;
    margin-top: 2rem;
    padding: 0.5rem 1rem;
    border: 1px solid var(--primary-color);
    border-radius: 6px;
}

.reviews-link:hover {
    background: var(--primary-color);
    color: white;
}

.reviews-link i {
    font-size: 0.8rem;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 0;
    margin: 3rem auto;
    max-width: 1200px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(29, 78, 216, 0.9), rgba(37, 99, 235, 0.8));
    z-index: 0;
}

.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    padding: 5rem;
}

.hero-content {
    color: white;
}

.hero-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    position: relative;
    line-height: 1.1;
}

.hero-content h2:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.5rem;
    width: 80px;
    height: 4px;
    background-color: white;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 500px;
    opacity: 0.9;
}

.hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: rotate(-2deg);
    transition: all 0.5s ease;
}

.hero-image:hover {
    transform: rotate(0deg) scale(1.02);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.button.primary {
    background-color: white;
    color: var(--primary-color);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.button.primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.button.secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.button.secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        padding: 3rem 1.5rem;
    }
    
    .hero-content {
        text-align: center;
        order: 2;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .hero-content h2:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .hero-content p {
        margin: 0 auto 2rem;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-image {
        order: 1;
        height: 300px;
        margin-bottom: 2rem;
    }
}

/* Expertise Grid */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.expertise-card {
    background: white;
    border-radius: 12px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.expertise-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: rgba(37, 99, 235, 0.3);
}

.expertise-header {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    padding: 1.5rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.expertise-icon {
    background-color: rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.expertise-icon i {
    font-size: 1.5rem;
    color: white;
}

.expertise-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
}

.expertise-card p {
    padding: 1.5rem;
    margin: 0;
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1;
}

.expertise-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.expertise-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    padding: 0.6rem 1.2rem;
    background-color: rgba(37, 99, 235, 0.08);
    border-radius: 6px;
    border: 1px solid rgba(37, 99, 235, 0.15);
}

.expertise-link:hover {
    color: white;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.expertise-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.expertise-link:hover i {
    transform: translateX(5px);
    color: white;
}

/* Video Section */
.video-section {
    background: white;
    padding: 5rem 5%;
    margin: 3rem auto;
    max-width: 1200px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.video-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
}

.section-header {
    text-align: left;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark-blue);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
}

.video-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
    padding: 1rem 0;
}

.video-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: rgba(37, 99, 235, 0.3);
}

.video-thumbnail {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-card:hover .thumbnail-img {
    transform: scale(1.1);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(37, 99, 235, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 2;
}

.play-button i {
    font-size: 1.5rem;
    color: white;
}

.play-button:hover {
    background-color: var(--primary-color);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.video-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--dark-blue);
    line-height: 1.4;
}

.video-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
}

.video-description {
    color: var(--text-color);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.video-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin-top: auto;
}

.video-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.video-link:hover {
    color: var(--secondary-color);
}

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

.video-navigation {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.nav-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-button:hover {
    background: var(--primary-color);
    color: white;
}

@media (max-width: 1024px) {
    .video-carousel {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* Reviews Section */
.reviews-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-top: 2rem;
}

.rating-card {
    background-color: var(--accent-color);
    padding: 2.5rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
}

.rating-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    position: relative;
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 99, 235, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
    }
}

.rating-score {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
}

.rating-label {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

.star-rating {
    margin-bottom: 2rem;
    width: 100%;
}

.stars-outer {
    position: relative;
    display: inline-block;
    font-size: 2rem;
    width: 100%;
    color: #ccc;
}

.stars-outer::before {
    content: "\f005 \f005 \f005 \f005 \f005";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    letter-spacing: 5px;
}

.stars-inner {
    position: absolute;
    top: 0;
    left: 0;
    white-space: nowrap;
    overflow: hidden;
    color: var(--star-color);
}

.stars-inner::before {
    content: "\f005 \f005 \f005 \f005 \f005";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    letter-spacing: 5px;
}

.review-slider {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: rgba(37, 99, 235, 0.3);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.2rem;
    gap: 1rem;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

.reviewer {
    font-weight: 700;
    color: var(--dark-blue);
    margin: 0;
    font-size: 1rem;
}

.date {
    color: var(--text-color);
    opacity: 0.7;
    font-size: 0.8rem;
    margin: 0;
}

.star-rating-small {
    margin-left: auto;
    color: var(--star-color);
    font-size: 0.9rem;
    display: flex;
    gap: 2px;
}

.review-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin: 0;
    position: relative;
}

.review-text::before {
    content: open-quote;
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: -10px;
    left: -10px;
}

.review-text::after {
    content: close-quote;
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.2;
}

.reviews-button {
    margin-top: 1.5rem;
}

.review-navigation {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

@media (max-width: 1024px) {
    .reviews-container {
        grid-template-columns: 1fr;
    }
    
    .rating-card {
        margin-bottom: 2rem;
    }
}

/* Locations Section */

/* 1.  Make every card fill the column it sits in                       */
.location-card{
    width:100%;          /* kills the content-width shrink-to-fit effect */
  }
  
  /* 2.  Two columns on ordinary desktops, three on very wide screens     */
  @media (min-width: 992px){
    .locations-grid{
      display:grid;
      grid-template-columns:repeat(2,1fr); /* 2-up */
      gap:24px;
    }
  }
  
  @media (min-width: 1400px){
    .locations-grid{
      grid-template-columns:repeat(3,1fr); /* 3-up on ultrawide */
    }
  }

  .locations-container{
    max-width: 1100px;   /* keep whatever dimensions you like */
    margin: 0 auto;
    padding: 0 20px;
    display: block;          /* was “grid” */
    /* or: display:grid; grid-template-columns:1fr; */
}

.locations-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.location-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-left: 5px solid transparent;
    cursor: pointer;
}

.location-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

.location-card.active {
    border-left-color: var(--primary-color);
    background-color: var(--accent-color);
}

.location-icon {
    color: var(--success-color);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.location-info {
    flex-grow: 1;
}

.location-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin: 0 0 0.8rem 0;
}

.location-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.location-meta p, .location-meta a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-color);
}

.location-meta a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.location-meta a:hover {
    color: var(--secondary-color);
}



.contact-cta {
    text-align: center;
    margin-top: 3rem;
}

.booking-button {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    animation: pulse 2s infinite;
}



/* Navbar Logo */
.nav-logo {
    text-decoration: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-right: auto;
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-color);
    letter-spacing: -0.03em;
}

.scrolled .nav-logo {
    opacity: 1;
    transform: translateY(0);
}

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

@media (max-width: 768px) {
    .nav-logo {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .nav-container {
        flex-direction: column;
    }
    
    .nav-links {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
} 