* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #d4a373;
    --primary-dark: #c19363;
    --primary-light: #e9d8a6;
    --secondary: #fefae0;
    --dark: #283618;
    --text-dark: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #d4a373 0%, #e9d8a6 100%);
    --shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.3;
}

/* Utility Classes */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header.light {
    color: var(--white);
}

.subtitle {
    color: var(--primary);
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.8rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.divider {
    width: 60px;
    height: 3px;
    background-color: var(--primary);
    margin: 0 auto;
}

.divider.light {
    background-color: var(--white);
}

.fade-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Header */
.header {
    background-color: var(--white);
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo i {
    font-size: 1.5rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.login-btn {
    background-color: var(--primary);
    color: var(--white) !important;
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.login-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.login-btn::after {
    display: none !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 30px;
    height: 20px;
    justify-content: space-between;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--dark);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/images/salon-interior1.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    color: var(--white);
    text-align: center;
    width: 100%;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.cta-button {
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none; 
}


.cta-button.primary {
    background-color: var(--primary);
    color: var(--white);
}

.cta-button.primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cta-button.secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cta-button.secondary:hover {
    background-color: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
    background: var(--gradient);
    color: var(--white);
    padding: 2rem;
    text-align: center;
}

.service-icon i {
    font-size: 3rem;
}

.service-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    margin-top: auto;
}

.service-link:hover {
    color: var(--primary-dark);
    gap: 0.8rem;
}



/* Why Choose Us Section */
.why-choose-us {
    padding: 6rem 2rem;
    background-color: var(--dark);
    color: var(--white);
    position: relative;
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.feature {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.feature-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon i {
    font-size: 2.5rem;
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature p {
    color: rgba(255, 255, 255, 0.8);
}
/* Service Photos Gallery Styling */
.gallery {
    padding: 80px 0;
    background: whitesmoke;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.subtitle {
    color: #d4a574;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.title {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
}

.divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #d4a574, #c19653);
    margin: 0 auto;
}
/* Gallery Grid Layout */
.gallery-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Individual Gallery Items */
.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: white;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Caption Styling */
.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.4), transparent);
    color: white;
    padding: 25px 20px 20px;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

/* Alternative: Always visible caption */
.gallery-caption.always-visible {
    position: static;
    background: white;
    color: #2c3e50;
    transform: none;
    padding: 20px;
    border-top: 3px solid #d4a574;
}

/* No Services Message */
.no-services {
    text-align: center;
    padding: 60px 20px;
    color: #666;
    font-size: 18px;
    grid-column: 1 / -1;
}

/* Scroll Indicators (if you want to keep them) */
.scroll-indicators {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.scroll-left, .scroll-right {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #d4a574;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-left:hover, .scroll-right:hover {
    background: #c19653;
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .gallery-wrapper {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 15px;
        padding: 0 15px;
    }
    
    .gallery-item img {
        height: 280px;
    }
    
    .title {
        font-size: 28px;
    }
    
    .gallery {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .gallery-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gallery-item img {
        height: 260px;
    }
}
/* CTA Section */
.cta-section {
    padding: 5rem 2rem;
    background-image: linear-gradient(rgba(40, 54, 24, 0.85), rgba(40, 54, 24, 0.85)), url('/images/salon-interior2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    color: var(--white);
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}


.about-us {
  background: #fdfaf7;
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
}

.about-us .section-header {
  text-align: center;
  margin-bottom: 40px;
}

.about-us .section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 10px;
}
.gallery-wrapper
.about-us .section-header .subtitle {
  color: #b08968;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 10px;
}

.about-us .divider {
  width: 60px;
  height: 3px;
  background-color: #b08968;
  margin: 0 auto;
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
  color: #444;
  font-size: 1.1rem;
}

.about-content p {
  margin-bottom: 20px;
}

.about-content p:last-child {
  font-weight: bold;
  text-align: right;
  color: #b08968;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
}


.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.subtitle {
  color: #888;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.title {
  font-size: 2rem;
  margin: 0.5rem 0;
  font-weight: 700;
}

.divider {
  width: 50px;
  height: 3px;
  background: #ff69b4;
  margin: 1rem auto 0;
  border-radius: 2px;
}

.gallery-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: #eee;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  background: rgba(200, 150, 100, 0.8); /* Match your beige overlay */
  color: #fff;
  font-weight: bold;
  text-align: center;
  font-size: 1rem;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}
/* Testimonials Section */
.testimonials {
    padding: 6rem 2rem;
    background-color: var(--secondary);
    text-align: center;
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto 2rem;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

/* Container for horizontal sliding */
.testimonials-container {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 100%;
    will-change: transform;
}

.testimonial-card {
    background-color: var(--white);
    padding: 3rem 2rem 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin: 1.5rem 0.5rem;
    position: relative;
    min-width: calc(100% - 1rem);
    flex-shrink: 0;
    box-sizing: border-box;
    opacity: 1;
    transform: translateX(0);
    transition: all 0.3s ease;
}

/* Add slide-in animation classes */
.testimonial-card.slide-in-right {
    animation: slideInRight 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-card.slide-in-left {
    animation: slideInLeft 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Keyframe animations */
@keyframes slideInRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Smooth fade transition for better UX */
.testimonial-card.fade-out {
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.3s ease;
}

.quote-icon {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 1.5rem;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.client-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-direction: column;
    text-align: center;
}

.client-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #e0e0e0;
    background-image: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.client-info h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.testimonial-date {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: block;
}

.rating {
    color: #ffc107;
    letter-spacing: 2px;
    font-size: 1.1rem;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.slider-arrow {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--white);
    border: 2px solid var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    color: var(--primary);
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
}

.slider-arrow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.slider-arrow:hover::before {
    left: 100%;
}

.slider-arrow:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.slider-arrow:active {
    transform: translateY(0) scale(0.98);
}

.slider-arrow:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.slider-arrow:disabled:hover {
    background-color: var(--white);
    color: var(--primary);
    transform: none;
}

.slider-dots {
    display: flex;
    gap: 0.7rem;
    align-items: center;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #e0e0e0;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: var(--primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.dot:hover {
    background-color: rgba(212, 175, 55, 0.4);
    transform: scale(1.2);
}

.dot.active {
    background-color: var(--primary);
    transform: scale(1.3);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.3);
}

.dot.active::after {
    width: 6px;
    height: 6px;
    background-color: var(--white);
}

/* Add loading state for smooth transitions */
.testimonials-container.transitioning {
    pointer-events: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .testimonials-slider {
        max-width: 95%;
    }
    
    .testimonial-card {
        padding: 2.5rem 1.5rem 2rem;
        margin: 1rem 0.25rem;
        min-width: calc(100% - 0.5rem);
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .slider-controls {
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .testimonials {
        padding: 4rem 1rem;
    }
    
    .testimonials-slider {
        padding-top: 25px; /* Add space for the quote icon */
    }
    
    .testimonial-card {
        padding: 2rem 1rem 1.5rem;
        margin: 0.5rem 0.1rem;
        min-width: calc(100% - 0.2rem);
    }
    
    .quote-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        top: -22px; /* Adjust position */
    }
    
    .slider-arrow {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    
    .slider-controls {
        gap: 0.8rem;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
        line-height: 1.5;
    }
}
/*contact section*/
.contact {
    padding: 8rem 2rem;
    background: whitesmoke;
    position: relative;
    overflow: hidden;
 }

        .contact::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 80%, rgba(212, 163, 115, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(233, 196, 106, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
            position: relative;
            z-index: 1;
        }

        .subtitle {
            color: var(--primary);
            font-size: 1.1rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 1rem;
            display: inline-block;
            position: relative;
        }

        .subtitle::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: var(--gradient);
            border-radius: 2px;
        }

        .section-header h2 {
            font-size: 3rem;
            color: var(--text-dark);
            margin-bottom: 1rem;
            font-weight: 700;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .divider {
            width: 100px;
            height: 4px;
            background: var(--gradient);
            margin: 0 auto;
            border-radius: 2px;
        }

        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            position: relative;
            z-index: 1;
        }

        .contact-info {
            padding: 3rem;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .contact-info:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-5px);
        }

        .info-item {
            margin-bottom: 2.5rem;
            padding: 1.5rem;
            border-radius: 15px;
            background: linear-gradient(135deg, rgba(212, 163, 115, 0.05) 0%, rgba(233, 196, 106, 0.05) 100%);
            transition: var(--transition);
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .info-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(212, 163, 115, 0.1), transparent);
            transition: var(--transition);
        }

        .info-item:hover::before {
            left: 100%;
        }

        .info-item:hover {
            transform: translateX(10px);
            box-shadow: 0 5px 20px rgba(212, 163, 115, 0.2);
        }

        .info-item:last-child {
            margin-bottom: 0;
        }

        .info-icon {
            width: 60px;
            height: 60px;
            background: var(--gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            position: relative;
            overflow: hidden;
            transition: var(--transition);
        }

        .info-item:hover .info-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .info-icon::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            transition: var(--transition);
            transform: translate(-50%, -50%);
        }

        .info-item:hover .info-icon::before {
            width: 100%;
            height: 100%;
        }

        .info-icon i {
            color: white;
            font-size: 1.5rem;
            z-index: 1;
            position: relative;
        }

        .info-content h3 {
            font-size: 1.4rem;
            color: var(--text-dark);
            margin-bottom: 0.8rem;
            font-weight: 600;
            position: relative;
        }

        .info-content p {
            color: var(--text-light);
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 0.4rem;
            transition: var(--transition);
        }

        .info-item:hover .info-content p {
            color: var(--text-dark);
        }

        .contact-additional {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            padding: 3rem;
            border-radius: 20px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .contact-additional:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-5px);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .contact {
                padding: 4rem 1rem;
            }

            .section-header h2 {
                font-size: 2.5rem;
            }

            .contact-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .contact-info,
            .contact-additional {
                padding: 2rem;
            }

            .info-item {
                padding: 1rem;
            }

            .info-icon {
                width: 50px;
                height: 50px;
            }

            .info-icon i {
                font-size: 1.2rem;
            }
        }

        /* Animation keyframes */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .contact-info,
        .contact-additional {
            animation: fadeInUp 0.8s ease-out;
        }

        .contact-additional {
            animation-delay: 0.2s;
        }
/* Footer */
.footer {
    background-color: var(--dark);
    color: var(--white);
    overflow: hidden;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem 3rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.newsletter-form {
    display: flex;
    margin-top: 1rem;
}

.newsletter-form input {
    flex-grow: 1;
    padding: 0.8rem 1rem;
    border: none;
    border-radius: 5px 0 0 5px;
    font-family: 'Poppins', sans-serif;
}

.newsletter-form button {
    background-color: var(--primary);
    color: var(--white);
    border: none;
    padding: 0 1.2rem;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background-color: var(--primary-dark);
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    text-align: center;
    padding: 1.5rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 1rem;
    }
    
    .hamburger {
        display: flex;
        z-index: 1001;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--white);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .info-item {
        min-width: auto;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .client-info {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .service-icon {
        padding: 1.5rem;
    }
    
    .service-content {
        padding: 1.5rem;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
    }
    
    .feature-icon i {
        font-size: 2rem;
    }
    
    .gallery-item {
        height: 200px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo, .social-icons {
        justify-content: center;
    }
    
    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links a {
        justify-content: center;
    }
  .settings-dropdown {
    position: relative;
    display: inline-block;
    margin-left: 15px;
}

.settings-icon {
    font-size: 20px;
    cursor: pointer;
    color: #333;
}

.dropdown-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 30px;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 6px;
    min-width: 150px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.dropdown-menu a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
    font-family: 'Poppins', sans-serif;
}

.dropdown-menu a:hover {
    background-color: #f5f5f5;
}
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.gallery-wrapper {
  display: flex;
  overflow-x: auto;
  gap: 1.5rem;
  padding: 1.5rem 0.5rem;
  scrollbar-width: thin;
  scroll-behavior: smooth;
}

.gallery-wrapper::-webkit-scrollbar {
  height: 6px;
}

.gallery-wrapper::-webkit-scrollbar-thumb {
  background-color: #be9c79;
  border-radius: 10px;
}

.gallery-item {
  flex: 0 0 auto;
  width: 220px;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.gallery-caption {
  text-align: center;
  font-weight: 500;
  font-size: 1rem;
  color: #333;
  padding: 0.8rem 0.5rem;
  font-family: 'Playfair Display', serif;
}

.no-services {
  width: 100%;
  text-align: center;
  padding: 2rem;
  color: #666;
  font-style: italic;
}

.scroll-indicators {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.scroll-left, .scroll-right {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
}

.scroll-left:hover, .scroll-right:hover {
  background-color: #be9c79;
  color: #fff;
}

@media (max-width: 768px) {
  .gallery-item {
    width: 180px;
  }
  
  .gallery-item img {
    height: 140px;
  }
}


.testimonial-controls {
    text-align: center;
    margin-top: 30px;
}

.refresh-testimonial {
    background: linear-gradient(135deg, #d4af37, #f4e4bc);
    color: #333;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.refresh-testimonial:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, #f4e4bc, #d4af37);
}

.refresh-testimonial i {
    margin-right: 8px;
}


.slider-controls {
    display: none;
}
/* Footer Map Styles - Enhanced */
.footer-map-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.location-address {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.8;
    margin: 0.5rem 0;
}

.location-address i {
    color: var(--primary);
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

.map-container {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin: 1rem 0;
    border: 2px solid rgba(212, 163, 115, 0.3);
    transition: var(--transition);
    position: relative;
}

.map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(212, 163, 115, 0.1), transparent);
    pointer-events: none;
    z-index: 1;
}

.map-container:hover {
    box-shadow: 0 6px 20px rgba(212, 163, 115, 0.4);
    transform: translateY(-2px);
    border-color: rgba(212, 163, 115, 0.5);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 200px;
    filter: grayscale(20%) contrast(1.1);
    transition: var(--transition);
}

.map-container:hover iframe {
    filter: grayscale(0%) contrast(1.2);
}

/* Enhanced Directions Button */
.directions-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.9rem 1.8rem;
    background: linear-gradient(135deg, #d4a373 0%, #e9d8a6 100%);
    color: #ffffff !important;
    text-decoration: none !important;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 163, 115, 0.3);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.directions-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #c19363 0%, #d4a373 100%);
    transition: left 0.3s ease;
    z-index: -1;
}

.directions-btn:hover::before {
    left: 0;
}

.directions-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(212, 163, 115, 0.5);
    color: #ffffff !important;
}

.directions-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 15px rgba(212, 163, 115, 0.4);
}

.directions-btn i {
    font-size: 1.2rem;
    transition: var(--transition);
}

.directions-btn:hover i {
    transform: translateX(3px);
}

/* Fix for link override in footer */
.footer-column a.directions-btn:hover {
    padding-left: 1.8rem !important;
    color: #ffffff !important;
}

/* Responsive adjustments for footer map */
@media (max-width: 992px) {
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-map-column {
        grid-column: span 2;
    }
    
    .map-container iframe {
        height: 220px;
    }
}

@media (max-width: 576px) {
    .footer-top {
        grid-template-columns: 1fr;
    }
    
    .footer-map-column {
        grid-column: span 1;
        text-align: center;
    }
    
    .location-address {
        text-align: center;
    }
    
    .map-container iframe {
        height: 250px;
    }
    
    .directions-btn {
        width: 100%;
        padding: 1rem 2rem;
    }
}