/* ============ RESET & VARIABLES ============ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #c9a94e;
    --gold-light: #d4b85a;
    --gold-dark: #b8953d;
    --dark: #1a1a1a;
    --white: #ffffff;
    --header-bg: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent);
    --hero-overlay: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    --btn-gradient: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ============ HEADER ============ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--header-bg);
    transition: background 0.3s ease;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    text-decoration: none;
    color: inherit;
}

.logo-img {
    height: 72px;
    width: auto;
}

.logo-slogan {
    font-family: 'Playfair Display', serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

/* ============ NAVIGATION ============ */
.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.7rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
    background: rgba(201, 169, 78, 0.2);
    color: var(--gold);
}

.cta-btn {
    background: linear-gradient(
        135deg,
        #f5e7a3 0%,
        #d4b85a 25%,
        #c9a94e 45%,
        #f9efc0 55%,
        #b8953d 75%,
        #e8d488 100%
    );
    background-size: 200% auto;
    color: var(--dark);
    padding: 0.8rem 1.5rem;
    border: 2px solid var(--gold);
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: inset 0 2px 6px rgba(255, 255, 255, 0.45), inset 0 -2px 6px rgba(0, 0, 0, 0.25);
}

.cta-btn:hover {
    background-position: right center;
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow:
        0 0 0 2px var(--gold),
        0 0 18px rgba(255, 255, 255, 0.7),
        0 0 36px rgba(255, 255, 255, 0.4),
        inset 0 2px 6px rgba(255, 255, 255, 0.45),
        inset 0 -2px 6px rgba(0, 0, 0, 0.25);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ============ MOBILE NAV ============ */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.3rem;
    padding: 0.8rem 2rem;
    transition: color 0.3s;
}

.mobile-nav a:hover {
    color: var(--gold);
}

.mobile-cta {
    margin-top: 1rem;
    font-size: 1.1rem;
}

.close-menu {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
}

/* ============ HERO ============ */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('backround_img.jpeg') center/cover no-repeat;
    padding: 0 1rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--hero-overlay);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 0 1rem;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    background: linear-gradient(
        135deg,
        #f5e7a3 0%,
        #d4b85a 25%,
        #c9a94e 45%,
        #f9efc0 55%,
        #b8953d 75%,
        #e8d488 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    filter:
        drop-shadow(0 0 12px rgba(201, 169, 78, 0.55))
        drop-shadow(0 0 24px rgba(201, 169, 78, 0.35))
        drop-shadow(0 2px 4px rgba(0, 0, 0, 0.25));
    animation: goldShine 4s linear infinite;
}

@keyframes goldShine {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.hero-subtitle {
    font-size: 1.05rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    letter-spacing: 1px;
}

.hero-subtitle .sep {
    margin: 0 0.5rem;
    color: var(--gold);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btn {
    background: transparent;
    color: var(--gold);
    padding: 1rem 2rem;
    border: 2px solid var(--gold);
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    position: relative;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    background: var(--gold);
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow:
        0 0 0 2px var(--gold),
        0 0 25px rgba(201, 169, 78, 0.8),
        0 0 50px rgba(201, 169, 78, 0.4);
}

.hero-btn-icon {
    font-size: 1.2rem;
}

.btn-star {
    font-size: 0.9rem;
    color: var(--gold);
    position: absolute;
    top: -0.45rem;
    right: -0.45rem;
    pointer-events: none;
    animation: twinkle 1.5s ease-in-out infinite;
}

.hero-btn:hover .btn-star,
.cta-btn:hover .btn-star {
    color: var(--dark);
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.4;
        transform: scale(0.8) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(1.2) rotate(20deg);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 2rem;
    color: var(--white);
    opacity: 0.7;
}

/* ============ ANIMATIONS ============ */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============ INNER PAGE HERO ============ */
.page-hero {
    height: 50vh;
    min-height: 350px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: center/cover no-repeat;
    padding: 0 1rem;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.6) 0%,
        rgba(0,0,0,0.4) 50%,
        rgba(0,0,0,0.7) 100%
    );
}

.page-hero .hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 0 1rem;
    animation: fadeInUp 1s ease-out;
}

.page-hero .hero-title {
    font-size: 3.5rem;
}

/* ============ CONTENT SECTION ============ */
.content-section {
    padding: 5rem 8%;
    background: var(--dark);
}

.content-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--gold);
    margin-bottom: 2rem;
    text-align: center;
}

.content-section p {
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 1.5rem;
    text-align: center;
}

/* ============ WHO WE ARE ============ */
.who-we-about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.who-we-about .text {
    color: #ccc;
    font-size: 1.05rem;
    line-height: 1.8;
    text-align: left;
}

.who-we-about .text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.who-we-about .image {
    border-radius: 12px;
    overflow: hidden;
}

.who-we-about .image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid var(--gold);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.stat-card {
    text-align: center;
    padding: 2rem 1rem;
    border: 1px solid rgba(201, 169, 78, 0.3);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(201, 169, 78, 0.2);
}

.stat-card .number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--gold);
    font-weight: 700;
}

.stat-card .label {
    font-size: 0.95rem;
    color: #aaa;
    margin-top: 0.5rem;
}

/* ============ BUSINESS DIVISION ============ */
.division-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.division-card {
    padding: 2.5rem 1.8rem;
    border: 1px solid rgba(201, 169, 78, 0.3);
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.division-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(201, 169, 78, 0.15);
}

.division-card .icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.division-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 0.8rem;
}

.division-card p {
    font-size: 0.95rem;
    color: #aaa;
    line-height: 1.7;
    text-align: center;
}

/* ============ WHY KINGDOM ============ */
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.why-card {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 2rem;
    border: 1px solid rgba(201, 169, 78, 0.3);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.why-card:hover {
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(201, 169, 78, 0.15);
}

.why-card .why-icon {
    font-size: 1.8rem;
    color: var(--gold);
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gold);
    border-radius: 50%;
}

.why-card .why-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.why-card .why-text p {
    font-size: 0.95rem;
    color: #aaa;
    line-height: 1.7;
    text-align: left;
}

/* ============ WHO WE ARE SECTION ============ */
.who-we-are-section {
    display: flex;
    background: #faf8f2;
    min-height: 80vh;
}

.wwa-left {
    flex: 1;
    padding: 5rem 5%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.wwa-decor {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 60px;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 18px,
        rgba(201, 169, 78, 0.15) 18px,
        rgba(201, 169, 78, 0.15) 19px
    );
    pointer-events: none;
}

.wwa-content {
    padding-left: 1.5rem;
    margin-bottom: 2.5rem;
}

.wwa-tag {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.wwa-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.wwa-desc {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.75;
    margin-bottom: 1rem;
    max-width: 520px;
}

.wwa-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    padding-left: 1.5rem;
    max-width: 500px;
}

.wwa-card {
    background: #fff;
    border: 1px solid rgba(201, 169, 78, 0.25);
    border-radius: 12px;
    padding: 1.8rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s ease;
}

.wwa-card:hover {
    border-color: var(--gold);
    box-shadow: 0 4px 20px rgba(201, 169, 78, 0.15);
}

.wwa-card-icon {
    color: var(--gold);
    margin-bottom: 0.8rem;
}

.wwa-card-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.4;
}

.wwa-right {
    width: 50%;
    position: relative;
    overflow: hidden;
}

.wwa-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ============ WHY KINGDOM GROUP ============ */
.why-section {
    background: #faf8f2;
    padding: 5rem 8%;
    position: relative;
}

.why-decor-left {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 60px;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 18px,
        rgba(201, 169, 78, 0.15) 18px,
        rgba(201, 169, 78, 0.15) 19px
    );
    pointer-events: none;
}

.why-decor-right {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 60px;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 18px,
        rgba(201, 169, 78, 0.15) 18px,
        rgba(201, 169, 78, 0.15) 19px
    );
    pointer-events: none;
}

.why-heading {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 700;
    text-align: center;
    color: var(--dark);
    margin-bottom: 1rem;
}

.why-subtitle {
    text-align: center;
    font-size: 1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.why-card {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.8rem 1.5rem;
    background: #fff;
    border: 1px solid rgba(201, 169, 78, 0.25);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.why-card:hover {
    border-color: var(--gold);
    box-shadow: 0 4px 20px rgba(201, 169, 78, 0.15);
}

.why-card-icon {
    color: var(--gold);
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-card-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.3rem;
}

.why-card-text p {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.5;
}

/* ============ OUR BUSINESS DIVISIONS ============ */
.biz-div-section {
    min-height: 100vh;
    background: linear-gradient(180deg, #0a0a0a 0%, #111 50%, #0a0a0a 100%);
    padding: 6rem 4%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.biz-div-decor-left {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 80px;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 28px,
        rgba(201, 169, 78, 0.1) 28px,
        rgba(201, 169, 78, 0.1) 29px
    );
    pointer-events: none;
}

.biz-div-decor-right {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 80px;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 28px,
        rgba(201, 169, 78, 0.1) 28px,
        rgba(201, 169, 78, 0.1) 29px
    );
    pointer-events: none;
}

.biz-div-sparkle {
    position: absolute;
    bottom: 2rem;
    right: 3rem;
    color: var(--gold);
    font-size: 1.5rem;
    opacity: 0.5;
    animation: twinkle 2s ease-in-out infinite;
}

.biz-div-heading {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #f5e7a3, #d4b85a, #c9a94e, #b8953d);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.biz-div-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.2rem;
    width: 100%;
    max-width: 1200px;
}

.biz-div-card {
    background: linear-gradient(
        160deg,
        #2a2010 0%,
        #1a1508 30%,
        #2a2010 50%,
        #1a1508 70%,
        #2a2010 100%
    );
    border: 1px solid rgba(201, 169, 78, 0.4);
    border-radius: 14px;
    padding: 2rem 1.2rem 1.8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow:
        inset 0 1px 0 rgba(245, 231, 163, 0.15),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3),
        0 4px 20px rgba(0, 0, 0, 0.4);
}

.biz-div-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.6;
}

.biz-div-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.6;
}

.biz-div-card:hover {
    border-color: var(--gold);
    transform: translateY(-6px);
    box-shadow:
        inset 0 1px 0 rgba(245, 231, 163, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3),
        0 0 25px rgba(201, 169, 78, 0.3),
        0 0 50px rgba(201, 169, 78, 0.15),
        0 10px 30px rgba(0, 0, 0, 0.4);
}

.biz-div-icon {
    color: var(--gold);
    margin-bottom: 1.2rem;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.biz-div-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.biz-div-card p {
    font-size: 0.85rem;
    color: #999;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.biz-div-btn {
    display: inline-block;
    padding: 0.6rem 1.4rem;
    border: 1px solid var(--gold);
    border-radius: 20px;
    color: var(--gold);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.biz-div-btn:hover {
    background: var(--gold);
    color: var(--dark);
    box-shadow: 0 0 15px rgba(201, 169, 78, 0.4);
}

/* ============ EXPLORE OPPORTUNITIES ============ */
.explore-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('backround_img.jpeg') center/cover no-repeat;
    padding: 5rem 4%;
}

.explore-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
}

.explore-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1100px;
}

.explore-heading {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 700;
    text-align: center;
    color: var(--gold);
    margin-bottom: 3rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.explore-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.explore-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.25),
        inset 0 -1px 0 rgba(255, 255, 255, 0.15),
        inset 1px 0 0 rgba(255, 255, 255, 0.2),
        inset -1px 0 0 rgba(255, 255, 255, 0.2),
        0 0 20px rgba(255, 255, 255, 0.15),
        0 0 40px rgba(255, 255, 255, 0.08),
        0 0 8px rgba(255, 255, 255, 0.2) inset;
}

.explore-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1.8rem;
    line-height: 1.3;
}

.explore-list {
    list-style: none;
    margin-bottom: 2rem;
}

.explore-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.7rem 0;
    font-size: 1rem;
    color: #ddd;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.explore-list li:last-child {
    border-bottom: none;
}

.explore-icon {
    color: var(--gold);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.explore-card-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border: 1px solid var(--gold);
    border-radius: 25px;
    color: var(--gold);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.explore-card-btn:hover {
    background: var(--gold);
    color: var(--dark);
    box-shadow: 0 0 20px rgba(201, 169, 78, 0.4);
}

/* ============ PARALLAX SECTIONS ============ */
.parallax-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

.parallax-1 {
    background-image: url('assets/6.jpeg');
}

.parallax-2 {
    background-image: url('assets/7.jpeg');
}

.parallax-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.parallax-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 4rem 2rem;
    text-align: center;
}

.parallax-heading {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

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

.parallax-divider {
    width: 300px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto 1.5rem;
}

.parallax-text {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

.parallax-sparkle {
    position: absolute;
    bottom: 2rem;
    right: 3rem;
    color: var(--gold);
    font-size: 1.5rem;
    opacity: 0.5;
    z-index: 1;
    animation: twinkle 2s ease-in-out infinite;
}

/* Parallax 2 - Center Card */
.parallax-content-center {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 4rem 2rem;
}

.parallax-card {
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(201, 169, 78, 0.2);
    border-radius: 16px;
    padding: 3rem 3.5rem;
    max-width: 650px;
    text-align: center;
    position: relative;
}

.parallax-logo {
    color: var(--gold);
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.parallax-logo i {
    font-size: 1.8rem;
}

.parallax-logo span {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    line-height: 1.2;
    letter-spacing: 2px;
}

.parallax-heading-2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.parallax-text-2 {
    font-size: 0.95rem;
    color: #bbb;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.parallax-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.parallax-btn-gold {
    padding: 0.9rem 2rem;
    background: linear-gradient(135deg, #f5e7a3, #d4b85a, #c9a94e, #b8953d);
    color: var(--dark);
    border: none;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.parallax-btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 169, 78, 0.4);
}

.parallax-btn-outline {
    padding: 0.9rem 2rem;
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.parallax-btn-outline:hover {
    background: var(--gold);
    color: var(--dark);
    box-shadow: 0 8px 25px rgba(201, 169, 78, 0.4);
}

.parallax-card-bottom-line {
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    position: absolute;
    bottom: 0;
    left: 0;
    border-radius: 0 0 16px 16px;
}

/* ============ FOOTER ============ */
.site-footer {
    background: #0a0a0a;
    color: #ccc;
    padding-top: 4rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 2.5rem;
    padding: 0 6% 3rem;
    border-bottom: 1px solid rgba(201, 169, 78, 0.15);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 40px;
    width: auto;
}

.footer-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gold);
}

.footer-about p {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.7;
}

.footer-col h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    color: #888;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--gold);
}

.social-icons {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.social-icons a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(201, 169, 78, 0.4);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold);
}

.newsletter-form {
    display: flex;
    gap: 0;
    margin-bottom: 0.8rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.7rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(201, 169, 78, 0.3);
    border-right: none;
    border-radius: 6px 0 0 6px;
    color: #fff;
    font-size: 0.85rem;
    outline: none;
}

.newsletter-form input::placeholder {
    color: #666;
}

.newsletter-form button {
    padding: 0.7rem 1.2rem;
    background: linear-gradient(135deg, #f5e7a3, #d4b85a, #c9a94e);
    color: var(--dark);
    border: none;
    border-radius: 0 6px 6px 0;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    box-shadow: 0 4px 15px rgba(201, 169, 78, 0.4);
}

.newsletter-note {
    font-size: 0.75rem;
    color: #666;
    line-height: 1.5;
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 6%;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: #666;
}

.footer-bottom a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* ============ CHOOSE YOUR REQUIREMENT ============ */
.choose-section {
    background: #fff;
    padding: 5rem 4% 0;
    position: relative;
    overflow: hidden;
}

.choose-heading {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    color: var(--dark);
    margin-bottom: 3rem;
}

.choose-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.choose-card {
    background: #fff;
    border: 1px solid rgba(201, 169, 78, 0.3);
    border-radius: 12px;
    padding: 0.8rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.choose-card:hover {
    border-color: var(--gold);
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(201, 169, 78, 0.2);
}

.choose-card-img {
    width: 100%;
    height: 160px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.choose-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.choose-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.choose-card-icon {
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

.choose-bg-image {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-top: -2rem;
    position: relative;
    z-index: 1;
}

.choose-bg-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    mask-image: linear-gradient(to bottom, transparent 0%, black 30%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 30%);
}

.choose-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

.choose-scroll i {
    font-size: 2rem;
    color: #fff;
    opacity: 0.8;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.choose-sparkle {
    position: absolute;
    bottom: 2rem;
    right: 3rem;
    color: var(--gold);
    font-size: 1.5rem;
    z-index: 3;
    animation: twinkle 2s ease-in-out infinite;
}

@media (max-width: 1024px) {
    .choose-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .choose-heading {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .choose-heading {
        font-size: 2rem;
    }
    .choose-card-img {
        height: 120px;
    }
    .choose-bg-image img {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .choose-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
    }
    .choose-heading {
        font-size: 1.6rem;
    }
}

/* ============ AGRICULTURAL LAND SERVICES ============ */
.agri-section {
    background: linear-gradient(180deg, #0a0a0a 0%, #111 50%, #0a0a0a 100%);
    padding: 5rem 4% 3rem;
    position: relative;
    overflow: hidden;
}

.agri-marble-left {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 120px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 800"><path d="M0 0 Q60 200 0 400 Q60 600 0 800" fill="none" stroke="rgba(201,169,78,0.08)" stroke-width="2"/></svg>') repeat-y;
    pointer-events: none;
}

.agri-marble-right {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 120px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 800"><path d="M120 0 Q60 200 120 400 Q60 600 120 800" fill="none" stroke="rgba(201,169,78,0.08)" stroke-width="2"/></svg>') repeat-y;
    pointer-events: none;
}

.agri-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.agri-ornament {
    color: var(--gold);
    width: 120px;
    opacity: 0.8;
}

.agri-ornament svg {
    width: 100%;
    height: auto;
}

.agri-ornament-right {
    transform: scaleX(-1);
}

.agri-heading {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    background: linear-gradient(135deg, #f5e7a3, #d4b85a, #c9a94e, #b8953d);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.agri-divider {
    width: 400px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto 3rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 15px rgba(201, 169, 78, 0.5);
}

.agri-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 1;
}

.agri-card {
    background: linear-gradient(135deg, rgba(30, 25, 15, 0.95), rgba(20, 18, 10, 0.98));
    border: 1px solid rgba(201, 169, 78, 0.35);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow:
        inset 0 1px 0 rgba(245, 231, 163, 0.1),
        0 5px 20px rgba(0, 0, 0, 0.3);
}

.agri-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.5;
}

.agri-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.5;
}

.agri-card:hover {
    border-color: var(--gold);
    box-shadow:
        inset 0 1px 0 rgba(245, 231, 163, 0.15),
        0 0 30px rgba(201, 169, 78, 0.3),
        0 10px 30px rgba(0, 0, 0, 0.4);
    transform: translateY(-5px);
}

.agri-card-icon {
    color: var(--gold);
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
}

.agri-card-icon svg {
    filter: drop-shadow(0 2px 8px rgba(201, 169, 78, 0.4));
}

.agri-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.agri-card p {
    font-size: 0.9rem;
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.agri-card-btns {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
}

.agri-btn-outline {
    padding: 0.6rem 1.2rem;
    border: 1px solid var(--gold);
    border-radius: 25px;
    color: var(--gold);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    background: transparent;
}

.agri-btn-outline:hover {
    background: var(--gold);
    color: var(--dark);
    box-shadow: 0 0 15px rgba(201, 169, 78, 0.4);
}

.agri-btn-filled {
    padding: 0.6rem 1.2rem;
    background: transparent;
    border: 1px solid var(--gold);
    border-radius: 25px;
    color: var(--gold);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.agri-btn-filled:hover {
    background: var(--gold);
    color: var(--dark);
    box-shadow: 0 0 15px rgba(201, 169, 78, 0.4);
}

.agri-footer-text {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    padding-top: 2rem;
    border-top: 1px solid rgba(201, 169, 78, 0.15);
    position: relative;
    z-index: 1;
}

.agri-sparkle {
    position: absolute;
    bottom: 2rem;
    right: 3rem;
    color: var(--gold);
    font-size: 1.5rem;
    opacity: 0.5;
    animation: twinkle 2s ease-in-out infinite;
}

@media (max-width: 1024px) {
    .agri-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .agri-heading {
        font-size: 2.8rem;
    }
    .agri-ornament {
        width: 80px;
    }
}

@media (max-width: 768px) {
    .agri-heading {
        font-size: 2rem;
    }
    .agri-header {
        flex-direction: column;
        gap: 0.5rem;
    }
    .agri-ornament {
        width: 100px;
    }
    .agri-ornament-right {
        transform: scaleX(-1);
    }
    .agri-card-btns {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .agri-heading {
        font-size: 1.6rem;
    }
    .agri-grid {
        grid-template-columns: 1fr;
    }
    .agri-ornament {
        width: 80px;
    }
}

/* ============ PROPERTY SERVICES ============ */
.prop-section {
    background: #faf8f2;
    padding: 5rem 4% 3rem;
}

.prop-heading {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    color: var(--dark);
    margin-bottom: 3rem;
}

.prop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.prop-card {
    background: #fff;
    border: 1px solid rgba(201, 169, 78, 0.3);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.prop-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.12),
        0 0 15px rgba(201, 169, 78, 0.15);
}

.prop-card-img {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
}

.prop-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.prop-card:hover .prop-card-img img {
    transform: scale(1.05);
}

.prop-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
    padding: 1rem 1.2rem 0.3rem;
}

.prop-card p {
    font-size: 0.85rem;
    color: #777;
    line-height: 1.5;
    padding: 0 1.2rem 1rem;
}

.prop-btn {
    display: inline-block;
    margin: 0 1.2rem 1.2rem;
    padding: 0.5rem 1.2rem;
    border: 1px solid var(--gold);
    border-radius: 20px;
    color: var(--dark);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.prop-btn:hover {
    background: var(--gold);
    color: #fff;
    box-shadow: 0 4px 15px rgba(201, 169, 78, 0.3);
}

.prop-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.prop-footer-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.prop-footer p {
    font-size: 0.85rem;
    color: #888;
    white-space: nowrap;
}

@media (max-width: 1024px) {
    .prop-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .prop-heading {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .prop-heading {
        font-size: 2rem;
    }
    .prop-card-img {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .prop-heading {
        font-size: 1.6rem;
    }
    .prop-grid {
        grid-template-columns: 1fr;
    }
}

/* ============ HELPING BUILDERS SECTION ============ */
.builders-section {
    background: linear-gradient(180deg, #0a0a0a 0%, #111 50%, #0a0a0a 100%);
    padding: 5rem 4% 3rem;
    position: relative;
    overflow: hidden;
}

.builders-marble-left {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 120px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 800"><path d="M0 0 Q60 200 0 400 Q60 600 0 800" fill="none" stroke="rgba(201,169,78,0.08)" stroke-width="2"/></svg>') repeat-y;
    pointer-events: none;
}

.builders-marble-right {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 120px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 800"><path d="M120 0 Q60 200 120 400 Q60 600 120 800" fill="none" stroke="rgba(201,169,78,0.08)" stroke-width="2"/></svg>') repeat-y;
    pointer-events: none;
}

.builders-heading {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    background: linear-gradient(135deg, #f5e7a3, #d4b85a, #c9a94e, #b8953d);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.builders-divider {
    width: 300px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto 3rem;
    position: relative;
    z-index: 1;
}

.builders-timeline {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.builders-line {
    display: none;
}

.builders-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
}

.builders-row-top {
    flex-wrap: wrap;
}

.builders-row-bottom {
    flex-wrap: wrap;
}

.builders-item {
    text-align: center;
    width: 160px;
    position: relative;
    background: rgba(20, 20, 20, 0.9);
    border: 1px solid rgba(201, 169, 78, 0.4);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    transition: all 0.3s ease;
}

.builders-item:hover {
    border-color: var(--gold);
    box-shadow: 0 0 25px rgba(201, 169, 78, 0.4);
    transform: translateY(-5px);
}

.builders-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2a2010, #1a1508);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.8rem;
    color: var(--gold);
    font-size: 1.3rem;
    box-shadow: 0 0 15px rgba(201, 169, 78, 0.3);
    transition: all 0.3s ease;
}

.builders-item:hover {
    transform: translateY(-5px);
}

.builders-item:hover .builders-icon {
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(201, 169, 78, 0.5);
}

.builders-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1.3;
}

.builders-card {
    background: rgba(20, 20, 20, 0.9);
    border: 1px solid rgba(201, 169, 78, 0.3);
    border-radius: 10px;
    padding: 1rem;
    width: 180px;
    text-align: center;
    transition: all 0.3s ease;
}

.builders-card:hover {
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(201, 169, 78, 0.3);
    transform: translateY(-5px);
}

.builders-card p {
    font-size: 0.8rem;
    color: #999;
    line-height: 1.5;
}

.builders-footer {
    text-align: center;
    font-size: 0.85rem;
    color: #666;
    padding-top: 2rem;
    border-top: 1px solid rgba(201, 169, 78, 0.15);
    position: relative;
    z-index: 1;
}

.builders-sparkle {
    position: absolute;
    bottom: 2rem;
    right: 3rem;
    color: var(--gold);
    font-size: 1.5rem;
    opacity: 0.5;
    animation: twinkle 2s ease-in-out infinite;
}

@media (max-width: 1024px) {
    .builders-heading {
        font-size: 2.5rem;
    }
    .builders-line {
        display: none;
    }
    .builders-row {
        justify-content: center;
    }
    .builders-item {
        width: 140px;
    }
    .builders-card {
        width: 160px;
    }
}

@media (max-width: 768px) {
    .builders-heading {
        font-size: 2rem;
    }
    .builders-item {
        width: 120px;
    }
    .builders-icon {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }
    .builders-item h4 {
        font-size: 0.85rem;
    }
    .builders-card {
        width: 140px;
    }
    .builders-card p {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .builders-heading {
        font-size: 1.6rem;
    }
    .builders-row {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    .builders-item {
        width: 100%;
        max-width: 200px;
    }
    .builders-card {
        width: 100%;
        max-width: 250px;
    }
}

/* ============ FIND YOUR PROPERTY SECTION ============ */
.find-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('backround_img.jpeg') center/cover no-repeat;
    padding: 5rem 4%;
}

.find-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
}

.find-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
}

.find-heading {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    color: #fff;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.find-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 3rem;
}

.find-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.find-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.find-card:hover {
    border-color: var(--gold);
    transform: translateY(-8px);
    box-shadow: 0 0 30px rgba(201, 169, 78, 0.4);
}

.find-card-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.find-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.find-card:hover .find-card-img img {
    transform: scale(1.08);
}

.find-card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--gold);
    color: var(--dark);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.find-card-body {
    padding: 1.5rem;
}

.find-card-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}

.find-card-body p {
    font-size: 0.9rem;
    color: #bbb;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.find-card-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 1rem;
}

.find-card-btn {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    border: 1px solid var(--gold);
    border-radius: 25px;
    color: var(--gold);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.find-card-btn:hover {
    background: var(--gold);
    color: var(--dark);
}

.find-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    margin: 0 auto;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #f5e7a3, #d4b85a, #c9a94e, #b8953d);
    color: var(--dark);
    border: 2px solid var(--gold);
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
}

.find-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(201, 169, 78, 0.7);
}

@media (max-width: 1024px) {
    .find-heading {
        font-size: 2.8rem;
    }
    .find-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .find-heading {
        font-size: 2rem;
    }
    .find-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto 3rem;
    }
}

@media (max-width: 480px) {
    .find-heading {
        font-size: 1.6rem;
    }
}

/* ============ LIST YOUR PROPERTY SECTION ============ */
.list-section {
    background: linear-gradient(180deg, #0a0a0a 0%, #111 50%, #0a0a0a 100%);
    padding: 5rem 4% 3rem;
    position: relative;
    overflow: hidden;
}

.list-marble-left {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 120px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 800"><path d="M0 0 Q60 200 0 400 Q60 600 0 800" fill="none" stroke="rgba(201,169,78,0.08)" stroke-width="2"/></svg>') repeat-y;
    pointer-events: none;
}

.list-marble-right {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 120px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 800"><path d="M120 0 Q60 200 120 400 Q60 600 120 800" fill="none" stroke="rgba(201,169,78,0.08)" stroke-width="2"/></svg>') repeat-y;
    pointer-events: none;
}

.list-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 1;
}

.list-image {
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(201, 169, 78, 0.4);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.list-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.list-form-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.list-form-card {
    background: linear-gradient(135deg, rgba(30, 25, 15, 0.95), rgba(20, 18, 10, 0.98));
    border: 1px solid rgba(201, 169, 78, 0.4);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow:
        inset 0 1px 0 rgba(245, 231, 163, 0.15),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3),
        0 10px 40px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.list-form-card:hover {
    border-color: var(--gold);
    box-shadow:
        inset 0 1px 0 rgba(245, 231, 163, 0.15),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3),
        0 0 30px rgba(201, 169, 78, 0.3),
        0 10px 40px rgba(0, 0, 0, 0.5);
}

.list-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.6;
}

.list-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    color: var(--gold);
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.list-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.list-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-items: end;
}

.list-input-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.list-input-group label {
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.list-input-group input,
.list-input-group select,
.list-input-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(201, 169, 78, 0.3);
    border-radius: 8px;
    padding: 1rem 1.2rem;
    color: #fff;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    outline: none;
    box-sizing: border-box;
}

.list-input-group input::placeholder,
.list-input-group textarea::placeholder {
    color: #888;
    font-size: 0.9rem;
}

.list-input-group input:focus,
.list-input-group select:focus,
.list-input-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 15px rgba(201, 169, 78, 0.2);
}

.list-input-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23c9a94e' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.list-input-group select option {
    background: #1a1508;
    color: #fff;
}

.list-input-group textarea {
    resize: vertical;
    min-height: 90px;
}

.list-upload-row {
    grid-template-columns: 1fr 1fr;
}

.list-upload-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px dashed rgba(201, 169, 78, 0.4);
    border-radius: 12px;
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 60px;
}

.list-upload-box:hover {
    border-color: var(--gold);
    background: rgba(201, 169, 78, 0.1);
}

.list-upload-icon {
    font-size: 1.5rem;
    color: var(--gold);
    flex-shrink: 0;
}

.list-upload-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.list-upload-title {
    font-size: 0.95rem;
    color: #ccc;
    font-weight: 500;
}

.list-upload-btn {
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 600;
}

.list-submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #f5e7a3, #d4b85a, #c9a94e, #b8953d);
    color: var(--dark);
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow:
        inset 0 2px 6px rgba(255, 255, 255, 0.45),
        inset 0 -2px 6px rgba(0, 0, 0, 0.25),
        0 4px 15px rgba(201, 169, 78, 0.3);
}

.list-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow:
        inset 0 2px 6px rgba(255, 255, 255, 0.45),
        inset 0 -2px 6px rgba(0, 0, 0, 0.25),
        0 0 25px rgba(201, 169, 78, 0.6),
        0 0 50px rgba(201, 169, 78, 0.3);
}

.list-trust-badges {
    display: flex;
    justify-content: center;
    background: linear-gradient(135deg, rgba(30, 25, 15, 0.95), rgba(20, 18, 10, 0.98));
    border: 1px solid rgba(201, 169, 78, 0.3);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow:
        inset 0 1px 0 rgba(245, 231, 163, 0.1),
        0 5px 20px rgba(0, 0, 0, 0.3);
}

.list-trust-item {
    text-align: center;
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.list-trust-item:hover {
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(201, 169, 78, 0.2);
    background: rgba(201, 169, 78, 0.05);
}

.list-trust-icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 2px 6px rgba(201, 169, 78, 0.4));
}

.list-trust-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 0.2rem;
}

.list-trust-item p {
    font-size: 0.75rem;
    color: #888;
    line-height: 1.4;
}

.list-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.list-footer-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.list-footer p {
    font-size: 0.85rem;
    color: #666;
    white-space: nowrap;
}

.list-sparkle {
    position: absolute;
    bottom: 2rem;
    right: 3rem;
    color: var(--gold);
    font-size: 1.5rem;
    opacity: 0.5;
    animation: twinkle 2s ease-in-out infinite;
}

@media (max-width: 1024px) {
    .list-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .list-image {
        order: -1;
    }
    .list-image img {
        min-height: 400px;
    }
    .list-heading {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .list-heading {
        font-size: 2rem;
    }
    .list-form-row {
        grid-template-columns: 1fr;
    }
    .list-upload-row {
        grid-template-columns: 1fr;
    }
    .list-trust-badges {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .list-image img {
        min-height: 300px;
    }
}

@media (max-width: 480px) {
    .list-heading {
        font-size: 1.6rem;
    }
    .list-form-card {
        padding: 1.5rem;
    }
}

/* ============ FEATURED OPPORTUNITY SECTION ============ */
.featured-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('assets/2.jpeg') center/cover no-repeat;
    padding: 5rem 4%;
}

.featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.85), rgba(0,0,0,0.7));
}

.featured-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1100px;
    text-align: center;
}

.featured-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--dark);
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-heading {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.featured-divider {
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto 3rem;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.featured-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.featured-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(201, 169, 78, 0.4);
}

.featured-card-icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.featured-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}

.featured-card p {
    font-size: 0.85rem;
    color: #bbb;
    line-height: 1.6;
}

.featured-price {
    margin-bottom: 2rem;
}

.price-label {
    display: block;
    font-size: 1rem;
    color: #999;
    margin-bottom: 0.3rem;
}

.price-value {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
}

.featured-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.featured-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #f5e7a3, #d4b85a, #c9a94e, #b8953d);
    color: var(--dark);
    border: 2px solid var(--gold);
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}

.featured-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(201, 169, 78, 0.7);
}

.featured-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.featured-btn-outline:hover {
    background: var(--gold);
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(201, 169, 78, 0.7);
}

@media (max-width: 1024px) {
    .featured-heading {
        font-size: 2.8rem;
    }
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .featured-heading {
        font-size: 2rem;
    }
    .featured-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto 3rem;
    }
    .price-value {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .featured-heading {
        font-size: 1.6rem;
    }
}

/* ============ WHY KINGDOM GROUP SECTION ============ */
.why-kg-section {
    background: linear-gradient(180deg, #0a0a0a 0%, #111 50%, #0a0a0a 100%);
    padding: 5rem 4% 3rem;
    position: relative;
    overflow: hidden;
}

.why-kg-decor-left {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 120px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 800"><path d="M0 0 Q60 200 0 400 Q60 600 0 800" fill="none" stroke="rgba(201,169,78,0.08)" stroke-width="2"/></svg>') repeat-y;
    pointer-events: none;
}

.why-kg-decor-right {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 120px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 800"><path d="M120 0 Q60 200 120 400 Q60 600 120 800" fill="none" stroke="rgba(201,169,78,0.08)" stroke-width="2"/></svg>') repeat-y;
    pointer-events: none;
}

.why-kg-heading {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    background: linear-gradient(135deg, #f5e7a3, #d4b85a, #c9a94e, #b8953d);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.why-kg-subtitle {
    text-align: center;
    font-size: 1rem;
    color: #999;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.why-kg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 1;
}

.why-kg-card {
    background: rgba(20, 20, 20, 0.9);
    border: 1px solid rgba(201, 169, 78, 0.3);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.why-kg-card:hover {
    border-color: var(--gold);
    box-shadow: 0 0 30px rgba(201, 169, 78, 0.4);
    transform: translateY(-5px);
}

.why-kg-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.why-kg-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.why-kg-card p {
    font-size: 0.9rem;
    color: #999;
    line-height: 1.6;
}

.why-kg-footer-text {
    text-align: center;
    font-size: 0.85rem;
    color: #666;
    padding-top: 2rem;
    border-top: 1px solid rgba(201, 169, 78, 0.15);
    position: relative;
    z-index: 1;
}

.why-kg-sparkle {
    position: absolute;
    bottom: 2rem;
    right: 3rem;
    color: var(--gold);
    font-size: 1.5rem;
    opacity: 0.5;
    animation: twinkle 2s ease-in-out infinite;
}

@media (max-width: 1024px) {
    .why-kg-heading {
        font-size: 2.5rem;
    }
    .why-kg-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .why-kg-heading {
        font-size: 2rem;
    }
    .why-kg-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .why-kg-heading {
        font-size: 1.6rem;
    }
}

/* ============ HOW WE WORK SECTION ============ */
.how-section {
    background: #faf8f2;
    padding: 5rem 4%;
    text-align: center;
}

.how-heading {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.how-subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 3rem;
}

.how-timeline {
    max-width: 900px;
    margin: 0 auto 3rem;
    position: relative;
}

.how-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--gold), var(--gold-dark), var(--gold));
    transform: translateX(-50%);
}

.how-step {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
}

.how-step:nth-child(even) {
    flex-direction: row-reverse;
}

.how-step-number {
    width: 60px;
    height: 60px;
    background: var(--gold);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 15px rgba(201, 169, 78, 0.4);
}

.how-step-content {
    flex: 1;
    background: #fff;
    border: 1px solid rgba(201, 169, 78, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: left;
    transition: all 0.3s ease;
}

.how-step:hover .how-step-content {
    border-color: var(--gold);
    box-shadow: 0 0 30px rgba(201, 169, 78, 0.3);
    transform: translateY(-5px);
}

.how-step-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.3rem;
}

.how-step-content p {
    font-size: 0.9rem;
    color: #777;
    line-height: 1.6;
}

.how-step-icon {
    font-size: 1.5rem;
    color: var(--gold);
    flex-shrink: 0;
}

.how-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #f5e7a3, #d4b85a, #c9a94e, #b8953d);
    color: var(--dark);
    border: 2px solid var(--gold);
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}

.how-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(201, 169, 78, 0.7);
}

.how-sparkle {
    position: absolute;
    bottom: 2rem;
    right: 3rem;
    color: var(--gold);
    font-size: 1.5rem;
    opacity: 0.5;
    animation: twinkle 2s ease-in-out infinite;
}

@media (max-width: 1024px) {
    .how-heading {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .how-heading {
        font-size: 2rem;
    }
    .how-timeline::before {
        left: 30px;
    }
    .how-step {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 80px;
    }
    .how-step:nth-child(even) {
        flex-direction: column;
    }
    .how-step-number {
        position: absolute;
        left: 0;
    }
    .how-step-content {
        width: 100%;
    }
    .how-step-icon {
        display: none;
    }
}

@media (max-width: 480px) {
    .how-heading {
        font-size: 1.6rem;
    }
}

/* ============ HOW WE GROW YOUR BUSINESS SECTION ============ */
.grow-section {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('assets/bussiness_growth/hero2.png') center/cover no-repeat;
    padding: 5rem 4%;
}

.grow-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
}

.grow-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1400px;
}

.grow-heading {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    color: #fff;
    margin-bottom: 4rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.grow-timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 2rem;
}

.grow-line {
    position: absolute;
    top: 60px;
    left: 8%;
    right: 8%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--gold), transparent);
    box-shadow: 0 0 15px rgba(201, 169, 78, 0.5);
}

.grow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
    width: 150px;
}

.grow-icon-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(30, 25, 15, 0.95), rgba(20, 18, 10, 0.98));
    border: 3px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
    box-shadow: 
        0 0 25px rgba(201, 169, 78, 0.4),
        inset 0 0 20px rgba(201, 169, 78, 0.1);
    transition: all 0.3s ease;
}

.grow-step:hover .grow-icon-circle {
    transform: scale(1.1);
    box-shadow: 
        0 0 40px rgba(201, 169, 78, 0.6),
        inset 0 0 25px rgba(201, 169, 78, 0.15);
}

.grow-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--gold);
    margin-bottom: 1rem;
    box-shadow: 0 0 15px rgba(201, 169, 78, 0.6);
}

.grow-step h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
}

@media (max-width: 1200px) {
    .grow-heading {
        font-size: 2.8rem;
    }
    .grow-step {
        width: 120px;
    }
    .grow-icon-circle {
        width: 100px;
        height: 100px;
        font-size: 2rem;
    }
}

@media (max-width: 1024px) {
    .grow-timeline {
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
    }
    .grow-line {
        display: none;
    }
    .grow-step {
        width: calc(33% - 1rem);
        min-width: 150px;
    }
}

@media (max-width: 768px) {
    .grow-heading {
        font-size: 2rem;
    }
    .grow-step {
        width: calc(50% - 1rem);
    }
    .grow-icon-circle {
        width: 90px;
        height: 90px;
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .grow-heading {
        font-size: 1.6rem;
    }
    .grow-step {
        width: 100%;
    }
}

/* ============ OUR PROCESS SECTION ============ */
.process-section {
    position: relative;
    padding: 5rem 4%;
    background: linear-gradient(135deg, #1a1508 0%, #2a2010 50%, #1a1508 100%);
    overflow: hidden;
}

.process-overlay {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><path d="M0 0 Q200 100 0 200 Q200 300 0 400" fill="none" stroke="rgba(201,169,78,0.05)" stroke-width="1"/></svg>') repeat;
    opacity: 0.5;
}

.process-content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
}

.process-heading {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    background: linear-gradient(135deg, #f5e7a3, #d4b85a, #c9a94e, #b8953d);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    margin-bottom: 3rem;
}

.process-timeline {
    position: relative;
    padding: 2rem 0;
}

.process-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--gold), var(--gold-dark), var(--gold));
    transform: translateX(-50%);
    box-shadow: 0 0 20px rgba(201, 169, 78, 0.5);
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-step-left {
    justify-content: flex-start;
    padding-right: 52%;
}

.process-step-right {
    justify-content: flex-end;
    padding-left: 52%;
}

.process-dot {
    position: absolute;
    left: 50%;
    width: 20px;
    height: 20px;
    background: var(--gold);
    border-radius: 50%;
    border: 4px solid #1a1508;
    box-shadow: 0 0 20px rgba(201, 169, 78, 0.6);
    transform: translateX(-50%);
    z-index: 2;
}

.process-card {
    background: url('assets/bussiness_growth/design.jpg') center/cover no-repeat;
    border: 2px solid rgba(201, 169, 78, 0.5);
    border-radius: 12px;
    padding: 1.2rem;
    width: 80%;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(201, 169, 78, 0.25);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.process-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

.process-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.9;
    z-index: 1;
}

.process-card > * {
    position: relative;
    z-index: 1;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.4),
        0 0 35px rgba(201, 169, 78, 0.3);
}

.process-card-icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 0.8rem;
    position: relative;
    display: inline-block;
    filter: drop-shadow(0 2px 6px rgba(201, 169, 78, 0.4));
}

.process-icon-small {
    position: absolute;
    font-size: 1rem;
    right: -8px;
    bottom: 0;
}

.process-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.3rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.process-card p {
    font-size: 0.85rem;
    color: #ddd;
    line-height: 1.4;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .process-heading {
        font-size: 2rem;
    }
    .process-line {
        left: 20px;
    }
    .process-step-left,
    .process-step-right {
        padding: 0 0 0 50px;
        justify-content: flex-start;
    }
    .process-dot {
        left: 20px;
    }
}

@media (max-width: 480px) {
    .process-heading {
        font-size: 1.6rem;
    }
    .process-card {
        padding: 1.5rem;
    }
}

/* ============ INDUSTRIES WE HELP SECTION ============ */
.industries-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('assets/bussiness_growth/hero2.png') center/cover no-repeat;
    padding: 5rem 4%;
}

.industries-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
}

.industries-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1400px;
}

.industries-heading {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    color: #fff;
    margin-bottom: 3rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.industry-card {
    position: relative;
    height: 350px;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(30, 25, 15, 0.95), rgba(20, 18, 10, 0.98));
    border: 1px solid rgba(201, 169, 78, 0.35);
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.4),
        0 0 25px rgba(201, 169, 78, 0.15),
        inset 0 1px 0 rgba(245, 231, 163, 0.1);
}

.industry-card:hover {
    border-color: var(--gold);
    transform: translateY(-8px);
    box-shadow: 
        0 8px 40px rgba(0, 0, 0, 0.5),
        0 0 50px rgba(201, 169, 78, 0.5),
        inset 0 1px 0 rgba(245, 231, 163, 0.15);
}

.industry-card-bg {
    display: none;
}

.industry-card-overlay {
    display: none;
}

.industry-card-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
    text-align: center;
}

.industry-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 2px 10px rgba(201, 169, 78, 0.5));
}

.industry-card-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}

.industry-card-content p {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.industry-btn {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    border: 1px solid var(--gold);
    border-radius: 25px;
    color: var(--gold);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    background: transparent;
}

.industry-btn:hover {
    background: var(--gold);
    color: var(--dark);
    box-shadow: 0 0 20px rgba(201, 169, 78, 0.5);
}

@media (max-width: 1200px) {
    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .industries-heading {
        font-size: 2.8rem;
    }
}

@media (max-width: 1024px) {
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .industry-card {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .industries-heading {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .industries-heading {
        font-size: 1.6rem;
    }
    .industries-grid {
        grid-template-columns: 1fr;
    }
    .industry-card {
        height: 280px;
    }
}

/* ============ BUSINESS GROWTH SOLUTIONS SECTION ============ */
.biz-solutions-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('assets/bussiness_growth/hero2.png') center/cover no-repeat;
    padding: 5rem 4%;
}

.biz-solutions-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
}

.biz-solutions-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1400px;
}

.biz-solutions-heading {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    color: #fff;
    margin-bottom: 3rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.biz-solutions-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.biz-sol-card {
    background: rgba(30, 25, 15, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(201, 169, 78, 0.35);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.4),
        0 0 25px rgba(201, 169, 78, 0.15),
        inset 0 1px 0 rgba(245, 231, 163, 0.1);
}

.biz-sol-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.5;
    border-radius: 16px 16px 0 0;
}

.biz-sol-card:hover {
    border-color: var(--gold);
    transform: translateY(-8px);
    box-shadow: 
        0 8px 40px rgba(0, 0, 0, 0.5),
        0 0 50px rgba(201, 169, 78, 0.4),
        inset 0 1px 0 rgba(245, 231, 163, 0.15);
}

.biz-sol-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
    position: relative;
    filter: drop-shadow(0 2px 8px rgba(201, 169, 78, 0.4));
}

.biz-sol-icon-small {
    position: absolute;
    bottom: -5px;
    right: -10px;
    font-size: 1rem;
}

.biz-sol-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.biz-sol-card p {
    font-size: 0.85rem;
    color: #aaa;
    line-height: 1.5;
    margin-bottom: 1.2rem;
    flex-grow: 1;
}

.biz-sol-btns {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.biz-sol-btn {
    padding: 0.5rem 1rem;
    border: 1px solid var(--gold);
    border-radius: 20px;
    color: var(--gold);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
    transition: all 0.3s ease;
    background: transparent;
}

.biz-sol-btn:hover {
    background: var(--gold);
    color: var(--dark);
    box-shadow: 0 0 15px rgba(201, 169, 78, 0.4);
}

@media (max-width: 1200px) {
    .biz-solutions-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .biz-solutions-heading {
        font-size: 2.8rem;
    }
}

@media (max-width: 1024px) {
    .biz-solutions-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .biz-solutions-heading {
        font-size: 2rem;
    }
    .biz-solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .biz-solutions-heading {
        font-size: 1.6rem;
    }
    .biz-solutions-grid {
        grid-template-columns: 1fr;
    }
}

/* ============ BUSINESS GROWTH - GOAL SECTION ============ */
.goal-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a0a0a;
    padding: 5rem 4%;
}

.goal-overlay {
    display: none;
}

.goal-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
}

.goal-heading {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    color: #fff;
    margin-bottom: 3rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.goal-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.goal-card {
    background: rgba(30, 25, 15, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 2px solid rgba(201, 169, 78, 0.4);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(201, 169, 78, 0.3),
        inset 0 2px 0 rgba(245, 231, 163, 0.15),
        inset 0 -2px 0 rgba(0, 0, 0, 0.3);
}

.goal-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: 
        0 12px 50px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(201, 169, 78, 0.6),
        inset 0 2px 0 rgba(245, 231, 163, 0.2),
        inset 0 -2px 0 rgba(0, 0, 0, 0.3);
}

.goal-card-icons {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 1rem;
    color: var(--gold);
    font-size: 1.3rem;
}

.goal-card-icons i {
    filter: drop-shadow(0 0 8px rgba(201, 169, 78, 0.6));
}

.goal-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.goal-card-graphic {
    width: 120px;
    height: 120px;
    margin-bottom: 1rem;
    color: var(--gold);
}

.goal-card-graphic svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 10px rgba(201, 169, 78, 0.5));
}

.goal-card p {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.goal-btn {
    display: inline-block;
    padding: 0.7rem 2rem;
    border: 1px solid var(--gold);
    border-radius: 25px;
    color: var(--gold);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.goal-btn:hover {
    background: var(--gold);
    color: var(--dark);
    box-shadow: 0 0 20px rgba(201, 169, 78, 0.4);
}

@media (max-width: 1024px) {
    .goal-heading {
        font-size: 2.8rem;
    }
    .goal-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .goal-heading {
        font-size: 2rem;
    }
    .goal-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .goal-heading {
        font-size: 1.6rem;
    }
}

/* ============ BUSINESS GROWTH - WHY CHOOSE US ============ */
.bg-why-section {
    background: linear-gradient(180deg, #0a0a0a 0%, #111 50%, #0a0a0a 100%);
    padding: 5rem 4% 3rem;
    position: relative;
    overflow: hidden;
}

.bg-why-decor-left {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 120px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 800"><path d="M0 0 Q60 200 0 400 Q60 600 0 800" fill="none" stroke="rgba(201,169,78,0.08)" stroke-width="2"/></svg>') repeat-y;
    pointer-events: none;
}

.bg-why-decor-right {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 120px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 800"><path d="M120 0 Q60 200 120 400 Q60 600 120 800" fill="none" stroke="rgba(201,169,78,0.08)" stroke-width="2"/></svg>') repeat-y;
    pointer-events: none;
}

.bg-why-heading {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    background: linear-gradient(135deg, #f5e7a3, #d4b85a, #c9a94e, #b8953d);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.bg-why-subtitle {
    text-align: center;
    font-size: 1rem;
    color: #999;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.bg-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 1;
}

.bg-why-card {
    background: rgba(20, 20, 20, 0.9);
    border: 1px solid rgba(201, 169, 78, 0.3);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.bg-why-card:hover {
    border-color: var(--gold);
    box-shadow: 0 0 30px rgba(201, 169, 78, 0.3);
    transform: translateY(-5px);
}

.bg-why-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.bg-why-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.bg-why-card p {
    font-size: 0.9rem;
    color: #999;
    line-height: 1.6;
}

.bg-why-footer-text {
    text-align: center;
    font-size: 0.85rem;
    color: #666;
    padding-top: 2rem;
    border-top: 1px solid rgba(201, 169, 78, 0.15);
    position: relative;
    z-index: 1;
}

.bg-why-sparkle {
    position: absolute;
    bottom: 2rem;
    right: 3rem;
    color: var(--gold);
    font-size: 1.5rem;
    opacity: 0.5;
    animation: twinkle 2s ease-in-out infinite;
}

@media (max-width: 1024px) {
    .bg-why-heading {
        font-size: 2.5rem;
    }
    .bg-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .bg-why-heading {
        font-size: 2rem;
    }
    .bg-why-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .bg-why-heading {
        font-size: 1.6rem;
    }
}

/* ============ BUSINESS GROWTH - HOW WE WORK ============ */
.bg-how-section {
    background: url('assets/bussiness_growth/design.jpg') center/cover no-repeat;
    padding: 5rem 4%;
    text-align: center;
    position: relative;
}

.bg-how-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
}

.bg-how-section > * {
    position: relative;
    z-index: 1;
}

.bg-how-heading {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.bg-how-subtitle {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 3rem;
}

.bg-how-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.bg-how-step {
    position: relative;
    padding: 2rem 1.5rem;
    background: rgba(30, 25, 15, 0.9);
    border: 1px solid rgba(201, 169, 78, 0.35);
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.bg-how-step:hover {
    border-color: var(--gold);
    box-shadow: 0 0 25px rgba(201, 169, 78, 0.2);
    transform: translateY(-5px);
}

.bg-how-step-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1rem;
    opacity: 0.8;
}

.bg-how-step-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}

.bg-how-step-content p {
    font-size: 0.9rem;
    color: #bbb;
    line-height: 1.6;
}

.bg-how-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #f5e7a3, #d4b85a, #c9a94e, #b8953d);
    color: var(--dark);
    border: 2px solid var(--gold);
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}

.bg-how-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(201, 169, 78, 0.7);
}

@media (max-width: 1024px) {
    .bg-how-heading {
        font-size: 2.5rem;
    }
    .bg-how-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .bg-how-heading {
        font-size: 2rem;
    }
    .bg-how-steps {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .bg-how-heading {
        font-size: 1.6rem;
    }
}

/* ============ BUSINESS GROWTH - CTA SECTION ============ */
.bg-cta-section {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1508, #2a2010, #1a1508);
    padding: 5rem 4%;
}

.bg-cta-overlay {
    display: none;
}

.bg-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
}

.bg-cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.bg-cta-content p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 2rem;
}

.bg-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.bg-cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #f5e7a3, #d4b85a, #c9a94e, #b8953d);
    color: var(--dark);
    border: 2px solid var(--gold);
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}

.bg-cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(201, 169, 78, 0.7);
}

.bg-cta-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.bg-cta-btn-outline:hover {
    background: var(--gold);
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(201, 169, 78, 0.7);
}

@media (max-width: 768px) {
    .bg-cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .bg-cta-content h2 {
        font-size: 1.6rem;
    }
}

/* ============ RESPONSIVE ============ */

/* Tablet */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .cta-btn {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .page-hero .hero-title {
        font-size: 2.8rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .division-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .who-we-are-section {
        flex-direction: column;
    }

    .wwa-right {
        width: 100%;
        height: 50vh;
        order: -1;
    }

    .wwa-left {
        padding: 3rem 5%;
    }

    .wwa-title {
        font-size: 2.8rem;
    }

    .biz-div-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .biz-div-heading {
        font-size: 2.5rem;
    }

    .why-heading {
        font-size: 2.5rem;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .explore-heading {
        font-size: 2.5rem;
    }

    .parallax-heading {
        font-size: 2.5rem;
    }

    .parallax-heading-2 {
        font-size: 2rem;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .header {
        padding: 1rem 4%;
    }

    .logo-img {
        height: 38px;
    }

    .logo-slogan {
        font-size: 0.95rem;
    }

    .hero {
        min-height: 600px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .page-hero {
        min-height: 280px;
    }

    .page-hero .hero-title {
        font-size: 2rem;
    }

    .content-section {
        padding: 3rem 5%;
    }

    .content-section h2 {
        font-size: 2rem;
    }

    .who-we-about {
        grid-template-columns: 1fr;
    }

    .who-we-about .text {
        text-align: center;
    }

    .who-we-about .text h3 {
        text-align: center;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-card {
        padding: 1.5rem 0.5rem;
    }

    .stat-card .number {
        font-size: 2rem;
    }

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

    .why-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.5rem;
    }

    .why-card .why-text p {
        text-align: center;
    }

    .wwa-title {
        font-size: 2.2rem;
    }

    .wwa-cards {
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
    }

    .wwa-card {
        padding: 1.2rem 0.8rem;
    }

    .wwa-right {
        height: 40vh;
    }

    .biz-div-heading {
        font-size: 2rem;
    }

    .biz-div-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .biz-div-card {
        padding: 1.5rem 1rem;
    }

    .why-heading {
        font-size: 2rem;
    }

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

    .why-card {
        padding: 1.2rem 1rem;
    }

    .explore-heading {
        font-size: 2rem;
    }

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

    .explore-card {
        padding: 2rem 1.5rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.8;
    }

    .hero-subtitle .sep {
        display: none;
    }

    .hero-subtitle br {
        display: block;
    }

    .page-hero .hero-title {
        font-size: 1.6rem;
    }

    .content-section h2 {
        font-size: 1.6rem;
    }

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

    .wwa-left {
        padding: 2rem 4%;
    }

    .wwa-content {
        padding-left: 0.5rem;
    }

    .wwa-cards {
        padding-left: 0.5rem;
        gap: 0.6rem;
    }

    .wwa-title {
        font-size: 1.8rem;
    }

    .wwa-desc {
        font-size: 0.85rem;
    }

    .why-heading {
        font-size: 1.6rem;
    }

    .why-subtitle {
        font-size: 0.85rem;
    }

    .explore-heading {
        font-size: 1.6rem;
    }

    .explore-card {
        padding: 1.5rem 1rem;
    }

    .explore-card h3 {
        font-size: 1.2rem;
    }

    .parallax-section {
        min-height: 70vh;
        background-attachment: scroll;
    }

    .parallax-heading {
        font-size: 1.8rem;
    }

    .parallax-heading-2 {
        font-size: 1.6rem;
    }

    .parallax-card {
        padding: 2rem 1.5rem;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 5% 2rem;
    }

    .footer-bottom {
        padding: 1.2rem 5%;
    }
}

/* ============ WHATSAPP FLOATING BUTTON ============ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 28px;
    }
}
