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

:root {
    --orange: #e67a49;
    --orange-button: #e47a49;
    --light-blue: #7bdff2;
    --teal: #74dbc6;
    --dark-gray: #373838;
    --light-gray: #f2f2f2;
    --white: #ffffff;
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
}

h1, h2, h3 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

.btn-orange:hover {
    background: #c86834;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Top Bar */
.top-bar {
    background: var(--orange);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.95rem;
    text-align: center;
}

.top-bar a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
}

/* Header */
header {
    background: var(--white);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo img {
    height: 80px;
    width: auto;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

nav a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 400;
    transition: color 0.3s;
    font-size: 0.95rem;
}

nav a:hover {
    color: var(--orange);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Services Section */
.hero-services {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    display: flex;
}

.hero-video-container {
    width: 66.666%;
    position: relative;
    overflow: hidden;
}

.hero-services video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-map-container {
    width: 33.333%;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.hero-services .container {
    position: absolute;
    bottom: 10%;
    left: 0;
    width: 66.666%;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 968px) {
    .hero-services {
        flex-direction: column;
        min-height: auto;
    }
    
    .hero-video-container {
        width: 100%;
        min-height: 300px;
    }
    
    .hero-map-container {
        width: 100%;
        padding: 2rem;
        border-bottom: 3px solid #ddd;
    }
    
    .hero-services .container {
        position: relative;
        bottom: auto;
        left: auto;
        width: 100%;
        max-width: 100%;
        padding: 2rem;
        background: white;
        transform: none;
    }
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    min-height: 300px;
}

.hero-left {
    display: flex;
    align-items: flex-end;
    padding-bottom: 1rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.hero-right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 350px;
    margin-right: 2rem;
}

.map-container {
    width: 100%;
    height: 245px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.map-link {
    align-self: center;
}

/* Before/After Transformations Carousel */
.transformations-carousel {
    background: #fff;
    padding: 4rem 2rem;
    text-align: center;
}

.transformations-carousel h2 {
    font-family: 'Open Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--dark-gray);
    margin-bottom: 2rem;
}

.carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #f5f5f5;
}

.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(230, 126, 72, 0.8);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 1rem 1.5rem;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.3s;
    z-index: 10;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: var(--orange);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 1.5rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: background 0.3s;
}

.carousel-dot.active {
    background: var(--orange);
}

@media (max-width: 768px) {
    .carousel-track {
        height: 300px;
    }
    
    .carousel-prev,
    .carousel-next {
        font-size: 1.5rem;
        padding: 0.5rem 1rem;
    }
    
    .transformations-carousel h2 {
        font-size: 2rem;
    }
}

/* Services Horizontal Layout - NEW */
.services-horizontal {
    padding: 5rem 0;
    background: var(--white);
}

.services-row {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 150px;
    max-width: 200px;
}

.service-icon {
    margin-bottom: 1rem;
}

.service-icon img {
    width: 40px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.service-item h3 {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--dark-gray);
    margin: 0;
    line-height: 1.3;
}

/* Specials */
.specials {
    background: var(--light-gray);
    padding: 4rem 0;
}

.specials h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.special-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.special-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.special-card h3 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--orange);
}

/* Implants Detail */
.implants-detail {
    padding: 5rem 0;
    background: var(--white);
}

.implants-detail h2 {
    text-align: center;
}

.implants-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.implant-info {
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 8px;
}

.implant-info h3 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 1.8rem;
    color: var(--orange);
    margin-bottom: 1rem;
}

/* Doctors */
.doctors {
    padding: 5rem 0;
    background: var(--light-gray);
}

.doctors h2 {
    text-align: center;
}

.doctor-grid {
    max-width: 800px;
    margin: 0 auto;
}

.doctor-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.doctor-card img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.doctor-card h3 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 1.8rem;
    color: var(--orange);
    margin-bottom: 1rem;
}

/* Team */
.team {
    padding: 5rem 0;
    background: var(--light-gray);
}

.team h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.team-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.team-photo {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    margin-bottom: 2rem;
}

.team-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* Testimonials */
.testimonials {
    padding: 5rem 0;
    background: var(--white);
}

.testimonials h2 {
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 8px;
}

.stars {
    color: var(--orange);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Payment */
.payment {
    padding: 5rem 0;
    background: var(--white);
    text-align: center;
}

.payment h2 {
    margin-bottom: 2rem;
}

.payment p {
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
}

/* Contact */
.contact {
    padding: 5rem 0;
    background: var(--light-gray);
}

.contact h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

.info-block h3 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    color: var(--orange);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.info-block a {
    color: var(--orange);
    text-decoration: none;
    font-weight: 600;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--orange);
}

.contact-form button {
    align-self: center;
}

/* Footer */
footer {
    background: #e8e8e8;
    color: var(--dark-gray);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--orange);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    margin: 0.5rem 0;
    line-height: 1.8;
}

.footer-section a {
    color: var(--dark-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--orange);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #d0d0d0;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }
    
    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        padding: 1rem;
    }
    
    nav ul.active {
        display: flex;
    }
    
    .hero-services {
        padding: 3rem 2rem 2rem 2rem;
        min-height: auto;
    }
    
    .hero-content {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
        min-height: auto;
    }
    
    .hero-left {
        width: 100%;
        justify-content: center;
        padding-bottom: 0;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        justify-content: center;
    }
    
    .hero-right {
        max-width: 100%;
        margin-right: 0;
    }
    
    .map-container {
        height: 200px;
    }
    
    .services-row {
        flex-direction: column;
        align-items: center;
    }
    
    .service-item {
        max-width: 250px;
    }
    
    .implants-content {
        grid-template-columns: 1fr;
    }
    
    h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .top-bar {
        font-size: 0.85rem;
    }
    
    .service-item h3 {
        font-size: 1rem;
    }
    
    .orange-circle {
        width: 50px;
        height: 50px;
    }
}

/* Dental Implants Banner */
.implant-banner {
    background: linear-gradient(135deg, var(--orange) 0%, #d96531 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.implant-banner .banner-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.implant-banner .banner-image {
    flex: 0 0 250px;
}

.implant-banner .banner-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.implant-banner .banner-content {
    flex: 1;
    max-width: 600px;
}

@media (max-width: 968px) {
    .implant-banner .banner-wrapper {
        flex-direction: column;
    }
    
    .implant-banner .banner-image {
        flex: 0 0 auto;
        max-width: 300px;
    }
}

.implant-banner h2 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.implant-banner .banner-price {
    font-size: 5rem;
    font-weight: 700;
    margin: 20px 0;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.implant-banner p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.implant-banner .btn-white {
    background: white;
    color: var(--orange);
    padding: 18px 45px;
    font-size: 1.2rem;
    font-weight: 700;
    border: 3px solid white;
    transition: all 0.3s ease;
}

.implant-banner .btn-white:hover {
    background: transparent;
    color: white;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .implant-banner {
        padding: 60px 20px;
    }
    
    .implant-banner h2 {
        font-size: 2.5rem;
    }
    
    .implant-banner .banner-price {
        font-size: 3.5rem;
    }
    
    .implant-banner p {
        font-size: 1.2rem;
    }
}

/* Storefront Image */
.storefront-image {
    max-width: 200px;
    margin: 0 auto 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.storefront-image img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .storefront-image {
        margin-bottom: 30px;
        border-radius: 8px;
    }
}

/* Page Header (for all subpages) */
.page-header {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--teal) 100%);
    padding: 4rem 0;
    text-align: center;
    color: white;
}

.page-header .header-icon {
    width: 60px;
    height: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: white;
}

.page-header .header-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Services Grid Layout */
.services-grid {
    padding: 5rem 0;
    background: var(--white);
}

.services-layout {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.services-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-card {
    text-align: center;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

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

.service-icon-large {
    width: 60px;
    height: auto;
    margin: 0 auto 1rem;
    display: block;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--dark-gray);
    margin: 0;
}

.services-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.family-photo {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

/* Content Section (for text-heavy pages) */
.content-section {
    padding: 5rem 0;
    background: var(--white);
}

.content-section h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--orange);
    margin-bottom: 2rem;
    text-align: center;
}

.content-section h3 {
    font-size: 2rem;
    font-weight: 300;
    color: var(--teal);
    margin: 3rem 0 1.5rem;
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
}

.content-section ul {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.content-section ul li {
    margin-bottom: 1rem;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

/* Two Column Layout */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin: 4rem 0;
}

.two-column img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

/* Process Steps */
.process-steps {
    background: var(--light-gray);
    padding: 5rem 0;
}

.process-steps h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--orange);
    margin-bottom: 3rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.step-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.step-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--teal);
    margin-bottom: 1rem;
}

.step-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--dark-gray);
}

/* Active Navigation Link */
nav a.active {
    color: var(--orange);
    font-weight: 600;
}

/* Responsive for new layouts */
@media (max-width: 992px) {
    .services-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-center {
        order: -1;
    }
    
    .two-column {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header .header-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .content-section h2 {
        font-size: 2rem;
    }
    
    .content-section h3 {
        font-size: 1.5rem;
    }
}

/* Contact Page Styles */
.contact-section {
    padding: 5rem 0;
    background: var(--white);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-wrapper h2,
.office-info-wrapper h2 {
    font-size: 2rem;
    font-weight: 300;
    color: var(--orange);
    margin-bottom: 2rem;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 1rem;
    font-weight: 400;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(107, 202, 186, 0.1);
}

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

/* Office Info */
.office-details {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.office-details h3 {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--teal);
    margin-bottom: 1.5rem;
}

.office-details p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.office-details p:last-child {
    margin-bottom: 0;
}

.office-details a {
    color: var(--orange);
    text-decoration: none;
    font-weight: 400;
}

.office-details a:hover {
    text-decoration: underline;
}

/* Storefront Section */
.storefront-section {
    padding: 3rem 0;
    background: var(--light-gray);
}

.storefront-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 992px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Payment Plans Page */
.payment-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.payment-card {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
}

.payment-card h3 {
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--teal);
    margin-bottom: 1.5rem;
}

.payment-card p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.payment-card ul {
    text-align: left;
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

.payment-card ul li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.insurance-section {
    margin: 5rem 0;
    padding: 3rem;
    background: var(--white);
    border-left: 4px solid var(--orange);
}

.insurance-section h2 {
    color: var(--orange);
    margin-bottom: 1.5rem;
}

.insurance-section ul {
    padding-left: 2rem;
    margin: 2rem 0;
}

.insurance-section ul li {
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Testimonials Page */
.testimonial-card {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.testimonial-stars {
    color: #FFB800;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.testimonial-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--teal);
    margin: 0;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-gray);
    font-style: italic;
}

/* Specials Page */
.specials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin: 3rem 0;
}

.special-card {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--teal) 100%);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    color: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.special-card h3 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: white;
}

.special-price {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin: 1.5rem 0;
}

.special-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: white;
}

.special-card ul {
    text-align: left;
    padding-left: 1.5rem;
    margin-bottom: 2rem;
    color: white;
}

.special-card ul li {
    margin-bottom: 0.75rem;
}
