: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;
}

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

/* 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: 100vw;
    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;
    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: 13px;
    font-weight: 400;
    color: #e0e0e0;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
}

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

.nav a.active {
    position: relative;
}

.nav a.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-gold);
}

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

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

.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: 20px;
}

/* 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 {
    line-height: 1.2;
    margin-bottom: 25px;
    margin-top: 60px;
}

.title-white {
    font-family: var(--font-body);
    font-size: 48px;
    font-weight: 300;
    color: #ffffff;
}

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

.divider {
    width: 60px;
    height: 1px;
    background-color: var(--primary-gold);
    margin-bottom: 25px;
}

.description {
    color: #e0e0e0;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 600px;
    font-weight: 300;
}

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

.hero-feature-bar {
    position: absolute;
    bottom: 20px;
    left: 60px;
    right: 60px;
    width: auto;
    max-width: calc(100% - 120px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(10, 10, 10, 0.85);
    border: 1px solid rgba(223, 177, 91, 0.4);
    border-radius: 8px;
    padding: 25px 40px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 10;
    overflow-x: auto;
    /* Prevent cutoff on smaller screens */
    white-space: nowrap;
}

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

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

.feature-text {
    color: #fff;
    font-size: 15px;
    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 {
        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: 48px;
        margin-bottom: 20px;
    }

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

    .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: 100vw;
    min-height: 55vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 55px 20px;
    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: 15px 0;
}

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

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

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

.trusted-title .title-gold {
    color: var(--primary-gold);
    font-weight: 500;
}

.trusted-desc {
    font-family: var(--font-body);
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin: 30px 0 50px 0;
    max-width: 700px;
}

.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;
    }
}

/* Section 3: Our Services */
.services-section {
    background-color: #050505;
    /* Deep dark background */
    padding: 40px 20px 50px 20px;
    /* Reduced from 80/100 to reduce height */
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.services-title {
    font-size: 56px;
    line-height: 1.2;
    margin: 15px 0;
    font-family: var(--font-heading);
}

.services-title .title-white {
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 500;
    /* Match Services word */
}

.services-title .title-gold {
    color: var(--primary-gold);
    font-weight: 500;
}

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

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

.service-card {
    background: linear-gradient(180deg, #111111, #080808);
    border: 1px solid rgba(223, 177, 91, 0.3);
    border-radius: 8px;
    padding: 25px 15px;
    /* Reduced padding to reduce height */
    display: flex;
    flex-direction: column;
    align-items: center;
    width: calc(23% - 15px);
    /* Reduced width percentage */
    max-width: 250px;
    /* Force smaller width */
    min-width: 210px;
    /* Reduced min width */
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(223, 177, 91, 0.8);
}

.service-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    /* Gradient border implementation */
    background: linear-gradient(135deg, var(--primary-gold), #000000, var(--primary-gold));
    padding: 1px;
    /* 1px border thickness */
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.service-icon-wrapper::before {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    background-color: #0c0c0c;
    /* Matches the card background */
    border-radius: 50%;
    z-index: -1;
}

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

.service-card-divider {
    width: 30px;
    height: 1px;
    background-color: var(--primary-gold);
    margin-bottom: 20px;
    display: none;
    /* Only show if explicitly requested, as it is not in the image, but user asked for 'line between icons and text content' - wait, maybe they meant NO line? Let's leave it, actually let's show it since they asked for it */
    display: block;
}

.service-card-title {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--primary-gold);
    margin-bottom: 10px;
    font-weight: 500;
}

.service-card-desc {
    font-family: var(--font-body);
    font-size: 12px;
    color: #dddddd;
    line-height: 1.4;
}

@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 Properties */
.featured-section {
    background-color: #ffffff;
    padding: 40px 20px 40px 20px;
    /* Reduced from 60px 20px 80px 20px to reduce height */
    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: 50px;
    line-height: 1.2;
    margin: 5px 0;
    font-family: var(--font-heading);
}

.featured-title .title-black {
    color: #000000;
    font-weight: 500;
}

.featured-title .title-gold {
    color: var(--primary-gold);
    font-weight: 500;
}

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

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

.featured-card {
    background: #ffffff;
    border: 1px solid rgba(223, 177, 91, 0.5);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    width: calc(25% - 15px);
    /* 4 columns on large screens */
    min-width: 250px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.featured-card-bottom {
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
}

.featured-card-title-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.featured-icon {
    color: var(--primary-gold);
    font-size: 24px !important;
}

.featured-card-title {
    font-family: var(--font-body);
    font-size: 15px;
    color: #000000;
    font-weight: 500;
    margin: 0;
}

.featured-arrow {
    color: var(--primary-gold);
    font-size: 20px !important;
}

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

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

@media (max-width: 550px) {
    .featured-card {
        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: 50px;
    line-height: 1.2;
    margin: 5px 0;
    font-family: var(--font-heading);
}

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

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

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

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

.presence-card {
    background: linear-gradient(180deg, #151515 0%, #0a0a0a 100%);
    border: 1px solid rgba(223, 177, 91, 0.3);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    width: calc(25% - 15px);
    /* 4 columns */
    min-width: 250px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.presence-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(223, 177, 91, 0.15);
    border-color: rgba(223, 177, 91, 0.8);
}

.presence-img {
    width: 100%;
    height: 130px;
    object-fit: cover;
}

.presence-card-content {
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    flex-grow: 1;
}

.presence-card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.presence-icon {
    color: var(--primary-gold);
    font-size: 22px !important;
}

.presence-card-title {
    font-family: var(--font-heading);
    font-size: 22px;
    color: #ffffff;
    font-weight: 500;
    margin: 0;
}

.presence-card-desc {
    font-family: var(--font-body);
    font-size: 13px;
    color: #cccccc;
    line-height: 1.5;
    margin: 0 0 15px 0;
    flex-grow: 1;
}

.presence-card-divider {
    width: 30px;
    height: 1px;
    background-color: var(--primary-gold);
    margin-bottom: 15px;
}

.presence-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 10px 15px;
    border: 1px solid rgba(223, 177, 91, 0.5);
    border-radius: 4px;
    background-color: transparent;
    text-decoration: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    box-sizing: border-box;
}

.presence-btn:hover {
    background-color: rgba(223, 177, 91, 0.1);
    border-color: var(--primary-gold);
}

.presence-btn-text {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--primary-gold);
    font-weight: 500;
}

.presence-btn-arrow {
    color: var(--primary-gold);
    font-size: 18px !important;
}

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

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

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

/* Section 6: About Us */
/* 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;
    }
}

/* Section 6: Our Process */
.process-section {
    background-color: #000000;
    padding: 30px 20px 40px 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: 56px;
    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);
}

.process-title .title-gold {
    color: var(--primary-gold);
    font-weight: 500;
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
    width: 100%;
    flex-wrap: nowrap;
}

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

.process-number {
    font-family: var(--font-body);
    font-size: 26px;
    font-weight: 600;
    color: var(--primary-gold);
    margin-bottom: 25px;
}

.process-icon-wrapper {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #b8860b, #050505, #b8860b);
    padding: 1.5px;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 20px rgba(184, 134, 11, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover .process-icon-wrapper {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 0 30px rgba(184, 134, 11, 0.7);
}

.process-icon-wrapper::before {
    content: '';
    position: absolute;
    top: 1.5px;
    left: 1.5px;
    right: 1.5px;
    bottom: 1.5px;
    background-color: #000000;
    border-radius: 50%;
    z-index: -1;
}

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

.process-vertical-line {
    width: 1px;
    height: 40px;
    background-image: linear-gradient(to bottom, var(--primary-gold) 40%, transparent 40%);
    background-size: 1px 8px;
    margin: 10px 0;
    position: relative;
}

.process-dot {
    position: absolute;
    bottom: -6px;
    left: -3.5px;
    width: 8px;
    height: 8px;
    background-color: var(--primary-gold);
    border-radius: 50%;
}

.process-label {
    font-family: var(--font-body);
    font-size: 15px;
    color: #ffffff;
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
    margin-top: 5px;
}

.process-arrow {
    color: var(--primary-gold);
    font-size: 24px !important;
    margin-bottom: 40px;
    margin-top: 5px;
    flex-shrink: 0;
}

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

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

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

@media (max-width: 550px) {
    .process-step {
        flex: 1 1 100%;
        margin-bottom: 20px;
    }
}

/* Section 7: About Us New */
.about-new-section {
    position: relative;
    padding: 30px 20px;
    background-image: url('assets/sec7-back.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.about-new-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 5px;
}

.diamond-tiny {
    width: 8px;
    height: 8px;
    border: 1px solid var(--primary-gold);
    transform: rotate(45deg);
    margin-bottom: 10px;
}

.about-new-subtitle-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.about-new-subtitle-wrapper .line-gold {
    width: 60px;
    height: 1px;
    background-color: var(--primary-gold);
}

.about-new-subtitle {
    color: var(--primary-gold);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 4px;
    font-family: var(--font-body);
}

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

.about-new-main-title .title-black {
    color: #1a1a1a;
    font-weight: 600;
}

.about-new-main-title .title-gold {
    color: var(--primary-gold);
    font-weight: 600;
}

.line-light {
    width: 60px;
    height: 1px;
    background-color: rgba(223, 177, 91, 0.4);
}

.diamond-wrapper-light {
    width: 8px;
    height: 8px;
    transform: rotate(45deg);
    border: 1px solid rgba(223, 177, 91, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
}

.diamond-small-light {
    width: 4px;
    height: 4px;
    background-color: rgba(223, 177, 91, 0.4);
}

.about-new-content-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 5px 0;
    transition: transform 0.3s ease;
}

.about-new-content-block:hover {
    transform: translateY(-5px);
}

.about-new-icon {
    font-size: 42px !important;
    color: var(--primary-gold);
    margin-bottom: 10px;
    margin-top: 5px;
    transition: transform 0.3s ease;
}

.about-new-content-block:hover .about-new-icon {
    transform: scale(1.1);
}

.about-new-text {
    font-family: var(--font-body);
    font-size: 16px;
    color: #333333;
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 500;
}

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

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

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

/* ==========================================================================
   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;
}

.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;
    }
}

/* ==========================================================================
   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;
}

/* 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 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;
}

/* ==========================================================================
   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;
}