/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Oswald', sans-serif;
    line-height: 1.6;
    color: #2d2d2d;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Scrolling Banner Mobile Optimization */
.scrolling-banner {
    background-color: white;
    color: #2d2d2d;
    padding: 15px;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    border: 1px solid #2d2d2d;
}

.scrolling-text {
    display: inline-block;
    animation: scroll 15s linear infinite;
    white-space: nowrap;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

@keyframes scroll {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Mobile Responsive for Scrolling Banner */
@media (max-width: 768px) {
    .scrolling-banner {
        padding: 10px;
        border-width: 1px;
    }
    
    .scrolling-text {
        font-size: 0.85rem;
        letter-spacing: 0.3px;
        animation: scroll 12s linear infinite;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 5px;
        letter-spacing: 1.5px;
    }
}

@media (max-width: 480px) {
    .scrolling-banner {
        padding: 8px;
    }
    
    .scrolling-text {
        font-size: 0.75rem;
        letter-spacing: 0.2px;
        animation: scroll 10s linear infinite;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        letter-spacing: 1px;
        margin-bottom: 8px;
    }
}



/* Hero Section */
.hero {
    background: #2d2d2d;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/shop-photo.jpg.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 0;
}

.hero-container {
    max-width: 800px;
    padding: 0 20px;
}

.hero-subtitle {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    font-weight: 300;
    color: #fcc735;
    margin-bottom: -15px;
    font-style: italic;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.9);
    letter-spacing: 2px;
}

.hero-heading {
    font-family: 'Bebas Neue', cursive;
    font-size: 3.2rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    margin-top: 0;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.9);
}

.hero-description {
    font-family: 'Georgia', serif;
    font-size: 1.4rem;
    margin-bottom: 2rem;
    font-weight: 300;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #2D2D2D;
    text-align: center;
}

.services .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-family: 'Georgia', serif;
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 3px;
    color: #FFFFFF;
    margin-bottom: 60px;
    text-align: center;
    text-transform: capitalize;
}

.price-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.service-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #555555;
    gap: 15px;
}

.service-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #FFFFFF;
    margin: 0;
    text-align: left;
    flex-shrink: 0;
}

.dotted-line {
    flex: 1;
    height: 1px;
    background: repeating-linear-gradient(
        to right,
        #888888 0,
        #888888 4px,
        transparent 4px,
        transparent 8px
    );
    margin: 0 15px;
}

.service-price {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: #FFFFFF;
    margin: 0;
    flex-shrink: 0;
}

.call-to-book-btn {
    background: #FDC935;
    color: #2d2d2d;
    border: none;
    padding: 5px 10px;
    font-size: 0.7rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Oswald', sans-serif;
    flex-shrink: 0;
    min-width: 80px;
}

.call-to-book-btn:hover {
    background: #2d2d2d;
    color: #FDC935;
    transform: translateY(-2px);
}

/* Location Section */
.location {
    background-color: white;
    color: #2d2d2d;
    padding: 80px 0;
    font-family: 'Georgia', serif;
}

.location-header {
    text-align: center;
    margin-bottom: 40px;
}

.location-title {
    font-family: 'Georgia', serif;
    font-size: 2.5rem;
    font-weight: 300 !important; /* Force light weight */
    letter-spacing: 3px;
    color: #2d2d2d;
    margin-bottom: 20px;
    text-transform: capitalize;
    text-align: center;
}

.location-description {
    font-family: 'Georgia', serif;
    font-size: 1.1rem;
    color: #2d2d2d;
    margin-bottom: 20px;
    font-weight: 400;
}

.additional-address {
    font-family: 'Georgia', serif;
    font-size: 1.1rem;
    color: #2d2d2d;
    font-weight: 400;
    line-height: 1.5;
}

.additional-address p {
    font-family: 'Georgia', serif;
    color: #2d2d2d;
    margin: 0;
}

.location-pin {
    color: #2d2d2d;
    background-color: #FDC935;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 4px 12px rgba(45, 45, 45, 0.3);
}

.location-pin svg {
    width: 30px;
    height: 30px;
    fill: #2d2d2d;
}

.location-pin-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.location-pin {
    width: 50px;
    height: 50px;
    color: #FDC935;
}

.location-title {
    font-family: 'Georgia', serif;
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 3px;
    color: #2d2d2d;
    margin-bottom: 60px;
    text-align: center;
    text-transform: capitalize;
}

.additional-address {
    font-size: 1.1rem;
    color: #ccc;
}

.map-container {
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
    max-width: 100%;
    margin: 0 auto 30px;
    height: 450px;
    border: 1px solid #e8e8e8;
    background: #ffffff;
    transition: box-shadow 0.3s ease;
}

.map-container:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(0, 0, 0, 0.1);
}

.location-content {
    padding: 0 20px;
}

.location-header {
    text-align: center;
    margin-bottom: 40px;
}

.location-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.additional-address {
    font-size: 1.1rem;
    color: #666;
    font-weight: 400;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .map-container {
        max-width: 100%;
        height: 350px;
        margin: 0 auto 25px;
    }
    
    .location-content {
        padding: 0 15px;
    }
    
    .location-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .map-container {
        max-width: 100%;
    }
}

/* Footer */
.footer {
    background: #2d2d2d;
    color: white;
    padding: 60px 0 20px;
    font-family: 'Georgia', serif;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: left;
    position: relative;
}

/* Vertical separator line - positioned before the last section (BODRUM) */
.footer-content::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #ffffff;
    left: calc(66.666% - 40px);
}




.footer-column {
    display: flex;
    flex-direction: column;
}

/* Hide opening hours on desktop */
.footer-column.opening-hours {
    display: none;
}

.footer-column-title {
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: #FDC935;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #FDC935;
}

.footer-location {
    color: #ffffff;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

.footer-bottom {
    border-top: 2px solid #FDC935;
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    background: #2d2d2d;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #ffffff;
    margin: 0;
    font-weight: 400;
}

/* Google Reviews Widget */
.google-reviews-widget {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.reviews-widget-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.business-logo {
    flex-shrink: 0;
}

.logo-circle {
    width: 60px;
    height: 60px;
    background: #2d2d2d;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #FDC935;
    font-family: 'Oswald', sans-serif;
    position: relative;
}

.logo-text {
    font-size: 8px;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    letter-spacing: 0.5px;
}

.logo-subtitle {
    font-size: 6px;
    font-weight: 400;
    margin-top: 2px;
    letter-spacing: 0.3px;
}

.reviews-info {
    flex: 1;
    text-align: left;
}

.business-name {
    font-family: 'Georgia', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d2d2d;
    margin: 0 0 8px 0;
    line-height: 1.2;
}

.star-rating {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-bottom: 5px;
}

.star {
    color: #FDC935;
    font-size: 1.2rem;
    line-height: 1;
}

.star.half {
    position: relative;
    overflow: hidden;
}

.star.half::after {
    content: '★';
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    overflow: hidden;
    color: #FDC935;
}

.review-count {
    font-family: 'Georgia', serif;
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    font-weight: 400;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .google-reviews-widget {
        max-width: 350px;
        padding: 15px;
    }
    
    .reviews-widget-content {
        gap: 12px;
    }
    
    .logo-circle {
        width: 50px;
        height: 50px;
    }
    
    .logo-text {
        font-size: 7px;
    }
    
    .logo-subtitle {
        font-size: 5px;
    }
    
    .business-name {
        font-size: 1rem;
    }
    
    .star {
        font-size: 1.1rem;
    }
    
    .review-count {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .google-reviews-widget {
        max-width: 300px;
        padding: 12px;
    }
    
    .logo-circle {
        width: 45px;
        height: 45px;
    }
    
    .business-name {
        font-size: 0.95rem;
    }
    
    .star {
        font-size: 1rem;
    }
    
    .review-count {
        font-size: 0.8rem;
    }
}

/* Mobile Responsive - Fixed Layout with Better Text Alignment */
@media (max-width: 768px) {
    .footer-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
        gap: 40px;
        text-align: left;
        position: relative;
        align-items: start;
        padding: 0 20px;
    }
    
    /* Convert desktop separator line to horizontal line between rows */
    .footer-content::before {
        top: calc(33.33% + 20px);
        bottom: auto;
        left: 50%;
        transform: translate(-50%, 0);
        width: 80%;
        height: 1px;
        background: #ffffff;
    }
    
    /* Show opening hours on mobile */
    .footer-column.opening-hours {
        display: flex;
    }
    
    .footer-column {
        align-items: flex-start;
        justify-self: start;
        width: 100%;
        text-align: left;
    }
    
    /* Ensure all text elements are left-aligned */
    .footer-column-title {
        text-align: left;
        width: 100%;
    }
    
    .footer-links {
        text-align: left;
        width: 100%;
        align-items: flex-start;
    }
    
    .footer-link,
    .footer-location {
        text-align: left;
        width: 100%;
        display: block;
    }
    
    /* Mobile Layout Positioning - Fixed */
    .footer-column:nth-child(1) { /* WEB */
        grid-column: 1;
        grid-row: 1;
        margin-bottom: 20px;
    }
    
    .footer-column:nth-child(2) { /* OPENING HOURS */
        grid-column: 1;
        grid-row: 2;
        position: relative;
        margin-top: 20px;
    }
    
    .footer-column:nth-child(4) { /* BODRUM */
        grid-column: 2;
        grid-row: 2;
        margin-top: 20px;
    }
    
    
    

    
    /* Adjust spacing for better mobile layout */
    .footer-column-title {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }
    
    .footer-link,
    .footer-location {
        font-size: 0.85rem;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 40px 0 15px;
    }
    
    .footer-content {
        gap: 30px;
        padding: 0 15px;
    }
    
    .footer-column:nth-child(2),
    .footer-column:nth-child(4) {
        margin-top: 15px;
    }
    
    .footer-column-title {
        font-size: 0.8rem;
    }
    
    .footer-link,
    .footer-location {
        font-size: 0.8rem;
    }
}

/* Team Section */
.team {
    padding: 80px 0;
    background-color: #ffffff;
}

.team .section-title {
    font-family: 'Georgia', serif;
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 3px;
    color: #2d2d2d;
    margin-bottom: 60px;
    text-align: center;
    text-transform: capitalize;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 50px;
    border: 1px solid #2d2d2d;
    padding: 0;
    background-color: #FEFFFF;
}

.team-member {
    text-align: center;
    background-color: #FEFFFF;
    padding: 30px 20px;
    border-right: 1px solid #2d2d2d;
}

.team-member:last-child {
    border-right: none;
}

.team-photo {
    width: 100%;
    aspect-ratio: 1;
    margin: 0 auto 20px;
    overflow: hidden;
    border: 1px solid #2d2d2d;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.team-photo:hover img {
    filter: grayscale(0%);
}

.member-name {
    font-size: 24px;
    font-weight: 300;
    color: #2d2d2d;
    margin-bottom: 0;
    font-family: 'Georgia', serif;
    letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 80vh;
        background-attachment: scroll;
        padding: 0 15px;
    }
    
    .hero-container {
        padding: 0 15px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: -5px;
        letter-spacing: 1.5px;
    }
    
    .hero-heading {
        font-size: 2.2rem;
        line-height: 1.1;
        margin-top: 15px;
        margin-bottom: 1.2rem;
        letter-spacing: 1px;
    }
    
    .hero-description {
        font-size: 1rem;
        line-height: 1.4;
        margin-bottom: 1.5rem;
        padding: 0 10px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    /* Scrolling Banner */
    .scrolling-banner {
        padding: 10px;
        border-width: 1px;
    }
    
    .scrolling-text {
        font-size: 0.85rem;
        letter-spacing: 0.3px;
        animation: scroll 12s linear infinite;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .service-item {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .service-name {
        font-size: 1rem;
    }
    
    .service-price {
        font-size: 1rem;
    }
    
    .call-to-book-btn {
        font-size: 0.65rem;
        padding: 3px 6px;
        min-width: 60px;
    }
    
    .btn-appointment, .btn-primary {
        font-size: 0.65rem;
        padding: 3px 6px;
        min-width: 60px;
        font-family: 'Oswald', sans-serif;
        letter-spacing: 0.5px;
    }
    
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .team .section-title {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 75vh;
        padding: 0 10px;
    }
    
    .hero-container {
        padding: 0 10px;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        letter-spacing: 1px;
        margin-bottom: -8px;
    }
    
    .hero-heading {
        font-size: 1.8rem;
        line-height: 1.1;
        margin-top: 20px;
        margin-bottom: 1rem;
        letter-spacing: 0.5px;
    }
    
    .hero-description {
        font-size: 0.9rem;
        line-height: 1.3;
        margin-bottom: 1.2rem;
        padding: 0 5px;
    }
    
    /* Scrolling Banner */
    .scrolling-banner {
        padding: 8px;
    }
    
    .scrolling-text {
        font-size: 0.75rem;
        letter-spacing: 0.2px;
        animation: scroll 10s linear infinite;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .team .section-title {
        font-size: 1.8rem;
    }

    .location-title {
        font-size: 1.8rem;
    }
}

.team-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

.team-link:hover {
    transform: translateY(-5px);
}

.team-link:hover .member-name {
    color: #FDC935;
}

/* Special service styling */
.special-service {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.haircut-text {
    color: #2d2d2d;
    font-family: 'Oswald', sans-serif;
}

.separator {
    color: #2d2d2d;
    font-family: 'Oswald', sans-serif;
    margin: 0 5px;
}

.specialty-text {
    color: #FDC935;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-style: italic;
}

.service-details {
    display: block;
    font-style: italic;
    color: #B8941F;
    font-size: 0.9rem;
    font-weight: 300;
    margin-top: 5px;
    line-height: 1.3;
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
    background: #ffffff;
    text-align: center;
}

.gallery .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gallery .section-title {
    font-family: 'Georgia', serif;
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 3px;
    color: #2d2d2d;
    margin-bottom: 60px;
    text-align: center;
    text-transform: capitalize;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

/* Gallery Responsive Design */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }
    
    .gallery .section-title {
        font-size: 2rem;
    }
    
    .gallery-image {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gallery .section-title {
        font-size: 1.8rem;
    }
    
    .gallery-image {
        height: 180px;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .special-service {
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
    }
    
    .separator {
        display: none;
    }
    
    .specialty-text {
        font-size: 0.9rem;
    }
}

.hero-appointments {
    margin: 30px 0;
    padding: 25px;
    background-color: rgba(253, 201, 53, 0.1);
    border-radius: 8px;
    border-left: 4px solid #FDC935;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-appointments h3 {
    font-family: 'Georgia', serif;
    font-size: 1.6rem;
    color: #2d2d2d;
    margin-bottom: 15px;
    font-weight: 400;
}

.hero-appointments p {
    font-family: 'Georgia', serif;
    color: #2d2d2d;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
    font-style: italic;
}

/* Reviews Section - Simplified and Fixed */
.reviews {
    padding: 80px 0;
    background: #2d2d2d;
    color: white;
    position: relative;
}

.reviews-title {
    font-family: 'Georgia', sans-serif;
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 3px;
    color: #ffffff;
    margin: 0 0 40px 0;
    text-align: left;
    text-transform: capitalize;
    padding-left: 20px;
}

.testimonial-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 0 20px;
    gap: 40px;
}

.slider-nav {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    flex-shrink: 0;
}

.slider-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.slider-nav svg {
    width: 24px;
    height: 24px;
}

.testimonial-content {
    flex: 1;
    max-width: 700px;
    text-align: center;
    position: relative;
    min-height: 150px;
}

.testimonial-item {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    padding: 0 20px;
}

.testimonial-item.active {
    opacity: 1;
    pointer-events: auto;
}

.testimonial-text {
    margin-bottom: 25px;
}

.testimonial-text p {
    font-family: 'Georgia', serif;
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-style: italic;
}

.client-info {
    margin-top: 20px;
}

.client-name {
    font-family: 'Georgia', sans-serif;
    font-size: 1.1rem !important;
    font-weight: 500;
    letter-spacing: 3px;
    color: #Ffffff;
    margin: 0;
    text-transform: uppercase;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .reviews {
        padding: 60px 0;
    }

    .reviews-title {
        font-size: 1.4rem;
        margin-bottom: 30px;
        text-align: center;
        padding-left: 0;
    }
    
    .testimonial-slider {
        gap: 20px;
        padding: 0 15px;
    }
    
    .slider-nav {
        width: 45px;
        height: 45px;
    }
    
    .slider-nav svg {
        width: 20px;
        height: 20px;
    }
    
    .testimonial-content {
        min-height: 120px;
    }
    
    .testimonial-item {
        position: static;
        opacity: 1;
        padding: 0 10px;
    }
    
    .testimonial-item:not(.active) {
        display: none;
    }
    
    .testimonial-text p {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .client-name {
        font-size: 0.9rem !important;
        letter-spacing: 2px;
    }
}

@media (max-width: 480px) {
    .reviews-title {
        font-size: 0.7rem;
        letter-spacing: 2px;
        margin-bottom: 25px;
    }

    .testimonial-slider {
        gap: 15px;
        padding: 0 10px;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
    }
    
    .testimonial-text p {
        font-size: 0.95rem;
    }
    
    .client-name {
        font-size: 0.95rem !important;
        letter-spacing: 2px;
    }
}

.footer-section a:hover {
    text-decoration: underline;
}

.social-icon:hover {
    background: #FDC935;
    color: #2d2d2d;
    transform: translateY(-2px);
}

.social-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.newsletter {
    max-width: 300px;
}

.newsletter p {
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.newsletter-input {
    padding: 10px;
    border: 1px solid #444;
    background: #333;
    color: white;
    border-radius: 5px;
}

.newsletter-input::placeholder {
    color: #999;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.8rem;
}

.checkbox-container input[type="checkbox"] {
    margin-top: 2px;
}

.submit-btn {
    background: #FDC935;
    color: #2d2d2d;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #FED866;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #999;
    font-size: 0.9rem;
}

.team-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

.team-link:hover {
    transform: translateY(-5px);
}

.team-link:hover .member-name {
    color: #FDC935;
}

.info-sections {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
    max-width: 800px;
}

.opening-times {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
}

.opening-times h3 {
    font-family: 'Georgia', serif;
    font-size: 1.8rem;
    color: #2d2d2d;
    margin-bottom: 20px;
    font-weight: 400;
    text-align: left;
}

.times-list {
    width: 100%;
    max-width: 220px;
    margin: 0 auto;
}

.time-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    width: 100%;
}

.day {
    font-family: 'Georgia', serif;
    font-weight: 500;
    color: #2d2d2d;
    flex: 0 0 auto;
}

.hours {
    font-family: 'Georgia', serif;
    color: #2d2d2d;
    flex: 0 0 auto;
}

.right-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 280px;
}

.parking-info {
    flex: 0 0 auto;
}

.appointment-info {
    flex: 1;
}

.parking-info {
    flex: 0 0 auto;
}

.parking-info h3 {
    font-family: 'Georgia', serif;
    font-size: 1.8rem;
    color: #2d2d2d;
    margin-bottom: 15px;
    font-weight: 400;
    text-align: center;
}

.parking-info p {
    font-family: 'Georgia', serif;
    color: #2d2d2d;
    line-height: 1.6;
    font-size: 1.1rem;
    text-align: left;
}

.appointment-info {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
}

.appointment-info p {
    font-family: 'Georgia', serif;
    color: #2d2d2d;
    line-height: 1.6;
    font-size: 1.1rem;
    text-align: left;
    margin: 0;
}

/* Responsive layout */
@media (max-width: 768px) {
    .info-sections {
        flex-direction: column;
        gap: 25px;
        align-items: center;
    }
    
    .opening-times {
        min-width: 100%;
        max-width: 100%;
    }
    
    .opening-times h3 {
        text-align: center;
    }
    
    .appointment-info {
        min-width: 100%;
        max-width: 100%;
    }
    
    .appointment-info p {
        text-align: center;
    }
}