:root {
    --primary-gold: #dfb15b;
    --primary-gold-hover: #c99b45;
    --text-white: #ffffff;
    --text-gray: #d1d1d1;
    --bg-dark: #0a0a0a;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-white);
    overflow-x: hidden;
    width: 100%;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    min-height: 110vh;
    /* Increased from 100vh */
    height: auto;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding-bottom: 220px;
    /* Increased from 100px to prevent overlap with absolute feature bar */
}

.hero-bg {
    position: absolute;
    top: -10%;
    /* Shift up to cut 10% from top */
    left: 0;
    width: 100%;
    height: 110%;
    /* Compensate for the shift to cover the bottom */
    object-fit: cover;
    object-position: right center;
    z-index: -2;
}

/* Overlay removed */

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 60px;
    z-index: 100;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 10px 60px;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.menu-toggle {
    display: none;
    cursor: pointer;
    color: var(--text-white);
    z-index: 101;
}

.menu-toggle span {
    font-size: 32px;
}

.logo img {
    height: 70px;
    /* Adjust based on actual logo size */
    object-fit: contain;
}

.nav ul {
    display: flex;
    gap: 40px;
}

.nav a {
    font-size: 15px;
    font-weight: 500;
    color: #e0e0e0;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.nav a:hover,
.nav a.active {
    color: var(--primary-gold);
}

.nav a.active {
    position: relative;
}

.nav a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #dfb15b, #eac680);
    color: #000;
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #eac680, #dfb15b);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-white);
    border: 1px solid var(--primary-gold);
}

.btn-secondary:hover {
    background-color: rgba(223, 177, 91, 0.1);
}

.btn .icon,
.btn .icon-right {
    font-size: 22px;
}

/* Main Content */
.hero-content {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 60px;
    z-index: 10;
}

/* Left Content */
.content-left {
    max-width: 1000px;
    margin-top: 150px;
}

.title {
    font-size: 80px;
    line-height: 1.1;
    margin-bottom: 25px;
    margin-top: 60px;
}

.title-white {
    font-family: var(--font-heading);
    font-size: inherit;
    font-weight: 500;
    color: #ffffff;
}

.title-gold {
    font-family: var(--font-heading);
    font-size: inherit;
    font-weight: 500;
    color: var(--primary-gold);
}

.hero-shiny-line {
    width: 100%;
    max-width: 450px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold) 0%, rgba(223, 177, 91, 0) 100%);
    box-shadow: 0 0 12px rgba(223, 177, 91, 0.6);
    margin-bottom: 30px;
    border-radius: 2px;
}

.description {
    color: #e0e0e0;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 700px;
    font-weight: 300;
}

.actions {
    display: flex;
    gap: 20px;
}

.hero-feature-bar {
    position: absolute;
    bottom: 30px;
    left: 60px;
    right: auto;
    width: 70%;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(223, 177, 91, 0.2);
    border-radius: 8px;
    padding: 30px 50px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 10;
    overflow-x: auto;
    /* Prevent cutoff on smaller screens */
    white-space: nowrap;
}

.feature-bar-item {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    justify-content: center;
}

.feature-icon {
    color: var(--primary-gold);
    font-size: 42px !important;
    font-weight: 200;
}

.feature-text {
    color: #fff;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 400;
    text-align: left;
}

.feature-bar-divider {
    width: 1px;
    height: 40px;
    background-color: rgba(223, 177, 91, 0.3);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .title {
        font-size: 60px;
    }

    .header,
    .hero-content {
        padding: 0 40px;
    }
}

@media (max-width: 992px) {

    .header,
    .header.scrolled {
        padding: 12px 40px;
    }

    .hero-content {
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 60px;
        margin-top: 80px;
        /* Offset for fixed header */
    }

    .hero-feature-bar {
        left: 50%;
        transform: translateX(-50%);
        width: 95%;
        padding: 15px;
        flex-wrap: wrap;
        gap: 15px;
        bottom: 20px;
    }

    .feature-bar-divider {
        display: none;
    }

    .feature-bar-item {
        flex: 1 1 30%;
    }

    .nav ul {
        gap: 20px;
    }

    .btn {
        padding: 12px 20px;
    }
}

@media (max-width: 768px) {

    .header,
    .header.scrolled {
        padding: 10px 20px;
    }

    .menu-toggle {
        display: block;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: #111;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px 40px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    }

    .nav.active {
        right: 0;
    }

    .nav ul {
        flex-direction: column;
        gap: 25px;
        width: 100%;
    }

    .header-action {
        display: none;
        /* Hide button on mobile, it can be added to nav if needed */
    }

    .hero-content {
        padding: 0 20px;
        margin-top: -60px;
        /* Pulled up further */
        gap: 40px;
    }

    .title {
        font-size: 42px;
        margin-bottom: 20px;
    }

    .description {
        font-size: 15px;
        max-width: 100%;
        margin-bottom: 30px;
    }

    .description br {
        display: none;
    }

    .actions {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .actions .btn {
        width: 100%;
    }

    .hero {
        padding-bottom: 60px;
        /* Reduce bottom padding on mobile since bar is not absolute */
    }

    .hero-feature-bar {
        position: relative;
        bottom: auto;
        left: auto;
        /* Reset left */
        right: auto;
        width: max-content;
        max-width: calc(100% - 40px);
        margin: 40px auto 0 auto;
        /* Center align with auto horizontal margins */
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 30px;
        overflow-x: visible;
        gap: 20px;
    }

    .feature-bar-item {
        flex: 1 1 auto;
        justify-content: flex-start;
        width: 100%;
    }
}

/* Section 2: Trusted Partner */
.trusted-partner-section {
    position: relative;
    width: 100%;
    min-height: 40vh;
    /* Reduced from 55vh to tighten the section */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 55px 20px 20px 20px;
    /* Reduced bottom padding */
    background-color: #f9f9f9;
    /* fallback */
    overflow: hidden;
}

.trusted-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.trusted-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 1000px;
    width: 100%;
    background: transparent;
}

.trusted-main-divider {
    margin: 5px 0;
}

.trusted-main-divider .line {
    width: 120px;
}

.trusted-title {
    font-size: 72px;
    line-height: 1.1;
    margin: 10px 0;
    font-family: var(--font-heading);
}

.trusted-title .title-black {
    color: #111;
    font-weight: 500;
}

.trusted-title .title-gold {
    color: #c89e52;
    /* gold color matching the image closely */
    font-weight: 500;
}

.trusted-desc {
    font-family: var(--font-body);
    font-size: 18px;
    color: #222;
    line-height: 1.8;
    margin: 20px 0 20px 0;
    /* Reduced bottom margin from 50px */
    max-width: 850px;
    font-weight: 400;
}

.trusted-features {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    /* Exact gap between items and dividers */
    width: auto;
    /* Allow to shrink to content */
    margin: 0 auto;
}

.trusted-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    /* Removed flex: 1 so they stay tightly packed */
    padding: 0 20px;
    /* Optional internal padding */
}

.trusted-icon {
    font-size: 48px !important;
    color: var(--primary-gold);
    font-weight: 300;
}

.trusted-feature-text {
    font-family: var(--font-body);
    font-size: 15px;
    color: #222;
    line-height: 1.4;
    font-weight: 500;
}

.trusted-divider {
    width: 1px;
    height: 60px;
    background-color: rgba(223, 177, 91, 0.5);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    color: var(--primary-gold);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 4px;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.section-title {
    font-size: 56px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #000;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.section-divider .line {
    width: 60px;
    height: 1px;
    background-color: var(--primary-gold);
}

.card-divider {
    margin-bottom: 15px;
    gap: 0;
}

.card-divider .line {
    width: 30px;
}

.card-divider .diamond-wrapper {
    background-color: var(--primary-gold);
}

.diamond-wrapper {
    width: 8px;
    height: 8px;
    transform: rotate(45deg);
    border: 1px solid var(--primary-gold);
    display: flex;
    justify-content: center;
    align-items: center;
}

.diamond-small {
    width: 4px;
    height: 4px;
    background-color: var(--primary-gold);
}

/* Responsive adjustments for Section 2 */
@media (max-width: 992px) {
    .trusted-features {
        flex-wrap: wrap;
        gap: 30px;
    }

    .trusted-feature-item {
        flex: 1 1 40%;
    }

    .trusted-divider {
        display: none;
    }

    .trusted-title {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .trusted-feature-item {
        flex: 1 1 100%;
    }

    .trusted-title {
        font-size: 36px;
    }

    .trusted-desc {
        font-size: 14px;
    }

    .trusted-desc br {
        display: none;
    }
}

/* Section 3: Our Services */
/* Section 3: Our Services */
.services-section {
    position: relative;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.services-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.services-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 2;
}

.services-top-divider {
    margin-bottom: 5px;
    /* Brought closer to heading */
}

.services-top-divider .line {
    width: 100px;
    height: 1px;
    background-color: var(--primary-gold);
}

.services-title {
    font-size: 72px;
    line-height: 1.1;
    margin: 10px 0;
    font-family: var(--font-heading);
}

.services-title .title-white {
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: inherit;
}

.services-title .title-gold {
    color: #c89e52;
    font-weight: 500;
    font-size: inherit;
}

.services-shiny-line {
    width: 100%;
    max-width: 300px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #c89e52 20%, #ffeaa7 50%, #c89e52 80%, transparent);
    box-shadow: 0 0 10px rgba(200, 158, 82, 0.6);
    margin: 5px auto 20px auto;
}

.services-desc {
    font-family: var(--font-body);
    font-size: 20px;
    color: #ffffff;
    line-height: 1.6;
    margin: 0 0 60px 0;
    font-weight: 300;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    width: 100%;
}

.service-card {
    background: linear-gradient(180deg, rgba(15, 15, 15, 0.7), rgba(5, 5, 5, 0.9));
    border: 1px solid rgba(184, 134, 11, 0.4);
    border-radius: 12px;
    padding: 30px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: calc(16.666% - 17px);
    min-width: 150px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    border-color: #b8860b;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5), 0 0 15px rgba(184, 134, 11, 0.4);
    transform: translateY(-5px);
}

.service-icon-wrapper {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 1px solid #b8860b;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    background: transparent;
}

.service-icon {
    font-size: 55px !important;
    color: #b8860b;
    font-weight: 200;
}

.service-card-title {
    font-family: var(--font-body);
    font-size: 16px;
    color: #b8860b;
    margin-bottom: 20px;
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
}

.service-card-shiny-line {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #b8860b 20%, #ffdf73 50%, #b8860b 80%, transparent);
    box-shadow: 0 0 10px rgba(184, 134, 11, 0.8);
    border-radius: 2px;
    margin: 0 auto;
}

@media (max-width: 1100px) {
    .service-card {
        width: calc(33.333% - 14px);
    }
}

@media (max-width: 850px) {
    .service-card {
        width: calc(50% - 10px);
    }
}

@media (max-width: 550px) {
    .service-card {
        width: 90%;
        max-width: 100%;
    }
}

/* Section 4: Featured Projects */
.featured-section {
    background-color: #fcfcfc;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.featured-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.featured-title {
    font-size: 72px;
    line-height: 1.1;
    margin: 5px 0 10px 0;
    font-family: var(--font-heading);
}

.featured-title .title-black {
    color: #222;
    font-weight: 500;
    font-size: inherit;
}

.featured-title .title-gold {
    color: #c89e52;
    font-weight: 500;
    font-size: inherit;
}

.featured-desc {
    font-family: var(--font-body);
    font-size: 20px;
    color: #333;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.featured-shiny-line {
    width: 100%;
    max-width: 300px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #c89e52 20%, #ffeaa7 50%, #c89e52 80%, transparent);
    box-shadow: 0 0 10px rgba(200, 158, 82, 0.6);
    margin: 0 auto 40px auto;
    border-radius: 2px;
}

.featured-grid-new {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    width: 100%;
}

.featured-card-new {
    background: #ffffff;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    width: calc(25% - 19px);
    min-width: 250px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.featured-img-new {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.featured-card-content {
    background-color: #ffffff;
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.featured-card-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid #c89e52;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.featured-card-icon-wrapper span {
    font-size: 32px !important;
    color: #c89e52;
    font-weight: 300;
}

.featured-card-title-new {
    font-family: var(--font-heading);
    font-size: 22px;
    color: #222;
    margin: 0 0 25px 0;
    font-weight: 500;
    line-height: 1.3;
}

.title-gold-light {
    color: #c89e52;
    font-weight: 500;
}

.featured-card-divider {
    margin-top: auto;
    width: 100%;
}

.featured-card-divider .line {
    width: 60px;
    height: 1px;
    background-color: #c89e52;
}

.featured-card-divider .diamond-wrapper {
    border-color: #c89e52;
}

.featured-card-divider .diamond-small {
    background-color: #c89e52;
}

@media (max-width: 1100px) {
    .featured-card-new {
        width: calc(33.333% - 14px);
        /* 3 columns */
    }
}

@media (max-width: 850px) {
    .featured-card-new {
        width: calc(50% - 10px);
        /* 2 columns */
    }
}

@media (max-width: 550px) {
    .featured-card-new {
        width: 100%;
        /* 1 column */
    }
}

/* Section 5: Our Presence */
.presence-section {
    background-color: #080808;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.presence-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.presence-title {
    font-size: 80px;
    line-height: 1.2;
    margin: 5px 0 10px 0;
    font-family: var(--font-heading);
}

.presence-title .title-white {
    color: #ffffff;
    font-weight: 500;
    font-family: var(--font-heading);
    font-size: inherit;
}

.presence-title .title-gold {
    color: var(--primary-gold);
    font-weight: 500;
    font-family: var(--font-heading);
    font-size: inherit;
}

.presence-shiny-line {
    margin-bottom: 20px;
}

.presence-desc {
    font-family: var(--font-body);
    font-size: 16px;
    color: #ffffff;
    line-height: 1.6;
    margin: 0 0 50px 0;
}

.presence-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
}

.presence-card-new {
    position: relative;
    border: 1px solid rgba(200, 158, 82, 0.4);
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    min-height: 200px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.presence-card-new:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: #c89e52;
    box-shadow: 0 10px 30px rgba(200, 158, 82, 0.2);
}

.presence-img-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.presence-card-content-new {
    position: relative;
    z-index: 2;
    padding: 30px 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
}

.presence-card-top {
    display: flex;
    align-items: center;
    gap: 15px;
}

.presence-icon-wrapper-new {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #c89e52;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.presence-icon-new {
    color: #c89e52;
    font-size: 24px !important;
}

.presence-title-wrapper {
    display: flex;
    flex-direction: column;
}

.presence-card-title-new {
    font-family: var(--font-heading);
    font-size: 22px;
    color: #ffffff;
    font-weight: 500;
    margin: 0 0 5px 0;
    line-height: 1.2;
    text-align: left;
}

.presence-card-divider-new {
    width: 30px;
    height: 1px;
    background-color: #c89e52;
}

.presence-card-desc-new {
    font-family: var(--font-body);
    font-size: 14px;
    color: #ffffff;
    line-height: 1.5;
    margin: 0;
    text-align: left;
    margin-left: 0;
}

@media (max-width: 992px) {
    .presence-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .presence-grid-new {
        grid-template-columns: 1fr;
        width: 100%;
    }
    
    .presence-card-new {
        min-height: auto;
    }
    
    .presence-title {
        font-size: 42px;
    }
}

/* Section 6: Our Process */
.process-section {
    background-color: #000000;
    padding: 60px 20px 80px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.process-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.process-title {
    font-size: 64px;
    line-height: 1.2;
    margin: 10px 0;
    font-family: var(--font-heading);
}

.process-title .title-white {
    color: #ffffff;
    font-weight: 500;
    font-family: var(--font-heading);
    font-size: inherit;
}

.process-title .title-gold {
    color: #c89e52;
    font-weight: 500;
    font-size: inherit;
}

.process-shiny-line {
    width: 100%;
    max-width: 300px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #c89e52 20%, #ffeaa7 50%, #c89e52 80%, transparent);
    box-shadow: 0 0 10px rgba(200, 158, 82, 0.6);
    margin: 10px auto 60px auto;
    border-radius: 2px;
}

.process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    flex-wrap: nowrap;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    max-width: 180px;
}

.process-icon-wrapper {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 1px solid #b8860b;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: transparent;
}

.process-step:hover .process-icon-wrapper {
    transform: translateY(-5px);
    box-shadow: 0 0 15px rgba(200, 158, 82, 0.4);
    background-color: rgba(200, 158, 82, 0.05);
}

.process-icon {
    font-size: 44px !important;
    color: #b8860b;
    font-weight: 300;
}

.process-step-label {
    font-family: var(--font-body);
    font-size: 20px;
    color: #b8860b;
    margin: 0 0 15px 0;
    font-weight: 500;
}

.process-step-line {
    width: 30px;
    height: 1px;
    background-color: #b8860b;
    margin-bottom: 20px;
}

.process-label {
    font-family: var(--font-body);
    font-size: 18px;
    color: #ffffff;
    font-weight: 400;
    line-height: 1.4;
    text-align: center;
    margin: 0;
}

.process-arrow-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    margin: 0 15px;
}

.process-arrow {
    color: #b8860b;
    font-size: 28px !important;
    font-weight: 300;
}

@media (max-width: 900px) {
    .process-steps {
        flex-wrap: wrap;
        gap: 30px;
    }

    .process-step {
        flex: 1 1 30%;
        max-width: 200px;
    }

    .process-arrow-wrapper {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .process-title {
        font-size: 42px;
    }

    .process-steps {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .process-step {
        flex: 1 1 100%;
        max-width: 100%;
        margin-bottom: 5px;
    }

    .process-icon-wrapper {
        margin-bottom: 10px;
    }

    .process-step-label {
        margin: 0 0 8px 0;
    }

    .process-step-line {
        margin-bottom: 10px;
    }
}

/* Section 7: About Us New */
.about-new-section {
    position: relative;
    padding: 60px 20px;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.about-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.about-new-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.about-divider-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    width: 100%;
}

.about-divider-bottom {
    margin-bottom: 40px;
    margin-top: 10px;
}

.about-line-gold {
    width: 60px;
    height: 1px;
    background-color: #c89e52;
}

.about-diamond-gold {
    width: 8px;
    height: 8px;
    background-color: #c89e52;
    transform: rotate(45deg);
    margin: 0 10px;
}

.about-new-subtitle {
    color: #c89e52;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 4px;
    font-family: var(--font-body);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.about-new-main-title {
    font-family: var(--font-heading);
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.about-new-main-title .title-black {
    color: #111111;
    font-weight: 500;
    font-size: inherit;
}

.about-new-main-title .title-gold {
    color: #c89e52;
    font-weight: 500;
    font-size: inherit;
}

.about-new-text-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    max-width: 800px;
}

.about-text-divider {
    width: 60px;
    height: 1px;
    background-color: rgba(200, 158, 82, 0.4);
}

.about-new-text {
    font-family: var(--font-body);
    font-size: 18px;
    color: #333333;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
    text-align: center;
}

@media (max-width: 768px) {
    .about-new-main-title {
        font-size: 34px;
    }

    .about-new-text {
        font-size: 16px;
    }

    .about-new-text br {
        display: none;
    }
}

.about-highlights-box {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #c89e52;
    border-radius: 8px;
    padding: 20px 40px;
    margin-top: 40px;
    margin-bottom: 25px;
    gap: 40px;
    background-color: transparent;
}

.about-highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-highlight-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #c89e52;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.about-highlight-icon span {
    font-size: 24px;
}

.about-highlight-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.highlight-label {
    font-size: 12px;
    color: #333333;
    font-weight: 700;
    letter-spacing: 1px;
}

.highlight-value {
    font-size: 15px;
    color: #c89e52;
    font-weight: 700;
}

.about-highlight-divider {
    width: 1px;
    height: 50px;
    background-color: rgba(200, 158, 82, 0.4);
}

.about-taglines {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
}

.tagline-black {
    font-size: 11px;
    font-weight: 700;
    color: #333333;
    letter-spacing: 2px;
    margin: 0;
}

.tagline-gold {
    font-size: 13px;
    font-weight: 700;
    color: #c89e52;
    letter-spacing: 2px;
    margin: 0;
}

.about-divider-final {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .about-highlights-box {
        flex-direction: column;
        padding: 25px;
        gap: 20px;
    }
    
    .about-highlight-divider {
        width: 100%;
        height: 1px;
    }
    
    .tagline-black {
        text-align: center;
        font-size: 10px;
        line-height: 1.4;
    }
    
    .tagline-gold {
        text-align: center;
        font-size: 11px;
        line-height: 1.4;
    }
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-section {
    position: relative;
    padding: 10px 40px;
    /* Reduced to absorb scaled gap */
    background-color: #000;
    color: #fff;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

.contact-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
    z-index: 1;
    opacity: 0.7;
}

.contact-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: -40px auto;
    /* Negative margin reduces physical block height */
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    transform: scale(0.80);
    /* Scales down the entire layout */
    transform-origin: center;
}

/* Left Column */
.contact-left {
    text-align: center;
}

.contact-logo {
    width: 100%;
    max-width: 470px;
    height: auto;
    margin: 0 auto 30px auto;
    display: block;
}

.contact-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0;
}

.contact-divider .line {
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(223, 177, 91, 0.7), transparent);
}

.contact-divider .diamond-small {
    width: 10px;
    height: 10px;
    background-color: transparent;
    border: 1px solid var(--primary-gold);
    transform: rotate(45deg);
    margin: 0 15px;
    box-shadow: 0 0 5px rgba(223, 177, 91, 0.5);
}

.contact-heading {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.text-gold {
    color: #c89e52;
}

.contact-subheading {
    font-size: 15px;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 40px;
}

.contact-features {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    border-right: 1px solid rgba(223, 177, 91, 0.3);
}

.feature-item.no-border {
    border-right: none;
}

.feature-item .gold-icon {
    font-size: 32px;
    color: var(--primary-gold);
    margin-bottom: 10px;
}

.feature-item span:not(.gold-icon) {
    font-size: 13px;
    color: #e0e0e0;
    line-height: 1.4;
}

.contact-call-action {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    gap: 20px;
}

.icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1.5px solid var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-circle span {
    color: var(--primary-gold);
    font-size: 24px;
}

.contact-call-action p {
    font-size: 14px;
    color: #ccc;
    line-height: 1.5;
    margin: 0;
}

/* Right Column: Form */
.form-box {
    border: 1px solid var(--primary-gold);
    border-radius: 12px;
    padding: 40px;
    background-color: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(10px);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.enquire-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    gap: 15px;
}

.enquire-title-wrapper .line-short {
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-gold));
}

.enquire-title-wrapper .line-short:last-child {
    background: linear-gradient(270deg, transparent, var(--primary-gold));
}

.enquire-title-wrapper .diamond-tiny {
    width: 6px;
    height: 6px;
    background-color: var(--primary-gold);
    transform: rotate(45deg);
}

.enquire-title {
    color: var(--primary-gold);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 0;
}

.form-main-heading {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.form-sub-heading {
    font-size: 14px;
    color: #cccccc;
}

.enquiry-form .input-group {
    position: relative;
    margin-bottom: 20px;
}

.enquiry-form .input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-gold);
    font-size: 20px;
    pointer-events: none;
}

.enquiry-form .textarea-icon {
    top: 20px;
    transform: none;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
    width: 100%;
    padding: 15px 15px 15px 50px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: #fff;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.enquiry-form select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.enquiry-form select option {
    background-color: #111;
    color: #fff;
}

.enquiry-form .select-group::after {
    content: '\e313';
    font-family: 'Material Symbols Outlined';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #cccccc;
    pointer-events: none;
    font-size: 20px;
}

.enquiry-form textarea {
    resize: none;
    padding-top: 20px;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
    border-color: var(--primary-gold);
    background-color: rgba(255, 255, 255, 0.05);
}

.no-arrow::-webkit-calendar-picker-indicator {
    display: none !important;
}

.submit-enquiry-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(90deg, #dfb15b, #fce2a3, #dfb15b);
    background-size: 200% auto;
    border: none;
    border-radius: 6px;
    color: #000;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.5s ease;
    margin-top: 10px;
}

.submit-enquiry-btn:hover {
    background-position: right center;
    box-shadow: 0 5px 15px rgba(223, 177, 91, 0.3);
}

.privacy-lock {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
    color: #999;
    margin-top: 20px;
    margin-bottom: 0;
}

.privacy-lock .lock-icon {
    font-size: 14px;
    color: var(--primary-gold);
}

/* Responsive Contact Section */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 40px 20px;
    }

    .contact-container {
        margin: 0 auto;
        transform: none;
        width: 100%;
    }

    .contact-left p br {
        display: none;
    }

    .contact-bg {
        object-fit: cover;
        /* crop the background image on mobile */
    }

    .form-box {
        padding: 30px 20px;
    }

    .contact-features {
        flex-wrap: wrap;
        gap: 20px;
    }

    .feature-item {
        flex: 1 1 40%;
        border-right: none;
        margin-bottom: 10px;
    }
}

/* Section 5.5: Connect Section */
.connect-section {
    background-color: #ffffff;
    padding: 50px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.connect-container {
    max-width: 800px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.connect-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 100%;
}

.connect-line-wrapper {
    display: flex;
    align-items: center;
    flex: 1;
}

.connect-line-wrapper.align-right {
    justify-content: flex-end;
}

.connect-line-wrapper.align-left {
    justify-content: flex-start;
}

.connect-line {
    height: 1px;
    background-color: rgba(223, 177, 91, 0.4);
    width: 100%;
    max-width: 120px;
}

.connect-diamond {
    margin: 0 10px;
    width: 7px;
    height: 7px;
    border: 1px solid var(--primary-gold);
    background: transparent;
}

.connect-title {
    font-family: var(--font-heading);
    font-size: 42px;
    color: #1a1a1a;
    font-weight: 600;
    margin: 0;
    white-space: nowrap;
}

.connect-title .title-gold {
    color: var(--primary-gold);
    font-size: inherit;
}

.connect-socials {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.connect-social-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    color: #ffffff;
    font-size: 24px;
    text-decoration: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.connect-social-icon:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

.connect-social-icon.instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.connect-social-icon.linkedin {
    background-color: #0077B5;
}

.connect-social-icon.facebook {
    background-color: #1877F2;
}

.connect-social-icon.youtube {
    background-color: #FF0000;
}

@media (max-width: 600px) {
    .connect-title {
        font-size: 28px;
        white-space: normal;
        text-align: center;
    }
    .connect-line-wrapper {
        display: none;
    }
    .connect-social-icon {
        width: 38px;
        height: 38px;
        font-size: 20px;
    }
}

/* Stats Strip Section */
.stats-strip-section {
    background-color: #ffffff;
    padding: 30px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.stats-strip-container {
    max-width: 1000px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stats-strip-top-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 30px;
    gap: 10px;
}

.stats-strip-line {
    flex-grow: 1;
    height: 1px;
    background-color: rgba(223, 177, 91, 0.3);
    max-width: 350px;
}

.stats-strip-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 20px;
}

.stats-strip-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.stats-strip-icon {
    font-size: 52px !important;
    color: var(--primary-gold);
    margin-bottom: 12px;
    font-weight: 300;
}

.stats-strip-number-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 8px 0;
}

.stats-strip-number {
    font-family: sans-serif;
    font-size: 38px;
    color: #1a1a1a;
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

.stats-strip-plus {
    font-family: sans-serif;
    font-size: 28px;
    color: #1a1a1a;
    font-weight: 700;
    margin-left: 2px;
    margin-top: 4px;
    line-height: 1;
}

.stats-strip-inner-line {
    width: 30px;
    height: 1.5px;
    background-color: var(--primary-gold);
    margin-bottom: 10px;
}

.stats-strip-text {
    font-family: var(--font-body);
    font-size: 13px;
    color: #555555;
    margin: 0;
    font-weight: 600;
}

.stats-strip-separator {
    width: 1px;
    height: 60px;
    background-color: rgba(223, 177, 91, 0.3);
}

@media (max-width: 768px) {
    .stats-strip-grid {
        flex-wrap: wrap;
        gap: 30px;
    }

    .stats-strip-item {
        flex: 1 1 40%;
    }

    .stats-strip-separator {
        display: none;
    }

    .stats-strip-top-divider {
        margin-bottom: 20px;
    }
}

/* ==========================================================================
   Footer Section
   ========================================================================== */
.footer-section {
    position: relative;
    padding: 80px 40px 30px;
    background-color: #000;
    color: #fff;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

.footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.8;
}

.footer-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1.5fr 2fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

/* Column 1 */
.footer-col-1 {
    position: relative;
    padding-right: 40px;
}

.footer-col-1::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 1px;
    background-color: rgba(223, 177, 91, 0.3);
}

.footer-logo {
    max-width: 260px;
    margin: 0 auto 25px auto;
    display: block;
}

.footer-desc {
    font-size: 14px;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: center;
}

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

.footer-contact-list li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-icon-wrapper {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.footer-icon-wrapper span {
    font-size: 18px;
    color: var(--primary-gold);
}

.footer-contact-text {
    font-size: 14px;
    color: #fff;
}

/* Column Headings */
.footer-heading-wrapper {
    margin-bottom: 25px;
}

.footer-heading-wrapper .zigzag {
    display: block;
    margin-bottom: 8px;
}

.footer-heading {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Links List */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    display: flex;
    align-items: flex-start;
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-chevron {
    color: var(--primary-gold);
    font-size: 18px;
    margin-right: 8px;
    margin-top: -2px;
}

/* Newsletter */
.newsletter-desc {
    font-size: 14px;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 25px;
}

.newsletter-form {
    display: flex;
    margin-bottom: 15px;
    align-items: stretch;
}

.input-wrapper {
    position: relative;
    flex: 1;
}

.input-wrapper .mail-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-gold);
    font-size: 18px;
}

.newsletter-form input {
    width: 100%;
    height: 100%;
    padding: 12px 12px 12px 45px;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
}

.newsletter-form input:focus {
    border-color: var(--primary-gold);
}

.newsletter-btn {
    background-color: var(--primary-gold);
    border: none;
    color: #000;
    padding: 0 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.newsletter-btn:hover {
    background-color: #fce2a3;
}

.privacy-text {
    font-size: 11px;
    color: #999;
}

/* Instagram Feed */
.instagram-feed img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
}

/* Footer Bottom */
.footer-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    gap: 0;
}

.footer-divider .line {
    flex: 1;
    height: 1px;
    background-color: rgba(223, 177, 91, 0.4);
}

.footer-divider .diamond-small {
    width: 12px;
    height: 12px;
    background-color: transparent;
    border: 1.5px solid var(--primary-gold);
    transform: rotate(45deg);
    margin: 0 15px;
}

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

.copyright {
    font-size: 13px;
    color: #cccccc;
}

.social-links {
    display: flex;
    align-items: center;
}

.follow-text {
    font-size: 14px;
    color: #fff;
    margin-right: 15px;
}

.social-separator {
    color: var(--primary-gold);
    margin-right: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(223, 177, 91, 0.3);
    color: var(--primary-gold);
    text-decoration: none;
    margin-left: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--primary-gold);
    color: #000;
}

/* Responsive Footer */
@media (max-width: 1200px) {
    .footer-top {
        grid-template-columns: 2fr 1fr 1fr 2fr 1.5fr;
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .footer-col-1 {
        grid-column: 1 / -1;
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid rgba(223, 177, 91, 0.3);
        padding-bottom: 40px;
        margin-bottom: 10px;
    }

    .footer-col-1::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
    }

    .social-separator {
        display: none;
    }
}

/* ==========================================================================
   Scroll Animations
   ========================================================================== */
.animate-on-scroll {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
}

.slide-up {
    transform: translateY(40px);
}

.slide-left {
    transform: translateX(40px);
}

.slide-right {
    transform: translateX(-40px);
}

.zoom-in {
    transform: scale(0.95);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Staggered delays */
.delay-100 {
    transition-delay: 100ms;
}

.delay-200 {
    transition-delay: 200ms;
}

.delay-300 {
    transition-delay: 300ms;
}

.delay-400 {
    transition-delay: 400ms;
}

@media (max-width: 768px) {
    .services-title,
    .featured-title {
        font-size: 36px;
    }
}

/* ==========================================================================
   Floating Action Button (FAB)
   ========================================================================== */
.fab-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 15px;
}

.fab-main {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-gold);
    color: #000;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(223, 177, 91, 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1000;
}

.fab-main:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(223, 177, 91, 0.6);
}

.fab-icon,
.fab-close {
    position: absolute;
    font-size: 28px;
    transition: all 0.3s ease;
}

.fab-close {
    opacity: 0;
    transform: rotate(-90deg) scale(0.5);
}

.fab-container.active .fab-icon {
    opacity: 0;
    transform: rotate(90deg) scale(0.5);
}

.fab-container.active .fab-close {
    opacity: 1;
    transform: rotate(0) scale(1);
}

.fab-options {
    display: flex;
    flex-direction: column-reverse;
    gap: 15px;
    position: absolute;
    bottom: 75px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
    transform: translateY(20px);
}

.fab-container.active .fab-options {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.fab-option {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #fff;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    font-size: 24px;
}

.fab-option.whatsapp {
    background-color: #25D366;
    color: #fff;
}

.fab-option.call {
    background-color: #1a73e8;
    color: #fff;
}

.fab-option:hover {
    transform: scale(1.1);
}

/* Delay animations for options */
.fab-option:nth-child(1) {
    transition-delay: 0.1s;
}

.fab-option:nth-child(2) {
    transition-delay: 0.05s;
}

.fab-container.active .fab-option:nth-child(1) {
    transition-delay: 0.05s;
}

.fab-container.active .fab-option:nth-child(2) {
    transition-delay: 0.1s;
}