/* ========================================
   RESTAURANT PAGE STYLES
   ======================================== */

/* Restaurant Hero Section - Café Style */
.restaurant-hero {
    height: 85vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.restaurant-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.restaurant-hero .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.restaurant-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg, 
        rgba(0, 0, 0, 0.5) 0%, 
        rgba(0, 0, 0, 0.6) 25%,
        rgba(0, 0, 0, 0.55) 50%,
        rgba(0, 0, 0, 0.6) 75%,
        rgba(0, 0, 0, 0.5) 100%
    );
    z-index: 2;
}

.restaurant-hero .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 0 30px;
    width: 100%;
}

.restaurant-hero .hero-main-content {
    position: relative;
    z-index: 2;
}

/* Large decorative "588" number */
.restaurant-hero .cafe-number {
    font-family: 'Paytone One', 'Fredoka One', sans-serif;
    font-size: clamp(8rem, 20vw, 16rem);
    font-weight: 400;
    line-height: 0.9;
    color: rgba(255, 255, 255, 0.15);
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
    user-select: none;
    letter-spacing: -0.05em;
}

.restaurant-hero .hero-title {
    font-family: 'Paytone One', 'Fredoka One', sans-serif;
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 400;
    margin-bottom: 15px;
    text-shadow: 
        2px 2px 8px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
    letter-spacing: 0.02em;
    color: #fff;
}

.restaurant-hero .hero-tagline {
    font-family: 'Gloria Hallelujah', cursive;
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 400;
    margin-bottom: 25px;
    color: #ffd700;
    text-shadow: 
        2px 2px 6px rgba(0, 0, 0, 0.6),
        0 0 15px rgba(255, 215, 0, 0.3);
    position: relative;
    z-index: 1;
    font-style: italic;
}

.restaurant-hero .hero-description {
    font-size: clamp(1.1rem, 2.2vw, 1.4rem);
    margin-bottom: 40px;
    line-height: 1.7;
    opacity: 0.95;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.restaurant-hero .hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.restaurant-hero .hero-buttons .btn {
    padding: 16px 36px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.restaurant-hero .hero-buttons .btn-primary {
    background: linear-gradient(135deg, #d54e29 0%, #c0392b 100%);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.restaurant-hero .hero-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(213, 78, 41, 0.5);
    background: linear-gradient(135deg, #e55a35 0%, #d54e29 100%);
}

.restaurant-hero .hero-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: white;
}

.restaurant-hero .hero-buttons .btn-secondary:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

/* Feature badges */
.restaurant-hero .hero-features {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.restaurant-hero .feature-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.restaurant-hero .feature-badge:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.restaurant-hero .feature-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.restaurant-hero .feature-text {
    font-size: 0.95rem;
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

/* Scroll indicator */
.restaurant-hero .hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    animation: bounce 2s infinite;
}

.restaurant-hero .scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid rgba(255, 255, 255, 0.8);
    border-bottom: 2px solid rgba(255, 255, 255, 0.8);
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

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

.italics {
    font-style: italic;
}

.restaurant-about .about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.restaurant-about .about-text h3 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--auto-blue);
    margin-bottom: 20px;
}

.restaurant-about .about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 20px;
}

.restaurant-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    justify-content: center;
}

.restaurant-stats .stat {
    text-align: center;
}

.restaurant-stats .stat-number {
    font-family: var(--font-display);
    font-size: 36px;
    color: var(--auto-blue);
    font-weight: 700;
}

.restaurant-stats .stat-label {
    font-size: 14px;
    color: var(--gray-600);
    margin-top: 5px;
}

/* Menu Section */
.menu-section {
    padding: var(--section-padding);
    background: var(--gray-100);
}

/* Menu Images */
.menu-images-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.menu-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--white);
    /*aspect-ratio: 3 / 4;*/
}

.menu-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.menu-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.menu-image-wrapper:hover .menu-image {
    transform: scale(1.05);
}

.menu-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: var(--white);
}

.menu-image-wrapper:hover .menu-image-overlay {
    opacity: 1;
}

.menu-image-overlay i {
    font-size: 2.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.menu-image-overlay span {
    font-size: 1rem;
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* Menu Lightbox Modal */
.menu-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.menu-lightbox.active {
    display: flex;
}

.menu-lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
}

.menu-lightbox-content {
    position: relative;
    z-index: 1;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    background: var(--white);
    padding: 10px;
}

.menu-lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(0, 0, 0, 0.3);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.menu-lightbox-close:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.menu-lightbox-prev,
.menu-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(0, 0, 0, 0.3);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.menu-lightbox-prev {
    left: -70px;
}

.menu-lightbox-next {
    right: -70px;
}

.menu-lightbox-prev:hover,
.menu-lightbox-next:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

@media (max-width: 768px) {
    .menu-images-container {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .menu-lightbox-content {
        max-width: 95vw;
        max-height: 85vh;
    }
    
    .menu-lightbox-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        background: rgba(0, 0, 0, 0.7);
    }
    
    .menu-lightbox-prev,
    .menu-lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        background: rgba(0, 0, 0, 0.7);
    }
    
    .menu-lightbox-prev {
        left: 10px;
    }
    
    .menu-lightbox-next {
        right: 10px;
    }
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.menu-category {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

.menu-category:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.category-title {
    color: var(--auto-blue);
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gray-200);
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 15px 0;
    border-bottom: 1px solid var(--gray-200);
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item h4 {
    color: var(--gray-800);
    margin-bottom: 5px;
    font-size: 1.1rem;
    font-weight: 600;
}

.menu-item p {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

.price {
    color: var(--grass-green);
    font-weight: 700;
    font-size: 1.1rem;
    white-space: nowrap;
    margin-left: 15px;
}

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

.restaurant-card {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.restaurant-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.restaurant-card .business-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.restaurant-card .business-icon {
    font-size: 2rem;
    color: var(--flash-red);
}

.restaurant-card .business-header h4 {
    color: var(--auto-blue);
    margin: 0;
    font-size: 1.3rem;
}

.restaurant-card .contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.restaurant-card .detail-label {
    font-weight: 600;
    color: var(--gray-700);
    min-width: 60px;
}

.restaurant-card .detail-value {
    color: var(--gray-600);
    flex: 1;
}

.restaurant-card .hours-detail p {
    margin-bottom: 5px;
    color: var(--gray-600);
}

/* Responsive Design */
@media (max-width: 768px) {
    .restaurant-hero {
        height: 100vh;
        min-height: 100vh;
        padding-top: 70px; /* Account for navbar */
        margin-top: 0;
    }
    
    .restaurant-hero .hero-content {
        padding: 0 20px;
        padding-top: 20px;
        max-width: 100%;
    }
    
    .restaurant-hero .cafe-number {
        font-size: clamp(5rem, 25vw, 10rem);
        opacity: 0.1; /* Reduce opacity on mobile for better text visibility */
    }
    
    .restaurant-hero .hero-title {
        font-size: clamp(2.5rem, 8vw, 4rem);
        margin-bottom: 10px;
    }
    
    .restaurant-hero .hero-tagline {
        font-size: clamp(1.2rem, 4vw, 1.6rem);
        margin-bottom: 15px;
    }
    
    .restaurant-hero .hero-description {
        font-size: clamp(1rem, 3vw, 1.2rem);
        margin-bottom: 25px;
        padding: 0 10px;
    }
    
    .restaurant-hero .hero-features {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .restaurant-hero .feature-badge {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
    
    .restaurant-hero .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .restaurant-hero .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .restaurant-hero .hero-scroll-indicator {
        bottom: 20px;
        font-size: 0.8rem;
    }
    
    .restaurant-about .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .restaurant-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .menu-item {
        flex-direction: column;
        gap: 10px;
    }
    
    .price {
        margin-left: 0;
        align-self: flex-start;
    }
}

@media (max-width: 480px) {
    .restaurant-hero {
        height: 110vh;
        min-height: 100vh;
        padding-top: 70px;
    }
    
    .restaurant-hero .hero-content {
        padding: 0 15px;
        padding-top: 15px;
    }
    
    .restaurant-hero .cafe-number {
        font-size: clamp(4rem, 30vw, 8rem);
        opacity: 0.08;
    }
    
    .restaurant-hero .hero-title {
        font-size: clamp(2rem, 9vw, 3.5rem);
        margin-bottom: 8px;
    }
    
    .restaurant-hero .hero-tagline {
        font-size: clamp(1.1rem, 4.5vw, 1.5rem);
        margin-bottom: 12px;
    }
    
    .restaurant-hero .hero-description {
        font-size: clamp(0.95rem, 3.5vw, 1.1rem);
        margin-bottom: 20px;
        line-height: 1.6;
        padding: 0 5px;
    }
    
    .restaurant-hero .hero-features {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    
    .restaurant-hero .feature-badge {
        width: 100%;
        justify-content: center;
        padding: 10px 20px;
    }
    
    .restaurant-hero .hero-buttons {
        margin-bottom: 25px;
    }
    
    .restaurant-hero .hero-buttons .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    
    .restaurant-hero .hero-scroll-indicator {
        bottom: 15px;
        font-size: 0.75rem;
    }
    
    .menu-category {
        padding: 20px;
    }
    
    .menu-item {
        padding: 10px 0;
    }
    
    .category-title {
        font-size: 1.3rem;
    }
    
    .menu-item h4 {
        font-size: 1rem;
    }
    
    .menu-item p {
        font-size: 0.85rem;
    }
    
    .price {
        font-size: 1rem;
    }
}
/* Testimonials Section */
.testimonials-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, rgba(107, 222, 98, 0.1) 0%, rgba(58, 130, 195, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.testimonials-carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
    z-index: 1;
}

.testimonials-carousel::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        rgba(107, 222, 98, 0.3) 0%, 
        rgba(58, 130, 195, 0.3) 25%, 
        rgba(213, 78, 41, 0.3) 50%, 
        rgba(58, 130, 195, 0.3) 75%, 
        rgba(107, 222, 98, 0.3) 100%);
    border-radius: 24px;
    z-index: -1;
    opacity: 0.6;
    animation: borderGlow 3s ease-in-out infinite alternate;
}

@keyframes borderGlow {
    0% {
        opacity: 0.4;
    }
    100% {
        opacity: 0.7;
    }
}

.testimonials-track {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    gap: 30px;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    /* Hide scrollbar */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

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

.testimonial-card {
    min-width: 100%;
    max-width: 100%;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 20px;
    scroll-snap-align: start;
    position: relative;
    overflow: hidden;
}

.testimonial-card:hover {
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.2);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.testimonial-stars {
    font-size: 1.2rem;
    color: #fbbf24;
}

.testimonial-date {
    font-size: 0.9rem;
    color: var(--gray-600);
    font-weight: 500;
}

.testimonial-content {
    flex: 1;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--gray-900);
    font-style: italic;
    margin: 0;
    quotes: '"' '"' "'" "'";
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 1;
}

.testimonial-content p::before {
    content: open-quote;
    font-size: 2rem;
    color: var(--primary-color);
    line-height: 0;
    vertical-align: -0.4em;
    margin-right: 5px;
}

.testimonial-content p::after {
    content: close-quote;
    font-size: 2rem;
    color: var(--primary-color);
    line-height: 0;
    vertical-align: -0.4em;
    margin-left: 5px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 1;
}

.author-name {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--gray-900);
}

.author-badge {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 500;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.carousel-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

.carousel-btn:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

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

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.carousel-dots-container {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-300);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

.carousel-dot:hover {
    background: var(--gray-400);
    transform: scale(1.2);
}

.carousel-dot.active {
    background: var(--primary-color);
    width: 14px;
    height: 14px;
}

/* Responsive Design for Testimonials */
@media (max-width: 768px) {
    .testimonials-section {
        margin-top: 40px;
    }
    
    .testimonials-carousel {
        padding: 10px 0;
    }

    .testimonial-card {
        padding: 25px 20px;
    }

    .testimonial-content p {
        font-size: 1rem;
    }

    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .carousel-controls {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        padding: 20px 15px;
    }

    .testimonial-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .testimonial-content p {
        font-size: 0.95rem;
    }

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

/* Floating CTA Button */
.floating-cta {
    position: fixed;
    right: clamp(16px, 2vw, 32px);
    bottom: clamp(16px, 2vw, 32px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    background: rgba(44, 85, 48, 0.60);
    color: #fff;
    font-weight: 600;
    border-radius: 16px;
    text-decoration: none;
    box-shadow: 0 12px 25px rgba(2, 2, 2, 0.5);
    backdrop-filter: blur(6px);
    z-index: 999;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

.floating-cta:hover,
.floating-cta:focus-visible {
    background: rgba(44, 85, 48, 1);
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.25);
}

.floating-cta:focus-visible {
    outline: 3px solid rgba(107, 222, 98, 0.3);
    outline-offset: 4px;
}

@media (max-width: 600px) {
    .floating-cta {
        max-width: 50%;
        right: 16px;
        bottom: 16px;
        padding: 14px 18px;
        text-align: right;
        border-radius: 12px;
        font-size: 0.75rem;
    }
}

/* Floating CTA Modal */
.cta-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cta-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cta-modal {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 24px 24px 0 0;
    padding: 32px 24px;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 500px;
    margin: 0 auto;
}

.cta-modal.active {
    transform: translateY(0);
}

.cta-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid #f0f0f0;
}

.cta-modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5530;
    margin: 0;
}

.cta-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    padding: 4px 8px;
    line-height: 1;
    transition: color 0.2s ease;
    border-radius: 4px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

.cta-modal-close:hover {
    color: #2c5530;
    background: #f0f0f0;
}

.cta-modal-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cta-modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cta-modal-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 24px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

.cta-modal-btn-call {
    background: #2c5530;
    color: #fff;
}

.cta-modal-btn-call:hover {
    background: #1e3a21;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 85, 48, 0.3);
}

.cta-modal-btn-email {
    background: #f0f8f0;
    color: #2c5530;
    border: 2px solid #2c5530;
}

.cta-modal-btn-email:hover {
    background: #2c5530;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 85, 48, 0.3);
}

.cta-modal-contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 8px;
}

.cta-modal-phone-display {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
}

.cta-modal-phone-label {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 8px;
    font-weight: 500;
}

.cta-modal-phone-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5530;
    letter-spacing: 0.5px;
}

.cta-modal-email-display {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
}

.cta-modal-email-label {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 12px;
    font-weight: 500;
}

.cta-modal-email-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.cta-modal-email-address {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c5530;
    word-break: break-all;
    flex: 1;
    min-width: 0;
}

.cta-modal-copy-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 16px;
    background: #2c5530;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    white-space: nowrap;
}

.cta-modal-copy-btn:hover {
    background: #1e3a21;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(44, 85, 48, 0.3);
}

.cta-modal-copy-btn:active {
    transform: translateY(0);
}

.cta-modal-copy-btn.copied {
    background: #4caf50;
}

.cta-modal-copy-btn .copy-icon {
    font-size: 1rem;
}

.cta-modal-copy-btn .copy-text {
    font-size: 0.875rem;
}

@media (max-width: 600px) {
    .cta-modal {
        border-radius: 20px 20px 0 0;
        padding: 24px 20px;
    }

    .cta-modal-title {
        font-size: 1.25rem;
    }

    .cta-modal-btn {
        padding: 14px 20px;
        font-size: 0.9375rem;
    }

    .cta-modal-phone-number {
        font-size: 1.25rem;
    }

    .cta-modal-email-address {
        font-size: 1rem;
    }

    .cta-modal-email-wrapper {
        flex-direction: column;
        gap: 10px;
    }

    .cta-modal-copy-btn {
        width: 100%;
        padding: 10px 16px;
    }
}




