/* =========================================
   BARAKAH VENTURE LTD
   PREMIUM BRAND THEME
   Colors:
   #AE9963 (Gold)
   #58595B (Charcoal)
========================================= */

:root{
    --primary:#AE9963;
    --primary-dark:#978554;

    --secondary:#58595B;

    --bg-light:#faf8f3;
    --bg-soft:#f3efe5;

    --text:#2d2d2d;
    --text-light:#6b6b6b;

    --border:#e5e1d5;

    --white:#ffffff;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;
    color:var(--text-light);
    background:#fff;
    line-height:1.6;
    overflow-x:hidden;
}



/* =========================================
   BUTTONS
========================================= */

.btn-primary{
    background:var(--primary);
    color:#fff;
    padding:14px 32px;
    border:none;
    border-radius:8px;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    text-decoration:none;
    display:inline-block;
    transition:0.3s ease;
}

.btn-primary:hover{
    background:var(--primary-dark);
    transform:translateY(-2px);
    box-shadow:0 12px 24px rgba(174,153,99,0.25);
}

.btn-secondary{
    background:transparent;
    color:var(--primary);
    padding:12px 28px;
    border:1.5px solid var(--primary);
    border-radius:8px;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
    text-decoration:none;
    display:inline-block;
    transition:0.3s ease;
}

.btn-secondary:hover{
    background:var(--primary);
    color:#fff;
}

/* =========================================
   HERO SECTION
========================================= */

.hero-section{
    background:linear-gradient(135deg,#faf8f3 0%, #f3efe5 100%);
    padding:200px 0 120px;
    position:relative;
    overflow:hidden;
}

.hero-section::before{
    content:'';
    position:absolute;
    width:600px;
    height:600px;
    background:radial-gradient(circle, rgba(174,153,99,0.12) 0%, transparent 70%);
    top:-200px;
    right:-200px;
    border-radius:50%;
}

.hero-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
    position:relative;
    z-index:2;
}

.hero-content h1{
    font-size:56px;
    font-weight:700;
    color:var(--secondary);
    margin-bottom:24px;
    line-height:1.2;
}

.hero-content .highlight{
    color:var(--primary);
}

.hero-content .tagline{
    font-size:18px;
    color:var(--text-light);
    margin-bottom:40px;
    line-height:1.8;
}

.hero-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.hero-image{
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
}

.hero-image-placeholder{
    width:100%;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 25px 60px rgba(0,0,0,0.08);
    border:1px solid rgba(174,153,99,0.12);
}

.hero-image-placeholder img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* =========================================
   SECTION HEADER
========================================= */

.section-header{
    text-align:center;
    margin-bottom:60px;
}

.section-header h2{
    font-size:42px;
    font-weight:700;
    color:var(--secondary);
    margin-bottom:16px;
}

.section-header h2 span{
    color:var(--primary);
}

.section-header p{
    font-size:18px;
    color:var(--text-light);
    max-width:700px;
    margin:0 auto;
}

/* =========================================
   VENTURES SECTION
========================================= */

.ventures-section{
    padding:100px 0;
    background:#fff;
}

.ventures-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
    gap:40px;
}

.venture-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:18px;
    padding:40px 32px;
    text-align:center;
    transition:0.3s ease;
}

.venture-card:hover{
    border-color:var(--primary);
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(174,153,99,0.14);
}

.venture-icon{
    width:80px;
    height:80px;
    background:linear-gradient(135deg,#AE9963 0%, #978554 100%);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 24px;
    font-size:34px;
    color:#fff;
}

.venture-card h3{
    font-size:26px;
    font-weight:700;
    color:var(--secondary);
    margin-bottom:12px;
}

.venture-url{
    color:var(--primary);
    font-size:15px;
    font-weight:600;
    margin-bottom:16px;
    display:block;
}

.venture-card p{
    margin-bottom:26px;
}

/* =========================================
   ABOUT SECTION
========================================= */

.about-section{
    padding:100px 0;
    background:linear-gradient(135deg,#faf8f3 0%, #ffffff 100%);
}

.about-content{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.about-text h2{
    font-size:42px;
    font-weight:700;
    color:var(--secondary);
    margin-bottom:24px;
}

.about-text h2 span{
    color:var(--primary);
}

.about-text p{
    font-size:17px;
    line-height:1.8;
    margin-bottom:20px;
}

.about-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.feature-item{
    display:flex;
    align-items:flex-start;
    gap:16px;
}

.feature-icon{
    width:48px;
    height:48px;
    background:linear-gradient(135deg,#AE9963 0%, #978554 100%);
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:20px;
    flex-shrink:0;
}

.feature-item h4{
    color:var(--secondary);
    margin-bottom:4px;
}

/* =========================================
   SERVICES
========================================= */

.services-section{
    padding:100px 0;
    background:#fff;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:40px;
}

.service-card{
    background:linear-gradient(135deg,#faf8f3 0%, #ffffff 100%);
    border-radius:20px;
    padding:48px 36px;
    transition:0.3s ease;
    border:1px solid transparent;
}

.service-card:hover{
    border-color:var(--primary);
    box-shadow:0 15px 35px rgba(174,153,99,0.12);
}

.service-number{
    width:60px;
    height:60px;
    background:linear-gradient(135deg,#AE9963 0%, #978554 100%);
    color:#fff;
    font-size:24px;
    font-weight:700;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:24px;
}

.service-card h3{
    font-size:24px;
    color:var(--secondary);
    margin-bottom:16px;
}

.service-features{
    margin-top:24px;
}

.service-features li{
    list-style:none;
    position:relative;
    padding-left:24px;
    margin-bottom:10px;
}

.service-features li::before{
    content:'✓';
    color:var(--primary);
    position:absolute;
    left:0;
    font-weight:700;
}

/* =========================================
   STATS SECTION
========================================= */

.stats-section{
    padding:80px 0;
    background:linear-gradient(135deg,#58595B 0%, #3f4042 100%);
    color:#fff;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:40px;
    text-align:center;
}

.stat-number{
    font-size:56px;
    font-weight:700;
    margin-bottom:8px;
}

.stat-label{
    color:rgba(255,255,255,0.85);
}

/* =========================================
   TESTIMONIALS
========================================= */

.testimonials-section{
    padding:100px 0;
    background:#fff;
}

.testimonials-slider{
    max-width:900px;
    margin:60px auto 0;
}

.testimonial-card{
    background:linear-gradient(135deg,#faf8f3 0%, #ffffff 100%);
    border-radius:18px;
    padding:48px 40px;
    text-align:center;
    border:1px solid var(--border);
}

.testimonial-quote{
    font-size:20px;
    color:var(--secondary);
    font-style:italic;
    line-height:1.8;
    margin-bottom:32px;
    position:relative;
}

.testimonial-quote::before{
    content:'"';
    font-size:72px;
    color:var(--primary);
    position:absolute;
    top:-20px;
    left:-10px;
    opacity:0.25;
}

.testimonial-author{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:16px;
}

.author-avatar{
    width:60px;
    height:60px;
    background:linear-gradient(135deg,#AE9963 0%, #978554 100%);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-weight:700;
}

.author-info h4{
    color:var(--secondary);
    margin-bottom:4px;
}

.testimonial-dots{
    display:flex;
    justify-content:center;
    gap:12px;
    margin-top:32px;
}

.dot{
    width:12px;
    height:12px;
    background:#e5e1d5;
    border-radius:50%;
}

.dot.active{
    width:32px;
    border-radius:20px;
    background:var(--primary);
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1024px){

.hero-wrapper,
.about-content{
    grid-template-columns:1fr;
}

.hero-content h1{
    font-size:46px;
}

}

@media(max-width:768px){

.hero-section{
    padding:100px 0 80px;
}

.hero-content h1{
    font-size:36px;
}

.section-header h2,
.about-text h2{
    font-size:34px;
}

.ventures-grid,
.services-grid,
.stats-grid{
    grid-template-columns:1fr;
}

.about-features{
    grid-template-columns:1fr;
}

.hero-buttons{
    flex-direction:column;
}

}
