/* ============================= */
/* VASTRA BY ANANKHA - CSS STYLES */
/* ============================= */


.logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

/* ===== Variables & Root ===== */
:root {
    --primary-color: #D4AF37;
    --secondary-color: #2C2C2C;
    --accent-color: #F5F1ED;
    --white: #FFFFFF;
    --dark-text: #333333;
    --light-text: #666666;
    --border-color: #E5E0D8;
    --warm-brown: #A8826D;
    --success-color: #10B981;
    --error-color: #EF4444;

    --font-display: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;

    --transition: all 0.3s ease;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.15);
}

/* ===== Global Styles ===== */
.hero-section {
    background: #f8f6f3;
    padding: 80px 0;
}

.hero-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1;
    min-width: 350px;
}

.hero-content h1 {
    font-size: 5rem;
    line-height: 1.05;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #222;
}

.hero-content h1 span {
    color: #d4af37;
}

.hero-content p {
    font-size: 1.4rem;
    color: #666;
    max-width: 500px;
    margin: 30px 0;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-card {
    flex: 0 0 380px;
    background: linear-gradient(
        135deg,
        #d4af37,
        #c7a177
    );
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 40px rgba(0,0,0,.12);
    color: #fff;
}

.hero-card i {
    font-size: 70px;
    color: #fff;
    margin-bottom: 30px;
}

.hero-card h3 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 20px;
}

.hero-card p {
    color: rgba(255,255,255,.95);
    font-size: 1.1rem;
    line-height: 1.8;
}

.btn {
    padding: 16px 35px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary {
    background: #d4af37;
    color: #222;
    border: 2px solid #d4af37;
}

.btn-primary:hover {
    background: #c39b27;
}

.btn-outline-primary {
    border: 2px solid #d4af37;
    color: #d4af37;
    background: transparent;
}

.btn-outline-primary:hover {
    background: #d4af37;
    color: #222;
}

@media (max-width: 992px) {

    .hero-wrapper {
        flex-direction: column;
    }

    .hero-content h1 {
        font-size: 3.8rem;
    }

    .hero-card {
        width: 100%;
    }

}

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

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

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

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

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.fade-in-left {
    animation: fadeInLeft 0.8s ease forwards;
    opacity: 0;
}

.fade-in-right {
    animation: fadeInRight 0.8s ease forwards;
    opacity: 0;
}

/* ===== Hero Section ===== */
.hero-section {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--white) 100%);
    padding: 5rem 0;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-content {
    padding: 2rem 0;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

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

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--light-text);
    margin-bottom: 2rem;
    max-width: 500px;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--warm-brown) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

/* ===== Features Section ===== */
.features-section {
    padding: 4rem 0;
    background-color: var(--white);
}

.feature-card {
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.feature-card p {
    color: var(--light-text);
    font-size: 0.95rem;
}

/* ===== Welcome Section ===== */
.welcome-section {
    padding: 5rem 0;
    background-color: var(--accent-color);
}

.welcome-image {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.welcome-text {
    font-size: 1.05rem;
    color: var(--light-text);
    line-height: 1.8;
}

/* ===== Section Styles ===== */
.section-label {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.section-title {
    font-size: 2.8rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--light-text);
    text-align: center;
    margin-bottom: 2rem;
}

/* ===== Services Preview ===== */
.services-preview-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.service-preview {
    padding: 2rem 1.5rem;
    text-align: center;
    border-radius: 8px;
    background-color: var(--accent-color);
    transition: var(--transition);
    margin-bottom: 2rem;
}

.service-preview:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.service-preview:hover p {
    color: var(--secondary-color);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-preview:hover .service-icon {
    color: var(--white);
}

/* ===== Why Choose Section ===== */
.why-choose-section {
    padding: 5rem 0;
    background-color: var(--accent-color);
}

.why-item {
    padding: 2rem;
    margin-bottom: 2rem;
    background-color: var(--white);
    border-radius: 8px;
    transition: var(--transition);
}

.why-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.why-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.why-item h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* ===== Gallery Preview ===== */

.gallery-preview-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.gallery-item {
    margin-bottom: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.gallery-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 16 / 10;
    background-color: var(--accent-color);
}

.gallery-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-image-wrapper img {
    transform: scale(1.05);
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary-color);
    background: linear-gradient(
        135deg,
        var(--accent-color) 0%,
        #e8dfd4 100%
    );
}

/* ===== Mobile ===== */

@media (max-width: 768px) {

    .gallery-preview-section {
        padding: 3rem 0;
    }

    .gallery-item {
        margin-bottom: 1rem;
    }

    .gallery-image-wrapper {
        aspect-ratio: 16 / 10;
    }

    .gallery-image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

/* ===== Small Mobile ===== */

@media (max-width: 576px) {

    .gallery-preview-section {
        padding: 2.5rem 0;
    }

    .gallery-item {
        margin-bottom: 0.75rem;
    }

    .gallery-image-wrapper {
        aspect-ratio: 16 / 10;
    }
}

/* ===== Testimonials Section ===== */
.testimonials-section {
    padding: 5rem 0;
    background-color: var(--accent-color);
}

.testimonial-card {
    padding: 2rem;
    background-color: var(--white);
    border-radius: 8px;
    margin-bottom: 2rem;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-8px);
}

.stars {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.testimonial-text {
    color: var(--light-text);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author h5 {
    color: var(--secondary-color);
    margin-bottom: 0.25rem;
}

.testimonial-author small {
    color: var(--primary-color);
    font-weight: 600;
}

/* ===== CTA Section ===== */
.cta-section {
    padding: 4rem 0;
    background-color: var(--secondary-color);
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    color: #ccc;
    font-size: 1.2rem;
}

/* ===== Page Header ===== */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--warm-brown) 100%);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
    margin-top: 70px;
}

.page-title {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.page-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
}

/* ===== About Section ===== */
.about-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.about-image {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.mission-vision-section {
    padding: 5rem 0;
    background-color: var(--accent-color);
}

.mission-card {
    padding: 3rem 2rem;
    background-color: var(--white);
    border-radius: 8px;
    text-align: center;
    margin-bottom: 2rem;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.mission-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-8px);
}

.card-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

/* ===== Designer Section ===== */
.designer-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.designer-subtitle {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.expertise-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.expertise-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--light-text);
}

.expertise-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.designer-image {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== Timeline Section ===== */
.timeline-section {
    padding: 5rem 0;
    background-color: var(--accent-color);
}

.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--primary-color);
    transform: translateX(-50%);
}

.timeline-item {
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(even) .timeline-marker {
    margin-left: auto;
    margin-right: 0;
}

.timeline-marker {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 0.9rem;
    margin: 0 0 1.5rem auto;
    position: relative;
    z-index: 1;
}

.timeline-date {
    display: block;
}

.timeline-content {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    margin-left: 0;
    margin-right: 50%;
    box-shadow: var(--shadow-sm);
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 50%;
    margin-right: 0;
}

/* ===== Values Section ===== */
.values-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.value-card {
    text-align: center;
    padding: 2rem;
    margin-bottom: 2rem;
}

.value-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* ===== Services Detailed ===== */
.services-detailed-section {
    padding: 3rem 0;
}

.service-detail-card {
    padding: 4rem 0;
    border-bottom: 1px solid var(--border-color);
}

.service-detail-card:last-child {
    border-bottom: none;
}

.service-detail-image {
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.service-intro {
    font-size: 1.2rem;
    color: var(--light-text);
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    color: var(--light-text);
}

.service-features i {
    color: var(--primary-color);
    font-weight: 700;
}

/* ===== Comparison Table ===== */
.comparison-section {
    padding: 5rem 0;
    background-color: var(--accent-color);
}

.service-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.service-table thead {
    background-color: var(--secondary-color);
    color: var(--white);
}

.service-table th,
.service-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.service-table tbody tr:hover {
    background-color: var(--accent-color);
}

/* ===== Process Section ===== */
.process-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.process-step {
    text-align: center;
    padding: 2rem 1.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.step-number {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.process-step h4 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

/* ===== Gallery Page Filters ===== */
.gallery-filters-section {
    padding: 2rem 0;
    background-color: var(--white);
}

.filters-wrapper {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--border-color);
    background-color: transparent;
    color: var(--dark-text);
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--secondary-color);
}

/* ===== Gallery Grid ===== */
.gallery-section {
    padding: 3rem 0;
    background-color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

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

.btn-lightbox {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-lightbox:hover {
    background-color: var(--white);
    transform: scale(1.1);
}

.gallery-info {
    padding: 1.5rem;
    background-color: var(--accent-color);
}

.gallery-info h5 {
    color: var(--secondary-color);
    margin-bottom: 0.25rem;
}

.gallery-info p {
    color: var(--light-text);
    font-size: 0.9rem;
}

/* ===== Lightbox ===== */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s;
}

.lightbox-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    position: relative;
}

.lightbox-image {
    width: 100%;
    max-height: 70vh;
}

.lightbox-placeholder {
    background: var(--accent-color);
    width: 600px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--primary-color);
}

.lightbox-caption {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 1rem;
    text-align: center;
    font-weight: 500;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--primary-color);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: none;
    font-size: 2rem;
    cursor: pointer;
    padding: 1rem;
    transition: var(--transition);
}

.lightbox-nav:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

.lightbox-prev {
    left: -60px;
}

.lightbox-next {
    right: -60px;
}

/* ===== Testimonials Page ===== */
.testimonials-detailed-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.testimonial-item {
    padding: 3rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.testimonial-avatar {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-placeholder {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--warm-brown) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--white);
}

.testimonial-quote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--light-text);
    line-height: 1.8;
}

.stats-section {
    padding: 4rem 0;
    background-color: var(--accent-color);
}

.stat-card {
    padding: 2rem;
    margin-bottom: 2rem;
}

.stat-number {
    font-size: 3.5rem;
    color: var(--primary-color);
    font-family: var(--font-display);
}

.stat-label {
    color: var(--light-text);
    font-size: 1.1rem;
}

/* ===== Video Testimonials ===== */
.video-testimonial-section {
    padding: 5rem 0;
    background-color: var(--accent-color);
}

.video-card {
    margin-bottom: 2rem;
}

.video-placeholder {
    background-color: var(--secondary-color);
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    color: var(--primary-color);
    font-size: 4rem;
}

.video-placeholder:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.video-title {
    text-align: center;
    color: var(--secondary-color);
    margin-top: 1rem;
    font-weight: 600;
}

/* ===== Success Stories ===== */
.success-stories-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.success-story {
    padding: 2rem;
    background-color: var(--accent-color);
    border-radius: 8px;
    margin-bottom: 2rem;
    transition: var(--transition);
}

.success-story:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.success-story h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.success-story small {
    color: var(--primary-color);
    font-weight: 600;
}

/* ===== Trust Section ===== */
.trust-section {
    padding: 4rem 0;
    background-color: var(--accent-color);
}

.trust-badge {
    padding: 2rem 1.5rem;
    margin-bottom: 2rem;
}

.trust-badge i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* ===== Contact Page ===== */
.contact-info-section {
    padding: 4rem 0;
    background-color: var(--accent-color);
}

.contact-card {
    padding: 2rem;
    background-color: var(--white);
    border-radius: 8px;
    text-align: center;
    margin-bottom: 2rem;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.contact-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-8px);
}

.contact-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-card h4 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.contact-card a {
    color: var(--primary-color);
    font-weight: 600;
}

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

/* ===== Contact Form ===== */
.contact-main-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.contact-form-wrapper {
    padding-right: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-control {
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-family: var(--font-body);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-note {
    color: var(--light-text);
    font-size: 0.9rem;
    text-align: center;
    margin-top: 1rem;
}

/* ===== Map Container ===== */
.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 400px;
}

.contact-details {
    background-color: var(--accent-color);
    padding: 2rem;
    border-radius: 8px;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    color: var(--light-text);
}

.day {
    font-weight: 600;
    color: var(--secondary-color);
}

/* ===== Social Links ===== */
.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--accent-color);
    color: var(--primary-color);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.social-links-large {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--warm-brown);
    transform: translateY(-3px);
}

/* ===== FAQ Section ===== */
.faq-section {
    padding: 5rem 0;
    background-color: var(--accent-color);
}

.faq-item {
    margin-bottom: 2rem;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.faq-question {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.faq-question i {
    color: var(--primary-color);
}

.faq-answer {
    color: var(--light-text);
    margin: 0;
}

/* ===== Footer ===== */
.footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 3rem 0 1rem;
    margin-top: 5rem;
}

.footer-title {
    font-family: var(--font-display);
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-text {
    color: #ccc;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    color: #ccc;
    margin-bottom: 0.75rem;
    transition: var(--transition);
}

.footer-links a {
    color: #ccc;
    transition: var(--transition);
}

.footer-links a:hover,
.footer-links li:hover {
    color: var(--primary-color);
}

.footer-divider {
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    height: 1px;
    margin: 2rem 0;
}

.footer-bottom {
    text-align: center;
    color: #999;
    font-size: 0.9rem;
}

.footer-bottom i {
    color: var(--primary-color);
}

/* ===== Back to Top Button ===== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-md);
}

.back-to-top:hover {
    background-color: var(--warm-brown);
    color: var(--white);
    transform: translateY(-5px);
}

.back-to-top.show {
    display: flex;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.8rem; }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-image,
    .about-image,
    .welcome-image,
    .designer-image {
        height: 300px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .timeline::before {
        left: 0;
    }

    .timeline-marker {
        margin-left: 0;
    }

    .timeline-content {
        margin-left: 60px;
        margin-right: 0;
    }

    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 60px;
        margin-right: 0;
    }

    .contact-form-wrapper {
        padding-right: 0;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
    }

    .page-header {
        padding: 3rem 0;
        margin-top: 60px;
    }

    .page-title {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .map-container {
        height: 300px;
    }

    .lightbox-prev,
    .lightbox-next {
        display: none;
    }

    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 1.5rem;
        right: 1.5rem;
    }
}

@media (max-width: 576px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }
    h3 { font-size: 1.4rem; }

    .hero-section {
        padding: 2rem 0;
        min-height: auto;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .page-header {
        padding: 2rem 0;
    }

    .page-title {
        font-size: 1.6rem;
    }

    .navbar {
        padding: 0.75rem 0;
    }

    .brand-logo {
        font-size: 1.2rem;
    }

    .nav-link {
        padding: 0.5rem 0;
    }

    .cta-section {
        text-align: center;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 0.75rem;
    }

    .table-responsive {
        font-size: 0.9rem;
    }

    .service-table th,
    .service-table td {
        padding: 0.75rem;
    }

    .testimonial-avatar {
        height: 150px;
    }

    .avatar-placeholder {
        width: 150px;
        height: 150px;
        font-size: 3rem;
    }
}

/* ===== Print Styles ===== */
@media print {
    .navbar,
    .back-to-top,
    .footer {
        display: none;
    }

    body {
        font-size: 12pt;
    }

    a {
        text-decoration: underline;
    }
}

/* ===== Accessibility ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===== Focus Styles ===== */
button:focus,
a:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}
