:root {
    --ef-bg-color: #050505;
    --ef-gold-grad: linear-gradient(135deg, #f3ba2f 0%, #a2790d 100%);
    --ef-text-white: #ffffff;
    --ef-text-gray: #a0a0a0;
    --ef-font-main: 'Inter', sans-serif; /* Use your preferred sans-serif */
}

.ef-hero-container {
    background-color: var(--ef-bg-color);
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 10%;
    color: var(--ef-text-white);
    font-family: var(--ef-font-main);
    overflow: hidden;
    position: relative;
}

/* Content Side */
.ef-hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
}

.ef-contract-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 30px;
}

.ef-badge-icon {
    margin-right: 10px;
    display: flex;
}

.ef-contract-badge p {
    font-size: 14px;
    margin: 0;
    color: var(--ef-text-gray);
}

.ef-contract-badge span {
    color: rgba(255, 255, 255, 0.6);
}

.ef-main-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

.ef-main-title span {
    color: var(--ef-text-gray);
    font-weight: 500;
}

.ef-subtitle {
    font-size: 1.2rem;
    color: var(--ef-text-gray);
    margin-bottom: 40px;
}

/* Buttons */
.ef-btn-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.ef-btn {
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.ef-btn-primary {
    background: var(--ef-gold-grad);
    color: #000;
}

.ef-btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--ef-text-white);
}

.ef-btn-whatsapp {
    background: #25D366;
    color: #fff;
}

.ef-btn-whatsapp:hover {
    opacity: 0.95;
}

.ef-btn:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

/* Image Side */
.ef-hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.ef-image-wrapper {
    position: relative;
    animation: ef-float 6s ease-in-out infinite;
}

.ef-main-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 0 50px rgba(243, 186, 47, 0.1));
}

/* Floating Animation */
@keyframes ef-float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Responsive */
@media (max-width: 992px) {
    .ef-hero-container {
        flex-direction: column;
        text-align: center;
        padding: 80px 5%;
    }
    .ef-hero-content {
        margin-bottom: 50px;
    }
    .ef-btn-group {
        justify-content: center;
    }
    .ef-main-title {
        font-size: 2.8rem;
    }
}


:root {
    --ef-card-bg: #0a0a0a;
    --ef-accent-gold: #f3ba2f;
    --ef-text-main: #ffffff;
    --ef-text-muted: #888888;
    --ef-border-color: rgba(255, 255, 255, 0.08);
}

.ef-about-section {
    background-color: #000; /* Dark overall background */
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    font-family: 'Inter', sans-serif;
}

.ef-about-card {
    background: var(--ef-card-bg);
    max-width: 100%;
    width: 100%;
    padding: 60px;
    border-radius: 40px;
    border: 1px solid var(--ef-border-color);
    position: relative;
    overflow: hidden;
    /* Subtle inner glow */
    box-shadow: inset 0px 0px 50px rgba(255, 255, 255, 0.02);
}

/* The small "i About Us" tag */
.ef-about-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--ef-text-muted);
    font-size: 14px;
    margin-bottom: 20px;
}

.ef-info-icon {
    width: 18px;
    height: 18px;
    background: var(--ef-accent-gold);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 12px;
}

/* Title Styling */
.ef-about-title {
    font-size: 3.5rem;
    color: var(--ef-text-main);
    margin-bottom: 30px;
    font-weight: 600;
}

.ef-about-title span {
    color: var(--ef-text-muted);
}

/* Description text */
.ef-about-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--ef-text-muted);
    max-width: 700px;
    margin-bottom: 50px;
}

/* Image/Illustration area */
.ef-about-visual {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.ef-pillars-img {
    max-width: 40%;
    height: auto;
    /* Adding a slight gold glow to the image placeholder */
    filter: drop-shadow(0 20px 30px rgba(243, 186, 47, 0.05));
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .ef-about-card {
        padding: 40px 25px;
        border-radius: 30px;
    }
    
    .ef-about-title {
        font-size: 2.5rem;
    }
    
    .ef-about-description {
        font-size: 1rem;
    }
}


:root {
    --ef-black: #000000;
    --ef-card-dark: #0d0d0d;
    --ef-gold: #f3ba2f;
    --ef-text-p: #a5a5a5;
}

.ef-features-container {
    background-color: var(--ef-black);
    padding: 100px 8%;
    font-family: 'Inter', sans-serif;
    color: #fff;
}

/* Header & Lines */
.ef-features-header {
    text-align: center;
    margin-bottom: 60px;
}

.ef-features-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ef-gold);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.ef-tag-dot {
    width: 6px;
    height: 6px;
    background: var(--ef-gold);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--ef-gold);
}

.ef-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.ef-features-title {
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
}

.ef-features-title span {
    color: var(--ef-text-p);
    font-weight: 400;
}

.ef-line {
    height: 1px;
    width: 100px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2));
}

.ef-diamond {
    width: 8px;
    height: 8px;
    background: rgba(255,255,255,0.3);
    transform: rotate(45deg);
}

/* Grid Layout */
.ef-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.ef-feature-card {
    background: var(--ef-card-dark);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 50px 30px;
    text-align: center;
    transition: transform 0.3s ease, border 0.3s ease;
}

.ef-feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(243, 186, 47, 0.3);
}

/* Icon & Glow Effect */
.ef-icon-box {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ef-icon-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(243, 186, 47, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.ef-icon-box img {
    width: 100%;
    z-index: 1;
    filter: brightness(1.2);
}

.ef-feature-card p {
    color: var(--ef-text-p);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .ef-features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .ef-features-grid { grid-template-columns: 1fr; }
    .ef-features-title { font-size: 2.2rem; }
    .ef-line { display: none; }
}


:root {
    --ef-opt-bg: #000000;
    --ef-opt-gold: #f3ba2f;
    --ef-opt-white: #ffffff;
    --ef-opt-gray: #a0a0a0;
    --ef-item-bg: rgba(255, 255, 255, 0.04);
}

.ef-opt-section {
    background-color: var(--ef-opt-bg);
    padding: 100px 8%;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
}

.ef-opt-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.ef-opt-content {
    flex: 1.2;
}

/* Badge Tag */
.ef-opt-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--ef-opt-gray);
    font-size: 14px;
    margin-bottom: 25px;
}

.ef-opt-icon {
    background: var(--ef-opt-gold);
    color: #000;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

/* Typography */
.ef-opt-title {
    font-size: 3rem;
    color: var(--ef-opt-white);
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 700;
}

.ef-opt-title span {
    color: var(--ef-opt-gray);
    font-weight: 400;
}

.ef-opt-description {
    color: var(--ef-opt-gray);
    line-height: 1.6;
    font-size: 1.1rem;
    max-width: 600px;
    margin-bottom: 40px;
}

/* Feature List */
.ef-opt-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ef-opt-item {
    background: var(--ef-item-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 16px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--ef-opt-gray);
    transition: all 0.3s ease;
    cursor: default;
    max-width: 500px;
}

.ef-opt-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(10px);
    border-color: var(--ef-opt-gold);
}

.ef-check-box {
    width: 20px;
    height: 20px;
    background: var(--ef-opt-gold);
    color: #000;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ef-check-box svg {
    width: 14px;
    height: 14px;
}

/* Right Side Image */
.ef-opt-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.ef-opt-main-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(243, 186, 47, 0.15));
}

/* Responsive */
@media (max-width: 1024px) {
    .ef-opt-wrapper {
        flex-direction: column;
        text-align: center;
    }
    .ef-opt-description, .ef-opt-item {
        max-width: 100%;
    }
    .ef-opt-badge, .ef-opt-list {
        justify-content: center;
    }
    .ef-opt-item {
        text-align: left;
    }
}

:root {
    --ef-faq-bg: #000000;
    --ef-faq-card: #0d0d0d;
    --ef-gold: #f3ba2f;
    --ef-text-gray: #a0a0a0;
}

.ef-faq-section {
    background-color: var(--ef-faq-bg);
    padding: 100px 10%;
    color: #fff;
    font-family: 'Inter', sans-serif;
}

/* Header Styling */
.ef-faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.ef-faq-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ef-text-gray);
    font-size: 14px;
    margin-bottom: 20px;
}

.ef-faq-tag-icon {
    background: var(--ef-gold);
    color: #000;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.ef-faq-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.ef-faq-title {
    font-size: 2.8rem;
    line-height: 1.1;
    margin: 0;
}

.ef-faq-line {
    height: 1px;
    width: 80px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1));
}

.ef-faq-diamond {
    width: 8px;
    height: 8px;
    background: rgba(255,255,255,0.2);
    transform: rotate(45deg);
}

/* Accordion List */
.ef-faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ef-faq-item {
    background: var(--ef-faq-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.ef-faq-question {
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.1rem;
    color: var(--ef-text-gray);
    transition: color 0.3s ease;
}

.ef-faq-item:hover .ef-faq-question {
    color: #fff;
}

/* Toggle Button */
.ef-faq-toggle {
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.05);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}

.ef-icon-minus { display: none; font-size: 20px; }
.ef-icon-plus { display: block; font-size: 20px; }

/* Active Item State */
.ef-faq-item.active {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(243, 186, 47, 0.2);
}

.ef-faq-item.active .ef-faq-question {
    color: #fff;
}

.ef-faq-item.active .ef-faq-toggle {
    background: var(--ef-gold);
    color: #000;
    box-shadow: 0 0 15px rgba(243, 186, 47, 0.3);
}

.ef-faq-item.active .ef-icon-plus { display: none; }
.ef-faq-item.active .ef-icon-minus { display: block; }

/* Answer Area */
.ef-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.ef-answer-content {
    padding: 0 30px 30px;
    color: var(--ef-text-gray);
    line-height: 1.6;
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .ef-faq-title { font-size: 2rem; }
    .ef-faq-line { display: none; }
}
