/* === GLOBAL STYLES FOR ALL FIORITO PAGES === */
:root {
    --gold: #e2cfb9;
    --gold-light: #f1e5d8;
    --gold-dark: #cbb299;
    --ivory: #ffffff;
    --charcoal: #0e3a2f;
    --dark-gray: #07241c;
    --medium-gray: #145b49;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    background-color: var(--charcoal);
    color: var(--ivory);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

/* === CUSTOM CURSOR === */
.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: transform 0.2s ease;
}

.cursor-follower {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: transform 0.15s ease;
}

/* === BUBBLE ANIMATION === */
.bubbles {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.bubble {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(201, 169, 110, 0.2), rgba(201, 169, 110, 0.05));
    box-shadow:
        inset 0 0 20px rgba(201, 169, 110, 0.1),
        0 0 20px rgba(201, 169, 110, 0.1);
    animation: float 15s infinite ease-in-out;
    opacity: 0;
}

/* === ENHANCED NAVIGATION === */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: transparent;
}

.main-nav.scrolled {
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.3), transparent);
    transition: left 0.7s ease;
}

.logo:hover::before {
    left: 100%;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
}

.nav-link {
    color: var(--ivory);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-link:hover {
    color: var(--gold);
    transform: translateY(-2px);
}

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

.nav-link.active {
    color: var(--gold);
}

.nav-link.active::before {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.mobile-menu-btn:hover {
    transform: scale(1.1);
}

/* === HERO SECTIONS === */
.hero, .about-hero, .contact-hero, .products-hero, .blog-hero, .single-hero {
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('https://asimfolio.com/Fiorito/public/images/6.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.about-hero, .contact-hero, .products-hero, .blog-hero {
    min-height: 60vh;
}

.single-hero {
    min-height: 70vh;
}

.hero::before, .about-hero::before, .contact-hero::before,
.products-hero::before, .blog-hero::before, .single-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(201, 169, 110, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(201, 169, 110, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(201, 169, 110, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.hero-content, .about-hero-content, .contact-hero-content,
.products-hero-content, .blog-hero-content, .single-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.hero h1, .about-hero h1, .contact-hero h1,
.products-hero h1, .blog-hero h1, .single-hero h1 {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--ivory) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s 0.5s forwards;
}

.single-hero h1 {
    background: none;
    -webkit-text-fill-color: var(--ivory);
    color: var(--ivory);
    font-size: 3.5rem;
}

.hero p, .about-hero p, .contact-hero p,
.products-hero p, .blog-hero p, .single-hero p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    color: rgba(248, 244, 233, 0.8);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s 0.7s forwards;
}

/* === SECTION HEADERS === */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
    padding: 0 2rem;
}

.section-header h2 {
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.section-header.visible h2 {
    opacity: 1;
    transform: translateY(0);
}

.section-header p {
    font-size: 1.2rem;
    color: rgba(248, 244, 233, 0.8);
    max-width: 600px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.2s;
}

.section-header.visible p {
    opacity: 1;
    transform: translateY(0);
}

.section-header h2::after {
    content: '';
    display: block;
    width: 0;
    height: 3px;
    background: var(--gold);
    margin: 1rem auto 0;
    transition: width 1s ease 0.5s;
}

.section-header.visible h2::after {
    width: 100px;
}

/* === BUTTON STYLES === */
.cta-button, .read-more, .service-btn, .map-btn,
.cta-btn, .submit-btn, .newsletter-btn, .nav-link-post {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: inline-block;
    border-radius: 6px;
    cursor: pointer;
}

.cta-button::before, .submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: all 0.6s ease;
    z-index: -1;
}

.cta-button:hover::before, .submit-btn:hover::before {
    left: 100%;
}

.cta-button:hover, .read-more:hover, .service-btn:hover,
.map-btn:hover, .cta-btn.primary:hover, .cta-btn.secondary:hover,
.submit-btn:hover, .nav-link-post:hover {
    color: var(--charcoal);
    background: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(201, 169, 110, 0.3);
}

.cta-btn.primary {
    background: var(--gold);
    color: var(--charcoal);
}

.cta-btn.secondary {
    background: transparent;
    color: var(--gold);
}

/* === HOME PAGE STYLES === */
.gallery {
    padding: 8rem 0;
    background: var(--dark-gray);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.gallery-item {
    position: relative;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    transform: translateY(50px);
}

.gallery-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: white;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.6s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
    opacity: 1;
}

.about {
    padding: 8rem 0;
    background: var(--charcoal);
}

.about-container {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    gap: 4rem;
}

.about-text {
    flex: 1;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s ease;
}

.about-text.visible {
    opacity: 1;
    transform: translateX(0);
}

.about-text h2 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    color: var(--gold);
    position: relative;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gold);
    transition: width 1.5s ease 0.5s;
}

.about-text.visible h2::after {
    width: 80px;
}

.about-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(248, 244, 233, 0.8);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.about-text.visible p {
    opacity: 1;
    transform: translateY(0);
}

.about-text.visible p:nth-child(2) {
    transition-delay: 0.2s;
}

.about-text.visible p:nth-child(3) {
    transition-delay: 0.4s;
}

.about-image {
    flex: 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 500px;
    opacity: 0;
    transform: translateX(50px);
    transition: all 1s ease;
}

.about-image.visible {
    opacity: 1;
    transform: translateX(0);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

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

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.5s ease;
}

.feature.visible {
    opacity: 1;
    transform: translateX(0);
}

.feature:nth-child(1) { transition-delay: 0.6s; }
.feature:nth-child(2) { transition-delay: 0.7s; }
.feature:nth-child(3) { transition-delay: 0.8s; }
.feature:nth-child(4) { transition-delay: 0.9s; }

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--charcoal);
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--gold-light);
}

.feature-text h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--ivory);
}

.feature-text p {
    font-size: 1rem;
    margin-bottom: 0;
    color: rgba(248, 244, 233, 0.7);
}

.showcase {
    padding: 8rem 0;
    background: var(--dark-gray);
}

.showcase-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.showcase-item {
    position: relative;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    transform: translateY(50px);
}

.showcase-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.showcase-item:nth-child(1) { transition-delay: 0.2s; }
.showcase-item:nth-child(2) { transition-delay: 0.4s; }
.showcase-item:nth-child(3) { transition-delay: 0.6s; }

.showcase-item:hover {
    transform: translateY(-15px);
}

.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.showcase-item:hover img {
    transform: scale(1.1);
}

.showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(201, 169, 110, 0.2), rgba(26, 26, 26, 0.7));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    color: white;
    opacity: 0;
    transition: all 0.5s ease;
}

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

.contact {
    padding: 8rem 0;
    background: var(--charcoal);
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
    transform: translateY(50px);
    transition: all 1s ease;
}

.contact-form.visible {
    opacity: 1;
    transform: translateY(0);
}

.form-group {
    margin-bottom: 2rem;
    position: relative;
    opacity: 0.9;
    transform: translateX(-30px);
    transition: all 0.5s ease;
}

.contact-form.visible .form-group {
    opacity: 1;
    transform: translateX(0);
}

.contact-form.visible .form-group:nth-child(1) { transition-delay: 0.2s; }
.contact-form.visible .form-group:nth-child(2) { transition-delay: 0.3s; }
.contact-form.visible .form-group:nth-child(3) { transition-delay: 0.4s; }
.contact-form.visible .form-group:nth-child(4) { transition-delay: 0.5s; }

.form-control {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--medium-gray);
    padding: 1rem 0;
    color: var(--ivory);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-bottom-color: var(--gold);
}

.form-label {
    position: absolute;
    top: 1rem;
    left: 0;
    color: var(--medium-gray);
    transition: all 0.3s ease;
    pointer-events: none;
}

.form-control:focus + .form-label,
.form-control:not(:placeholder-shown) + .form-label {
    top: -1rem;
    font-size: 0.9rem;
    color: var(--gold);
}

/* === ABOUT PAGE STYLES === */
.story {
    padding: 8rem 0;
    background: var(--dark-gray);
}

.story-container {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    gap: 4rem;
}

.story-text {
    flex: 1;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s ease;
}

.story-text.visible {
    opacity: 1;
    transform: translateX(0);
}

.story-text h2 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    color: var(--gold);
    position: relative;
}

.story-text h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gold);
    transition: width 1.5s ease 0.5s;
}

.story-text.visible h2::after {
    width: 80px;
}

.story-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(248, 244, 233, 0.8);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.story-text.visible p {
    opacity: 1;
    transform: translateY(0);
}

.story-text.visible p:nth-child(2) {
    transition-delay: 0.2s;
}

.story-text.visible p:nth-child(3) {
    transition-delay: 0.4s;
}

.story-image {
    flex: 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 500px;
    opacity: 0;
    transform: translateX(50px);
    transition: all 1s ease;
}

.story-image.visible {
    opacity: 1;
    transform: translateX(0);
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

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

.values {
    padding: 8rem 0;
    background: var(--charcoal);
}

.values-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.value-card {
    background: var(--dark-gray);
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    transform: translateY(50px);
}

.value-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.value-card:nth-child(1) { transition-delay: 0.2s; }
.value-card:nth-child(2) { transition-delay: 0.4s; }
.value-card:nth-child(3) { transition-delay: 0.6s; }

.value-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--charcoal);
    font-size: 2rem;
    margin: 0 auto 2rem;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--gold-light);
}

.value-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--gold);
}

.value-card p {
    color: rgba(248, 244, 233, 0.8);
    font-size: 1.1rem;
}

.team {
    padding: 8rem 0;
    background: var(--dark-gray);
}

.team-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.team-member {
    text-align: center;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.team-member.visible {
    opacity: 1;
    transform: translateY(0);
}

.team-member:nth-child(1) { transition-delay: 0.2s; }
.team-member:nth-child(2) { transition-delay: 0.4s; }
.team-member:nth-child(3) { transition-delay: 0.6s; }

.member-image {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 2rem;
    border: 3px solid var(--gold);
    transition: all 0.5s ease;
}

.team-member:hover .member-image {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(201, 169, 110, 0.3);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--ivory);
}

.team-member .position {
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.team-member p {
    color: rgba(248, 244, 233, 0.8);
    margin-bottom: 1.5rem;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.member-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--medium-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ivory);
    text-decoration: none;
    transition: all 0.3s ease;
}

.member-social a:hover {
    background: var(--gold);
    color: var(--charcoal);
    transform: translateY(-3px);
}

.timeline {
    padding: 8rem 0;
    background: var(--charcoal);
}

.timeline-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

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

.timeline-item {
    display: flex;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-item:nth-child(1) { transition-delay: 0.2s; }
.timeline-item:nth-child(2) { transition-delay: 0.4s; }
.timeline-item:nth-child(3) { transition-delay: 0.6s; }
.timeline-item:nth-child(4) { transition-delay: 0.8s; }

.timeline-content {
    flex: 1;
    padding: 2rem;
    background: var(--dark-gray);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 3rem;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 3rem;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: var(--gold);
    border-radius: 50%;
    transform: translateY(-50%);
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -40px;
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -40px;
}

.timeline-year {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 600;
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--ivory);
}

.timeline-content p {
    color: rgba(248, 244, 233, 0.8);
}

/* === SERVICES PAGE STYLES === */
.services-grid-section {
    padding: 8rem 0;
    background: var(--dark-gray);
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.service-card {
    background: var(--charcoal);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    transform: translateY(50px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin-top: 40px;
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card:nth-child(1) { transition-delay: 0.2s; }
.service-card:nth-child(2) { transition-delay: 0.4s; }
.service-card:nth-child(3) { transition-delay: 0.6s; }
.service-card:nth-child(4) { transition-delay: 0.8s; }
.service-card:nth-child(5) { transition-delay: 1.0s; }
.service-card:nth-child(6) { transition-delay: 1.2s; }

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.service-image {
    height: 500px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Changed from cover to contain */
    transition: transform 0.8s ease;
}

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

.service-content {
    padding: 2.5rem;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--charcoal);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--gold-light);
}

.service-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.service-content p {
    color: rgba(248, 244, 233, 0.8);
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    color: rgba(248, 244, 233, 0.7);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

.process-section {
    padding: 8rem 0;
    background: var(--charcoal);
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 4rem;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--medium-gray);
    z-index: 1;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
    flex: 1;
    padding: 0 1rem;
}

.process-step.visible {
    opacity: 1;
    transform: translateY(0);
}

.process-step:nth-child(1) { transition-delay: 0.2s; }
.process-step:nth-child(2) { transition-delay: 0.4s; }
.process-step:nth-child(3) { transition-delay: 0.6s; }
.process-step:nth-child(4) { transition-delay: 0.8s; }

.step-number {
    width: 80px;
    height: 80px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--charcoal);
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.process-step:hover .step-number {
    transform: scale(1.1);
    background: var(--gold-light);
}

.process-step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--ivory);
}

.process-step p {
    color: rgba(248, 244, 233, 0.8);
}

.cta-section {
    padding: 8rem 0;
    background: var(--dark-gray);
    text-align: center;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-content {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease;
}

.cta-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.cta-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--gold);
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: rgba(248, 244, 233, 0.8);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* === CONTACT PAGE STYLES === */
.contact-section {
    padding: 8rem 0;
    background: var(--dark-gray);
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.contact-info {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s ease;
}

.contact-info.visible {
    opacity: 1;
    transform: translateX(0);
}

.contact-info h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--gold);
    position: relative;
}

.contact-info h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gold);
    transition: width 1.5s ease 0.5s;
}

.contact-info.visible h2::after {
    width: 80px;
}

.contact-info p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: rgba(248, 244, 233, 0.8);
}

.contact-details {
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.5s ease;
}

.contact-info.visible .contact-item {
    opacity: 1;
    transform: translateX(0);
}

.contact-info.visible .contact-item:nth-child(1) { transition-delay: 0.6s; }
.contact-info.visible .contact-item:nth-child(2) { transition-delay: 0.7s; }
.contact-info.visible .contact-item:nth-child(3) { transition-delay: 0.8s; }
.contact-info.visible .contact-item:nth-child(4) { transition-delay: 0.9s; }

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--charcoal);
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--gold-light);
}

.contact-text h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--ivory);
}

.contact-text p {
    font-size: 1.1rem;
    margin-bottom: 0;
    color: rgba(248, 244, 233, 0.7);
}

.social-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--gold);
}

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

.social-link-contact {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--medium-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ivory);
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link-contact:hover {
    background: var(--gold);
    color: var(--charcoal);
    transform: translateY(-5px) rotate(10deg);
}

.contact-form-section {
    opacity: 0;
    transform: translateX(50px);
    transition: all 1s ease;
}

.contact-form-section.visible {
    opacity: 1;
    transform: translateX(0);
}

.contact-form {
    background: var(--charcoal);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.map-section {
    padding: 8rem 0;
    background: var(--charcoal);
}

.map-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.map-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    height: 500px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.map-wrapper.visible {
    opacity: 1;
    transform: translateY(0);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('https://moujteam.com/Florito/public/demos/8.jpeg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.map-overlay {
    text-align: center;
    color: var(--ivory);
    z-index: 2;
}

.map-overlay h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.map-overlay p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(248, 244, 233, 0.8);
}

.faq-section {
    padding: 8rem 0;
    background: var(--dark-gray);
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.faq-item {
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--medium-gray);
    padding-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.faq-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.faq-item:nth-child(1) { transition-delay: 0.2s; }
.faq-item:nth-child(2) { transition-delay: 0.4s; }
.faq-item:nth-child(3) { transition-delay: 0.6s; }
.faq-item:nth-child(4) { transition-delay: 0.8s; }

.faq-question {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 1.8rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    color: rgba(248, 244, 233, 0.8);
    font-size: 1.1rem;
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* === BLOG PAGE STYLES === */
.blog-section {
    padding: 8rem 0;
    background: var(--dark-gray);
}

.blog-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.blog-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.featured-post {
    margin-bottom: 5rem;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.featured-post.visible {
    opacity: 1;
    transform: translateY(0);
}

.featured-image {
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

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

.featured-content {
    padding: 0 1rem;
}

.post-category {
    display: inline-block;
    background: var(--gold);
    color: var(--charcoal);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.featured-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--ivory);
}

.featured-content h2 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.featured-content h2 a:hover {
    color: var(--gold);
}

.post-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    color: rgba(248, 244, 233, 0.7);
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.featured-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(248, 244, 233, 0.8);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 5rem;
}

.blog-post {
    background: var(--charcoal);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    transform: translateY(50px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.blog-post.visible {
    opacity: 1;
    transform: translateY(0);
}

.blog-post:nth-child(1) { transition-delay: 0.2s; }
.blog-post:nth-child(2) { transition-delay: 0.4s; }
.blog-post:nth-child(3) { transition-delay: 0.6s; }
.blog-post:nth-child(4) { transition-delay: 0.8s; }
.blog-post:nth-child(5) { transition-delay: 1.0s; }
.blog-post:nth-child(6) { transition-delay: 1.2s; }

.blog-post:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.post-image {
    height: 250px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.blog-post:hover .post-image img {
    transform: scale(1.1);
}

.post-content {
    padding: 2rem;
}

.post-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--ivory);
}

.post-content h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-content h3 a:hover {
    color: var(--gold);
}

.post-excerpt {
    color: rgba(248, 244, 233, 0.8);
    margin-bottom: 1.5rem;
}

.post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.post-date {
    color: rgba(248, 244, 233, 0.6);
    font-size: 0.9rem;
}

.post-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.post-link:hover {
    gap: 1rem;
}

.sidebar {
    opacity: 0;
    transform: translateX(50px);
    transition: all 1s ease;
}

.sidebar.visible {
    opacity: 1;
    transform: translateX(0);
}

.sidebar-widget {
    background: var(--charcoal);
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.widget-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--gold);
    position: relative;
    padding-bottom: 1rem;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--gold);
}

.about-widget p {
    color: rgba(248, 244, 233, 0.8);
    margin-bottom: 1.5rem;
}

.about-signature {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--gold);
    font-style: italic;
}

.categories-list {
    list-style: none;
}

.categories-list li {
    margin-bottom: 1rem;
}

.categories-list a {
    color: rgba(248, 244, 233, 0.8);
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.categories-list a:hover {
    color: var(--gold);
    padding-left: 0.5rem;
}

.category-count {
    background: var(--medium-gray);
    color: var(--ivory);
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

.recent-posts {
    list-style: none;
}

.recent-post {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--medium-gray);
}

.recent-post:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.recent-post-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.recent-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-content h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.recent-post-content h4 a {
    color: var(--ivory);
    text-decoration: none;
    transition: color 0.3s ease;
}

.recent-post-content h4 a:hover {
    color: var(--gold);
}

.recent-post-date {
    color: rgba(248, 244, 233, 0.6);
    font-size: 0.8rem;
}

.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.tag {
    background: var(--medium-gray);
    color: var(--ivory);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag:hover {
    background: var(--gold);
    color: var(--charcoal);
    transform: translateY(-2px);
}

.newsletter-form {
    margin-top: 1.5rem;
}

.newsletter-input {
    width: 100%;
    background: var(--dark-gray);
    border: 1px solid var(--medium-gray);
    padding: 1rem;
    color: var(--ivory);
    border-radius: 6px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--gold);
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.page-numbers {
    display: flex;
    gap: 0.5rem;
}

.page-number, .page-prev, .page-next {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-number {
    background: var(--charcoal);
    color: var(--ivory);
}

.page-number:hover, .page-number.current {
    background: var(--gold);
    color: var(--charcoal);
}

.page-prev, .page-next {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
}

.page-prev:hover, .page-next:hover {
    background: var(--gold);
    color: var(--charcoal);
}

/* === SINGLE BLOG PAGE STYLES === */
.single-post-section {
    padding: 6rem 0;
    background: var(--dark-gray);
}

.single-post-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.single-post-content {
    background: var(--charcoal);
    border-radius: 12px;
    padding: 4rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.single-post-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.post-intro {
    font-size: 1.3rem;
    line-height: 1.8;
    color: rgba(248, 244, 233, 0.9);
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--medium-gray);
}

.post-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(248, 244, 233, 0.8);
}

.post-body h2 {
    font-size: 2rem;
    color: var(--gold);
    margin: 3rem 0 1.5rem;
    position: relative;
    padding-left: 2rem;
}

.post-body h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 80%;
    background: var(--gold);
    border-radius: 4px;
}

.post-body h3 {
    font-size: 1.5rem;
    color: var(--ivory);
    margin: 2.5rem 0 1rem;
}

.post-body p {
    margin-bottom: 1.5rem;
}

.post-body blockquote {
    border-left: 4px solid var(--gold);
    padding: 2rem;
    margin: 2.5rem 0;
    background: var(--dark-gray);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    font-size: 1.2rem;
    color: rgba(248, 244, 233, 0.9);
}

.post-body blockquote::before {
    content: '"';
    font-size: 3rem;
    color: var(--gold);
    line-height: 1;
    margin-right: 1rem;
}

.post-body ul, .post-body ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.post-body li {
    margin-bottom: 0.8rem;
}

.post-image {
    margin: 3rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.post-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}

.post-image:hover img {
    transform: scale(1.03);
}

.image-caption {
    text-align: center;
    font-style: italic;
    color: rgba(248, 244, 233, 0.6);
    margin-top: 1rem;
    font-size: 0.9rem;
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 3rem 0;
    padding-top: 2rem;
    border-top: 1px solid var(--medium-gray);
}

.post-tag {
    background: var(--medium-gray);
    color: var(--ivory);
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.post-tag:hover {
    background: var(--gold);
    color: var(--charcoal);
    transform: translateY(-2px);
}

.author-section {
    background: var(--charcoal);
    border-radius: 12px;
    padding: 3rem;
    margin: 4rem 0;
    display: flex;
    gap: 2rem;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease 0.3s;
}

.author-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.author-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--gold);
    flex-shrink: 0;
}

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

.author-info h3 {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.author-title {
    color: rgba(248, 244, 233, 0.7);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.author-bio {
    color: rgba(248, 244, 233, 0.8);
    line-height: 1.6;
}

.share-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    border-top: 1px solid var(--medium-gray);
    border-bottom: 1px solid var(--medium-gray);
    margin: 3rem 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease 0.6s;
}

.share-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.share-text {
    font-size: 1.1rem;
    color: var(--gold);
    font-weight: 600;
}

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

.share-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ivory);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.share-facebook {
    background: #3b5998;
}

.share-twitter {
    background: #1da1f2;
}

.share-pinterest {
    background: #bd081c;
}

.share-linkedin {
    background: #0077b5;
}

.share-btn:hover {
    transform: translateY(-3px) scale(1.1);
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    margin: 4rem 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease 0.8s;
}

.post-navigation.visible {
    opacity: 1;
    transform: translateY(0);
}

.nav-previous, .nav-next {
    flex: 1;
}

.nav-next {
    text-align: right;
}

.related-posts {
    margin: 6rem 0 4rem;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease 1s;
}

.related-posts.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--gold);
    margin: 1rem auto 0;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.related-post {
    background: var(--charcoal);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.6s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.related-post:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.related-image {
    height: 200px;
    overflow: hidden;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.related-post:hover .related-image img {
    transform: scale(1.1);
}

.related-content {
    padding: 1.5rem;
}

.related-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--ivory);
}

.related-content h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-content h3 a:hover {
    color: var(--gold);
}

.related-date {
    color: rgba(248, 244, 233, 0.6);
    font-size: 0.9rem;
}

.comments-section {
    margin: 6rem 0 4rem;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease 1.2s;
}

.comments-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.comments-list {
    margin-bottom: 3rem;
}

.comment {
    background: var(--charcoal);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.comment-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.comment-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

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

.comment-meta h4 {
    font-size: 1.1rem;
    color: var(--ivory);
    margin-bottom: 0.2rem;
}

.comment-date {
    color: rgba(248, 244, 233, 0.6);
    font-size: 0.9rem;
}

.comment-reply {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.comment-reply:hover {
    color: var(--gold-light);
}

.comment-content {
    color: rgba(248, 244, 233, 0.8);
    line-height: 1.6;
}

.comment-form {
    background: var(--charcoal);
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.comment-form h3 {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 2rem;
}

/* === FOOTER === */
.footer {
    background: var(--dark-gray);
    padding: 4rem 0 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1.5rem;
    display: block;
}

.footer-about p {
    color: rgba(248, 244, 233, 0.7);
    margin-bottom: 1.5rem;
}

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

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--medium-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ivory);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gold);
    color: var(--charcoal);
    transform: translateY(-3px) rotate(10deg);
}

.footer-heading {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--gold);
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(248, 244, 233, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--medium-gray);
    color: rgba(248, 244, 233, 0.5);
}

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

@keyframes float {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(-100px) scale(1);
        opacity: 0;
    }
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1200px) {
    .hero h1, .about-hero h1, .contact-hero h1,
    .products-hero h1, .blog-hero h1 {
        font-size: 4rem;
    }

    .single-hero h1 {
        font-size: 3rem;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .about-container, .story-container {
        gap: 3rem;
    }
}

@media (max-width: 992px) {
    .hero h1, .about-hero h1, .contact-hero h1,
    .products-hero h1, .blog-hero h1 {
        font-size: 3.5rem;
    }

    .single-hero h1 {
        font-size: 2.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(26, 26, 26, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        text-align: center;
        gap: 1.5rem;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .about-container, .story-container {
        flex-direction: column;
        text-align: center;
    }

    .about-text h2::after, .story-text h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .about-image, .story-image {
        height: 400px;
        margin-top: 2rem;
    }

    .blog-layout {
        grid-template-columns: 1fr;
    }

    .sidebar {
        order: -1;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .timeline-container::before {
        left: 30px;
    }

    .timeline-item {
        flex-direction: row !important;
    }

    .timeline-item .timeline-content {
        margin-left: 5rem !important;
        margin-right: 0 !important;
    }

    .timeline-item:nth-child(odd) .timeline-content::before,
    .timeline-item:nth-child(even) .timeline-content::before {
        left: -45px;
    }

    .process-steps {
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
    }

    .process-steps::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero h1, .about-hero h1, .contact-hero h1,
    .products-hero h1, .blog-hero h1 {
        font-size: 2.8rem;
    }

    .single-hero h1 {
        font-size: 2.2rem;
    }

    .section-header h2 {
        font-size: 2.8rem;
    }

    .hero p, .about-hero p, .contact-hero p,
    .products-hero p, .blog-hero p, .single-hero p {
        font-size: 1.2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .values-grid, .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .process-step {
        flex: 0 0 100%;
        margin-bottom: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        width: 100%;
        max-width: 300px;
    }

    .contact-form {
        padding: 2rem;
    }

    .single-post-content {
        padding: 2rem;
    }

    .post-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .share-section {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .post-navigation {
        flex-direction: column;
        gap: 2rem;
    }

    .nav-previous, .nav-next {
        text-align: center;
    }

    .author-section {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero h1, .about-hero h1, .contact-hero h1,
    .products-hero h1, .blog-hero h1 {
        font-size: 2.2rem;
    }

    .single-hero h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .cta-content h2 {
        font-size: 2.5rem;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .footer-container {
        padding: 0 1rem;
    }

    .gallery-grid, .about-container, .showcase-container,
    .contact-container, .services-container, .values-container,
    .team-container, .timeline-container, .process-container,
    .cta-container, .blog-container, .single-post-container {
        padding: 0 1rem;
    }

    .gallery-item, .showcase-item {
        height: 300px;
    }

    .about-text h2, .story-text h2 {
        font-size: 2.2rem;
    }
}
