/* Floral Decor Services Page Styles */

/* Theme Utilities */
.fd-text-muted {
    color: var(--text-muted) !important;
}

/* Hero Section */
.fd-hero-section {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    color: white;
}

.fd-hero-img {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: -2;
    object-fit: cover;
    animation: subtle-zoom 20s ease-in-out infinite alternate;
}

@keyframes subtle-zoom {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }

    100% {
        transform: translate(-50%, -50%) scale(1.05);
    }
}

.fd-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.7) 100%);
    z-index: -1;
}

.fd-hero-content {
    z-index: 1;
    max-width: 900px;
    padding: 20px;
}

.fd-hero-title {
    font-family: 'Gallient', 'Playfair Display', serif;
    font-size: 4rem;
    margin-bottom: 1rem;
    color: white;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.fd-hero-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Intro Section */
.fd-intro-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-body) 0%, var(--bg-surface-alt) 100%);
    position: relative;
}

.fd-intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--text-muted) 50%, transparent 100%);
    opacity: 0.2;
}

.fd-intro-content {
    text-align: center;
}

.fd-intro-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-main);
    margin-bottom: 1.8rem;
    font-weight: 300;
}

.fd-intro-text:last-child {
    margin-bottom: 0;
}

/* Custom Section */
.fd-custom-section {
    padding: 100px 0;
    background-color: var(--bg-body);
}

.fd-custom-section img {
    border-radius: 16px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.fd-custom-section img:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Services Grid Section */
.fd-services-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-surface-alt) 0%, var(--bg-body) 100%);
    position: relative;
}

.fd-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 60px;
}

.fd-service-card {
    background: var(--bg-surface);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    position: relative;
}

.fd-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.fd-service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.fd-service-card:hover::before {
    opacity: 1;
}

.fd-service-image {
    width: 100%;
    height: 240px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.6s ease;
    position: relative;
    overflow: hidden;
}

.fd-service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3) 0%, transparent 50%);
    transition: opacity 0.4s ease;
}

.fd-service-card:hover .fd-service-image {
    transform: scale(1.08);
}

.fd-service-card:hover .fd-service-image::after {
    opacity: 0.5;
}

.fd-service-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.fd-service-title {
    font-family: 'Gallient', serif;
    font-size: 1.5rem;
    color: var(--text-main);
    margin-bottom: 15px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.fd-service-card:hover .fd-service-title {
    color: var(--primary-color, #d4a574);
}

.fd-service-desc {
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin: 0;
}

/* Coverage Section */
.fd-coverage-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-surface-alt) 0%, var(--bg-body) 100%);
    position: relative;
}

.fd-coverage-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--text-muted) 50%, transparent 100%);
    opacity: 0.2;
}

.fd-coverage-content {
    text-align: center;
}

.fd-coverage-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Enhanced Section Titles */
.section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-color, #d4a574) 50%, transparent 100%);
    border-radius: 2px;
}

.text-start .section-title::after {
    left: 0;
    transform: translateX(0);
}

/* Responsive */
@media (max-width: 992px) {
    .fd-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .fd-hero-title {
        font-size: 2.5rem;
    }

    .fd-hero-subtitle {
        font-size: 1.2rem;
    }

    .fd-services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .fd-intro-text {
        font-size: 1rem;
    }

    .fd-intro-section,
    .fd-custom-section,
    .fd-services-section,
    .fd-coverage-section {
        padding: 60px 0;
    }

    .fd-service-image {
        height: 200px;
    }

    .fd-service-content {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .fd-hero-title {
        font-size: 2rem;
    }

    .fd-hero-subtitle {
        font-size: 1.1rem;
    }
}