: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: 100vh;
    height: auto;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding-bottom: 100px;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition: transform 1s ease-in-out;
}

.slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

/* Hero Content for Slide 1 */
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: white;
    z-index: 10;
    width: 100%;
    padding: 0 20px;
}

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

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

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

.hero-logo-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 5px;
    margin-top: -80px;
}

.hero-logo-img {
    width: 450px;
    max-width: 90vw;
    margin-bottom: 0px;
    filter: drop-shadow(0px 4px 10px rgba(0, 0, 0, 0.5));
    transition: transform 0.3s ease, filter 0.3s ease;
    cursor: pointer;
}

.hero-logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0px 6px 15px rgba(223, 177, 91, 0.4));
}

.hero-logo-text {
    font-family: var(--font-heading), 'Montserrat', sans-serif;
    font-size: 52px;
    font-weight: 600;
    letter-spacing: 4px;
    color: #dfb15b;
    /* Gold */
    margin: 0;
    text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
    font-family: var(--font-body), 'Montserrat', sans-serif;
    font-size: 28px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-weight: 500;
    text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.8);
    position: relative;
    padding: 15px 0;
    display: inline-block;
}

.hero-subtitle::before,
.hero-subtitle::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #dfb15b, transparent);
    box-shadow: 0 0 8px rgba(223, 177, 91, 0.8);
}

.hero-subtitle::before {
    top: 0;
}

.hero-subtitle::after {
    bottom: 0;
}

.gold-text {
    color: #dfb15b;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.hero-buttons .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-gold {
    background-color: #dfb15b;
    color: #000;
    border: 2px solid #dfb15b;
}

.btn-gold:hover {
    background-color: transparent;
    color: #dfb15b;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(223, 177, 91, 0.3);
}

.btn-outline-gold {
    background-color: rgba(0, 0, 0, 0.4);
    color: white;
    border: 2px solid #dfb15b;
}

.btn-outline-gold:hover {
    background-color: #dfb15b;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(223, 177, 91, 0.3);
}

/* Hero Content for Slide 2 */
.slide-2-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: -90px;
}

.slide2-subtitle {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    font-weight: 700;
    color: #dfb15b;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.slide2-line {
    width: 40px;
    height: 2px;
    background-color: #dfb15b;
}

.slide2-title {
    font-family: var(--font-heading), 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

.dark-green-text {
    color: #0c3823;
}

.gold-text-light {
    color: #dfb15b;
}

.slide2-desc {
    font-size: 18px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 40px;
    font-weight: 500;
}

.slide2-buttons {
    display: flex;
    gap: 20px;
}

.slide2-buttons .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.slide2-btn-gold {
    background-color: #dfb15b;
    color: #000;
    border: 2px solid #dfb15b;
}

.slide2-btn-gold:hover {
    background-color: transparent;
    color: #dfb15b;
    transform: translateY(-3px);
}

.slide2-btn-white {
    background-color: #fff;
    color: #000;
    border: 2px solid #ccc;
}

.slide2-btn-white:hover {
    background-color: #f0f0f0;
    border-color: #999;
    transform: translateY(-3px);
}

/* Hero Content for Slide 3 */
.slide-3-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: -30px;
}

.slide3-features-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.slide3-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
}

.slide3-feature .icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border: 2px solid #dfb15b;
    border-radius: 12px;
    color: #dfb15b;
    font-size: 28px;
}

.slide3-feature .feature-text {
    display: flex;
    flex-direction: column;
}

.slide3-feature .feature-title {
    font-size: 12px;
    font-weight: 700;
    color: #333;
    margin-bottom: 4px;
}

.slide3-feature .feature-desc {
    font-size: 14px;
    font-weight: 500;
    color: #555;
    line-height: 1.3;
}

/* Hero Content for Slide 4 */
.slide-4-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: -30px;
}

.slide4-subtitle {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    font-weight: 700;
    color: #0c1b33;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.slide4-title {
    font-family: var(--font-heading), 'Montserrat', sans-serif;
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.navy-blue-text {
    color: #0c1b33;
}

.slide4-separator {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
}

.slide4-separator .sep-line {
    width: 60px;
    height: 2px;
    background-color: #dfb15b;
}

.slide4-separator .sep-dot {
    width: 6px;
    height: 6px;
    background-color: #dfb15b;
    border-radius: 50%;
}

.slide4-desc {
    max-width: 800px;
    font-weight: 600;
}

.hero-features-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(10, 15, 25, 0.7);
    border: 1px solid #dfb15b;
    border-radius: 12px;
    padding: 20px 40px;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-features-strip .feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    border-right: none;
    transition: transform 0.3s ease, color 0.3s ease;
}

.hero-features-strip .feature-item:hover {
    transform: translateY(-5px);
    color: #dfb15b;
}

.hero-features-strip .feature-item i {
    font-size: 32px;
    color: #dfb15b;
    transition: transform 0.3s ease;
}

.hero-features-strip .feature-item:hover i {
    transform: scale(1.1);
}

.feature-divider {
    width: 1px;
    height: 40px;
    background-color: #dfb15b;
    opacity: 0.5;
}

@media (max-width: 992px) {
    .hero-features-strip {
        padding: 15px 20px;
    }

    .hero-features-strip .feature-item i {
        font-size: 24px;
    }

    .hero-features-strip .feature-item span {
        font-size: 12px;
    }

    .hero-logo-text {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 750px;
    }

    .hero-content {
        padding: 0 10px;
    }

    .hero-logo-img {
        width: 320px;
        margin-bottom: 5px;
    }

    .hero-logo-box {
        margin-top: -20px;
        margin-bottom: 10px;
    }

    .hero-features-strip {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        padding: 15px 10px;
        border-radius: 8px;
    }

    .hero-features-strip .feature-item {
        flex: 0 0 28%;
    }

    .feature-divider {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 250px;
        gap: 15px;
        margin: 0 auto 25px auto;
    }

    .hero-buttons .btn {
        padding: 10px;
        font-size: 14px;
    }

    .hero-logo-text {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 10px;
    }

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

    .slide2-desc {
        font-size: 14px;
        padding: 0 10px;
    }

    .slide2-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 250px;
        gap: 15px;
        margin: 0 auto;
    }

    .slide-3-content {
        margin-top: 50px;
    }

    .slide3-features-strip {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: flex-start;
        gap: 15px 10px;
        width: 100%;
    }

    .slide3-feature {
        width: 47%;
        max-width: none;
        flex-direction: row;
        text-align: left;
        gap: 8px;
        align-items: center;
    }

    .slide3-feature .icon-box {
        width: 40px;
        height: 40px;
        font-size: 18px;
        flex-shrink: 0;
    }

    .slide-4-content {
        margin-top: 50px;
    }

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

    .slide2-subtitle,
    .slide4-subtitle {
        gap: 4px;
        font-size: 10px;
        white-space: nowrap;
        justify-content: center;
        letter-spacing: 1px;
    }

    .slide2-line {
        width: 20px;
    }
}

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

@media (min-width: 993px) {
    .header {
        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);
    }
    
    .hero {
        margin-top: 100px;
    }
}

.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: 14px;
    font-weight: 500;
    color: var(--text-white);
    transition: color 0.3s ease;
}

.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: 1px;
    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-color: var(--primary-gold);
    color: #000;
    border: 1px solid var(--primary-gold);
}

.btn-primary:hover {
    background-color: var(--primary-gold-hover);
    border-color: var(--primary-gold-hover);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}

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

/* Main Content */

/* Left Content */
.content-left {
    max-width: 600px;
}

.subtitle {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    margin-top: 80px;
}

.subtitle-text {
    color: var(--primary-gold);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
}

.subtitle .line {
    width: 50px;
    height: 2px;
    background-color: var(--primary-gold);
}

.title {
    font-size: 72px;
    line-height: 1.1;
    font-weight: 600;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.divider {
    width: 40px;
    height: 2px;
    background-color: var(--primary-gold);
    margin-bottom: 30px;
}

.description {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 90%;
}

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

/* Right Content (Stats Card) */
.content-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.stats-card {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.7) 0%, rgba(10, 10, 10, 0.8) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 40px;
    width: 280px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    margin-top: 180px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(223, 177, 91, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.stat-text h3 {
    font-family: var(--font-body);
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 4px;
    letter-spacing: -0.5px;
}

.stat-text p {
    font-size: 12px;
    color: var(--text-gray);
    line-height: 1.4;
}

.stat-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 25px 0;
}

/* Scroll Down Indicator */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 10;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

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

.scroll-down span:not(.material-symbols-outlined) {
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.mouse-icon {
    font-size: 28px;
    font-weight: 200;
}

.arrow-icon {
    font-size: 20px;
    color: var(--primary-gold);
    animation: bounce 2s infinite;
}

@keyframes bounce {

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

    40% {
        transform: translateY(-5px);
    }

    60% {
        transform: translateY(-3px);
    }
}

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

    .header {
        padding: 0 40px;
    }
}

@media (max-width: 992px) {

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

    /* Removed old hero-content styles */

    .content-right {
        justify-content: flex-start;
        width: 100%;
    }

    .stats-card {
        display: flex;
        width: 100%;
        max-width: 100%;
        justify-content: space-between;
        padding: 30px;
        margin-top: 40px;
    }

    .stat-divider {
        width: 1px;
        height: auto;
        margin: 0 15px;
    }

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

    /* Removed old hero-content styles */

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

    .stats-card {
        flex-direction: column;
        gap: 20px;
        padding: 25px;
    }

    .stat-item {
        justify-content: flex-start;
    }

    .stat-divider {
        width: 100%;
        height: 1px;
        margin: 5px 0;
    }

    .scroll-down {
        bottom: 20px;
    }
}

/* Section 2: Verticals */
.verticals-section {
    background-color: #ffffff;
    color: #0a0a0a;
    padding: 40px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

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

.verticals-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    width: 100%;
    position: relative;
}

.vertical-card {
    position: relative;
    width: 50%;
    max-width: 500px;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
    border: 1px solid rgba(223, 177, 91, 0.4);
    background-color: #000;
}

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

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(26, 25, 25, 0.9) 0%,
            rgba(23, 23, 23, 0.8) 15%,
            transparent 30%,
            transparent 70%,
            rgba(23, 23, 23, 0.8) 85%,
            rgba(26, 25, 25, 0.9) 100%);
    z-index: 2;
    pointer-events: none;
}


.card-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    color: var(--text-white);
}

.card-logo img {
    height: 180px;
    object-fit: contain;
    margin-bottom: 10px;
}

.logo-subtext .main-text {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--primary-gold);
    margin-bottom: 5px;
}

.logo-subtext .sub-text {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--primary-gold);
}

.logo-subtext .mini-divider {
    width: 30px;
    height: 1px;
    background-color: var(--primary-gold);
    margin: 5px auto;
}

.logo-subtext .sub-text-small {
    font-size: 9px;
    letter-spacing: 2px;
    color: var(--primary-gold);
}

.card-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-line-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}

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

.card-line-divider .line:first-child {
    background: linear-gradient(to right, transparent, var(--primary-gold));
}

.card-line-divider .line:last-child {
    background: linear-gradient(to left, transparent, var(--primary-gold));
}

.card-line-divider .dot {
    width: 4px;
    height: 4px;
    background-color: var(--primary-gold);
    border-radius: 50%;
}

.card-desc {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--text-gray);
    width: 100%;
    text-align: center;
}

.btn-outline-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border: 1px solid var(--primary-gold);
    border-radius: 4px;
    color: var(--primary-gold);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    background-color: transparent;
}

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

.btn-outline-gold .material-symbols-outlined {
    font-size: 18px;
}

/* Center Diamond Icon */
.center-icon-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.center-diamond {
    width: 50px;
    height: 50px;
    background-color: #0a0a0a;
    border: 1px solid var(--primary-gold);
    transform: rotate(45deg);
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-building {
    transform: rotate(-45deg);
    /* un-rotate the icon */
    color: var(--primary-gold);
    font-size: 24px;
}

/* Responsive adjustments for Section 2 */
@media (max-width: 992px) {
    .verticals-container {
        flex-direction: column;
        align-items: center;
    }

    .vertical-card {
        width: 100%;
        max-width: 600px;
    }

    .center-icon-wrapper {
        position: static;
        transform: none;
        margin: -25px 0;
        z-index: 10;
    }
}

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

    .section-title {
        font-size: 40px;
    }
}

/* Section 3: Expertise */
.expertise-section {
    background-color: var(--bg-dark);
    padding: 100px 60px 30px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.text-white {
    color: var(--text-white) !important;
}

.expertise-section .section-header {
    margin-bottom: 50px;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    width: 100%;
    margin-bottom: 30px;
}

.expertise-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(223, 177, 91, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    background-color: #000;
}

.expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(223, 177, 91, 0.2);
}

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

.expertise-content {
    position: relative;
    z-index: 3;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.expertise-icon {
    color: var(--primary-gold);
    font-size: 64px !important;
    margin-bottom: 15px;
}

.expertise-title {
    color: var(--text-white);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.expertise-desc {
    color: var(--text-gray);
    font-size: 13px;
    line-height: 1.5;
    width: 100%;
}

.bottom-divider {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 20px;
}

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

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

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

/* Section 4: Why Choose Us */
.why-choose-section {
    background-color: #ffffff;
    padding: 100px 60px 50px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.why-choose-section .section-header {
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.text-black {
    color: #000000 !important;
}

.section-desc {
    color: #666666;
    font-size: 16px;
    margin-top: -10px;
    font-weight: 500;
}

.why-choose-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(223, 177, 91, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    background-color: #ffffff;
}

.why-choose-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.why-choose-icon {
    color: var(--primary-gold);
    font-size: 36px !important;
}

.why-choose-content {
    position: relative;
    z-index: 3;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.why-choose-title {
    color: #000000;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.why-choose-desc {
    color: #555555;
    font-size: 13px;
    line-height: 1.6;
    width: 100%;
}

@media (max-width: 768px) {
    .why-choose-section {
        padding: 60px 20px 30px 20px;
    }
}

/* Section 5: O2 Realty Ventures */
.ventures-section {
    position: relative;
    padding: 100px 60px;
    overflow: hidden;
    background-color: #000;
}

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

.ventures-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.ventures-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.ventures-title {
    font-size: 64px;
    font-weight: 500;
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
}

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

.ventures-divider {
    margin-bottom: 30px;
    gap: 8px;
    /* Slightly closer to the diamond */
}

.ventures-divider .line {
    width: 320px;
    /* Wide enough to match the text width */
}

.ventures-divider .line:first-child {
    background: linear-gradient(to right, transparent, var(--primary-gold));
}

.ventures-divider .line:last-child {
    background: linear-gradient(to left, transparent, var(--primary-gold));
}

.ventures-divider .diamond-small {
    background-color: var(--primary-gold);
    box-shadow: 0 0 10px 2px rgba(223, 177, 91, 0.4);
    border: none;
}

.ventures-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 40px;
}

.ventures-list li {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
}

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

.list-icon {
    font-size: 20px !important;
    color: var(--primary-gold);
    font-variation-settings: 'wght' 600;
}

.list-separator {
    width: 2px;
    height: 24px;
    background-color: var(--primary-gold);
    margin: 0 15px;
}

.list-text {
    font-size: 24px;
    font-family: 'Playfair Display', serif;
    color: var(--text-white);
    font-weight: 500;
}

.ventures-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 25px 12px 15px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-left: 150px;
}

.btn-icon-filled {
    width: 26px;
    height: 26px;
    background-color: var(--primary-gold);
    color: #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 12px;
}

.btn-icon-filled .material-symbols-outlined {
    font-size: 20px;
    font-weight: bold;
}

.ventures-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.ventures-image img {
    width: 100%;
    max-width: 439px;
    height: 569px;
    /* Force the exact height */
    object-fit: fill;
}

@media (max-width: 992px) {
    .ventures-container {
        flex-direction: column;
    }

    .ventures-content {
        align-items: center;
        text-align: center;
    }

    .ventures-list {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 320px;
        max-width: 100%;
        margin: 0 auto 40px auto;
    }

    .ventures-list li {
        justify-content: flex-start;
    }

    .list-text {
        text-align: left;
    }

    .ventures-btn {
        margin-left: 0;
    }

    .ventures-image {
        justify-content: center;
        margin-top: 40px;
    }
}

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

    .ventures-title {
        font-size: 40px;
        white-space: normal !important;
    }

    .ventures-divider .line {
        width: 150px;
    }

    .list-text {
        font-size: 20px;
    }
}

/* Section 6: About Us */
.about-section {
    padding: 50px 20px;
    background-color: #ffffff;
}

.about-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.about-title {
    font-size: 56px;
    font-weight: 500;
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
    margin: 25px 0;
}

.about-desc {
    font-size: 16px;
    color: #333333;
    line-height: 1.8;
    margin: 10px 0;
}

.about-bold-text {
    font-size: 16px;
    color: #000000;
    font-weight: 700;
    margin: 15px 0 25px 0;
}

.about-short-divider .line {
    width: 30px;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 10px 0 0px 0;
}

.about-list li {
    font-size: 16px;
    color: #333333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-list .bullet {
    width: 6px;
    height: 6px;
    background-color: var(--primary-gold);
    border-radius: 50%;
    display: inline-block;
    margin-right: 12px;
}

.font-bold {
    font-weight: 700;
}

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

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

    .about-desc,
    .about-bold-text {
        font-size: 14px;
    }

    .about-list li {
        font-size: 14px;
        align-items: flex-start;
        text-align: center;
        gap: 5px;
    }

    .about-company {
        flex: 1;
    }

    .about-service {
        flex: 1;
    }

    .about-list .bullet {
        margin-top: 6px;
        margin-right: 5px;
    }
}

/* ==========================================================================
   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 {
    max-width: 300px;
    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: 0px 20px;
    }

    .contact-container {
        margin: -80px auto;
        /* reduce height significantly on mobile */
    }

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

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

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

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

/* ==========================================================================
   Video Section
   ========================================================================== */
.video-section {
    padding: 60px 20px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

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