:root {
    --primary: #0D3B36;
    --primary-light: #164e48;
    --secondary: #C8A96B;
    --secondary-dark: #b59453;
    --bg: #F8F5F0;
    --dark: #111111;
    --dark-muted: #1a1a1a;
    --text-gray: #000000ff;
    --white: #ffffff;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.3s ease;
    --shadow-premium: 0 20px 40px rgba(13, 59, 54, 0.05);
    --border-glass: rgba(200, 169, 107, 0.15);
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
    box-sizing: border-box;
    overflow-x: hidden;
}

*,
*:before,
*:after {
    box-sizing: inherit;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Premium dual-ring cursor */
.cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--secondary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10001;
    transform: translate(-50%, -50%);
    transition: transform 0.1s, background 0.2s;
    display: none;
}

.cursor-ring {
    width: 32px;
    height: 32px;
    border: 1.5px solid var(--secondary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1), height 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s, opacity 0.3s;
    opacity: 0.7;
    display: none;
}

@media (min-width: 1024px) {

    .cursor-dot,
    .cursor-ring {
        display: block;
    }
}

.cursor-ring.hovered {
    width: 52px;
    height: 52px;
    border-color: rgba(200, 169, 107, 0.5);
    opacity: 1;
}

.cursor-dot.hovered {
    transform: translate(-50%, -50%) scale(2.5);
    background: rgba(200, 169, 107, 0.6);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    letter-spacing: -0.02em;
}

p {
    font-size: 1rem;
    color: var(--text-gray);
    font-weight: 300;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

/* Utility Components */
.container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-header .subtitle {
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--secondary);
    margin-bottom: 1rem;
    display: block;
    font-weight: 600;
}

.section-header .title {
    font-size: 3rem;
    color: var(--primary);
    font-weight: 400;
    line-height: 1.2;
}

@media(max-width: 1280px) {
    .section-header {
        margin-bottom: 3rem;
    }

    .section-header .title {
        font-size: 2.6rem;
    }
}

@media(max-width: 768px) {
    .section-header .title {
        font-size: 2rem;
    }
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader-logo {
    font-family: var(--font-heading);
    font-size: 10rem;
    color: var(--secondary);
    font-weight: 300;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: preloaderFadeIn 1s forwards 0.3s;
}

.preloader-bar {
    width: 120px;
    height: 1px;
    background-color: rgba(200, 169, 107, 0.2);
    position: relative;
    overflow: hidden;
}

.preloader-progress {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background-color: var(--secondary);
    animation: preloaderLoad 1.8s ease-in-out forwards;
}

@keyframes preloaderFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes preloaderLoad {
    to {
        width: 100%;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--secondary) !important;
    color: #082622 !important;
    border: 1px solid var(--secondary) !important;
}

.btn-primary:hover {
    background-color: transparent !important;
    color: var(--secondary) !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(200, 169, 107, 0.2);
}

.btn-outline,
.btn-dark-outline {
    background-color: transparent !important;
    border: 1px solid var(--secondary) !important;
    color: var(--secondary) !important;
}

.btn-outline:hover,
.btn-dark-outline:hover {
    background-color: var(--secondary) !important;
    color: #082622 !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(200, 169, 107, 0.2);
}

.read-more-btn {
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: color 0.3s;
    text-decoration: none;
    padding: 0.5rem 0;
}

.read-more-btn i {
    transition: transform 0.3s;
}

.read-more-btn:hover {
    color: var(--secondary) !important;
}

.read-more-btn:hover i {
    transform: translateX(5px);
}

/* Sticky Transparent Navbar */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 1rem 0;
}

header.scrolled {
    background-color: rgba(8, 38, 34, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-glass);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--white);
    font-weight: 300;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo span {
    color: var(--secondary);
    font-weight: 600;
}

.header-logo {
    max-height: 80px;
    width: auto;
    transition: var(--transition-fast);
}

header.scrolled .header-logo {
    max-height: 70px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--secondary);
    transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    transition: var(--transition-fast);
}

@media (max-width: 1180px) {
    header {
        padding: 1rem 0;
    }

    header.scrolled {
        padding: 0.8rem 0;
    }

    .header-logo {
        max-height: 50px !important;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(300px, 80vw);
        height: 100vh;
        background-color: var(--primary);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        padding: 3rem;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
        transition: var(--transition-smooth);
        z-index: 1000;
    }

    .nav-menu.active {
        right: 0;
    }

    .header-cta .btn-primary {
        display: none;
    }
}

/* Hamburger Animation */
.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    padding-top: 100px;
    overflow: hidden;
}

/* Faded Carousel Background */
.hero-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0;
    animation: fadeCarousel 24s infinite;
}

.hero-bg-slider .slide-1 {
    background-image: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1920&q=80');
    animation-delay: 0s;
}

.hero-bg-slider .slide-2 {
    background-image: url('https://images.unsplash.com/photo-1613490493576-7fde63acd811?auto=format&fit=crop&w=1920&q=80');
    animation-delay: 6s;
}

.hero-bg-slider .slide-3 {
    background: #000;
    animation-delay: 12s;
}

/* YouTube background cover video logic */
.hero-youtube-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    /* 16:9 aspect ratio */
    min-height: 100vh;
    min-width: 177.77vh;
    /* 16:9 aspect ratio */
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* Video Slide */
.hero-bg-slider .slide-video {
    animation-delay: 18s;
    background: #000;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    pointer-events: none;
}

@keyframes fadeCarousel {
    0% {
        opacity: 0;
        transform: scale(1);
    }

    6% {
        opacity: 1;
    }

    25% {
        opacity: 1;
    }

    31% {
        opacity: 0;
        transform: scale(1.05);
    }

    100% {
        opacity: 0;
        transform: scale(1.05);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(13, 59, 54, 0.4) 0%, rgba(13, 59, 54, 0.85) 100%);
    z-index: 1;
}

.hero>.container {
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    z-index: 2;
    position: relative;
    transform: translateY(30px);
    opacity: 0;
    animation: heroReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.5s;
}

@keyframes heroReveal {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.hero .subtitle {
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    display: inline-block;
    font-weight: 600;
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 4.8rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.hero h1 span {
    font-style: italic;
    font-weight: 400;
    color: var(--secondary);
}

.hero p {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Hero Search Form */
.search-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    z-index: 10;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

.search-form {
    display: grid;
    grid-template-columns: repeat(4, 1fr) auto;
    gap: 1.5rem;
    align-items: end;
}

.form-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--secondary);
    font-weight: 600;
}

.form-group select,
.form-group input {
    width: 100%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    padding: 0.85rem 1rem;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.85rem;
    outline: none;
    transition: var(--transition-fast);
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23C8A96B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.form-group select:focus,
.form-group input:focus {
    border-color: var(--secondary);
    background-color: rgba(255, 255, 255, 0.12);
}

.search-btn {
    background-color: var(--secondary);
    color: var(--primary);
    border: none;
    padding: 0.85rem 2rem;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    width: 100%;
    transition: var(--transition-fast);
}

.search-btn:hover {
    background-color: var(--white);
    color: var(--primary);
}

@media (max-width: 991px) {
    .search-form {
        grid-template-columns: repeat(2, 1fr);
    }

    .search-btn {
        grid-column: span 2;
        margin-top: 1rem;
    }
}

@media (max-width: 576px) {
    .search-form {
        grid-template-columns: 1fr;
    }

    .search-btn {
        grid-column: span 1;
    }
}

/* Floating Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
    opacity: 0.7;
}

.scroll-indicator span {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.scroll-mouse {
    width: 20px;
    height: 32px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background-color: var(--secondary);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheelAnim 1.5s infinite;
}

@keyframes scrollWheelAnim {
    0% {
        top: 6px;
        opacity: 1;
    }

    100% {
        top: 18px;
        opacity: 0;
    }
}

/* Trust Indicators / Stats Section */
.stats {
    padding: 5rem 0;
    background-color: var(--primary);
    color: var(--white);
    position: relative;
    z-index: 3;
    border-bottom: 1px solid var(--border-glass);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--secondary);
    font-weight: 400;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

@media (max-width: 991px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Featured Properties Section */
.featured {
    padding: 7rem 0;
}

@media (max-width: 1280px) {
    .featured {
        padding: 6rem 0;
    }
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.property-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
    position: relative;
    border: 1px solid rgba(13, 59, 54, 0.03);
}

.property-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(13, 59, 54, 0.08);
}

.property-img-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.property-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.property-card:hover .property-img {
    transform: scale(1.08);
}

.roi-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: var(--primary);
    color: var(--secondary);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    letter-spacing: 0.05em;
    z-index: 2;
    border: 1px solid var(--border-glass);
}

.property-actions {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    z-index: 2;
}

.action-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.action-btn:hover {
    background-color: var(--secondary);
    color: var(--white);
}

.action-btn.active {
    color: #e25c5c;
}

.property-info {
    padding: 2rem;
}

.property-loc {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--secondary);
    margin-bottom: 0.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.property-title {
    font-size: 1.85rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.25;
}

@media (max-width: 768px) {
    .property-title {
        font-size: 1.55rem;
    }
}

.property-desc {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.property-specs {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 1rem 0;
    margin-bottom: 1.5rem;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--dark);
}

.spec-item i {
    color: var(--secondary);
}

.property-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.property-price {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-gray);
    letter-spacing: 0.05em;
}

.price-value {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--primary);
    font-weight: 600;
}

.yield-badge {
    text-align: right;
}

.yield-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-gray);
}

.yield-val {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #2e7d32;
    font-weight: 700;
}

@media (max-width: 991px) {
    .properties-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .properties-grid {
        grid-template-columns: 1fr;
    }
}

/* Why Invest in Oman Section */
.why-oman {
    background-color: var(--primary);
    color: var(--white);
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
}

@media (max-width: 1280px) {
    .why-oman {
        padding: 6rem 0;
    }
}

.why-oman::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(13, 59, 54, 0.95), rgba(13, 59, 54, 0.7)),
        url('https://images.unsplash.com/photo-1541976844346-f18aeac57b06?auto=format&fit=crop&w=1920&q=80') center center/cover no-repeat;
    opacity: 0.15;
    z-index: 1;
}

.why-oman-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.why-oman-content h2 {
    font-size: 3.2rem;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.why-oman-content h2 span {
    color: var(--secondary);
    font-style: italic;
}

.why-oman-content p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
}

.benefit-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 1.2rem;
    background-color: rgba(200, 169, 107, 0.1);
}

.benefit-text h4 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.benefit-text p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
}

/* Stats & Progress bars visual side */
.why-oman-stats {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    padding: 3.5rem;
}

.stat-bar-group {
    margin-bottom: 2.5rem;
}

.stat-bar-group:last-child {
    margin-bottom: 0;
}

.stat-bar-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.stat-bar-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.stat-bar-percentage {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--secondary);
    font-weight: 600;
}

.stat-bar-track {
    height: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.stat-bar-fill {
    height: 100%;
    background-color: var(--secondary);
    width: 0;
    transition: width 2s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (max-width: 991px) {
    .why-oman-wrapper {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

/* ROI Calculator Section */
.roi-calculator {
    padding: 7rem 0;
    background-color: var(--bg);
}

.calculator-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-premium);
    padding: 3rem;
    border: 1px solid rgba(13, 59, 54, 0.03);
}

@media (max-width: 1280px) {
    .roi-calculator {
        padding: 6rem 0;
    }

    .calculator-wrapper {
        padding: 2.5rem;
        gap: 2.5rem;
    }
}

.calc-inputs-panel {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.calc-inputs-panel .subtitle {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--secondary);
    font-weight: 600;
}

.calc-inputs-panel h3 {
    font-size: 2.2rem;
    font-family: var(--font-heading);
    color: var(--primary);
    font-weight: 600;
    line-height: 1.2;
}

.calc-desc {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.calc-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.calc-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.calc-group label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
    font-weight: 600;
}

.input-with-symbol {
    position: relative;
    display: flex;
    align-items: center;
}

.input-symbol {
    position: absolute;
    left: 1rem;
    color: var(--primary-light);
    font-size: 0.8rem;
    font-weight: 600;
    font-family: var(--font-body);
}

.calc-group input[type="number"] {
    width: 100%;
    border: 1px solid rgba(13, 59, 54, 0.12);
    border-radius: 6px;
    padding: 0.85rem 1rem 0.85rem 3.2rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--dark);
    outline: none;
    transition: var(--transition-fast);
    background-color: var(--bg);
}

.calc-group input[type="number"]:focus {
    border-color: var(--secondary);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(200, 169, 107, 0.15);
}

/* Switch Custom Toggle */
.calc-toggle-group {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-top: 1px dashed rgba(13, 59, 54, 0.1);
    border-bottom: 1px dashed rgba(13, 59, 54, 0.1);
}

.calc-toggle-group .toggle-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
    font-weight: 600;
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider-switch {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.slider-switch:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked+.slider-switch {
    background-color: var(--primary);
}

input:focus+.slider-switch {
    box-shadow: 0 0 1px var(--primary);
}

input:checked+.slider-switch:before {
    transform: translateX(24px);
}

/* Sliders */
.slider-group {
    margin-top: 0.5rem;
    transition: all 0.3s ease;
}

/* Advanced Settings Accordion */
.advanced-settings-container {
    margin-top: 0.5rem;
    border: 1px solid rgba(200, 169, 107, 0.3);
    border-radius: 8px;
    background-color: rgba(250, 248, 245, 0.5);
    overflow: hidden;
}

.advanced-settings-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
    color: var(--primary);
    font-size: 1rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.advanced-settings-toggle:hover {
    background-color: rgba(200, 169, 107, 0.05);
}

.advanced-settings-toggle i {
    color: var(--secondary);
    transition: transform 0.3s ease;
}

.advanced-settings-toggle.active i {
    transform: rotate(180deg);
}

.advanced-settings-content {
    padding: 0 1.5rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.slider-group.hidden {
    display: none !important;
}

.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.slider-val {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--secondary);
}

.range-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: rgba(13, 59, 54, 0.1);
    outline: none;
    margin: 0.5rem 0;
    transition: background 450ms ease-in;
}

.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--secondary);
    cursor: pointer;
    transition: transform 0.1s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.range-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

.range-slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--secondary);
    cursor: pointer;
    transition: transform 0.1s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    border: none;
}

.range-slider::-moz-range-thumb:hover {
    transform: scale(1.15);
}

/* Results Panel */
.calc-results-panel {
    background: linear-gradient(145deg, rgba(20, 50, 40, 0.95) 0%, rgba(5, 15, 10, 0.98) 100%);
    border-radius: 16px;
    padding: 4rem 3.5rem;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(200, 169, 107, 0.4);
    box-shadow: 0 20px 50px rgba(13, 59, 54, 0.25);
}

.calc-results-panel h4 {
    font-size: 1.6rem;
    font-family: var(--font-heading);
    color: var(--secondary);
    margin-bottom: 2rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-roi-container {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(200, 169, 107, 0.15);
}

.hero-roi-label {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.8rem;
}

.hero-roi-metric {
    font-family: var(--font-heading);
    font-size: 6rem;
    color: var(--secondary);
    font-weight: 400;
    line-height: 1;
    text-shadow: 0 5px 15px rgba(200, 169, 107, 0.15);
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@media (max-width: 768px) {
    .calc-results-panel {
        padding: 2.5rem 1.5rem;
    }

    .hero-roi-metric {
        font-size: 4rem;
    }
}

.calc-results-panel .divider {
    display: none;
    /* Replaced by border on hero container */
}

.results-details.premium-metrics {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.premium-metrics .result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding-bottom: 1.25rem;
}

.premium-metrics .result-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.premium-metrics .res-lbl {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.premium-metrics .res-val {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--white);
    font-weight: 500;
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.premium-metrics .res-val.highlight-gold {
    color: var(--secondary);
    font-weight: 600;
}

.results-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-full {
    width: 100%;
    text-align: center;
}

.whatsapp-chat {
    text-align: center;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

.whatsapp-chat a {
    color: var(--secondary);
    text-decoration: underline;
    transition: var(--transition-fast);
}

.whatsapp-chat a:hover {
    color: var(--white);
}

/* Animation */
.pulse-active {
    animation: textPulse 0.15s ease-out;
}

@keyframes textPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@media (max-width: 991px) {
    .calculator-wrapper {
        grid-template-columns: 1fr;
        padding: 2.5rem;
    }

    .calc-results-panel {
        padding: 2.5rem;
    }
}

@media (max-width: 576px) {
    .calculator-wrapper {
        padding: 1.5rem 1.25rem;
        gap: 2rem;
    }

    .calc-inputs-panel h3 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .calc-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .calc-group.full-width {
        grid-column: span 1;
    }

    .calc-toggle-group {
        grid-column: span 1;
    }

    .calc-results-panel {
        padding: 1.5rem;
    }

    .gross-yield-value {
        font-size: 4rem;
    }
}

/* Developers Carousel Styling */
.developers-section {
    padding: 5rem 0;
    background-color: var(--white);
    border-top: 1px solid rgba(13, 59, 54, 0.05);
    border-bottom: 1px solid rgba(13, 59, 54, 0.05);
    overflow: hidden;
}

.logo-carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 1rem 0;
}

.logo-carousel-wrapper::before,
.logo-carousel-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.logo-carousel-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--white) 0%, rgba(255, 255, 255, 0) 100%);
}

.logo-carousel-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--white) 0%, rgba(255, 255, 255, 0) 100%);
}

.logo-track {
    display: flex;
    width: calc(250px * 10);
    animation: scroll-logo 25s linear infinite;
}

.logo-slide {
    width: 250px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
}

.developer-logo {
    max-width: 150px;
    max-height: 80px;
    object-fit: contain;
    /* Adding green color filter and initial opacity */
    filter: invert(19%) sepia(41%) saturate(545%) hue-rotate(120deg) brightness(90%) contrast(96%) opacity(0.5);
    transition: var(--transition-fast);
}

.developer-logo:hover {
    filter: invert(19%) sepia(41%) saturate(545%) hue-rotate(120deg) brightness(90%) contrast(96%) opacity(1);
    transform: scale(1.05);
}

@keyframes scroll-logo {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 5));
    }
}

/* Services Section */
.services {
    padding: 7rem 0;
    background: linear-gradient(180deg, var(--bg) 0%, var(--white) 100%);
}

@media (max-width: 1280px) {
    .services {
        padding: 6rem 0;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(13, 59, 54, 0.05);
    border-radius: 8px;
    padding: 3rem 2.5rem;
    text-align: center;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-premium);
}

.service-card:hover {
    transform: translateY(-10px);
    background-color: var(--primary);
    border-color: var(--secondary);
}

.service-icon-box {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(200, 169, 107, 0.1);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 2rem auto;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon-box {
    background-color: var(--secondary);
    color: var(--primary);
}

.service-title {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1rem;
    transition: var(--transition-smooth);
}

.service-card:hover .service-title {
    color: var(--white);
}

.service-desc {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
    transition: var(--transition-smooth);
}

.service-card:hover .service-desc {
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 991px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Investment Opportunities Filter Section */
.opportunities {
    padding: 7rem 0;
}

@media (max-width: 1280px) {
    .opportunities {
        padding: 6rem 0;
    }
}

.filter-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .filter-controls {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding: 0.5rem;
        margin-bottom: 2rem;
        scrollbar-width: none;
    }

    .filter-controls::-webkit-scrollbar {
        display: none;
    }

    .filter-btn {
        flex-shrink: 0;
        padding: 0.6rem 1.5rem;
        font-size: 0.75rem;
    }
}

.filter-btn {
    background: transparent !important;
    border: 1px solid rgba(200, 169, 107, 0.3) !important;
    color: var(--secondary) !important;
    padding: 0.75rem 2rem;
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-btn.active,
.filter-btn:hover {
    background-color: var(--secondary) !important;
    color: #082622 !important;
    border-color: var(--secondary) !important;
}

.opp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    transition: opacity 0.4s ease;
}

.opp-card {
    display: block;
    opacity: 1;
    transform: scale(1);
    transition: var(--transition-smooth);
}

.opp-card.hidden {
    display: none;
    opacity: 0;
    transform: scale(0.9);
}

@media (max-width: 991px) {
    .opp-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .opp-grid {
        grid-template-columns: 1fr;
    }
}

/* Partner Program Section */
.partner-program {
    /* background-color: var(--primary); */
    color: var(--white);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border-glass);
}

.partner-decor-circle {
    position: absolute;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(200, 169, 107, 0.1);
    border-radius: 50%;
    top: -150px;
    right: -100px;
    pointer-events: none;
}

.partner-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.partner-content h2 {
    font-size: 3.2rem;
    line-height: 1.15;
    margin-bottom: 2rem;
}

.partner-content h2 span {
    color: var(--secondary);
    font-style: italic;
}

.partner-content p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.partner-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.partner-point {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.partner-point i {
    color: var(--secondary);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.partner-point h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.partner-point p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .partner-wrapper {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

@media (max-width: 576px) {
    .partner-points {
        grid-template-columns: 1fr;
    }
}

/* About Global Properties Section */
.about {
    padding: 7rem 0;
}

@media (max-width: 1280px) {
    .about {
        padding: 6rem 0;
    }
}

.about-wrapper {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 4rem;
    align-items: center;
}

.about-visuals {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    position: relative;
}

.about-img-1 {
    grid-column: 1 / span 9;
    grid-row: 1;
    height: 480px;
    object-fit: cover;
    border-radius: 8px;
    width: 100%;
    box-shadow: var(--shadow-premium);
    z-index: 2;
}

.about-img-2 {
    grid-column: 5 / span 8;
    grid-row: 1;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
    width: 100%;
    margin-top: 100px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    z-index: 3;
    border: 6px solid var(--white);
}

.about-content h2 {
    font-size: 3rem;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 2rem;
}

.about-content h2 span {
    color: var(--secondary);
    font-style: italic;
}

.about-content p {
    font-size: 1.05rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.highlight-box {
    border-left: 2px solid var(--secondary);
    padding-left: 1.5rem;
}

.highlight-box h4 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.highlight-box p {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 0;
}

@media (max-width: 1280px) {
    .about-wrapper {
        gap: 3rem;
    }

    .about-img-1 {
        height: 380px;
    }

    .about-img-2 {
        height: 280px;
    }
}

@media (max-width: 991px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-visuals {
        max-width: 560px;
        margin: 0 auto;
        width: 100%;
    }

    .about-img-1 {
        height: 320px;
    }

    .about-img-2 {
        height: 240px;
        margin-top: 60px;
    }
}

/* Testimonials Section — 2-col grid */
.testimonials {
    padding: 7rem 0;
    background-color: var(--primary);
    color: var(--white);
    overflow: hidden;
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(200, 169, 107, 0.15);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: left;
    transition: var(--transition-smooth);
    position: relative;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(200, 169, 107, 0.35);
    transform: translateY(-6px);
}

.testimonial-card::before {
    content: '\201C';
    font-family: var(--font-heading);
    font-size: 5rem;
    color: var(--secondary);
    opacity: 0.25;
    position: absolute;
    top: 0.5rem;
    left: 1.5rem;
    line-height: 1;
    pointer-events: none;
}

.tcard-top {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.client-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--secondary);
    flex-shrink: 0;
}

.tcard-info h4 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--secondary);
    margin-bottom: 0.2rem;
}

.tcard-info p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
}

.client-stars {
    color: var(--secondary);
    font-size: 0.8rem;
    display: flex;
    gap: 0.2rem;
    margin-bottom: 1rem;
}

.client-quote {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-style: italic;
    font-weight: 300;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.88);
    margin: 0;
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .client-quote {
        font-size: 1.15rem;
    }
}

/* Market Insights Section */
.insights {
    padding: 7rem 0;
}

@media (max-width: 1280px) {
    .insights {
        padding: 6rem 0;
    }
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.insight-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
    border: 1px solid rgba(13, 59, 54, 0.03);
}

.insight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(13, 59, 54, 0.08);
}

.insight-img-box {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.insight-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.insight-card:hover .insight-img {
    transform: scale(1.08);
}

.insight-tag {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    background-color: var(--primary);
    color: var(--secondary);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.4rem 0.85rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.insight-content {
    padding: 2rem;
}

.insight-date {
    font-size: 0.8rem;
    color: var(--text-gray);
    margin-bottom: 0.75rem;
    display: block;
}

.insight-title {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.insight-link {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--secondary);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.insight-link:hover {
    color: var(--primary);
}

@media (max-width: 991px) {
    .insights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .insights-grid {
        grid-template-columns: 1fr;
    }
}

/* Final CTA Section */
.final-cta {
    padding: 7rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-glowing-orb {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 169, 107, 0.15) 0%, rgba(200, 169, 107, 0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.final-cta h2 {
    font-size: 4rem;
    line-height: 1.15;
    margin-bottom: 2rem;
}

.final-cta h2 span {
    color: var(--secondary);
    font-style: italic;
}

.final-cta p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3.5rem;
}

.cta-buttons-wrap {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .final-cta h2 {
        font-size: 2.6rem;
    }

    .cta-buttons-wrap {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .cta-buttons-wrap .btn {
        width: 100%;
        max-width: 320px;
    }
}

/* Footer */
footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 6rem 0 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 2.5rem;
    margin-bottom: 4rem;
}

@media (max-width: 1280px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 2rem;
    }
}

.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-brand h3 span {
    color: var(--secondary);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.social-icon-btn:hover {
    background-color: var(--secondary);
    color: var(--primary);
}

.footer-col h4 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--secondary);
    margin-bottom: 2rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-link-item a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-link-item a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-form input {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 0.85rem 1rem;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.newsletter-form input:focus {
    border-color: var(--secondary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-legal-links {
    display: flex;
    gap: 2rem;
}

.footer-legal-links a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-legal-links a:hover {
    color: var(--secondary);
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-legal-links {
        justify-content: center;
    }
}

/* WhatsApp Widget with blink pulse */
@keyframes waPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }

    50% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-widget {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #25D366, #1ead54);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    z-index: 999;
    transition: transform 0.3s ease;
    animation: waPulse 2.2s ease infinite;
}

.whatsapp-widget:hover {
    transform: scale(1.12) translateY(-4px);
    animation: none;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
}

/* Animated Back-to-Top */
@keyframes bttBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-6px);
    }

    60% {
        transform: translateY(-3px);
    }
}

@keyframes bttRing {
    0% {
        box-shadow: 0 0 0 0 rgba(200, 169, 107, 0.5);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(200, 169, 107, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(200, 169, 107, 0);
    }
}

.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--secondary);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    z-index: 999;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.3s ease, background 0.3s, color 0.3s;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
    animation: bttBounce 2.5s ease infinite;
}

.back-to-top:hover {
    background: var(--secondary);
    color: var(--primary);
    animation: none;
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 12px 28px rgba(200, 169, 107, 0.45);
}

/* Scroll Progress SVG elements */
.progress-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
    pointer-events: none;
    z-index: 1;
}

.progress-bg {
    stroke-dasharray: 100, 100;
}

.progress-fill-circle {
    transition: stroke-dashoffset 0.1s ease, stroke 0.3s ease;
}

.back-to-top:hover #scroll-progress-circle {
    stroke: var(--primary);
}

/* Scroll Reveal Utility Classes */
.reveal-element {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    will-change: opacity, transform;
}

.reveal-element.active {
    opacity: 1;
    transform: translateY(0);
    will-change: auto;
}

/* Property/insight card will-change for hover */
.property-card,
.insight-card,
.service-card {
    will-change: transform;
}

/* Small laptop specific fixes (1024–1280px) */
@media (min-width: 1024px) and (max-width: 1280px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero h1 {
        font-size: 3.6rem;
    }

    .stat-num {
        font-size: 2.8rem;
    }

    .why-oman-content h2 {
        font-size: 2.6rem;
    }

    .partner-content h2 {
        font-size: 2.6rem;
    }

    .about-content h2 {
        font-size: 2.4rem;
    }

    .final-cta h2 {
        font-size: 3rem;
    }

    .property-title {
        font-size: 1.35rem;
    }

    .service-title {
        font-size: 1.5rem;
    }

    .why-oman-stats {
        padding: 2.5rem;
    }

    .calc-results-panel {
        padding: 2rem;
    }

    .search-container {
        padding: 1.25rem 1.5rem;
    }
}

/* Tablet fixes */
@media (max-width: 991px) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding-top: 140px;
        padding-bottom: 80px;
        display: flex;
        align-items: center;
    }

    .stats {
        padding: 4rem 0;
    }

    .why-oman {
        padding: 5rem 0;
    }

    .why-oman-wrapper {
        gap: 3rem;
    }

    .partner-wrapper {
        gap: 3rem;
    }

    .partner-points {
        gap: 1.5rem;
    }
}

/* Mobile specific */
@media (max-width: 576px) {
    .container {
        padding: 0 1.25rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stat-num {
        font-size: 2.2rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    .search-container {
        padding: 1rem;
        border-radius: 8px;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .partner-content h2,
    .why-oman-content h2 {
        font-size: 2rem;
    }

    .final-cta h2 {
        font-size: 2rem;
    }

    footer {
        padding: 4rem 0 2rem 0;
    }
}

/* ==========================================================================
   CONTACT PAGE SPECIFIC STYLES
   ========================================================================== */

.contact-hero {
    position: relative;
    padding: 12rem 0 7rem 0;
    background: linear-gradient(180deg, rgba(8, 38, 34, 0.96) 0%, rgba(13, 59, 54, 0.94) 100%),
        url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1920&q=80') center center/cover no-repeat;
    color: var(--white);
    text-align: center;
    border-bottom: 1px solid var(--border-glass);
}

.contact-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.contact-hero h1 span {
    font-style: italic;
    font-weight: 400;
    color: var(--secondary);
}

.contact-hero p {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: rgba(255, 255, 255, 0.75);
    max-width: 650px;
    margin: 0 auto;
    font-weight: 300;
}

.contact-section {
    padding: 7.5rem 0;
    background-color: var(--bg);
}

.contact-grid-wrapper {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4.5rem;
    align-items: start;
}

@media (max-width: 991px) {
    .contact-grid-wrapper {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
}

.contact-form-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 4rem 3.5rem;
    box-shadow: var(--shadow-premium);
    border: 1px solid rgba(13, 59, 54, 0.04);
}

@media (max-width: 576px) {
    .contact-form-card {
        padding: 2.5rem 1.5rem;
    }
}

.contact-form-card h3 {
    font-size: 2.4rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 500;
    font-family: var(--font-heading);
}

.contact-form-card p {
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    font-size: 1rem;
    font-weight: 300;
}

.contact-inputs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (max-width: 576px) {
    .contact-inputs-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.contact-input-group {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.contact-input-group.full-width {
    grid-column: span 2;
}

@media (max-width: 576px) {
    .contact-input-group.full-width {
        grid-column: span 1;
    }
}

.contact-input-group label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    font-weight: 600;
}

.contact-input-group input,
.contact-input-group select,
.contact-input-group textarea {
    width: 100%;
    border: 1px solid rgba(13, 59, 54, 0.12);
    border-radius: 6px;
    padding: 0.95rem 1.2rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--dark);
    outline: none;
    transition: var(--transition-fast);
    background-color: var(--bg);
}

.contact-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' viewBox='0 0 24 24' fill='none' stroke='%23C8A96B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.2rem center;
    padding-right: 2.5rem;
}

.contact-input-group input:focus,
.contact-input-group select:focus,
.contact-input-group textarea:focus {
    border-color: var(--secondary);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(200, 169, 107, 0.15);
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.info-card {
    background-color: var(--primary);
    color: var(--white);
    border-radius: 12px;
    padding: 3.5rem 3rem;
    border: 1px solid var(--border-glass);
    box-shadow: var(--shadow-premium);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    border: 1px solid rgba(200, 169, 107, 0.04);
    border-radius: 50%;
    bottom: -125px;
    right: -125px;
    pointer-events: none;
}

.info-card h4 {
    font-size: 1.6rem;
    color: var(--secondary);
    margin-bottom: 2rem;
    font-weight: 500;
    font-family: var(--font-heading);
    letter-spacing: 0.02em;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.info-item i {
    color: var(--secondary);
    font-size: 1.3rem;
    margin-top: 0.3rem;
    width: 24px;
    text-align: center;
}

.info-text h5 {
    font-family: var(--font-body);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.4rem;
    font-weight: 600;
}

.info-text p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-weight: 300;
}

.info-text a {
    color: var(--secondary);
    font-weight: 600;
    transition: var(--transition-fast);
}

.info-text a:hover {
    color: var(--white);
}

.contact-map-section {
    width: 100%;
    height: 480px;
    background-color: var(--primary);
    border-top: 1px solid var(--border-glass);
    position: relative;
    overflow: hidden;
}

.contact-map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
    /* filter: grayscale(1) invert(0.92) contrast(1.1); */
    /* Custom premium mapping aesthetic overlay */
    /* -webkit-filter: grayscale(1) invert(0.92) contrast(1.1); */
}

/* ==========================================================================
   OFFICE DETAILS, TIMEZONE CLOCKS, ACCREDITATIONS & CONCIERGE FAQ STYLES
   ========================================================================== */

.timezone-advisor {
    background: rgba(13, 59, 54, 0.03);
    border: 1px solid rgba(13, 59, 54, 0.06);
    border-radius: 8px;
    padding: 2.5rem;
    margin-top: 1rem;
}

.timezone-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(13, 59, 54, 0.08);
    padding-bottom: 1rem;
}

.timezone-title {
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--primary);
    font-weight: 700;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #2e7d32;
    background-color: rgba(46, 125, 50, 0.1);
    padding: 0.3rem 0.85rem;
    border-radius: 30px;
}

.status-badge.closed {
    color: #c62828;
    background-color: rgba(198, 40, 40, 0.1);
}

.status-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: currentColor;
    animation: pulse-ring 1.5s infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.95);
        opacity: 1;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.5;
    }

    100% {
        transform: scale(0.95);
        opacity: 1;
    }
}

.clock-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.clock-box {
    text-align: center;
    padding: 1rem;
    background: var(--white);
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.clock-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.clock-time {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary);
    font-weight: 600;
}

.contact-main {
    padding: 8rem 0;
    background-color: var(--bg);
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: start;
}

@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 5rem;
    }
}

.office-details {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
}

.office-section h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 1rem;
    position: relative;
}

.office-section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background-color: var(--secondary);
    margin-top: 1rem;
}

.office-p {
    font-size: 1.05rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.channel-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.channel-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.channel-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--secondary);
    background-color: rgba(200, 169, 107, 0.08);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition-fast);
}

.channel-item:hover .channel-icon {
    background-color: var(--secondary);
    color: var(--primary);
}

.channel-text h4 {
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-gray);
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.channel-text p {
    font-size: 1.15rem;
    color: var(--primary);
    font-weight: 500;
}

.channel-text a:hover {
    color: var(--secondary);
}

.form-panel {
    background-color: var(--white);
    border-radius: 12px;
    padding: 4rem;
    box-shadow: var(--shadow-premium);
    border: 1px solid rgba(13, 59, 54, 0.03);
    position: relative;
}

@media (max-width: 576px) {
    .form-panel {
        padding: 2.5rem;
    }
}

.form-panel h3 {
    font-size: 2.4rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.form-panel p {
    font-size: 1rem;
    margin-bottom: 2.5rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (max-width: 576px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

.form-group-full {
    grid-column: span 2;
}

@media (max-width: 576px) {
    .form-group-full {
        grid-column: span 1;
    }
}

.input-group {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.input-group label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    font-weight: 600;
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    background-color: #faf9f6;
    border: 1px solid rgba(13, 59, 54, 0.1);
    border-radius: 4px;
    padding: 1rem 1.25rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--dark);
    outline: none;
    transition: var(--transition-fast);
}

.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' viewBox='0 0 24 24' fill='none' stroke='%23C8A96B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
    padding-right: 2.5rem;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    border-color: var(--secondary);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(200, 169, 107, 0.1);
}

.input-group textarea {
    resize: vertical;
    min-height: 120px;
}

.compliance-notice {
    margin-top: 2rem;
    padding: 1rem 1.5rem;
    background-color: rgba(200, 169, 107, 0.06);
    border-left: 2px solid var(--secondary);
    border-radius: 0 4px 4px 0;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.compliance-notice i {
    color: var(--secondary);
    font-size: 1.1rem;
    margin-top: 0.15rem;
}

.compliance-notice p {
    font-size: 0.8rem;
    color: var(--primary);
    line-height: 1.5;
    font-weight: 400;
}

.accreditations {
    background-color: var(--primary);
    color: var(--white);
    padding: 5rem 0;
    border-bottom: 1px solid var(--border-glass);
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    align-items: center;
    text-align: center;
}

@media (max-width: 991px) {
    .badges-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .badges-grid {
        grid-template-columns: 1fr;
    }
}

.badge-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.badge-icon {
    font-size: 2.2rem;
    color: var(--secondary);
}

.badge-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--white);
    font-weight: 400;
}

.badge-desc {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 220px;
}

.faq-section {
    padding: 8rem 0;
    background-color: var(--white);
}

.faq-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-header .subtitle {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.faq-header .title {
    font-size: 2.8rem;
    color: var(--primary);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    border: 1px solid rgba(13, 59, 54, 0.08);
    border-radius: 6px;
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-item:hover {
    border-color: var(--secondary);
}

.faq-trigger {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    padding: 1.8rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 500;
    transition: var(--transition-fast);
}

.faq-trigger i {
    font-size: 1rem;
    color: var(--secondary);
    transition: transform 0.4s ease;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background-color: #faf9f6;
}

.faq-content-inner {
    padding: 0 2rem 1.8rem 2rem;
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 300;
}

.faq-item.active .faq-trigger {
    color: var(--secondary);
}

.faq-item.active .faq-trigger i {
    transform: rotate(45deg);
}

.faq-item.active .faq-content {
    max-height: 250px;
}

/* ==========================================================================
   QUERY TYPE RADIO-PILLS & PREFIX STYLES
   ========================================================================== */

.query-type-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.query-type-label {
    cursor: pointer;
}

.query-type-label input[type="radio"] {
    display: none;
}

.query-type-btn {
    display: inline-block;
    padding: 0.6rem 1.25rem;
    border: 1px solid rgba(13, 59, 54, 0.1);
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--primary);
    background-color: #faf9f6;
    transition: var(--transition-fast);
}

.query-type-label input[type="radio"]:checked+.query-type-btn {
    background-color: var(--primary);
    color: var(--secondary);
    border-color: var(--primary);
}

.query-type-btn:hover {
    border-color: var(--secondary);
}


/* RESPONSIVE STICKY OFFICE DETAILS */
@media (min-width: 992px) {
    .office-details {
        position: sticky;
        top: 120px;
        align-self: start;
    }
}

/* ==========================================================================
   ABOUT US PAGE BESPOKE ARCHITECTURE STYLES
   ========================================================================== */
.about-hero {
    position: relative;
    padding: 12rem 0 7rem 0;
    background: linear-gradient(180deg, rgba(8, 38, 34, 0.96) 0%, rgba(13, 59, 54, 0.94) 100%),
        url('https://images.unsplash.com/photo-1541976844346-f18aeac57b06?auto=format&fit=crop&w=1920&q=80') center center/cover no-repeat;
    color: var(--white);
    text-align: center;
    border-bottom: 1px solid var(--border-glass);
}

.about-hero-content {
    z-index: 2;
    transform: translateY(30px);
    opacity: 0;
    animation: heroReveal 1s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.5s;
}

@keyframes heroReveal {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.about-hero .subtitle {
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    display: inline-block;
    font-weight: 600;
}

.about-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.about-hero h1 span {
    font-style: italic;
    font-weight: 400;
    color: var(--secondary);
}

.about-hero p {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: rgba(255, 255, 255, 0.75);
    max-width: 650px;
    margin: 0 auto;
    font-weight: 300;
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }

    .about-hero p {
        font-size: 1rem;
    }
}

.story-section {
    padding: 8rem 0;
    background-color: var(--bg);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
    align-items: center;
}

.story-images {
    position: relative;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
}

.story-img-main {
    grid-column: 1 / span 10;
    grid-row: 1;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
    width: 100%;
    box-shadow: var(--shadow-premium);
    z-index: 2;
}

.story-img-sub {
    grid-column: 4 / span 9;
    grid-row: 1;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    width: 100%;
    margin-top: 150px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    z-index: 3;
    border: 6px solid var(--white);
}

.story-text h2 {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.story-text h2 span {
    color: var(--secondary);
    font-style: italic;
}

.story-text p {
    font-size: 1.05rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.story-highlight-box {
    border-left: 3px solid var(--secondary);
    padding-left: 1.5rem;
    margin: 2rem 0;
}

.story-highlight-box p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--primary);
    font-weight: 500;
}

@media (max-width: 991px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .story-images {
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }
}

.values-section {
    padding: 8rem 0;
    background-color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header .subtitle {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.section-header .title {
    font-size: 2.8rem;
    color: var(--primary);
    line-height: 1.2;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.value-card {
    background-color: var(--bg);
    border-radius: 8px;
    padding: 3rem 2rem;
    text-align: center;
    transition: var(--transition-smooth);
    border: 1px solid rgba(13, 59, 54, 0.03);
}

.value-card:hover {
    transform: translateY(-10px);
    background-color: var(--primary);
    border-color: var(--secondary);
}

.value-icon-box {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(200, 169, 107, 0.1);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 2rem auto;
    transition: var(--transition-smooth);
}

.value-card:hover .value-icon-box {
    background-color: var(--secondary);
    color: var(--primary);
}

.value-title {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1rem;
    transition: var(--transition-smooth);
}

.value-card:hover .value-title {
    color: var(--white);
}

.value-desc {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
    transition: var(--transition-smooth);
}

.value-card:hover .value-desc {
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 991px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

.history-section {
    padding: 8rem 0;
    background-color: var(--bg);
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background-color: rgba(13, 59, 54, 0.1);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    padding: 2rem 3rem;
    position: relative;
    background-color: transparent;
    width: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    right: -8px;
    background-color: var(--bg);
    border: 2px solid var(--secondary);
    border-radius: 50%;
    top: 2.5rem;
    z-index: 1;
    transition: var(--transition-fast);
}

.timeline-item.left {
    left: 0;
    text-align: right;
}

.timeline-item.right {
    left: 50%;
}

.timeline-item.right::after {
    left: -8px;
}

.timeline-content {
    padding: 2rem;
    background-color: var(--white);
    position: relative;
    border-radius: 6px;
    box-shadow: var(--shadow-premium);
    border: 1px solid rgba(13, 59, 54, 0.03);
    transition: var(--transition-smooth);
}

.timeline-item:hover .timeline-content {
    border-color: var(--secondary);
    transform: translateY(-5px);
}

.timeline-item:hover::after {
    background-color: var(--secondary);
    transform: scale(1.3);
}

.timeline-year {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.timeline-title {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.timeline-desc {
    font-size: 0.9rem;
    color: var(--text-gray);
}

@media (max-width: 768px) {
    .timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
        text-align: left !important;
    }

    .timeline-item::after {
        left: 23px;
        right: auto;
    }

    .timeline-item.right {
        left: 0%;
    }
}

.team-section {
    padding: 8rem 0;
    background-color: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.team-card {
    background-color: var(--bg);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
    border: 1px solid rgba(13, 59, 54, 0.03);
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary);
}

.team-img-wrapper {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.team-card:hover .team-img {
    transform: scale(1.05);
}

.team-info {
    padding: 2rem;
    text-align: center;
}

.team-role {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--secondary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.team-name {
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.team-bio {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.team-socials {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.team-social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(13, 59, 54, 0.05);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.team-social-btn:hover {
    background-color: var(--secondary);
    color: var(--primary);
}

@media (max-width: 991px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

.stats-banner {
    padding: 6rem 0;
    background-color: var(--primary);
    color: var(--white);
    text-align: center;
}

.stats-banner-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.banner-stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.banner-stat-num {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.banner-stat-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
    .stats-banner-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .stats-banner-grid {
        grid-template-columns: 1fr;
    }
}

/* Final CTA Section styling */
.final-cta {
    padding: 10rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-glowing-orb {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 169, 107, 0.15) 0%, rgba(200, 169, 107, 0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.final-cta h2 {
    font-size: 4rem;
    line-height: 1.15;
    margin-bottom: 2rem;
}

.final-cta h2 span {
    color: var(--secondary);
    font-style: italic;
}

.final-cta p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3.5rem;
}

.cta-buttons-wrap {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .final-cta h2 {
        font-size: 2.6rem;
    }

    .cta-buttons-wrap {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .cta-buttons-wrap .btn {
        width: 100%;
        max-width: 320px;
    }
}

footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 8rem 0 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 4rem;
    margin-bottom: 6rem;
}

.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-brand h3 span {
    color: var(--secondary);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.social-icon-btn:hover {
    background-color: var(--secondary);
    color: var(--primary);
}

.footer-col h4 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--secondary);
    margin-bottom: 2rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-link-item a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-link-item a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-form input {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 0.85rem 1rem;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.newsletter-form input:focus {
    border-color: var(--secondary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-legal-links {
    display: flex;
    gap: 2rem;
}

.footer-legal-links a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-legal-links a:hover {
    color: var(--secondary);
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-legal-links {
        justify-content: center;
    }
}

/* Widgets and Scroll utilities */
.whatsapp-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 55px;
    height: 55px;
    background-color: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 999;
    transition: var(--transition-fast);
}

.whatsapp-widget:hover {
    transform: scale(1.1) translateY(-5px);
}

.back-to-top {
    position: fixed;
    bottom: 2.5rem;
    right: 2rem;
    width: 55px;
    height: 55px;
    background-color: var(--primary);
    color: var(--secondary);
    border: 1px solid var(--border-glass);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    z-index: 999;
    cursor: pointer;
    transition: var(--transition-fast);
    opacity: 0;
    visibility: hidden;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--secondary);
    color: var(--primary);
    transform: translateY(-5px);
}

/* Mission & Vision Section Styling */
.mission-vision-section {
    padding: 8rem 0;
    background-color: var(--white);
    border-bottom: 1px solid rgba(13, 59, 54, 0.05);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
}

.mv-card {
    background-color: var(--bg);
    padding: 4rem 3rem;
    border-radius: 8px;
    border: 1px solid rgba(13, 59, 54, 0.03);
    position: relative;
    transition: var(--transition-smooth);
}

.mv-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary);
    box-shadow: var(--shadow-premium);
}

.mv-tag {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--secondary);
    letter-spacing: 0.2em;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.mv-card h3 {
    font-size: 2.2rem;
    color: var(--primary);
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.mv-card p {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.7;
}

.mv-line {
    width: 50px;
    height: 2px;
    background-color: var(--secondary);
    margin-top: 2rem;
    transition: var(--transition-smooth);
}

.mv-card:hover .mv-line {
    width: 100px;
}

@media (max-width: 768px) {
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .mv-card {
        padding: 3rem 2rem;
    }
}

/* Partnership Section Styling */
.partnership-section {
    padding: 8rem 0;
    background-color: var(--bg);
    border-top: 1px solid rgba(13, 59, 54, 0.05);
}

.partnership-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
    align-items: center;
}

.partnership-text h2 {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.partnership-text h2 span {
    color: var(--secondary);
    font-style: italic;
}

.partnership-text p {
    font-size: 1.05rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.partner-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.partner-program-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid rgba(13, 59, 54, 0.05);
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.partner-program-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary);
}

.partner-card-icon {
    font-size: 1.8rem;
    color: var(--secondary);
    background-color: rgba(200, 169, 107, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.partner-program-card:hover .partner-card-icon {
    background-color: var(--secondary);
    color: var(--primary);
}

.partner-card-content h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.partner-card-content p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.5;
}

@media (max-width: 991px) {
    .partnership-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

/* Scroll Reveal classes */
.reveal-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-element.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- Developer Logo Carousel --- */
.developers-carousel-section {
    background: var(--bg-alt);
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
    overflow: hidden;
}

.carousel-marquee {
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: 3rem;
}

.marquee-content {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-around;
    min-width: 100%;
    gap: 3rem;
    animation: scroll-marquee 25s linear infinite;
}

.developer-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.developer-name:hover {
    color: var(--secondary);
}

@keyframes scroll-marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 1.5rem));
    }
}

/* ===========================
   Partnership Form Styles
   =========================== */
.partner-form-wrapper {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(200, 169, 107, 0.2);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
}

.partner-form-header {
    margin-bottom: 1.8rem;
}

.partner-form-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--secondary);
    background: rgba(200, 169, 107, 0.12);
    border: 1px solid rgba(200, 169, 107, 0.3);
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    margin-bottom: 0.9rem;
}

.partner-form-header h3 {
    font-size: 1.7rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.partner-form-header p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
}

.partner-form .pf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.pf-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 0;
}

.pf-group.pf-full {
    margin-bottom: 1rem;
}

.pf-group label {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--secondary);
}

.pf-group input,
.pf-group select {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    padding: 0.8rem 1rem;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.88rem;
    outline: none;
    transition: border-color 0.3s, background 0.3s;
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
}

.pf-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23C8A96B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    cursor: pointer;
}

.pf-group input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.pf-group input:focus,
.pf-group select:focus {
    border-color: var(--secondary);
    background: rgba(200, 169, 107, 0.08);
}

.pf-group select option {
    background: var(--primary);
    color: var(--white);
}

.pf-submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--secondary);
    color: var(--primary);
    border: none;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    transition: var(--transition-smooth);
    margin-top: 0.5rem;
}

.pf-submit-btn:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(200, 169, 107, 0.25);
}

.pf-success-msg {
    margin-top: 1rem;
    padding: 0.9rem 1.2rem;
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 6px;
    color: #4ade80;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    animation: fadeInUp 0.4s ease;
}

.pf-disclaimer {
    width: 100%;
    margin-top: 1rem;
    margin-bottom: 0;
    padding: 0;
    background: transparent;
    border: none;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.65);
    text-align: center;
    line-height: 1.5;
    letter-spacing: 0.2px;
}

.pf-disclaimer i {
    color: var(--secondary);
    font-size: 0.85rem;
    margin-right: 0.35rem;
    vertical-align: -1px;
}

.partner-program.light-bg .pf-disclaimer {
    background: transparent;
    border: none;
    color: var(--text-gray);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.blog-home-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 992px) {

    /* Make blog grid 2 columns on tablets */
    .blog-home-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    /* Make calculator stack on tablets */
    .calc-container {
        flex-direction: column !important;
    }
}

@media (max-width: 768px) {
    .partner-form .pf-row {
        grid-template-columns: 1fr;
    }

    .partner-form-wrapper {
        padding: 2rem 1.5rem;
    }

    /* 1. Blog section responsive (1 column) */
    .blog-home-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    /* 2. Calculator responsive */
    .calc-container {
        flex-direction: column !important;
        gap: 2rem !important;
    }

    .calc-panel {
        padding: 2rem 1.5rem !important;
    }

    .calc-row {
        flex-direction: column !important;
        gap: 1rem !important;
    }

    .calc-field {
        width: 100% !important;
    }

    /* 3. Categories tabs responsive */
    .filter-controls {
        flex-wrap: wrap !important;
        gap: 0.5rem !important;
        justify-content: center !important;
    }

    .filter-btn {
        flex: 1 1 calc(50% - 0.5rem) !important;
        margin: 0 !important;
        padding: 0.75rem 0.5rem !important;
        font-size: 0.85rem !important;
        text-align: center !important;
    }

    /* 4. Property listing grid of 2 in mobile */
    .opp-grid,
    .property-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }

    /* Adjust property card inside 2-column mobile grid */
    .property-img-wrapper {
        height: 160px !important;
    }

    .property-info {
        padding: 1rem !important;
    }

    .property-title {
        font-size: 1.05rem !important;
        margin-bottom: 0.4rem !important;
        line-height: 1.3 !important;
    }

    .property-desc {
        font-size: 0.8rem !important;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        margin-bottom: 0.7rem !important;
    }

    .price-value {
        font-size: 1.1rem !important;
    }

    .roi-badge {
        font-size: 0.7rem !important;
        padding: 0.3rem 0.6rem !important;
    }
}

/* ==========================================================================
   Antigravity Premium Custom Overrides for Team Grid & Light Partner Section
   ========================================================================== */

/* Single Team Leader Card Centering */
.team-grid.single-member {
    display: flex;
    justify-content: center;
    align-items: center;
}

.team-grid.single-member .team-card {
    max-width: 420px;
    width: 100%;
}

/* Light Background Overrides for Partner Program Section */
.partner-program.light-bg {
    background-color: var(--white);
    color: var(--primary);
    border-bottom: 1px solid rgba(13, 59, 54, 0.08);
}

.partner-program.light-bg .partner-decor-circle {
    border-color: rgba(200, 169, 107, 0.15);
}

.partner-program.light-bg .partner-content h2 {
    color: var(--primary);
}

.partner-program.light-bg .partner-content p {
    color: var(--text-gray);
}

.partner-program.light-bg .partner-form-wrapper {
    background: var(--white);
    border: 1px solid rgba(13, 59, 54, 0.1);
    box-shadow: var(--shadow-premium);
}

.partner-program.light-bg .partner-form-header h3 {
    color: var(--primary);
}

.partner-program.light-bg .partner-form-header p {
    color: var(--text-gray);
}

.partner-program.light-bg .pf-group label {
    color: var(--secondary-dark);
}

.partner-program.light-bg .pf-group input,
.partner-program.light-bg .pf-group select {
    background: var(--bg);
    border: 1px solid rgba(13, 59, 54, 0.12);
    color: var(--primary);
}

.partner-program.light-bg .pf-group input::placeholder {
    color: rgba(13, 59, 54, 0.4);
}

.partner-program.light-bg .pf-group input:focus,
.partner-program.light-bg .pf-group select:focus {
    border-color: var(--secondary);
    background: rgba(200, 169, 107, 0.08);
}

.partner-program.light-bg .pf-group select option {
    background: var(--white);
    color: var(--primary);
}

.partner-program.light-bg .pf-submit-btn {
    background: var(--primary);
    color: var(--white);
}

.partner-program.light-bg .pf-submit-btn:hover {
    background: var(--secondary);
    color: var(--primary);
    box-shadow: 0 10px 25px rgba(200, 169, 107, 0.3);
}

/* --- DARK THEME OVERRIDES --- */
[data-theme="dark"] {
    --bg: #0D3B36;
    --dark: #ffffff;
    --dark-muted: #e0e0e0;
    --text-gray: #dddddd;
    --white: #082622;
    --secondary: #C8A96B;
    --secondary-dark: #e8c98b;
    --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.5);
    --border-glass: rgba(200, 169, 107, 0.25);
}

[data-theme="dark"] body {
    background-color: var(--bg);
    color: var(--dark);
}

[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4,
[data-theme="dark"] h5,
[data-theme="dark"] h6,
[data-theme="dark"] .title,
[data-theme="dark"] .property-title,
[data-theme="dark"] .insight-title,
[data-theme="dark"] .service-title {
    color: #ffffff !important;
}

[data-theme="dark"] .filter-panel h3 {
    color: var(--secondary) !important;
}

[data-theme="dark"] .filter-panel,
[data-theme="dark"] .no-results-panel {
    background-color: var(--white);
    border-color: rgba(200, 169, 107, 0.2);
}

[data-theme="dark"] .filter-select {
    background-color: rgba(255, 255, 255, 0.05);
    color: #fff;
    border-color: rgba(200, 169, 107, 0.3);
}

[data-theme="dark"] header.scrolled {
    background-color: rgba(13, 59, 54, 0.96);
}

[data-theme="dark"] .search-container,
[data-theme="dark"] .catalog-card,
[data-theme="dark"] .oman-box-new,
[data-theme="dark"] .testimonial-card,
[data-theme="dark"] .insight-card,
[data-theme="dark"] .service-card,
[data-theme="dark"] .calculator-wrapper,
[data-theme="dark"] .partner-form-wrapper {
    background-color: var(--white) !important;
    border-color: rgba(200, 169, 107, 0.2) !important;
}

[data-theme="dark"] .form-group select,
[data-theme="dark"] .form-group input,
[data-theme="dark"] .pf-group input,
[data-theme="dark"] .pf-group select,
[data-theme="dark"] .input-with-symbol input {
    background-color: rgba(255, 255, 255, 0.05) !important;
    color: #fff !important;
}

[data-theme="dark"] .property-card {
    background-color: var(--white);
    border-color: rgba(200, 169, 107, 0.2);
}

[data-theme="dark"] .btn-primary {
    color: #082622 !important;
    background-color: var(--secondary) !important;
}

[data-theme="dark"] .btn-primary:hover {
    background-color: transparent !important;
    color: var(--secondary) !important;
}

[data-theme="dark"] .btn-dark-outline,
[data-theme="dark"] .btn-outline {
    border-color: var(--secondary) !important;
    color: var(--secondary) !important;
}

[data-theme="dark"] .btn-dark-outline:hover,
[data-theme="dark"] .btn-outline:hover {
    background-color: var(--secondary) !important;
    color: #082622 !important;
}

[data-theme="dark"] .read-more-btn {
    color: var(--secondary);
}

[data-theme="dark"] .read-more-btn:hover {
    color: #ffffff !important;
}

/* --- LATEST FIXES --- */

/* Fix label visibility inside calc and forms */
.calc-container label,
.form-group label,
.pf-group label {
    color: var(--secondary) !important;
}

/* Make partner section super highlighted */
.partner-form-wrapper {
    box-shadow: 0 0 50px rgba(200, 169, 107, 0.4) !important;
    border: 2px solid var(--secondary) !important;
    background: linear-gradient(145deg, #0a201b 0%, #05100e 100%) !important;
    transform: scale(1.02);
}

[data-theme="dark"] .partner-form-wrapper {
    background: linear-gradient(145deg, rgba(200, 169, 107, 0) 0%, rgba(0, 0, 0, 0) 100%) !important;
}

/* Footer to always be black with white/grey text */
footer {
    background-color: #050505 !important;
}

footer a,
footer i,
footer p {
    color: #e0e0e0 !important;
}

footer a:hover,
footer a:hover i {
    color: var(--secondary) !important;
}

/* --- DARK THEME TEXT VISIBILITY FIXES --- */
[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4,
[data-theme="dark"] h5,
[data-theme="dark"] h6,
[data-theme="dark"] .title,
[data-theme="dark"] .subtitle,
[data-theme="dark"] .office-p,
[data-theme="dark"] .badge-desc,
[data-theme="dark"] .faq-content-inner,
[data-theme="dark"] .channel-text h4,
[data-theme="dark"] .channel-text p,
[data-theme="dark"] .channel-text p a,
[data-theme="dark"] .compliance-notice p,
[data-theme="dark"] .faq-trigger {
    color: #ffffff !important;
}

[data-theme="dark"] .faq-content {
    background-color: transparent !important;
}

[data-theme="dark"] p,
[data-theme="dark"] .value-desc,
[data-theme="dark"] .team-bio {
    color: #e0e0e0 !important;
}

[data-theme="dark"] label,
[data-theme="dark"] .input-group label {
    color: #ffffff !important;
}

[data-theme="dark"] .pf-submit-btn {
    color: #082622 !important;
    background-color: var(--secondary) !important;
}

[data-theme="dark"] .story-highlight-box p {
    color: var(--secondary) !important;
}

/* --- FULL SECTION BLACK BACKGROUND FOR PARTNER PROGRAM --- */
/* .partner-program {
    background-color: #050505 !important;
} */

.partner-program h2,
.partner-program h3,
.partner-program p,
.partner-program .pf-group label,
.partner-form-header p {
    color: #ffffff !important;
}

.partner-program h2 span {
    color: var(--secondary) !important;
}

/* Partner Wrapper to have the card look containing both text and form */
.partner-wrapper {
    background: #050505 !important;
    border: 1px solid var(--secondary) !important;
    box-shadow: 0 0 40px rgba(200, 169, 107, 0.2) !important;
    border-radius: 20px !important;
    padding: 4rem 3rem !important;
}

/* Reset form wrapper since the parent is now the card */
.partner-form-wrapper {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
}

.pf-group input,
.pf-group select {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.pf-group input::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
}

.pf-submit-btn {
    background: var(--secondary) !important;
    color: #050505 !important;
    border: none !important;
}

.pf-submit-btn:hover {
    background: #ffffff !important;
    color: #050505 !important;
}

/* Logo Carousel (developer-logo) */
.developer-logo {
    filter: brightness(0) !important;
    /* Black in light mode */
}

[data-theme="dark"] .developer-logo {
    filter: brightness(0) invert(1) !important;
    /* White in dark mode */
}

/* --- Service Cards Default to Dark Green in Light Theme --- */
body:not([data-theme="dark"]) .service-card {
    background-color: var(--primary);
    border-color: var(--secondary);
}

body:not([data-theme="dark"]) .service-card .service-icon-box {
    background-color: var(--secondary);
    color: var(--primary);
}

body:not([data-theme="dark"]) .service-card .service-title {
    color: var(--white);
}

body:not([data-theme="dark"]) .service-card .service-desc {
    color: rgba(255, 255, 255, 0.7);
}

body:not([data-theme="dark"]) .service-card:hover {
    transform: translateY(-10px);
}

/* --- Premium Contact Form Redesign --- */
.contact-form-card {
    background: linear-gradient(145deg, rgba(20, 50, 40, 0.95) 0%, rgba(5, 15, 10, 0.98) 100%) !important;
    border: 1px solid var(--secondary) !important;
    border-radius: 20px !important;
    padding: 4.5rem 3.5rem !important;
    box-shadow: 0 0 50px rgba(200, 169, 107, 0.2) !important;
}

.contact-form-card h3 {
    color: #ffffff !important;
}

.contact-form-card p {
    color: rgba(255, 255, 255, 0.8) !important;
}

.contact-form-card label {
    color: #ffffff !important;
}

.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
}

.contact-form-card select option {
    background-color: #050505 !important;
    color: #ffffff !important;
}

.contact-form-card input::placeholder,
.contact-form-card textarea::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
}

.contact-form-card .compliance-notice p {
    color: rgba(255, 255, 255, 0.7) !important;
}

.contact-form-card .query-type-btn {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
}

.contact-form-card input[type="radio"]:checked+.query-type-btn {
    background: var(--secondary) !important;
    border-color: var(--secondary) !important;
    color: #050505 !important;
}

/* --- Property Type Checkbox Cards --- */
.property-type-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.35rem;
}

.contact-form-card .property-type-checkbox-card {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.85rem !important;
    padding: 0.85rem 1.6rem !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    transition: all 0.25s ease !important;
    user-select: none !important;
    margin: 0 !important;
}

.contact-form-card .property-type-checkbox-card:hover {
    border-color: var(--secondary) !important;
    background: rgba(255, 255, 255, 0.12) !important;
}

.contact-form-card .property-type-checkbox-card input[type="checkbox"] {
    position: absolute !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    pointer-events: none !important;
}

.contact-form-card .checkbox-custom-box {
    width: 22px !important;
    height: 22px !important;
    min-width: 22px !important;
    border-radius: 5px !important;
    border: 1.5px solid rgba(255, 255, 255, 0.4) !important;
    background: rgba(0, 0, 0, 0.25) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.25s ease !important;
    flex-shrink: 0 !important;
}

.contact-form-card .checkbox-custom-box i {
    font-size: 0.75rem !important;
    color: #082622 !important;
    opacity: 0 !important;
    transform: scale(0.5) !important;
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.contact-form-card .property-type-text {
    font-size: 0.95rem !important;
    font-weight: 500 !important;
    color: #ffffff !important;
    letter-spacing: 0.3px !important;
}

.contact-form-card .property-type-checkbox-card.is-checked,
.contact-form-card .property-type-checkbox-card:has(input[type="checkbox"]:checked) {
    border-color: var(--secondary) !important;
    background: rgba(200, 169, 107, 0.15) !important;
    box-shadow: 0 0 15px rgba(200, 169, 107, 0.2) !important;
}

.contact-form-card .property-type-checkbox-card.is-checked .checkbox-custom-box,
.contact-form-card .property-type-checkbox-card input[type="checkbox"]:checked + .checkbox-custom-box {
    background: var(--secondary) !important;
    border-color: var(--secondary) !important;
}

.contact-form-card .property-type-checkbox-card.is-checked .checkbox-custom-box i,
.contact-form-card .property-type-checkbox-card input[type="checkbox"]:checked + .checkbox-custom-box i {
    opacity: 1 !important;
    transform: scale(1) !important;
}

.contact-form-card .btn-primary {
    background: var(--secondary) !important;
    color: #050505 !important;
    border: none !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
}

.contact-form-card .btn-primary:hover {
    background: #ffffff !important;
    color: #050505 !important;
}

@media (max-width: 576px) {
    .contact-form-card {
        padding: 3rem 1.5rem !important;
    }
}

/* --- Contact Form Grid 50/50 Layout --- */
.contact-inputs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.form-group-full {
    grid-column: 1 / -1;
}

@media (max-width: 768px) {
    .contact-inputs-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Smooth Logo Marquee Animation --- */
.logo-carousel-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 2rem 0;
    white-space: nowrap;
}

.logo-track {
    display: flex;
    width: max-content;
    animation: marquee-scroll 25s linear infinite;
    gap: 4rem;
    align-items: center;
}

.logo-track:hover {
    animation-play-state: paused;
}

.logo-slide {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 1.5rem;
}

.developer-logo {
    max-width: 160px;
    max-height: 70px;
    object-fit: contain;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 2rem));
    }

    /* -50% shifts by half the content, -2rem is half the gap */
}

/* --- Premium Image-less Reviews Layout --- */
.premium-reviews-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 2rem;
}

.premium-review-card {
    background: linear-gradient(145deg, rgba(20, 50, 40, 0.4) 0%, rgba(5, 15, 10, 0.6) 100%);
    border: 1px solid rgba(200, 169, 107, 0.3);
    border-radius: 16px;
    padding: 3.5rem 3rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.premium-review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(13, 59, 54, 0.15);
    border-color: rgba(200, 169, 107, 0.8);
    background: linear-gradient(145deg, rgba(20, 50, 40, 0.6) 0%, rgba(5, 15, 10, 0.8) 100%);
}

.premium-review-card .quote-mark {
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 8rem;
    color: rgba(200, 169, 107, 0.05);
    z-index: 0;
    line-height: 1;
}

.premium-review-card .client-stars {
    color: var(--secondary);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.premium-review-card .client-quote {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    line-height: 1.8;
    font-style: italic;
    margin: 0 0 2.5rem 0;
    position: relative;
    z-index: 1;
    font-weight: 300;
}

.premium-review-card .review-author {
    border-top: 1px solid rgba(200, 169, 107, 0.2);
    padding-top: 1.5rem;
    position: relative;
    z-index: 1;
}

.premium-review-card .review-author h4 {
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin: 0 0 0.3rem 0;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.premium-review-card .review-author p {
    color: var(--secondary);
    font-size: 0.9rem;
    margin: 0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media(max-width: 991px) {
    .premium-reviews-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .premium-review-card {
        padding: 2.5rem 2rem;
    }
}
/* Minimalist Footer Responsive Styles */
.footer-grid.minimal-footer {
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}
.minimal-col {
    text-align: right;
}
.minimal-social {
    justify-content: flex-end;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .footer-grid.minimal-footer {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }
    .minimal-col {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .minimal-social {
        justify-content: center;
    }
    .footer-brand .contact-details {
        align-items: center;
        text-align: center;
    }
    .footer-brand img {
        margin: 0 auto;
    }
}


/* Dark theme calculator text fixes */
[data-theme="dark"] .calc-inputs-panel h3,
[data-theme="dark"] .calc-group label,
[data-theme="dark"] .calc-toggle-group .toggle-label,
[data-theme="dark"] .slider-header label,
[data-theme="dark"] .advanced-settings-toggle,
[data-theme="dark"] .hero-roi-metric,
[data-theme="dark"] .input-symbol {
    color: #ffffff !important;
}


[data-theme="dark"] .calc-results-panel h4,
[data-theme="dark"] .res-lbl,
[data-theme="dark"] .premium-metrics .res-val:not(.highlight-gold) {
    color: #ffffff !important;
}

