@font-face {
    font-family: 'Gallient';
    src: url('../fonts/gallient-font/Gallient.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    /* Base Colors */
    --ivory: #f6ebf3;
    --champagne: #f3e9d9;
    --dusty-rose: #d8b4a0;
    --sage: #a8b8a5;
    --taupe: #8a7f6f;
    --charcoal: #3d3d3d;
    --gold: #8f967d;

    /* Theme Variables - Light Mode (Default) */
    --bg-body: #ffffff;
    --bg-surface: #ffffff;
    --bg-surface-alt: #f6ebf3;
    --bg-surface-glass: rgba(255, 255, 255, 0.95);
    --bg-surface-glass-scrolled: rgba(255, 255, 255, 0.98);
    --text-main: #3d3d3d;
    --text-muted: #8a7f6f;
    --text-on-dark: #ffffff;
    --border-color: rgba(0, 0, 0, 0.05);
    --border-hover: rgba(0, 0, 0, 0.1);
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.15);
    --nav-link-color: #3d3d3d;
    --footer-bg: #3d3d3d;
}

[data-theme="dark"] {
    --bg-body: #121212;
    --bg-surface: #1e1e1e;
    --bg-surface-alt: #1a1a1a;
    --bg-surface-glass: rgba(18, 18, 18, 0.95);
    --bg-surface-glass-scrolled: rgba(18, 18, 18, 0.98);
    --text-main: #e0e0e0;
    --text-muted: #b0b0b0;
    --text-on-dark: #e0e0e0;
    --border-color: rgba(255, 255, 255, 0.05);
    --border-hover: rgba(255, 255, 255, 0.1);
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.5);
    --ivory: #1a1a1a;
    /* Override Ivory in dark mode for sections using it directly */
    --charcoal: #e0e0e0;
    /* Override Charcoal for consistent text */
    --nav-link-color: #e0e0e0;
    --footer-bg: #050505;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--bg-body);
    transition: background-color 0.4s ease, color 0.4s ease;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Gallient', serif;
    font-weight: 400;
}

/* Top Bar */
.top-bar {
    background-color: var(--gold);
    color: white;
    padding: 8px 0;
    font-size: 0.85rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1031;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.top-bar.hidden {
    transform: translateY(-100%);
}

.top-contact a {
    color: white;
    text-decoration: none;
    margin-right: 20px;
    transition: opacity 0.3s;
    display: inline-flex;
    align-items: center;
}

.top-contact a i {
    margin-right: 8px;
    font-size: 0.9em;
}

.top-contact a:hover {
    opacity: 0.8;
    color: white;
}

.top-social span {
    margin-right: 10px;
    font-family: 'Gallient', serif;
    letter-spacing: 1px;
}

.top-social a {
    color: white;
    margin-left: 10px;
    transition: transform 0.3s;
    display: inline-block;
}

.top-social a:hover {
    transform: translateY(-2px);
    color: white;
}

/* Modern Luxury Navbar */
.navbar {
    background-color: var(--bg-surface-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 15px 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-bottom: 1px solid var(--border-color);
    top: 36px;
    /* Moves navbar down to accommodate top-bar */
}

.navbar.scrolled {
    padding: 12px 0;
    background-color: var(--bg-surface-glass-scrolled);
    box-shadow: var(--shadow-card);
    top: 0;
    /* Moves navbar up when top-bar is hidden */
}

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

.navbar-brand img {
    max-height: 55px;
    transition: max-height 0.3s;
}

.navbar.scrolled .navbar-brand img {
    max-height: 55px;
}

.navbar-nav .nav-item {
    margin: 0 5px;
}

.nav-link {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--nav-link-color) !important;
    letter-spacing: 1.5px;
    padding: 10px 15px !important;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s;
    white-space: nowrap;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 1px;
    background-color: var(--gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 20px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold) !important;
}

.nav-btn {
    background-color: var(--gold);
    color: white !important;
    padding: 12px 23px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 400;
    border: 1px solid var(--gold);
    margin-left: 20px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: inline-block;
    text-decoration: none;
    white-space: nowrap;
}

.nav-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--charcoal);
    z-index: -1;
    transition: all 0.4s ease;
}

.nav-btn:hover {
    color: white !important;
    border-color: var(--charcoal);
    transform: translateY(-2px);
}

.nav-btn:hover::after {
    width: 100%;
}

.nav-heart-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
    border: 1px solid var(--champagne);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.nav-heart-btn:hover {
    background: var(--dusty-rose);
    color: white;
    border-color: var(--dusty-rose);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(216, 180, 160, 0.4);
}

.theme-toggle-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--nav-link-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.theme-toggle-btn:hover {
    background: var(--gold);
    color: white;
    border-color: var(--gold);
    transform: translateY(-2px);
}

.navbar-toggler {
    border: none;
    padding: 0;
    width: 30px;
    height: 20px;
    position: relative;
    transition: .5s ease-in-out;
    cursor: pointer;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.toggler-icon-bar {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--charcoal);
    position: absolute;
    transition: transform 0.3s, opacity 0.3s;
}

.toggler-icon-bar:nth-child(1) {
    top: 0;
}

.toggler-icon-bar:nth-child(2) {
    top: 9px;
}

.toggler-icon-bar:nth-child(3) {
    top: 18px;
}

.navbar-toggler[aria-expanded="true"] .toggler-icon-bar:nth-child(1) {
    transform: rotate(45deg);
    top: 9px;
}

.navbar-toggler[aria-expanded="true"] .toggler-icon-bar:nth-child(2) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .toggler-icon-bar:nth-child(3) {
    transform: rotate(-45deg);
    top: 9px;
}

/* Mobile Menu Polish */
@media (max-width: 991px) {
    .navbar-collapse {
        background: var(--bg-surface);
        padding: 20px;
        border-top: 1px solid var(--border-color);
        margin-top: 15px;
        box-shadow: var(--shadow-card);
    }

    .nav-link {
        padding: 15px 0 !important;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-link::before {
        display: none;
    }

    .nav-btn {
        margin: 20px 0 0 0;
        display: block;
        text-align: center;
        width: 100%;
        border: 1px solid var(--gold);
    }

    .social-icons.ms-4 {
        margin-left: 0 !important;
        margin-top: 20px;
        text-align: center;
        display: flex;
        justify-content: center;
    }

    .social-icons a {
        margin: 0 5px;
    }
}

.hero-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    filter: brightness(0.85);
    /* Slightly darker video for text contrast */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 1100px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: 'Gallient', serif;
    font-size: 5.5rem;
    margin-bottom: 30px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    line-height: 1.1;
    font-weight: 400;
    opacity: 0.95;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 50px;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.btn-hero-primary {
    background-color: var(--gold);
    border: 1px solid var(--gold);
    color: white;
    padding: 16px 45px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin: 10px;
}

.btn-hero-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: white;
    z-index: -1;
    transition: all 0.4s ease;
}

.btn-hero-primary:hover {
    color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-hero-primary:hover::before {
    width: 100%;
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white;
    padding: 16px 45px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 0;
    transition: all 0.4s ease;
    margin: 10px;
}

.btn-hero-secondary:hover {
    background: white;
    color: var(--charcoal);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 2;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.scroll-indicator:hover {
    opacity: 1;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Responsive Hero */
@media (max-width: 991px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        letter-spacing: 2px;
    }
}

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

/* Modern Stats Section - Compact Redesign */
.stats-section {
    padding: 0;
    position: relative;
    margin-top: -60px;
    /* Overlap hero section */
    z-index: 10;
}

.stats-container-glass {
    background: rgba(45, 45, 45, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border-radius: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
    padding: 30px 15px;
    transition: all 0.3s;
    background: transparent;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    /* Subtle dividers */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

/* Remove border on last item of row for desktop */
.col-md-3:last-child .stat-item {
    border-right: none;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.03);
    transform: translateY(-5px);
}

.stat-icon-compact {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 15px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.stat-item:hover .stat-icon-compact {
    transform: scale(1.2);
}

.stat-number-compact {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    font-weight: 400;
    color: white;
    line-height: 1;
    display: block;
}

.stat-text-compact {
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 5px;
    display: block;
}

/* Responsive Improvements */
@media (max-width: 767px) {
    .stats-section {
        margin-top: 0;
        /* No negative margin on mobile for cleaner flow */
        background-color: var(--ivory);
        /* Fallback background for mobile spacing */
        padding: 40px 0;
    }

    .stats-container-glass {
        background: white;
        /* Clean card look on mobile */
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .stat-number-compact {
        color: var(--charcoal);
        font-size: 2.2rem;
    }

    .stat-text-compact {
        color: var(--taupe);
    }

    .stat-item {
        border-right: 1px solid rgba(0, 0, 0, 0.05);
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        padding: 25px 10px;
    }

    /* Remove borders for specific items in 2x2 grid */
    .col-6:nth-child(2n) .stat-item {
        border-right: none;
    }

    .col-6:nth-last-child(-n+2) .stat-item {
        border-bottom: none;
    }
}

.section-title {
    text-align: center;
    margin-bottom: 0px;
    position: relative;
    font-size: 2.8rem;
    font-weight: 300;
}

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

/* About Section Revamp */
.about-section {
    padding: 80px 0;
    background-color: var(--bg-surface);
    position: relative;
    overflow: hidden;
}

.about-image-stack {
    position: relative;
    padding-right: 30px;
    padding-bottom: 30px;
}

.about-img-main {
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease;
}

.about-img-main img {
    width: 100%;
    display: block;
}

.about-image-stack:hover .about-img-main {
    transform: translateY(-10px);
}

.about-img-accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    z-index: 3;
    border: 8px solid white;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s ease;
}

.about-image-stack:hover .about-img-accent {
    transform: translate(10px, 10px);
}

.about-decoration {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 200px;
    height: 200px;
    border: 2px solid var(--gold);
    z-index: 1;
    opacity: 0.3;
}

.sub-heading-gold {
    font-family: 'Gallient', serif;
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: inline-block;
    font-weight: 400;
}

.text-gold {
    color: var(--gold);
}

.hover-gold:hover {
    background-color: var(--gold);
    border-color: var(--gold);
    color: white !important;
}

.about-features span {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: var(--charcoal);
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.services-section {
    padding: 120px 0;
    background-color: var(--ivory);
}

.service-card-modern {
    position: relative;
    height: 450px;
    overflow: hidden;
    border-radius: 0;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

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

.service-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    z-index: 1;
}

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

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 2;
    transition: all 0.4s ease;
}

.service-card-modern:hover .service-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.2) 100%);
}

.service-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    z-index: 3;
    color: white;
}

.service-icon-modern {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 15px;
    display: inline-block;
    transition: transform 0.4s ease;
}

.service-card-modern:hover .service-icon-modern {
    transform: scale(1.1) rotate(5deg);
}

.service-title-modern {
    font-family: 'Gallient', serif;
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: white;
}

.service-text-modern {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    line-height: 1.5;
    opacity: 0.9;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.service-card-modern:hover .service-text-modern {
    transform: translateY(0);
    opacity: 1;
}

.service-btn-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.service-btn-link i {
    margin-left: 5px;
    transition: margin-left 0.3s ease;
}

.service-btn-link:hover {
    color: white;
}

.service-btn-link:hover i {
    margin-left: 10px;
}

/* Modern Portfolio Section */
.portfolio-section {
    padding: 80px 0;
    background-color: var(--bg-surface);
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.filter-btn {
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 10px 25px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    color: var(--taupe);
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gold);
    color: white;
    border-color: var(--gold);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.portfolio-grid {
    min-height: 600px;
    /* Prevent collapse during filter */
}

.portfolio-item {
    position: relative;
    margin-bottom: 30px;
    border-radius: 0;
    overflow: hidden;
    height: 400px;
    cursor: pointer;
}

.portfolio-item.hidden {
    display: none;
    /* Simple hiding, animation handled by JS/CSS overlap if needed */
}

.portfolio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.portfolio-item:hover .portfolio-image {
    transform: scale(1.15);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
}

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

.portfolio-content {
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.portfolio-item:hover .portfolio-content {
    transform: translateY(0);
}

.portfolio-category {
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 5px;
    display: block;
}

.portfolio-title {
    font-family: 'Gallient', serif;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 10px;
}

.portfolio-link-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: absolute;
    top: 20px;
    right: 20px;
    transform: translateY(-20px);
    opacity: 0;
    transition: all 0.4s ease 0.1s;
}

.portfolio-item:hover .portfolio-link-icon {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-link-icon:hover {
    background: white;
    color: var(--charcoal);
}


/* Modern Services Section */
.services-section {
    padding: 80px 0;
    background-color: var(--bg-surface-alt);
    position: relative;
    overflow: hidden;
}


/* Modern Process Section */
.process-section {
    padding: 80px 0;
    background-color: var(--bg-surface-alt);
    position: relative;
    overflow: hidden;
}

.process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.process-timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background-color: var(--gold);
    top: 50px;
    bottom: 50px;
    left: 50%;
    margin-left: -1px;
    opacity: 0.3;
}

.process-step-row {
    padding: 20px 0;
    position: relative;
    width: 50%;
}

.process-step-row.left {
    left: 0;
    padding-right: 50px;
    text-align: right;
}

.process-step-row.right {
    left: 50%;
    padding-left: 50px;
    text-align: left;
}

.process-card {
    background: white;
    padding: 40px;
    position: relative;
    border-radius: 0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border-bottom: 4px solid transparent;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

/* Color Themes for Steps */
.process-step-row:nth-child(1) .process-card {
    border-bottom-color: var(--sage);
}

.process-step-row:nth-child(2) .process-card {
    border-bottom-color: var(--dusty-rose);
}

.process-step-row:nth-child(3) .process-card {
    border-bottom-color: var(--taupe);
}

.process-step-row:nth-child(4) .process-card {
    border-bottom-color: var(--gold);
    /* Champagne/Gold */
}

.color-white {
    color: #fff;
}

.step-number-floating {
    position: absolute;
    top: -25px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Gallient', serif;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.left .step-number-floating {
    right: -80px;
    /* Position on the timeline center */
    background-color: var(--sage);
}

.right .step-number-floating {
    left: -80px;
    background-color: var(--dusty-rose);
}

/* Adjust specific colors for numbers */
.process-step-row:nth-child(3).left .step-number-floating {
    background-color: var(--taupe);
}

.process-step-row:nth-child(4).right .step-number-floating {
    background-color: var(--gold);
}

.process-title {
    font-family: 'Gallient', serif;
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 15px;
}

.process-desc {
    color: #fff;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Responsive Process */
@media (max-width: 991px) {
    .process-timeline::after {
        left: 30px;
    }

    .process-step-row {
        width: 100%;
        padding-left: 80px;
        padding-right: 0;
    }

    .process-step-row.left,
    .process-step-row.right {
        left: 0;
        text-align: left;
    }

    .left .step-number-floating,
    .right .step-number-floating {
        left: 0;
        right: auto;
    }
}

/* Modern Testimonials */
.testimonials-section {
    padding: 80px 0;
    background-color: var(--bg-surface);
    position: relative;
}

/* Decorative background element */
.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 300px;
    background: linear-gradient(to bottom, var(--ivory), transparent);
    z-index: 0;
}

.testimonial-card-modern {
    background: white;
    padding: 50px 30px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.testimonial-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border-color: rgba(143, 150, 125, 0.3);
    /* Gold with opacity */
}

.testimonial-stars {
    color: var(--gold);
    margin-bottom: 25px;
    font-size: 0.8rem;
    letter-spacing: 3px;
}

.testimonial-text-modern {
    font-family: 'Gallient', serif;
    /* Using Gilda for a more elegant look than SC */
    font-style: italic;
    color: #565656;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.8;
}

.client-info-modern {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.client-info-modern::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 20px;
    opacity: 0.5;
}

.client-avatar-wrapper {
    position: relative;
    margin-bottom: 15px;
}

.client-avatar-modern {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--ivory);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.quote-icon-small {
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 24px;
    height: 24px;
    background: var(--gold);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

.client-name {
    font-family: 'Gallient', serif;
    font-size: 1.15rem;
    color: var(--charcoal);
    margin-bottom: 5px;
    font-weight: 400;
}

.client-event {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--taupe);
    font-family: 'Poppins', sans-serif;
}

.locations-section {
    padding: 80px 0;
    background-color: var(--ivory);
}

.location-item {
    text-align: center;
    padding: 30px 20px;
    transition: all 0.3s;
    margin-bottom: 20px;
    background: white;
    border: 1px solid var(--champagne);
}

.location-item:hover {
    background: white;
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.location-icon {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--taupe);
    font-size: 1.8rem;
    border: 1px solid var(--champagne);
}

.faq-section {
    padding: 80px 0;
    background-color: var(--bg-surface);
}

.accordion-item {
    border: none;
    margin-bottom: 20px;
    border-radius: 0 !important;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--champagne);
}

.accordion-button {
    font-weight: 400;
    padding: 25px;
    background: var(--bg-surface);
    color: var(--text-muted);
}

.accordion-button:not(.collapsed) {
    background: var(--bg-surface);
    color: var(--gold);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--champagne);
}

.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 100%), url('https://eventgramusa.com/wp-content/gallery/bridal-boquet/BRIDAL-BQT-1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 3.5rem;
    margin-bottom: 30px;
    font-weight: 300;
}

footer {
    background-color: var(--footer-bg);
    color: white;
    /* Footer text always white? Or check details */
    padding: 70px 0 30px;
}

.footer-heading {
    color: var(--gold);
    margin-bottom: 25px;
    font-size: 1.2rem;
    position: relative;
    display: inline-block;
    font-family: 'Gallient', serif;
}

.footer-heading:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 1px;
    background: var(--gold);
    bottom: -8px;
    left: 0;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    transition: all 0.3s;
}

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

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #949374;
    border-radius: 0;
    text-align: center;
    line-height: 40px;
    margin-right: 12px;
    color: white;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icons a:hover {
    background: var(--gold);
    color: white;
    transform: translateY(-5px);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 70px;
    text-align: center;
    color: #aaa;
}

/* Floating elements */
.floating-element {
    position: absolute;
    z-index: -1;
    opacity: 0.1;
}

.floating-1 {
    top: 15%;
    left: 5%;
    animation: float 6s ease-in-out infinite;
}

.floating-2 {
    top: 25%;
    right: 10%;
    animation: float 8s ease-in-out infinite;
}

.floating-3 {
    bottom: 20%;
    left: 8%;
    animation: float 7s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Elegant divider */
.divider {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--champagne), transparent);
    margin: 60px 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .process-connector {
        display: none;
    }
}

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

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

    .section-title {
        margin-bottom: 40px;
        font-size: 2.2rem;
    }

    .portfolio-item {
        height: 350px;
    }
}

/* Featured Services Section */
.featured-services-section {
    overflow: hidden;
}

.featured-service-item {
    padding: 40px 30px;
    height: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.featured-service-wedding {
    background-color: #c08c76;
    /* Terracotta */
}

.featured-service-venue {
    background-color: #8f967d;
    /* Sage Green */
}

.featured-service-floral {
    background-color: #a0b8d8;
    /* Dusty Blue */
}

.featured-service-catering {
    background-color: #d9cba0;
    /* Champagne */
}


.featured-image-wrapper {
    overflow: hidden;
    height: 100%;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

.featured-service-item:hover .featured-image {
    transform: scale(1.05);
}

.featured-desc {
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 40px;
    font-weight: 400;
}

.featured-link {
    color: white;
    font-family: 'Gallient', serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    font-size: 1.1rem;
    border-bottom: 1px solid transparent;
    padding-bottom: 5px;
    transition: all 0.3s;
    display: inline-block;
}

.featured-link:hover {
    color: white;
    border-bottom: 1px solid white;
    padding-right: 10px;
}

.featured-link i {
    margin-left: 10px;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .featured-service-item {
        padding: 50px 20px;
        text-align: center;
    }

    .featured-image-wrapper {
        height: 300px;
        margin-bottom: 30px;
    }

    .featured-content {
        text-align: center !important;
        padding-left: 0 !important;
    }

    .col-sm-7.text-end {
        text-align: center !important;
    }

    .featured-carousel-control {
        width: 10%;
        opacity: 1;
    }
}

/* Carousel Controls Customization */
.featured-carousel-control {
    width: 5%;
    opacity: 0;
    transition: opacity 0.3s;
}

.featured-services-section:hover .featured-carousel-control {
    opacity: 1;
}

.carousel-control-icon {
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.featured-carousel-control:hover .carousel-control-icon {
    background-color: white;
    color: #3d3d3d;
    transform: scale(1.1);
}

/* =========================================
   Location Marquee Styles
   ========================================= */

.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 40px 0;
}

.marquee-wrapper {
    display: flex;
    overflow: hidden;
    width: 100%;
    /* Create a mask for smooth fade in/out edges */
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
    display: flex;
    gap: 40px;
    /* Space between items */
    /* Animation speed - adjust 40s to make it faster/slower */
    animation: scroll 40s linear infinite;
    /* Ensure track width accommodates all items */
    width: max-content;
}

/* Pause animation on hover */
.marquee-wrapper:hover .marquee-track {
    animation-play-state: paused;
}

/* The item itself */
.location-item-marquee {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 280px;
    /* Increased width for better box presence */
    padding: 40px 20px;
    transition: all 0.3s ease;
    text-align: center;
    background: white;
    border: 1px solid var(--champagne);
}

.location-item-marquee:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--gold);
}

.location-item-marquee .location-icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.location-item-marquee h5 {
    font-family: 'Gallient', serif;
    font-size: 1.3rem;
    color: var(--text-main);
    margin: 0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .marquee-track {
        gap: 20px;
        animation-duration: 30s;
        /* Slightly faster on mobile if desired */
    }

    .location-item-marquee {
        min-width: 150px;
        padding: 10px;
    }
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
        /* Moves by 50% because we duplicated the content */
    }
}

/* =========================================
   Image Marquee Styles (Tilted & Double Row)
   ========================================= */

.marquee-wrapper.tilted-marquee {
    flex-direction: column;
    gap: 25px;
    transform: rotate(-3deg) scale(1.05);
    /* Stylish Tilt */
    padding: 20px 0;
    /* Reset text scrolling mask if needed or adjust */
    -webkit-mask-image: none;
    mask-image: none;
}

.tilted-marquee .marquee-track {
    gap: 25px;
    animation: none;
    /* We use specific left/right animations */
}

.marquee-item {
    width: 400px;
    height: 280px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}

.marquee-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(15%);
    transition: all 0.6s ease;
}

.marquee-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.marquee-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Animations for Image Marquee */
.marquee-left {
    animation: scrollLeft 60s linear infinite;
}

.marquee-right {
    animation: scrollRight 65s linear infinite;
}

@keyframes scrollLeft {
    to {
        transform: translateX(-50%);
    }
}

@keyframes scrollRight {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

/* Mobile Responsiveness for Image Marquee */
@media (max-width: 991px) {
    .marquee-wrapper.tilted-marquee {
        transform: rotate(0deg) scale(1);
    }

    .marquee-item {
        width: 300px;
        height: 220px;
    }
}

@media (max-width: 768px) {
    .marquee-item {
        width: 260px;
        height: 180px;
    }
}