/* Acqualina Cleaning Services - Elegant Theme Stylesheet */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500&family=Dancing+Script:wght@400;500;600;700&family=Great+Vibes&display=swap');

/* Elegant Color Scheme */
:root {
    /* Dark Theme Colors */
    --gold: #a8763e;
    --dark-blue: #0643cd;
    
    /* Light Theme Colors */
    --deep-teal: #0e5962;
    --soft-gray-blue: #7d8b90;
    --warm-taupe: #8c6b66;
    --light-caramel: #987961;
    --golden-brown: #a27440;
    --warm-beige: #a99789;
    --light-taupe: #afa7a3;
    --cool-off-white: #b5b6c8;
    --creamy-neutral: #bdaa9a;
    --soft-beige: #c5b7af;
    
    /* Primary Colors */
    --primary-color: var(--deep-teal);
    --secondary-color: #f8f9fa;
    --accent-color: var(--gold);
    --text-dark: var(--warm-taupe);
    --text-light: var(--soft-gray-blue);
    --border-light: var(--light-taupe);
    
    /* Very Light Background Colors */
    --bg-very-light: #fefefe;
    --bg-light-elegant: #fbfbfb;
    --bg-warm-light: #f9f8f7;
    --bg-cream: #faf9f8;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    font-weight: 300;
    background-color: var(--bg-very-light);
}

/* Font Classes */
.font-script {
    font-family: 'Dancing Script', cursive;
    font-weight: 500;
}

.font-script-elegant {
    font-family: 'Great Vibes', cursive;
    font-weight: 400;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.display-4, .display-5 {
    font-weight: 400;
}

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

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

/* Utility Classes */
.bg-light-elegant {
    background-color: var(--bg-light-elegant);
}

.bg-warm-light {
    background-color: var(--bg-warm-light);
    position: relative;
    z-index: 10;
}

.bg-cream {
    background-color: var(--bg-cream);
    position: relative;
    z-index: 10;
}

.text-primary-custom {
    color: var(--primary-color) !important;
}

.text-accent {
    color: var(--accent-color) !important;
}

.section-padding {
    padding: 80px 0;
    position: relative;
    z-index: 10;
    background-color: var(--bg-very-light);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--bg-light-elegant) 0%, var(--bg-cream) 100%);
    padding: 120px 0 80px;
}

/* Title Section */
.title-section {
    background-color: var(--bg-very-light);
    border-bottom: 1px solid var(--border-light);
}

/* Hero Banner */
.hero-banner {
    position: relative;
    height: 60vh;
    min-height: 400px;
    max-height: 600px;
    overflow: hidden;
    margin-top: 76px; /* Account for fixed navbar */
}

.banner-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(14, 89, 98, 0.75) 0%,
        rgba(168, 118, 62, 0.65) 50%,
        rgba(14, 89, 98, 0.85) 100%
    );
}

/* Hero Slideshow */
.hero-slideshow {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 100vh;
    overflow: hidden;
    z-index: 1;
    isolation: isolate;
}

.slideshow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
    overflow: hidden;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(14, 89, 98, 0.75) 0%,
        rgba(168, 118, 62, 0.65) 50%,
        rgba(14, 89, 98, 0.85) 100%
    );
    z-index: 3;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    z-index: 4;
    padding: 0 20px;
}

/* Hero Logo Container */
.hero-logo-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.hero-logo {
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.3));
    animation: fadeInDown 1s ease-out;
}

.hero-cta {
    animation: fadeInUp 1s ease-out 0.5s both;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-content h1 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: slideInUp 1s ease-out;
}

.slide-content p {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    animation: slideInUp 1s ease-out 0.2s both;
}

.slide-content .d-flex {
    animation: slideInUp 1s ease-out 0.4s both;
}

/* Navigation Arrows */
.slide-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 5;
    font-size: 18px;
    backdrop-filter: blur(10px);
}

.slide-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: white;
    transform: translateY(-50%) scale(1.1);
}

.slide-nav.prev {
    left: 30px;
}

.slide-nav.next {
    right: 30px;
}

/* Slide Indicators */
.slide-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: white;
    border-color: white;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.7);
    border-color: white;
    transform: scale(1.2);
}

/* Outline Light Button for Slideshow */
.btn-outline-light {
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    padding: 12px 30px;
    font-weight: 400;
    border-radius: 25px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-light:hover {
    background-color: white;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Button Styles */
.btn-primary-custom {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 12px 30px;
    font-weight: 400;
    border-radius: 25px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    color: white;
    text-decoration: none;
    display: inline-block;
    border: none;
}

.btn-primary-custom:hover {
    background-color: var(--deep-teal);
    border-color: var(--deep-teal);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(14, 89, 98, 0.3);
    color: white;
}

.btn-outline-primary-custom {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 30px;
    font-weight: 400;
    border-radius: 25px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-primary-custom:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Card Styles */
.card-custom {
    border: 1px solid var(--border-light);
    border-radius: 20px;
    box-shadow: 0 6px 25px rgba(168, 118, 62, 0.1);
    transition: all 0.4s ease;
    height: 100%;
    background: linear-gradient(145deg, #ffffff 0%, var(--bg-light-elegant) 100%);
    will-change: transform, box-shadow;
}

.card-custom:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(168, 118, 62, 0.15);
    border-color: var(--accent-color);
}

/* Service Icons */
.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), var(--golden-brown));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(168, 118, 62, 0.3);
}

/* Feature Icons */
.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), var(--golden-brown));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(168, 118, 62, 0.3);
}

/* Navigation */
.navbar-custom {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    box-shadow: 0 3px 25px rgba(168, 118, 62, 0.1);
    border-bottom: 1px solid var(--border-light);
}

.navbar-brand img {
    height: 50px;
}

.nav-link {
    font-weight: 400;
    color: var(--text-dark) !important;
    margin: 0 15px;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.nav-link:hover {
    color: var(--accent-color) !important;
    transform: translateY(-1px);
}

.dropdown-menu {
    border: 1px solid var(--border-light);
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(168, 118, 62, 0.15);
    padding: 10px 0;
}

.dropdown-item {
    color: var(--text-dark);
    font-weight: 300;
    padding: 8px 20px;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: var(--bg-light-elegant);
    color: var(--accent-color);
}

/* Image Dividers */
.image-divider {
    height: 300px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    z-index: 5;
    overflow: hidden;
    will-change: transform;
    display: block;
    visibility: visible;
    background-repeat: no-repeat;
}

/* Fallback image for image dividers */
.fallback-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0; /* Hidden by default, will be shown if background fails */
}

/* If background image fails to load, show the fallback */
.image-divider:not([style*='background-image']) .fallback-image,
.image-divider[style*='background-image: none'] .fallback-image {
    opacity: 1;
}

.image-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(168, 118, 62, 0.15);
    z-index: 1;
}

/* Service Areas */
.service-area-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.service-area-item {
    background: linear-gradient(145deg, #ffffff 0%, var(--bg-light-elegant) 100%);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--border-light);
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(168, 118, 62, 0.08);
}

.service-area-item:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(168, 118, 62, 0.15);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--bg-light-elegant) 0%, var(--bg-cream) 50%, var(--bg-warm-light) 100%);
    position: relative;
    overflow: hidden;
}

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

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    color: var(--primary-color) !important;
    text-shadow: 0 2px 4px rgba(168, 118, 62, 0.1);
    animation: fadeInUp 1s ease-out;
}

.cta-text {
    color: var(--text-dark);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.cta-buttons {
    animation: fadeInUp 1s ease-out 0.4s both;
}

.btn-cta-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--deep-teal) 100%);
    border: none;
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 500;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(14, 89, 98, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn-cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.btn-cta-primary:hover::before {
    left: 100%;
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(14, 89, 98, 0.4);
    color: white;
}

.btn-cta-secondary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 13px 38px;
    border-radius: 30px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn-cta-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--primary-color);
    transition: width 0.4s ease;
    z-index: -1;
}

.btn-cta-secondary:hover::before {
    width: 100%;
}

.btn-cta-secondary:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(14, 89, 98, 0.3);
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--bg-warm-light) 0%, var(--bg-cream) 50%, var(--bg-light-elegant) 100%);
    color: var(--text-dark);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="footerPattern" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M0 20h40M20 0v40" stroke="%23a8763e" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="200" height="200" fill="url(%23footerPattern)"/></svg>');
    pointer-events: none;
}

.footer-content {
    position: relative;
    z-index: 2;
}

.footer-logo {
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(168, 118, 62, 0.2));
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-section h5 {
    color: var(--primary-color);
    position: relative;
    padding-bottom: 10px;
}

.footer-section h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
}

.footer-link {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 400;
    position: relative;
    display: inline-block;
}

.footer-link::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.footer-link:hover::before {
    width: 100%;
}

.footer-link:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-social {
    transition: all 0.3s ease;
}

.footer-social:hover {
    color: var(--accent-color) !important;
    transform: translateY(-3px) scale(1.1);
}

.footer-phone {
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.footer-phone:hover {
    color: var(--accent-color);
    transform: scale(1.05);
}

.footer-divider {
    border-color: var(--border-light) !important;
    opacity: 0.3;
}

.footer-copyright {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* FAQ Styles */
.faq-item {
    margin-bottom: 1rem;
    border: 1px solid var(--border-light);
    border-radius: 10px;
    overflow: hidden;
}

.faq-header {
    background-color: var(--bg-light-elegant);
    padding: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-header:hover {
    background-color: var(--bg-warm-light);
}

.faq-content {
    padding: 1rem;
    display: none;
    background-color: white;
}

.faq-content.active {
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .hero-section {
        padding: 100px 0 60px;
    }
    
    .hero-banner {
        height: 50vh;
        min-height: 300px;
        margin-top: 60px;
    }
    
    .hero-slideshow {
        height: 70vh;
        min-height: 500px;
        max-height: 70vh;
    }
    
    .hero-logo {
        max-width: 200px;
    }
    
    .hero-logo-container {
        gap: 1.5rem;
    }
    
    .slide-content h1 {
        font-size: 2.5rem !important;
    }
    
    .slide-nav {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .slide-nav.prev {
        left: 15px;
    }
    
    .slide-nav.next {
        right: 15px;
    }
    
    .slide-indicators {
        bottom: 20px;
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
    
    .service-area-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-link {
        margin: 0 10px;
    }
}

@media (max-width: 576px) {
    .display-4 {
        font-size: 2rem;
    }
    
    .display-5 {
        font-size: 1.75rem;
    }
    
    .service-icon, .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    will-change: opacity, transform;
}

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

/* Prevent animation conflicts */
.slide .animate-on-scroll {
    opacity: 1;
    transform: translateY(0);
    transition: none;
}

/* Ensure slideshow content animations work properly */
.slide-content .animate-on-scroll {
    opacity: 1;
    transform: translateY(0);
}

/* Elegant Image Gallery Styles */
.image-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.image-card img {
    transition: transform 0.3s ease;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

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

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.image-card:hover .image-overlay {
    transform: translateY(0);
}

.image-overlay h5 {
    margin: 0;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* Showcase Card Styles */
.showcase-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.showcase-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.showcase-card img {
    transition: transform 0.3s ease;
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.showcase-card:hover img {
    transform: scale(1.03);
}

.showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(14, 89, 98, 0.8), rgba(168, 118, 62, 0.6));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.showcase-card:hover .showcase-overlay {
    opacity: 1;
}

.showcase-overlay h4,
.showcase-overlay p {
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* Elegant Comparison Table Styles */
.elegant-comparison-wrapper {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    overflow: hidden;
    margin: 2rem 0;
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    padding: 0;
}

.header-item {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.task-header {
    background: rgba(255,255,255,0.1);
    border-right: 1px solid rgba(255,255,255,0.2);
}

.task-header h4 {
    color: white;
    font-weight: 600;
}

.service-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1rem;
    border-radius: 25px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.service-badge h4 {
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

.service-badge i {
    color: white;
    font-size: 1.1rem;
}

.comparison-body {
    background: var(--white);
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-bottom: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.comparison-row:hover {
    background: var(--bg-light-elegant);
    transform: translateX(5px);
}

.comparison-row:last-child {
    border-bottom: none;
}

.highlight-row {
    background: linear-gradient(90deg, transparent, rgba(168, 118, 62, 0.05));
}

.highlight-row:hover {
    background: linear-gradient(90deg, transparent, rgba(168, 118, 62, 0.1));
}

.task-cell {
    padding: 1.25rem 1.5rem;
    font-weight: 500;
    color: var(--text-dark);
    border-right: 1px solid var(--border-light);
    display: flex;
    align-items: center;
}

.check-cell, .times-cell {
    padding: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.check-cell i {
    color: #28a745;
    transition: transform 0.3s ease;
}

.times-cell i {
    color: #6c757d;
    opacity: 0.6;
}

.comparison-row:hover .check-cell i {
    transform: scale(1.2);
}

/* Responsive Design for Comparison Table */
@media (max-width: 768px) {
    .comparison-header {
        grid-template-columns: 1fr;
        gap: 1px;
    }
    
    .comparison-row {
        grid-template-columns: 1fr;
        gap: 1px;
    }
    
    .task-cell {
        border-right: none;
        border-bottom: 1px solid var(--border-light);
        font-weight: 600;
        background: var(--bg-light-elegant);
    }
    
    .check-cell, .times-cell {
        justify-content: flex-start;
        padding-left: 1.5rem;
    }
    
    .check-cell::before {
        content: "✓ Included";
        margin-right: 0.5rem;
        font-size: 0.9rem;
        color: #28a745;
        font-weight: 500;
    }
    
    .times-cell::before {
        content: "✗ Not included";
        margin-right: 0.5rem;
        font-size: 0.9rem;
        color: #6c757d;
        font-weight: 500;
    }
}

/* Recommendation Card Styles */
.recommendation-card {
    background: linear-gradient(135deg, var(--bg-light-elegant), var(--bg-cream));
    border: 2px solid var(--accent-color);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(168, 118, 62, 0.1);
    transition: all 0.3s ease;
}

.recommendation-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(168, 118, 62, 0.15);
}

.recommendation-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), var(--golden-brown));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 8px 20px rgba(168, 118, 62, 0.3);
}

.recommendation-icon i {
    font-size: 2rem;
    color: white;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Elegant Testimonials Styles */
.testimonial-stars {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.testimonial-stars i {
    margin: 0 2px;
    color: #ffc107;
    text-shadow: 0 1px 3px rgba(255, 193, 7, 0.3);
}

.elegant-testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    border: 1px solid var(--border-light);
}

.elegant-testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.featured-testimonial {
    border: 2px solid var(--accent-color);
    background: linear-gradient(135deg, var(--white), var(--bg-light-elegant));
}

.featured-testimonial::before {
    content: "Featured Review";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.testimonial-quote-icon {
    position: absolute;
    top: -15px;
    left: 2rem;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(14, 89, 98, 0.3);
}

.testimonial-quote-icon i {
    color: white;
    font-size: 1rem;
}

.testimonial-content {
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.testimonial-text {
    font-style: italic;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.testimonial-rating {
    display: flex;
    gap: 3px;
    margin-bottom: 1rem;
}

.testimonial-rating i {
    color: #ffc107;
    font-size: 1rem;
}

.testimonial-author-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
}

.author-avatar {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(14, 89, 98, 0.8), rgba(168, 118, 62, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-initial {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.author-info {
    flex: 1;
}

.author-name {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.author-title {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* Trust Indicators */
.trust-indicators {
    background: var(--bg-light-elegant);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 3rem;
}

.trust-item {
    padding: 1rem;
    transition: transform 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
}

.trust-item i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.trust-item h6 {
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    font-size: 0.9rem;
}

/* Responsive Design for Testimonials */
@media (max-width: 768px) {
    .elegant-testimonial-card {
        margin-bottom: 2rem;
    }
    
    .testimonial-author-section {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .trust-indicators .row {
        gap: 1rem;
    }
    
    .trust-item {
        padding: 0.5rem;
    }
}

/* Feature Badges for Book Now Page */
.feature-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--bg-light-elegant), var(--bg-cream));
    border: 2px solid var(--accent-color);
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(168, 118, 62, 0.2);
    transition: all 0.3s ease;
}

.feature-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(168, 118, 62, 0.3);
}

.feature-badge i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

/* Contact Cards */
.contact-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid var(--border-light);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 20px rgba(14, 89, 98, 0.3);
}

.contact-icon i {
    font-size: 2rem;
    color: white;
}

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

.contact-title {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.contact-info {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Enhanced Form Styling for Book Now */
.booking-form .card {
    border: none;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.booking-form .form-control,
.booking-form .form-select {
    border: 2px solid var(--border-light);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.booking-form .form-control:focus,
.booking-form .form-select:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(168, 118, 62, 0.25);
}

.booking-form .form-label {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.booking-form h4 {
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.booking-form .btn-primary-custom {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border: none;
    border-radius: 15px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(14, 89, 98, 0.3);
    transition: all 0.3s ease;
}

.booking-form .btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(14, 89, 98, 0.4);
}

/* Success Message Styling */
.success-message {
    background: linear-gradient(135deg, var(--bg-light-elegant), var(--bg-cream));
    border: 2px solid var(--accent-color);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    display: none;
}

.success-message.active {
    display: block;
    animation: fadeInUp 0.6s ease;
}

.success-message h3 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.success-message p {
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.6;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
