﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-bg: #ebded5;
    --color-accent: #99646a;
    --color-dark: #3a2f2d;
    --color-light: #f9f6f3;
    --color-white: #ffffff;
    --serif: 'Playfair Display', serif;
    --sans: 'Cairo', sans-serif;
}

html {
    scroll-behavior: smooth;
    font-size: 14px;
}

body {
    font-family: var(--sans);
    background-color: #ebded594;
    color: var(--color-dark);
    line-height: 1.6;
}

p {
    font-size: 16px !important;
    margin: 0;
}

.bg-card {
    background: linear-gradient(to top, var(--color-bg), var(--color-light));
}

.bg-body {
    background: white;
}

a {
    text-decoration: none;
}

.ri-checkbox-circle-line {
    color: var(--color-accent);
}

#about li {
    font-size: 16px;
}

/* ============= NAVBAR ============= */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99999;
    padding: 10px 2rem;
    background: transparent;
    transition: all 0.4s ease;
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: rgb(235 222 213 / 60%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(153, 100, 106, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.navbar-brand {

    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-accent);
    letter-spacing: 2px;
}

.nav-link {
    font-family: var(--sans);
    color: #ebded5;
    font-weight: 400;
    margin: 0 1rem;
    position: relative;
    transition: color 0.3s ease;
    font-size: 18px;
    letter-spacing: 0.5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 3px;
    width: 0;
    right: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active::after {
    width: 50%;
    right: 25%;
}

.btn-cta {
    background: var(--color-accent);
    color: var(--color-white);
    border: none;
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.navbar-nav .nav-link.active {
    color: #ebded5;
}

.btn-cta:hover {
    background: var(--color-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(153, 100, 106, 0.3);
}

.icon-nav {
    width: 200px;
}

.icon-nav h2 {
    color: #ebded5;
    font-size: 24px;
    transition: 0.3s ease;
}

.icon-nav img {
    width: 60px;
    transition: 0.3s ease;
}

.navbar.scrolled .nav-link {
    font-size: 16px;
    color: var(--color-dark);
}

.navbar.scrolled .icon-nav h2 {
    font-size: 18px;
    color: var(--color-dark);
}

.navbar.scrolled .icon-nav img {
    width: 30px;
}

@media (max-width: 1065px) {
    .icon-nav h2 {
        font-size: 20px;
    }

    .nav-link {
        margin: 0px 10px;
    }

    .navbar-nav {
        justify-content: space-between !important;
    }
}

/* ============= HERO SECTION ============= */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-top: 70px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(153, 100, 106, 0.05) 0%, rgba(235, 222, 213, 0.1) 100%);
    z-index: 1;
}

.banner-hero,
.back-hero {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
}

.back-hero {
    background: linear-gradient(to top, #9d9d9d30, #000000a6);
    backdrop-filter: blur(5px);
}

/* Hero Slider Styles */
.hero-slider-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: heroSlide 9s infinite;
}

.hero-slider-img:nth-child(1) {
    animation-delay: 0s;
}

.hero-slider-img:nth-child(2) {
    animation-delay: 3s;
}

.hero-slider-img:nth-child(3) {
    animation-delay: 6s;
}

@keyframes heroSlide {
    0% {
        opacity: 0;
        transform: scale(1);
    }

    4% {
        opacity: 1;
    }

    33.33% {
        opacity: 1;
    }

    38% {
        opacity: 0;
        transform: scale(1.1);
    }

    100% {
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    animation: fadeInUp 1s ease 0.3s both;
}

.hero h1 {

    font-size: 4.5rem;
    font-weight: 700;
    color: #ebded5;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    line-height: 1.1;
}

.text-sh {
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3) !important;
}

.hero .subtitle {
    font-size: 1.4rem;
    color: var(--color-accent);
    font-weight: bold;
    margin-bottom: 2.5rem;
    letter-spacing: 1px;
}

.hero-cta {
    display: inline-flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.btn-primary-hero {
    background: var(--color-accent);
    color: var(--color-white);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-family: var(--sans);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.btn-primary-hero:hover {
    background: var(--color-dark);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(153, 100, 106, 0.4);
}

.btn-secondary-hero {
    background: transparent;
    color: var(--color-accent);
    padding: 1rem 2.5rem;
    border: 2px solid var(--color-accent);
    border-radius: 50px;
    font-family: var(--sans);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.btn-secondary-hero:hover {
    background: var(--color-accent);
    color: var(--color-white);
    transform: translateY(-4px);
}

/* ============= SCROLL INDICATOR ============= */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.9rem;
    color: var(--color-accent);
    letter-spacing: 1px;
    animation: bounce 2s infinite;
    z-index: 2;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* ============= SECTION STYLES ============= */
section {
    padding: 6rem 2rem;
}

.section-title {

    font-size: 3rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.section-subtitle {
    text-align: center;
    font-size: 3rem;
    color: var(--color-accent);
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ============= PHILOSOPHY SECTION ============= */
.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.philosophy-text h2 {

    font-size: 2.2rem;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
}

.philosophy-text p {
    font-size: 1rem;
    color: var(--color-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.philosophy-image {
    position: relative;
    height: 400px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(58, 47, 45, 0.1);
}

.philosophy-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============= SERVICES CARDS ============= */
.services {
    background: var(--color-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card {
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(153, 100, 106, 0.1);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(153, 100, 106, 0.15);
    border-color: var(--color-accent);
}

.service-icon {
    font-size: 3rem;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--color-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    font-size: 16px;
    color: var(--color-dark);
    opacity: 0.7;
    line-height: 1.6;
}

/* ============= questions ============= */
.questions {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

/* ============= FOOTER ============= */
footer {
    background: var(--color-dark);
    color: var(--color-light);
    padding: 4rem 2rem 2rem;
    position: relative;
    overflow: hidden;
    /* Modern World Map Pattern */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='400' viewBox='0 0 800 400'%3E%3Cpath fill='rgba(255,255,255,0.05)' d='M650,150 L660,140 L670,145 L680,140 L690,150 L680,160 L670,155 L660,160 Z M150,100 L160,90 L170,95 L180,90 L190,100 L180,110 L170,105 L160,110 Z M400,200 L410,190 L420,195 L430,190 L440,200 L430,210 L420,205 L410,210 Z M600,300 L610,290 L620,295 L630,290 L640,300 L630,310 L620,305 L610,310 Z M200,250 L210,240 L220,245 L230,240 L240,250 L230,260 L220,255 L210,260 Z M700,100 L710,90 L720,95 L730,90 L740,100 L730,110 L720,105 L710,110 Z M100,200 L110,190 L120,195 L130,190 L140,200 L130,210 L120,205 L110,210 Z M300,300 L310,290 L320,295 L330,290 L340,300 L330,310 L320,305 L310,310 Z'/%3E%3Ccircle cx='100' cy='100' r='2' fill='rgba(255,255,255,0.1)'/%3E%3Ccircle cx='200' cy='200' r='2' fill='rgba(255,255,255,0.1)'/%3E%3Ccircle cx='300' cy='150' r='2' fill='rgba(255,255,255,0.1)'/%3E%3Ccircle cx='400' cy='250' r='2' fill='rgba(255,255,255,0.1)'/%3E%3Ccircle cx='500' cy='100' r='2' fill='rgba(255,255,255,0.1)'/%3E%3Ccircle cx='600' cy='200' r='2' fill='rgba(255,255,255,0.1)'/%3E%3Ccircle cx='700' cy='150' r='2' fill='rgba(255,255,255,0.1)'/%3E%3Ccircle cx='750' cy='250' r='2' fill='rgba(255,255,255,0.1)'/%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {

    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--color-white);
}

.footer-section p {
    font-size: 16px;
    opacity: 0.8;
    line-height: 1.8;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--color-light);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
    opacity: 0.8;
}

.footer-links a:hover {
    color: var(--color-accent);
    opacity: 1;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-light);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-icon:hover {
    background: var(--color-accent);
    transform: translateY(-3px);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem 1.2rem;
    border: none;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    font-size: 0.9rem;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    padding: 0.8rem 1.5rem;
    background: var(--color-accent);
    border: none;
    border-radius: 25px;
    color: var(--color-white);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.newsletter-form button:hover {
    background: var(--color-light);
    color: var(--color-dark);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.7;
}

/* ============= ANIMATIONS ============= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 0.6s ease;
}

/* ============= RESPONSIVE ============= */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .subtitle {
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .nav-link {
        margin: 0 0.5rem;
    }
}

/* ============= SMOOTH SCROLL ============= */
.smooth-scroll {
    scroll-behavior: smooth;
}

/* ============= FLOATING ACTIONS ============= */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
}

.floating-btn:hover {
    transform: scale(1.1);
    color: white;
}

.btn-phone,
.btn-whatsapp {
    background-color: var(--color-accent);
}

/* ============= UTILITIES & EXTENSIONS ============= */
#about {
    background: white;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--color-dark);
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.8;
}

.quote-text {
    font-style: italic;
    color: var(--color-accent);
    margin-top: 2rem;
}

.about-image-overlay {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(58, 47, 45, 0.4) 0%, rgba(153, 100, 106, 0.4) 100%);
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
}

.philosophy-image:hover .about-image-overlay {
    background: linear-gradient(135deg, rgba(58, 47, 45, 0.2) 0%, rgba(153, 100, 106, 0.2) 100%);
    backdrop-filter: blur(0px);
}

.philosophy-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.philosophy-image:hover .philosophy-bg-img {
    transform: scale(1.1);
}

.about-icon-wrapper {
    text-align: center;
    color: var(--color-white);
    transform: translateY(0);
    transition: transform 0.5s ease;
}

.philosophy-image:hover .about-icon-wrapper {
    transform: translateY(-10px);
}

.about-icon-large {
    font-size: 5rem;
}

.about-icon-text {
    color: #f3ece7;
    font-size: 25px !important;
    margin-top: 1rem;
}

.service-cta {
    display: inline-block;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.5rem 1.5rem;
}

/* DION Section Specifics */
.dion-intro {
    margin-bottom: 5rem;
}

.cover-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dion-text-content {
    text-align: right;
    font-family: 'Cairo', sans-serif;
}

.dion-heading {
    font-size: 2rem;
    font-weight: 700;
}

.dion-lead {
    font-size: 1.1rem;
    line-height: 1.9;
    opacity: 0.9;
}

.usage-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: right;
    font-family: 'Cairo', sans-serif;
}

.usage-icon {
    color: var(--color-accent);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.usage-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-dark);
    font-weight: 700;
}

.usage-text {
    opacity: 0.8;
    line-height: 1.8;
}

.usage-image-container {
    border-radius: 20px;
    overflow: hidden;
    height: 350px;
}

.urgency-banner {
    background-color: #965B28;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 2rem;
    font-family: 'Cairo', sans-serif;
    box-shadow: 0 4px 15px rgba(150, 91, 40, 0.3);
}

.urgency-text {
    font-size: 1.5rem;
    font-weight: 700;
}

.shipping-text {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-family: 'Cairo', sans-serif;
}

.btn-buy {
    font-size: 1.2rem;
    padding: 1rem 3rem;
    font-family: 'Cairo', sans-serif;
}

.checkout-note-container {
    margin-top: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-family: 'Cairo', sans-serif;
}

.checkout-note {
    color: #b8312f;
    font-size: 0.9rem;
    line-height: 1.6;
    background: rgba(184, 49, 47, 0.05);
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(184, 49, 47, 0.1);
}

/* FAQ */
.faq-heading {
    font-family: 'Cairo', sans-serif;
    margin-bottom: 3rem;
    color: var(--color-dark);
    font-weight: 700;
}

.faq-button {
    border: none;
    background: transparent;
    color: var(--color-dark);
    font-weight: 600;
}

.faq-body-text {
    color: #666;
}

/* Contact Specifics */
.contact-heading-main {

    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--color-dark);
}

.contact-label {
    color: var(--color-accent);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-text {
    opacity: 0.8;
}

.social-icon-pill {
    background: var(--color-accent);
    color: var(--color-white);
    border: none;
    width: auto;
    padding: 0.8rem 1.2rem;
    border-radius: 50px;
}

.contact-form-container {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(58, 47, 45, 0.08);
}

.form-input {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(153, 100, 106, 0.2);
    border-radius: 10px;
    font-family: var(--sans);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}


.section-title-cairo {
    font-family: 'Cairo', sans-serif !important;
    margin-bottom: 4rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.contact-info-block {
    margin-bottom: 2rem;
}

.social-icons-container {
    margin-top: 2rem;
}

.section-description {
    font-family: var(--sans);
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--color-dark);
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ============= MODERN FEATURES (NO CARD LOOK) ============= */
.features-modern-grid {
    display: flex;
    gap: 2rem;
    margin-top: 4rem;
    flex-wrap: wrap;
    justify-content: center;
}

.feature-modern-item {
    border: 1px solid #99646a85;
    text-align: center;
    padding: 2rem 1rem;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    background: white;
    border-radius: 30px;
    position: relative;
    z-index: 1;
}

.feature-modern-item:hover {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(15px);
    transform: translateY(-15px);
    box-shadow: 0 15px 35px rgba(153, 100, 106, 0.1);
}

.feature-icon-box {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(145deg, #ffffff, #f0e6e0);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    /* Organic Blob Shape */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--color-accent);
    box-shadow: 2px 4px 7px 3px rgb(153 100 106 / 36%), -5px -5px 15px rgba(255, 255, 255, 0.8);
    transition: all 0.6s ease;
    animation: blobFloat 6s ease-in-out infinite;
}

.feature-modern-item:nth-child(2) .feature-icon-box {
    animation-delay: 1s;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}

.feature-modern-item:nth-child(3) .feature-icon-box {
    animation-delay: 2s;
    border-radius: 30% 70% 70% 30% / 30% 30% 60% 40%;
}

.feature-modern-item:nth-child(4) .feature-icon-box {
    animation-delay: 0.5s;
    border-radius: 50% 50% 20% 80% / 25% 80% 20% 75%;
}

@keyframes blobFloat {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-10px) scale(1.05);
    }
}

.feature-modern-item:hover .feature-icon-box {
    background: var(--color-accent);
    color: var(--color-white);
    transform: scale(1.1) rotate(10deg);
    border-radius: 50%;
    /* Becomes perfect circle on hover */
    box-shadow: 0 0 0 10px rgba(153, 100, 106, 0.15);
}

.feature-modern-item h3 {
    font-size: 1.6rem;
    color: var(--color-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-modern-item p {
    font-size: 1.05rem;
    color: var(--color-dark);
    opacity: 0.75;
    line-height: 1.7;
    max-width: 90%;
    margin: 0 auto;
}

/* ============= CREATIVE SERVICES (REVEAL STYLE) ============= */
.service-reveal-card {
    position: relative;
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    height: 480px;
    /* Taller for elegance */
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px solid rgba(153, 100, 106, 0.1);
}

.service-reveal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, var(--color-dark), transparent 80%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.service-reveal-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(153, 100, 106, 0.2);
}

.service-reveal-card:hover::before {
    opacity: 1;
    /* Darken bottom for text readability on hover */
}

/* Background Image/Pattern Element (Optional aesthetic) */
.service-bg-shape {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(153, 100, 106, 0.05) 0%, transparent 60%);
    transition: transform 0.7s ease;
    z-index: 0;
}

.service-reveal-card:hover .service-bg-shape {
    transform: rotate(45deg) scale(1.2);
}

/* Content Container */
.service-content-wrapper {
    position: relative;
    z-index: 2;
    padding: 2rem;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* Center initially */
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.service-reveal-card:hover .service-content-wrapper {
    justify-content: flex-end;
    /* Move to bottom on hover */
    padding-bottom: 3rem;
}

/* Icon */
.service-reveal-icon {
    font-size: 4rem;
    color: var(--color-accent);
    margin-bottom: 1rem;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    background: rgba(255, 255, 255, 0.8);
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(153, 100, 106, 0.1);
}

.service-reveal-card:hover .service-reveal-icon {
    transform: translateY(-50px) scale(0.7);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    box-shadow: none;
}

/* Title */
.service-reveal-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
    transition: all 0.4s ease;
}

.service-reveal-card:hover .service-reveal-title {
    color: #fff;
    transform: translateY(-20px);
}

/* Hidden Details (List) */
.service-reveal-details {
    list-style: none;
    padding: 0;
    width: 100%;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.1s;
    height: 0;
    /* Hide height initially */
    overflow: hidden;
}

.service-reveal-card:hover .service-reveal-details {
    opacity: 1;
    transform: translateY(-10px);
    height: auto;
    /* Allow height */
    margin-bottom: 1rem;
}

.service-reveal-details li {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.3rem;
}

/* Button */
.service-reveal-btn {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.2s;
    background: var(--color-white);
    color: var(--color-accent);
}

.service-reveal-card:hover .service-reveal-btn {
    opacity: 1;
    transform: translateY(0);
}


/* ============= PREMIUM SERVICES (STABLE & ELEGANT) ============= */
.premium-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.service-premium-card {
    background: #fff;
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid rgba(153, 100, 106, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    z-index: 1;
    overflow: hidden;
}

/* Subtle Gradient Border Effect on Hover */
.service-premium-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    /* Border width */
    background: linear-gradient(135deg, var(--color-accent), #d4af37);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.service-premium-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(153, 100, 106, 0.1);
    border-color: transparent;
    /* Hide real border to show gradient */
}

.service-premium-card:hover::after {
    opacity: 1;
}

.premium-icon {
    font-size: 3.5rem;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-premium-card:hover .premium-icon {
    transform: scale(1.1);
    color: #d4af37;
    /* Switch to Gold on hover */
}

.premium-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
    font-family: var(--serif);
}

.premium-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    text-align: right;
    /* Standard readability */
    padding-right: 1rem;
}

.premium-list li {
    font-size: 1rem;
    color: var(--color-dark);
    opacity: 0.8;
    margin-bottom: 0.8rem;
    position: relative;
    padding-right: 1.5rem;
}

.premium-list li::before {
    content: '•';
    color: var(--color-accent);
    position: absolute;
    right: 0;
    font-size: 1.2rem;
    line-height: 1;
}

.premium-btn {
    background: transparent;
    color: var(--color-accent);
    border: 1px solid var(--color-accent);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.service-premium-card:hover .premium-btn {
    background: var(--color-accent);
    color: #fff;
    box-shadow: 0 5px 15px rgba(153, 100, 106, 0.3);
}

/* ============= MODERN TILT SERVICES ============= */
.services-tilt-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 4rem;
    perspective: 1000px;
}

@media (max-width: 768px) {
    .services-tilt-grid {
        grid-template-columns: 1fr;
    }
}

.service-tilt-card {
    background: linear-gradient(135deg, #ffffff 0%, #f9f6f3 100%);
    border-radius: 25px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 10px 40px rgba(153, 100, 106, 0.08);
    overflow: hidden;
    transform-style: preserve-3d;
    border: 1px solid #c09e9d;
    background-image:
        linear-gradient(135deg, #ffffff 0%, #f9f6f3 100%),
        linear-gradient(135deg, var(--color-accent), #d4af37, var(--color-accent));
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.service-tilt-card:hover {
    border-color: transparent;
    background-image:
        linear-gradient(135deg, #ffffff 0%, #f9f6f3 100%),
        linear-gradient(45deg, var(--color-accent), #d4af37, #b8757c, var(--color-accent));
}

/* Animated Gradient Overlay */
.service-tilt-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 30%,
            rgba(153, 100, 106, 0.1) 50%,
            transparent 70%);
    transform: rotate(0deg);
    transition: transform 0.8s ease;
    z-index: 0;
}

.service-tilt-card:hover::before {
    transform: rotate(180deg);
}

/* Subtle 3D Tilt on Hover - merged above */

.service-tilt-content {
    position: relative;
    z-index: 1;
}

.service-tilt-icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(326deg, #cdc0b7, #b8757c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 8px 20px rgba(153, 100, 106, 0.2);
}

.service-tilt-card:hover .service-tilt-icon-wrapper {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 12px 30px rgba(153, 100, 106, 0.3);
}

.service-tilt-icon-wrapper i {
    font-size: 2.5rem;
    color: #fff;
}

.service-tilt-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1.2rem;
    transition: color 0.3s ease;
}

.service-tilt-card:hover .service-tilt-title {
    color: var(--color-accent);
}

.service-tilt-list {
    display: flex;
    list-style: none;
    padding: 0;
    margin-bottom: 1.8rem;
    text-align: right;
    flex-wrap: wrap;
}

.service-tilt-list li {
    font-size: 16px;
    color: var(--color-dark);
    opacity: 0.75;
    margin-bottom: 0.7rem;
    padding-right: 1.2rem;
    position: relative;
    transition: all 0.3s ease;
}

.service-tilt-list li::before {
    content: '✓';
    margin-left: 5px;
    right: 0;
    color: var(--color-accent);
    font-weight: bold;
}

.service-tilt-card:hover .service-tilt-list li {
    opacity: 1;
    transform: translateX(-5px);
}

.service-tilt-btn {
    background: var(--color-accent);
    color: #fff;
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(153, 100, 106, 0.2);
    position: relative;
    overflow: hidden;
}

.service-tilt-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.service-tilt-btn:hover::before {
    width: 300px;
    height: 300px;
}

.service-tilt-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(153, 100, 106, 0.35);
    color: #fff;
}

.service-tilt-list li {
    text-align: center;
}

/* ============= MODERN CONTACT SECTION ============= */
.contact-modern-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    margin-top: 3rem;
}

@media (max-width: 992px) {
    .contact-modern-wrapper {
        grid-template-columns: 1fr;
    }
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-card {
    background: #fff;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(153, 100, 106, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(153, 100, 106, 0.1);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(153, 100, 106, 0.15);
    border-color: var(--color-accent);
}

.contact-card-icon {
    margin-left: 5px;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--color-accent), #b8757c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
}

.contact-info-card:hover .contact-card-icon {
    transform: rotate(10deg) scale(1.1);
}

.contact-card-icon i {
    font-size: 18px;
    color: #fff;
}

.contact-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.contact-card-text {
    font-size: 1rem;
    color: var(--color-dark);
    opacity: 0.8;
    line-height: 1.6;
}

.contact-card-text a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card-text a:hover {
    color: var(--color-dark);
}

/* Social Links Modern */
.social-links-modern {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.social-link-modern {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-accent), #b8757c);
    color: #fff;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 5px 15px rgba(153, 100, 106, 0.2);
}

.social-link-modern:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(153, 100, 106, 0.3);
    color: #fff;
}

/* Map Container */
.map-container {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(153, 100, 106, 0.1);
    height: 100%;
    min-height: 500px;
    border: 2px solid rgba(153, 100, 106, 0.1);
    transition: all 0.4s ease;
}

.map-container:hover {
    box-shadow: 0 15px 50px rgba(153, 100, 106, 0.15);
    border-color: var(--color-accent);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    min-height: 500px;
}


/* ============= FINAL CTA SECTION ============= */
.cta-final {
    background: linear-gradient(135deg, var(--color-accent) 0%, #b8757c 100%);
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: ctaFloat 8s ease-in-out infinite;
}

.cta-final::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: ctaFloat 10s ease-in-out infinite reverse;
}

@keyframes ctaFloat {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-30px) scale(1.1);
    }
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cta-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn-primary {
    background: #fff;
    color: var(--color-accent);
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: var(--color-accent);
}

.cta-btn-secondary {
    background: transparent;
    color: #fff;
    padding: 1.2rem 3rem;
    border: 2px solid #fff;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.4s ease;
}

.cta-btn-secondary:hover {
    background: #fff;
    color: var(--color-accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-btn-primary i,
.cta-btn-secondary i {
    font-size: 1.3rem;
}

@media (max-width: 768px) {
    .cta-title {
        font-size: 2rem;
    }

    .cta-subtitle {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}


/* ============= MODERN GALLERY SECTION ============= */
.gallery-section {
    padding: 6rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(153, 100, 106, 0.1);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(153, 100, 106, 0.2);
}

/* Creative Grid Layout */
.gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item:nth-child(2) {
    grid-column: span 1;
    grid-row: span 1;
}

.gallery-item:nth-child(3) {
    grid-column: span 1;
    grid-row: span 1;
}

.gallery-item:nth-child(4) {
    grid-column: span 1;
    grid-row: span 2;
}

.gallery-item:nth-child(5) {
    grid-column: span 1;
    grid-row: span 1;
}

.gallery-item:nth-child(6) {
    grid-column: span 2;
    grid-row: span 1;
}

.gallery-item:nth-child(7) {
    grid-column: span 1;
    grid-row: span 1;
}

.gallery-item:nth-child(8) {
    grid-column: span 1;
    grid-row: span 2;
}

.gallery-item:nth-child(9) {
    grid-column: span 2;
    grid-row: span 1;
}

.gallery-item:nth-child(10) {
    grid-column: span 1;
    grid-row: span 1;
}

.gallery-item:nth-child(11) {
    grid-column: span 1;
    grid-row: span 1;
}

/* Pattern continues for images 12-31 */
.gallery-item:nth-child(12) {
    grid-column: span 1;
    grid-row: span 2;
}

.gallery-item:nth-child(13) {
    grid-column: span 1;
    grid-row: span 1;
}

.gallery-item:nth-child(14) {
    grid-column: span 2;
    grid-row: span 1;
}

.gallery-item:nth-child(15) {
    grid-column: span 1;
    grid-row: span 1;
}

.gallery-item:nth-child(16) {
    grid-column: span 1;
    grid-row: span 1;
}

.gallery-item:nth-child(17) {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item:nth-child(18) {
    grid-column: span 1;
    grid-row: span 1;
}

.gallery-item:nth-child(19) {
    grid-column: span 1;
    grid-row: span 2;
}

.gallery-item:nth-child(20) {
    grid-column: span 1;
    grid-row: span 1;
}

.gallery-item:nth-child(21) {
    grid-column: span 2;
    grid-row: span 1;
}

.gallery-item:nth-child(22) {
    grid-column: span 1;
    grid-row: span 1;
}

.gallery-item:nth-child(23) {
    grid-column: span 1;
    grid-row: span 2;
}

.gallery-item:nth-child(24) {
    grid-column: span 1;
    grid-row: span 1;
}

.gallery-item:nth-child(25) {
    grid-column: span 2;
    grid-row: span 1;
}

.gallery-item:nth-child(26) {
    grid-column: span 1;
    grid-row: span 1;
}

.gallery-item:nth-child(27) {
    grid-column: span 1;
    grid-row: span 1;
}

.gallery-item:nth-child(28) {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item:nth-child(29) {
    grid-column: span 1;
    grid-row: span 1;
}

.gallery-item:nth-child(30) {
    grid-column: span 1;
    grid-row: span 2;
}

.gallery-item:nth-child(31) {
    grid-column: span 1;
    grid-row: span 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s 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(153, 100, 106, 0.9) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 2rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay-icon {
    color: #fff;
    font-size: 2rem;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }

    .gallery-item:nth-child(1),
    .gallery-item:nth-child(4),
    .gallery-item:nth-child(6),
    .gallery-item:nth-child(8),
    .gallery-item:nth-child(9) {
        grid-column: span 1;
        grid-row: span 1;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }

    .gallery-item {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
    }
}


/* ============= LIGHTBOX ============= */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 999999;
    display: none;
    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%;
    animation: lightboxZoom 0.3s ease;
}

@keyframes lightboxZoom {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    color: #fff;
    font-size: 1rem;
    backdrop-filter: blur(10px);
}

@media (max-width: 768px) {

    .lightbox-prev,
    .lightbox-next {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .lightbox-close {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}


/* Gallery Load More Button */
.gallery-load-more {
    text-align: center;
    margin-top: 3rem;
}

.btn-load-more {
    background: var(--color-accent);
    color: #fff;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(153, 100, 106, 0.2);
}

.btn-load-more:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(153, 100, 106, 0.3);
}

.btn-load-more i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.btn-load-more:hover i {
    transform: translateY(3px);
}

.gallery-item.hidden {
    display: none;
}

/* Icon Nav Animation */
.icon-nav {
    transition: all 0.4s ease;
}

.icon-nav img {
    animation: iconFloat 3s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.icon-nav.scrolled img {
    animation: none;
}

.icon-nav img:hover {
    transform: scale(1.1) rotate(5deg);
}

@keyframes iconFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-4px);
    }
}

.icon-nav h2 {
    animation: textGlow 2s ease-in-out infinite;
}

.icon-nav.scrolled h2 {
    animation: none;
    text-shadow: none;
}

@keyframes textGlow {

    0%,
    100% {
        text-shadow: 0 0 10px rgba(153, 100, 106, 0.3);
    }

    50% {
        text-shadow: 0 0 20px rgba(153, 100, 106, 0.6);
    }
}

/* Curved Text Around Icon */
.icon-nav-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-nav-image {
    width: 60px;
    height: 60px;
    position: absolute;
    z-index: 2;
    animation: iconFloat 3s ease-in-out infinite;
}

.icon-nav.scrolled .icon-nav-image {
    animation: none;
}

.curved-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    pointer-events: none;
}

.curved-text-path {
    font-family: var(--serif);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    fill: var(--color-accent);
    animation: textGlow 2s ease-in-out infinite;
}

.icon-nav.scrolled .curved-text-path {
    animation: none;
}

@media (max-width: 991px) {
    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    .navbar.scrolled .navbar-toggler-icon {
        background-image: var(--bs-navbar-toggler-icon-bg);
    }

    .icon-nav2 h2 {
        color: #ebded5;
        font-size: 22px;
        transition: 0.3s ease;
    }

    .navbar.scrolled .icon-nav2 h2 {
        font-size: 18px;
        color: var(--color-dark);
    }

    .icon-nav2.scrolled h2 {
        animation: none;
        text-shadow: none;
    }

    .navbar.scrolled .icon-nav2 img {
        height: 40px;
    }
}

/* Mobile Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 991px) {
    .navbar-collapse {
        position: relative;
        z-index: 1050;
    }
}

/* ============= HERO FLOATING SHAPES ============= */
.hero-float-shape {
    position: absolute;
    pointer-events: none;
    opacity: 0.6;
    filter: drop-shadow(0 2px 8px rgba(212, 165, 165, 0.2));
}

.shape-leaf-1 {
    width: 80px;
    height: 80px;
    top: 15%;
    left: 10%;
    animation: floatGentle 18s ease-in-out infinite;
    animation-delay: 0s;
}

.shape-sparkle-1 {
    width: 50px;
    height: 50px;
    top: 25%;
    right: 15%;
    animation: floatGentle 15s ease-in-out infinite;
    animation-delay: -3s;
}

.shape-flower-1 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 8%;
    animation: floatGentle 22s ease-in-out infinite;
    animation-delay: -7s;
}

.shape-leaf-2 {
    width: 60px;
    height: 60px;
    top: 40%;
    right: 8%;
    animation: floatGentle 20s ease-in-out infinite;
    animation-delay: -5s;
}

.shape-sparkle-2 {
    width: 40px;
    height: 40px;
    bottom: 30%;
    right: 20%;
    animation: floatGentle 16s ease-in-out infinite;
    animation-delay: -2s;
}

.shape-heart {
    width: 70px;
    height: 70px;
    top: 10%;
    right: 30%;
    animation: floatGentle 25s ease-in-out infinite;
    animation-delay: -10s;
}

@keyframes floatGentle {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(15px, -20px) rotate(5deg);
    }

    50% {
        transform: translate(-10px, 10px) rotate(-3deg);
    }

    75% {
        transform: translate(10px, -15px) rotate(4deg);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-float-shape {
        opacity: 0.4;
    }

    .shape-leaf-1,
    .shape-flower-1 {
        width: 60px;
        height: 60px;
    }

    .shape-sparkle-1,
    .shape-sparkle-2 {
        width: 35px;
        height: 35px;
    }

    .shape-leaf-2,
    .shape-heart {
        width: 50px;
        height: 50px;
    }
}

/* Additional Floating Shapes */
.shape-leaf-3 {
    width: 70px;
    height: 70px;
    bottom: 15%;
    right: 12%;
    animation: floatGentle 19s ease-in-out infinite;
    animation-delay: -4s;
}

.shape-sparkle-3 {
    width: 45px;
    height: 45px;
    top: 35%;
    left: 20%;
    animation: floatGentle 17s ease-in-out infinite;
    animation-delay: -6s;
}

.shape-flower-2 {
    width: 90px;
    height: 90px;
    top: 50%;
    right: 5%;
    animation: floatGentle 24s ease-in-out infinite;
    animation-delay: -9s;
}

.shape-petal {
    width: 50px;
    height: 50px;
    bottom: 35%;
    left: 15%;
    animation: floatGentle 21s ease-in-out infinite;
    animation-delay: -8s;
}

.shape-star {
    width: 55px;
    height: 55px;
    top: 20%;
    left: 25%;
    animation: floatGentle 23s ease-in-out infinite;
    animation-delay: -11s;
}

.shape-bubble {
    width: 40px;
    height: 40px;
    bottom: 25%;
    right: 25%;
    animation: floatGentle 14s ease-in-out infinite;
    animation-delay: -1s;
}

/* Responsive adjustments for new shapes */
@media (max-width: 768px) {

    .shape-leaf-3,
    .shape-flower-2 {
        width: 55px;
        height: 55px;
    }

    .shape-sparkle-3,
    .shape-petal,
    .shape-star {
        width: 40px;
        height: 40px;
    }

    .shape-bubble {
        width: 30px;
        height: 30px;
    }
}

/* ============= FAQ SECTION ============= */
.faq-section {
    padding: 5rem 0;
}

.faq-wrapper {
    max-width: 900px;
    margin: 3rem auto 0;
}

.faq-item {
    background: white;
    border: none;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(153, 100, 106, 0.08);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 30px rgba(153, 100, 106, 0.15);
    transform: translateY(-2px);
}

.faq-item .accordion-button {
    background: #f3ece7;
    color: var(--color-dark);
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1.5rem 2rem;
    border: none;
    box-shadow: none;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.faq-item .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--color-accent) 0%, #b8757c 100%);
    color: white;
}

.faq-item .accordion-button:focus {
    box-shadow: none;
    border: none;
}

.faq-item .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2399646a'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: transform 0.3s ease;
}

.faq-item .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--color-accent);
    transition: color 0.3s ease;
}

.faq-item .accordion-button:not(.collapsed) .faq-icon {
    color: white;
}

.faq-item .accordion-body {
    padding: 1.5rem 2rem 2rem;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-dark);
    opacity: 0.85;
}

.faq-link {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.faq-link:hover {
    color: var(--color-dark);
}

/* Responsive */
@media (max-width: 768px) {
    .faq-item .accordion-button {
        font-size: 1rem;
        padding: 1.2rem 1.5rem;
    }

    .faq-item .accordion-body {
        padding: 1.2rem 1.5rem 1.5rem;
        font-size: 0.95rem;
    }

    .faq-icon {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .floating-btn {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }

    .floating-actions {
        bottom: 25px;
        right: 20px;
    }
}
