/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    /* Core colors */
    --black: #000000;            /* Pure black */
    --white: #FFFFFF;            /* Pure white */
    
    /* Golden colors - various shades */
    --golden: #D4AF37;           /* Classic gold */
    --golden-light: #FFD700;     /* Bright gold */
    --golden-dark: #B8860B;      /* Dark gold */
    --golden-soft: #F5E8C7;      /* Soft gold for backgrounds */
    --golden-darker: #8B6914;    /* Even darker gold for contrast */
    
    /* Color aliases for consistency */
    --primary-color: var(--black);
    --secondary-color: var(--golden);
    --accent-color: var(--golden-light);
    --text-dark: var(--black);
    --text-light: #666666;       /* Neutral gray for secondary text */
    --light-bg: var(--white);
    --card-bg: var(--white);
}

body {
    background-color: var(--light-bg);
    color: var(--text-dark);
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 6px auto;
    padding: 0 15px;
}

.mini_container {
    width: 90%;
    max-width: 1200px;
    margin: 4rem auto -3rem auto;
    padding: 0 15px;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, var(--black) 0%, var(--black) 100%);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

header img {
    width: 10vw;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

nav ul li a:hover {
    color: var(--golden);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--golden-light), var(--golden));
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--golden);
}

/* Hero Slider Styles */
.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: -10px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
    z-index: 2;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.3s;
}

.slide.active .slide-content {
    opacity: 1;
    transform: translateY(0);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(184, 134, 11, 0.5) 100%); */
    z-index: 1;
}

.slide h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--golden);
}

.slide p {
    font-size: 20px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    font-weight: 400;
}

.btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--golden), var(--golden-dark));
    color: var(--black);
    padding: 14px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
    letter-spacing: 0.5px;
}

.btn:hover {
    background: linear-gradient(135deg, var(--golden-light), var(--golden));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 10;
}

.slider-dots {
    display: flex;
    gap: 12px;
}

.slider-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.slider-dot.active {
    background-color: var(--golden);
    transform: scale(1.3);
    border-color: var(--white);
}

/* Section Styles */
section {
    padding: 70px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    color: var(--black);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    font-weight: 600;
    letter-spacing: 1px;
}

.section-title h2:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--golden), var(--golden-dark));
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-title p {
    color: var(--text-light);
    max-width: 700px;
    margin: 25px auto 0;
    font-size: 18px;
    font-weight: 400;
}

#s2{
    padding-top: 2rem;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--golden), var(--golden-light), var(--golden-soft));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.2);
    border-color: var(--golden);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--golden), var(--golden-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--black);
    font-size: 32px;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--black);
    font-weight: 600;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* About Preview Section */
.about-preview {
    background: #f9f9f9;
    padding: 80px 0;
}

.about-preview-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-preview-text {
    flex: 1;
}

.about-preview-text h2 {
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.about-preview-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #d4af37, #b8941f);
}

.about-preview-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.btn-link {
    display: inline-flex;
    align-items: center;
    color: #d4af37;
    font-weight: 600;
    text-decoration: none;
    margin-top: 20px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-link:hover {
    color: #b8941f;
}

.btn-link:hover i {
    transform: translateX(5px);
}

.about-preview-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-preview-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-preview-image:hover img {
    transform: scale(1.05);
}

/* Meet the Experts Section */
.meet-experts {
    padding: 80px 0;
    background: white;
}

.experts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.expert-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expert-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.expert-image {
    height: 350px;
    overflow: hidden;
}

.expert-image img {
    width: 100%;
    height: 100%;
    display:flex;
    top: 0;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.expert-card:hover .expert-image img {
    transform: scale(1.1);
}

.expert-content {
    padding: 30px;
}

.expert-content h3 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.expert-title {
    color: #d4af37;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.expert-bio {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1rem;
}

.expert-link {
    display: inline-flex;
    align-items: center;
    color: #333;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.expert-link i {
    margin-left: 8px;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.expert-link:hover {
    color: #d4af37;
}

.expert-link:hover i {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-preview-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .about-preview-text, 
    .about-preview-image {
        width: 100%;
    }
    
    .about-preview-text h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .experts-grid {
        grid-template-columns: 1fr;
    }
    
    .expert-image {
        height: 200px;
    }
    
    .about-preview,
    .meet-experts {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .about-preview-text h2 {
        font-size: 1.8rem;
    }
    
    .expert-content {
        padding: 20px;
    }
    
    .expert-content h3 {
        font-size: 1.5rem;
    }
}

/* Services Preview */
#services, #about, #gallery, #contact {
    padding-top: 9rem;
}

.services-preview {
    background: linear-gradient(135deg, var(--white) 0%, var(--golden-soft) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-card {
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.2);
    border-color: var(--golden);
}

.service-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.service-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(transparent, rgba(212, 175, 55, 0.2));
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-content {
    padding: 30px 25px;
    position: relative;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--black);
    font-weight: 600;
}

.service-content p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.7;
}

.service-price {
    color: var(--golden);
    font-weight: 600;
    font-size: 18px;
}


/* Reviews Preview Section */
.reviews-preview {
    padding: 80px 0;
    background: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.reviews-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(to right, #d4af37, #b8941f);
}

.reviews-mini-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.review-mini-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.review-mini-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 80px;
    color: rgba(212, 175, 55, 0.05);
    font-family: Georgia, serif;
    line-height: 1;
    z-index: 0;
}

.review-mini-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(212, 175, 55, 0.2);
}

.review-mini-rating {
    color: #d4af37;
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.review-mini-text {
    color: #555;
    line-height: 1.7;
    font-size: 1.05rem;
    font-style: italic;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    font-weight: 400;
}

.review-mini-author {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.author-name {
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.author-service {
    color: #b8941f;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(212, 175, 55, 0.1);
    padding: 4px 12px;
    border-radius: 15px;
    display: inline-block;
    width: fit-content;
}

/* Reviews Stats */
.reviews-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 50px 0;
    text-align: center;
}

.stats-item {
    padding: 20px;
}

.stats-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 10px;
    line-height: 1;
    font-family: 'Poppins', sans-serif;
}

.stats-label {
    color: #666;
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Reviews CTA */
.reviews-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.reviews-cta .btn-outline {
    background: transparent;
    border: 2px solid #d4af37;
    color: #d4af37;
    padding: 14px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.reviews-cta .btn-outline:hover {
    background: #d4af37;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.reviews-cta .btn {
    padding: 14px 30px;
    font-weight: 600;
}

.reviews-cta .btn i {
    margin-right: 8px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .reviews-mini-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
    
    .reviews-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .reviews-preview {
        padding: 60px 0;
    }
    
    .reviews-mini-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .review-mini-card {
        padding: 25px 20px;
    }
    
    .reviews-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stats-number {
        font-size: 3rem;
    }
    
    .reviews-cta {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .reviews-cta .btn,
    .reviews-cta .btn-outline {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .review-mini-card {
        padding: 20px 15px;
    }
    
    .review-mini-text {
        font-size: 1rem;
    }
    
    .stats-number {
        font-size: 2.5rem;
    }
    
    .stats-label {
        font-size: 1rem;
    }
}


/* Services Page Styles */
.price-note {
    background: var(--golden-soft);
    padding: 15px;
    border-radius: 10px;
    margin-top: 20px;
    border-left: 4px solid var(--golden);
    color: var(--black);
}

.price-note i {
    color: var(--golden);
    margin-right: 10px;
}

/* Service Filter */
.service-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 40px 0;
    padding: 20px;
    background: var(--golden-soft);
    border-radius: 15px;
}

.filter-btn {
    padding: 12px 25px;
    background: var(--white);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 30px;
    color: var(--text-light);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.filter-btn:hover {
    border-color: var(--golden);
    color: var(--golden);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--golden), var(--golden-dark));
    border-color: var(--golden);
    color: var(--black);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* Services Full Grid */
.services-full-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.services-full-grid .service-card {
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.services-full-grid .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2);
    border-color: var(--golden);
}

.services-full-grid .service-img {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.services-full-grid .service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.services-full-grid .service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-category-label {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, var(--golden), var(--golden-dark));
    color: var(--black);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.services-full-grid .service-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.services-full-grid .service-content h3 {
    color: var(--black);
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
}

.services-full-grid .service-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 15px;
    flex-grow: 1;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.service-features span {
    background: var(--golden-soft);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 13px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 5px;
}

.service-features i {
    color: var(--golden);
    font-size: 12px;
}

.service-book-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(to right, #d4af37, #b8941f);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-book-btn:hover {
    background: linear-gradient(to right, #b8941f, #a3821b);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.service-book-btn:active {
    transform: translateY(0);
}

.service-book-btn i {
    font-size: 1rem;
}


/* Consultation CTA */
.consultation-cta {
    background: linear-gradient(135deg, var(--golden) 0%, var(--golden-dark) 100%);
    border-radius: 15px;
    padding: 50px;
    margin-top: 60px;
    text-align: center;
    color: var(--black);
}

.consultation-cta h3 {
    color: var(--black);
    font-size: 28px;
    margin-bottom: 15px;
}

.consultation-cta p {
    color: rgba(0, 0, 0, 0.8);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 25px;
    line-height: 1.6;
}

.consultation-cta .btn {
    background: var(--black);
    color: var(--golden);
    padding: 15px 40px;
    font-weight: 600;
    border-radius: 30px;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.consultation-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    background: var(--white);
    color: var(--black);
}

/* Filter Animation */
.services-full-grid .service-card {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Filtering Effect */
.service-card.hidden {
    display: none;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--golden) 0%, var(--golden-dark) 100%);
    color: var(--black);
    text-align: center;
    margin-bottom: -7rem;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: cover;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--black);
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: rgba(0, 0, 0, 0.8);
}

.cta-section .btn {
    background: var(--black);
    color: var(--golden);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.cta-section .btn:hover {
    background: var(--white);
    color: var(--black);
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--black);
    font-weight: 600;
    position: relative;
}

.about-text h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--golden), var(--golden-dark));
    border-radius: 2px;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.8;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.2);
    transition: transform 0.3s ease;
    border: 3px solid var(--golden-soft);
}

.about-image:hover {
    transform: scale(1.02);
    border-color: var(--golden);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.team-grid1 {
    padding-top: 2rem;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.team-member {
    text-align: center;
    background-color: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.2);
    border-color: var(--golden);
}

.member-img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 25px;
    border: 4px solid var(--golden-soft);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.team-member:hover .member-img {
    border-color: var(--golden);
    transform: scale(1.05);
}

.member-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--black);
    font-weight: 600;
}

.team-member p {
    color: var(--golden);
    margin-bottom: 20px;
    font-weight: 500;
    line-height: 1.7;
}


/* Gallery Filter */
.gallery-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 40px 0 60px;
}

.gallery-filter .filter-btn {
    padding: 10px 25px;
    background: #f8f8f8;
    border: none;
    border-radius: 25px;
    color: #666;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.gallery-filter .filter-btn:hover {
    background: #e9e9e9;
    transform: translateY(-2px);
}

.gallery-filter .filter-btn.active {
    background: linear-gradient(to right, #d4af37, #b8941f);
    color: white;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 80px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 300px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-category-label {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(212, 175, 55, 0.9);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gallery-overlay i {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 15px;
    align-self: flex-end;
    background: rgba(0, 0, 0, 0.5);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.gallery-overlay i:hover {
    background: rgba(212, 175, 55, 0.9);
}

.gallery-caption {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 10px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Gallery Stats */
.gallery-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.gallery-stats .stats-card {
    background: white;
    border-radius: 15px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.gallery-stats .stats-card:hover {
    transform: translateY(-10px);
}

.gallery-stats .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 15px;
    line-height: 1;
}

.gallery-stats .stat-icon {
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 15px;
}

.gallery-stats .stats-card p {
    color: #666;
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    background: transparent;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 1001;
}

.lightbox-close:hover {
    color: #d4af37;
}

.lightbox-image-container {
    position: relative;
}

#lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    display: block;
    border-radius: 10px;
}

.lightbox-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 30px 20px 20px;
    border-radius: 0 0 10px 10px;
}

.lightbox-caption h4 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.lightbox-caption p {
    font-size: 1rem;
    opacity: 0.8;
    margin: 0;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 20px;
}

.lightbox-prev,
.lightbox-next {
    background: rgba(212, 175, 55, 0.8);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: background 0.3s ease, transform 0.3s ease;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(212, 175, 55, 1);
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
    
    .gallery-item {
        height: 280px;
    }
}

@media (max-width: 768px) {
    .gallery-filter {
        gap: 8px;
    }
    
    .gallery-filter .filter-btn {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .gallery-item {
        height: 250px;
    }
    
    .gallery-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .lightbox-nav {
        padding: 0 10px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .gallery-filter {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
        margin: 30px -15px 40px;
        padding: 0 15px;
    }
    
    .gallery-filter .filter-btn {
        white-space: nowrap;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item {
        height: 300px;
    }
    
    .gallery-stats {
        grid-template-columns: 1fr;
    }
    
    .gallery-stats .stat-number {
        font-size: 2.5rem;
    }
}


/* Testimonials Page Styles */
#testimonials {
    padding: 120px 0;
    background: #fafafa;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle h3 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-subtitle h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #d4af37, #b8941f);
}

.section-subtitle p {
    color: #666;
    font-size: 1.1rem;
    margin-top: 20px;
    font-weight: 300;
}

.section-subtitle .btn-outline {
    margin-top: 20px;
    padding: 12px 30px;
    border: 2px solid #d4af37;
    color: #d4af37;
    background: transparent;
    font-weight: 600;
    transition: all 0.3s ease;
}

.section-subtitle .btn-outline:hover {
    background: #d4af37;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

/* Featured Testimonials */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.featured-testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.featured-testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 120px;
    color: rgba(212, 175, 55, 0.05);
    font-family: Georgia, serif;
    line-height: 1;
    z-index: 0;
}

.featured-testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(212, 175, 55, 0.2);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

/* Avatar Initials */
.client-avatar .avatar-initials {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4af37, #b8941f);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-right: 20px;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.client-info h4 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.client-rating {
    color: #d4af37;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.service-used {
    display: inline-block;
    background: rgba(212, 175, 55, 0.1);
    color: #b8941f;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testimonial-content {
    position: relative;
    z-index: 1;
}

.testimonial-content p {
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
    font-style: italic;
    margin-bottom: 20px;
    font-weight: 400;
}

.testimonial-date {
    color: #888;
    font-size: 0.9rem;
    text-align: right;
    position: relative;
    z-index: 1;
    font-weight: 500;
}

/* Google Reviews */
.google-reviews-section {
    margin-bottom: 80px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.review-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid #eee;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #d4af37, #b8941f);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: rgba(212, 175, 55, 0.2);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.reviewer-info h4 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.review-rating {
    color: #d4af37;
    margin-bottom: 5px;
    font-size: 0.85rem;
}

.review-source {
    background: rgba(66, 133, 244, 0.1);
    color: #4285f4;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
}

.review-source i {
    font-size: 0.9rem;
}

.review-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 1rem;
    font-weight: 400;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    color: #888;
    font-size: 0.85rem;
    border-top: 1px solid #eee;
    padding-top: 15px;
    margin-top: 15px;
    font-weight: 500;
}

.review-service {
    color: #666;
    font-weight: 500;
    text-transform: capitalize;
}

/* Review Stats */
.review-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.stats-card {
    background: white;
    border-radius: 15px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.stats-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, #d4af37, #b8941f);
}

.stats-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 10px;
    line-height: 1;
    font-family: 'Poppins', sans-serif;
}

.stat-rating {
    color: #d4af37;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.stat-icon {
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 15px;
    opacity: 0.9;
}

.stats-card p {
    color: #666;
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Review CTA */
.review-cta {
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    color: white;
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.review-cta::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" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: cover;
}

.review-cta h3 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.review-cta p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
    position: relative;
    z-index: 1;
    font-weight: 300;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 14px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: white;
    color: #d4af37;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

/* Animation Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* Responsive Design */
@media (max-width: 1200px) {
    .featured-grid,
    .reviews-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }
}

@media (max-width: 992px) {
    #testimonials {
        padding: 60px 0;
    }
    
    .featured-grid,
    .reviews-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
    
    .review-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn, .btn-outline {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .section-subtitle h3 {
        font-size: 1.8rem;
    }
    
    .featured-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .featured-testimonial-card,
    .review-card {
        padding: 25px 20px;
    }
    
    .review-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stats-card {
        padding: 30px 15px;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .review-cta {
        padding: 40px 20px;
        margin-top: 40px;
    }
    
    .review-cta h3 {
        font-size: 1.8rem;
    }
    
    .client-avatar .avatar-initials {
        width: 60px;
        height: 60px;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .section-subtitle h3 {
        font-size: 1.6rem;
    }
    
    .featured-testimonial-card,
    .review-card {
        padding: 20px 15px;
    }
    
    .testimonial-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .client-avatar .avatar-initials {
        margin-right: 0;
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }
    
    .review-footer {
        flex-direction: column;
        gap: 5px;
        align-items: flex-start;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-icon {
        font-size: 2rem;
    }
}

/* Hover Effects */
.featured-testimonial-card:hover .avatar-initials {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.review-card:hover::before {
    width: 8px;
    transition: width 0.3s ease;
}

.stats-card:hover .stat-number {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Smooth transitions for all interactive elements */
.featured-testimonial-card,
.review-card,
.stats-card,
.btn,
.btn-outline,
.avatar-initials,
.review-source {
    transition: all 0.3s ease;
}


/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
    background: var(--white);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
    border-color: var(--golden);
}

.contact-icon {
    background: linear-gradient(135deg, var(--golden), var(--golden-light));
    color: var(--black);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.3);
}

.contact-details h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--black);
    font-weight: 600;
}

.contact-details p {
    color: var(--text-light);
    line-height: 1.7;
}

.contact-form {
    background-color: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--black);
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1.5px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: var(--white);
    color: var(--black);
}

.form-control:focus {
    border-color: var(--golden);
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

iframe {
    width: 100%;
    margin: 3rem 0 -5rem 0;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
    border: 2px solid var(--golden-soft);
}

/* Footer Styles */
footer {
    background: #1a1a1a;
    color: #fff;
    padding: 70px 0 30px;
    border-top: 3px solid #d4af37;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

/* Footer Brand Section */
.footer-brand {
    margin-bottom: 30px;
}

.footer-logo {
    margin-bottom: 15px;
}

.footer-logo img {
    max-width: 200px;
    height: auto;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    color: #d4af37;
    font-size: 1.2rem;
    font-style: italic;
    margin: 0;
    font-weight: 300;
    line-height: 1.4;
    border-left: 3px solid #d4af37;
    padding-left: 15px;
}

/* Contact Info - No White Background */
.footer-contact-info {
    margin-bottom: 30px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 0;
    background: transparent;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-item .contact-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.contact-info-item .contact-details h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-info-item .contact-details p {
    color: #aaa;
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.contact-info-item .contact-details a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-item .contact-details a:hover {
    color: #d4af37;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icons a:hover {
    background: #d4af37;
    transform: translateY(-3px);
    border-color: #d4af37;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Footer Columns */
.footer-column h3 {
    color: #d4af37;
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    font-weight: 600;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #d4af37;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.footer-links a::before {
    content: '›';
    color: #d4af37;
    margin-right: 10px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: #d4af37;
    transform: translateX(5px);
}

.footer-links a:hover::before {
    transform: translateX(3px);
}

/* Working Hours */
.working-hours {
    margin-top: 15px;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hour-item:last-child {
    border-bottom: none;
}

.hour-item span:first-child {
    color: #aaa;
    font-size: 0.95rem;
}

.hour-item span:last-child {
    color: #fff;
    font-weight: 500;
    font-size: 0.95rem;
}

/* Appointment Section */
.footer-appointment {
    margin-top: 40px;
    padding: 25px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-appointment p {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 300;
}

.btn-appointment {
    display: inline-flex;
    align-items: center;
    background: #d4af37;
    color: #1a1a1a;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
}

.btn-appointment i {
    margin-right: 10px;
}

.btn-appointment:hover {
    background: #fff;
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.copyright {
    margin-bottom: 20px;
}

.copyright p {
    color: #aaa;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.footer-bottom-links {
    display: flex;
    justify-content: center;
    /* flex-wrap: wrap; */
    gap: 1px;
    margin-top: 1px;
}

.separator {
    color: #666;
}

/* Footer Credits */
.footer-credits {
    color: #666;
    font-size: 0.9rem;
    margin-top: 20px;
}

.footer-credits p:first-child {
    color: #aaa;
    margin-bottom: 15px;
    font-style: italic;
}

.payment-methods {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.payment-methods span {
    color: #aaa;
    font-size: 0.9rem;
}

.payment-methods i {
    font-size: 1.3rem;
    color: #aaa;
    transition: color 0.3s ease;
}

.payment-methods i:hover {
    color: #d4af37;
}

/* Responsive Design */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }
    
    .footer-column:first-child {
        grid-column: 1 / -1;
        text-align: center;
    }
    
    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-tagline {
        text-align: center;
        border-left: none;
        padding-left: 0;
        border-top: 2px solid #d4af37;
        padding-top: 15px;
        max-width: 400px;
        margin: 15px auto 0;
    }
    
    .contact-info-item {
        justify-content: center;
        text-align: center;
    }
    
    .contact-info-item .contact-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .contact-info-item .contact-details {
        flex: 1;
    }
    
    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    footer {
        padding: 50px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-column h3 {
        font-size: 1.2rem;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .separator {
        display: none;
    }
    
    .payment-methods {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .footer-logo img {
        max-width: 160px;
    }
    
    .footer-tagline {
        font-size: 1.1rem;
    }
    
    .hour-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .hour-item span:last-child {
        color: #d4af37;
    }
    
    .footer-appointment {
        padding: 20px;
        text-align: center;
    }
}

/* Page Styles */
.page {
    display: none;
    padding-top: 100px;
    min-height: calc(100vh - 100px);
}

.page.active {
    display: block;
}

/* Base state: Hidden and slightly lower */
.reveal {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    filter: blur(5px);
}

/* Active state: Fully visible and in position */
.reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0px);
}

/* Optional: Staggered animation for list items */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* Responsive Styles */
@media (max-width: 992px) {
    .services-full-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .header-container button {
        margin-left: 50%;
    }
    
    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--black);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
        border-radius: 0 0 10% 10%;
    }

    nav ul.show {
        display: flex;
    }

    nav ul li {
        margin: 12px 0;
    }

    nav ul li a {
        color: var(--golden);
        font-size: 18px;
    }

    nav ul li a:hover {
        color: var(--white);
    }

    header img {
        width: 28vw;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-slider {
        margin-top: -20px;
    }

    .slide h1 {
        font-size: 36px;
    }

    .slide p {
        font-size: 16px;
    }

    .about-content, .contact-container {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }

    .service-filter {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .services-full-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .services-full-grid .service-img {
        height: 200px;
    }
    
    .consultation-cta {
        padding: 30px 20px;
    }
    
    .consultation-cta h3 {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .section-title h2 {
        font-size: 28px;
    }

    .slide h1 {
        font-size: 28px;
    }

    .slide p {
        font-size: 14px;
    }

    .contact-form {
        padding: 25px;
    }

    .services-full-grid .service-content {
        padding: 20px;
    }
    
    .services-full-grid .service-content h3 {
        font-size: 20px;
    }
    
    .service-features {
        flex-direction: column;
    }
}