/* ===== GENERAL ===== */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: 'Source Sans 3', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
html, body{
    overflow-x:hidden;
    width:100%;
}

body{
    background:#f5f7fa;
    color:#1a1a1a;
    line-height:1.6;
}

:root{
    --brand-ink:#10222a;
    --brand-ink-2:#1d3640;
    --brand-accent:#c89b3c;
    --brand-soft:#eef2f7;
    --brand-line:#d5dbe3;
}

h1, h2, h3{
    font-family:'Marcellus', 'Times New Roman', serif;
    letter-spacing:.5px;
}

/* ===== COLORS ===== */
.color-primary { color:#00d4a3; }   
.color-accent  { color:#ff7a00; }  
.color-dark    { color:#0f2027; }   

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp{
    0% { opacity: 0; transform: translateY(30px);}
    100% { opacity: 1; transform: translateY(0);}
}

@keyframes float{
    0%,100%{ transform:translateY(0);}
    50%{ transform:translateY(-15px);}
}

/* ===== HERO ===== */
.hero{
    min-height:90vh;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:48px;
    padding:var(--hero-top-spacing) var(--hero-inline-padding) var(--hero-bottom-spacing);
    background:
        radial-gradient(circle at top right, rgba(200,155,60,0.22), transparent 30%),
        radial-gradient(circle at left center, rgba(0,212,163,0.16), transparent 28%),
        linear-gradient(135deg,#09161c 0%,#10222a 48%,#183741 100%);
    color:white;
    overflow:hidden;
    position:relative;
}
.hero-content{
    max-width:620px;
    animation:fadeInUp 1s ease forwards;
    position:relative;
    z-index:1;
}
.hero::after{
    content:"";
    position:absolute;
    inset:0;
    background:
        linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px),
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size:90px 90px;
    opacity:.18;
    pointer-events:none;
}
.hero-eyebrow{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:10px 16px;
    margin-bottom:24px;
    border:1px solid rgba(255,255,255,0.14);
    border-radius:999px;
    background:rgba(255,255,255,0.05);
    color:#f2c56a;
    font-weight:600;
    letter-spacing:1.2px;
    text-transform:uppercase;
    font-size:14px;
}
.hero-content h1{
    font-size:62px;
    margin:0 0 20px;
    font-weight:700;
    line-height:1.08;
}
.hero-content p{
    max-width:560px;
    font-size:19px;
    opacity:.88;
    margin-bottom:26px;
}
.hero-trust{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-bottom:34px;
}
.hero-trust span{
    padding:10px 14px;
    border-radius:999px;
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.1);
    color:#edf5f7;
    font-size:14px;
}
.hero-buttons{
    display:flex;
    gap:16px;
    flex-wrap:wrap;
}
.btn-primary{
    background:linear-gradient(135deg,#d8ab45,#b78728);
    color:#10222a;
    padding:14px 30px;
    border-radius:30px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
    box-shadow:0 14px 30px rgba(200,155,60,0.24);
}
.btn-primary:hover{
    background:#f0c568;
    transform:translateY(-3px);
}
.btn-outline{
    border:1px solid rgba(255,255,255,0.22);
    color:white;
    padding:14px 30px;
    border-radius:30px;
    text-decoration:none;
    transition:.3s;
    background:rgba(255,255,255,0.04);
}
.btn-outline:hover{
    background:rgba(255,255,255,0.12);
    color:#fff;
}
.hero-image{
    flex:1;
    min-width:320px;
    display:flex;
    flex-direction:column;
    gap:24px;
    position:relative;
    z-index:1;
}
.hero-panel{
    align-self:flex-end;
    max-width:480px;
    padding:32px;
    border-radius:28px;
    background:linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.06));
    border:1px solid rgba(255,255,255,0.12);
    backdrop-filter:blur(16px);
    box-shadow:0 24px 60px rgba(0,0,0,0.28);
}
.hero-panel-badge{
    display:inline-block;
    margin-bottom:18px;
    padding:8px 14px;
    border-radius:999px;
    background:rgba(16,34,42,0.45);
    color:#f2c56a;
    font-size:13px;
    letter-spacing:1px;
    text-transform:uppercase;
}
.hero-panel h2{
    font-size:34px;
    line-height:1.2;
    margin-bottom:14px;
}
.hero-panel p{
    margin-bottom:24px;
    color:rgba(255,255,255,0.84);
}
.hero-metrics{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:14px;
}
.metric-card{
    padding:18px 14px;
    border-radius:18px;
    background:rgba(9,22,28,0.34);
    border:1px solid rgba(255,255,255,0.08);
}
.metric-card strong{
    display:block;
    margin-bottom:6px;
    color:#f2c56a;
    font-size:22px;
    letter-spacing:.5px;
}
.metric-card span{
    display:block;
    font-size:13px;
    color:rgba(255,255,255,0.78);
    line-height:1.5;
}
.hero-image-frame{
    align-self:flex-start;
    position:relative;
    padding:18px;
    border-radius:30px;
    background:linear-gradient(135deg, rgba(255,255,255,0.14), rgba(255,255,255,0.04));
    border:1px solid rgba(255,255,255,0.12);
    box-shadow:0 18px 40px rgba(0,0,0,0.22);
}
.hero-image-frame img{
    width:390px;
    max-width:100%;
    animation:float 4s ease-in-out infinite;
    display:block;
    filter:drop-shadow(0 18px 32px rgba(0,0,0,0.25));
}

/* ===== ABOUT PREVIEW ===== */
.about-preview{
    padding:80px 10%;
    background:#f9fafc;
    color:#1a1a1a;
}
.section-title{
    text-align:center;
    font-size:38px;
    margin-bottom:50px;
    font-weight:700;
    color:#203a43;
}
.about-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;
    flex-wrap:wrap;
    animation:fadeInUp 1s ease forwards;
}
.about-image img{
    width:400px;
    border-radius:60px;
    box-shadow:0 10px 20px rgba(0, 0, 0, 0.466);
}
.about-text{
    max-width:600px;
}
.about-text p{
    font-size:22px;
    line-height:1.8;
    margin-bottom:35px;
    opacity:.9;
    color:#070707;
}
.reveal-top,
.reveal-left,
.reveal-right{
    opacity:0;
    transition:all 0.9s ease;
}
.reveal-top{
    transform:translateY(-60px);
}
.reveal-left{
    transform:translateX(-80px);
}
.reveal-right{
    transform:translateX(80px);
}
.active{
    opacity:1;
    transform:translate(0,0);
}

/* ===== WHY CHOOSE US ===== */
.why-choose{
    padding:80px 10%;
    background:#f1f3f3;
    color:#1a1a1a;
}
.why-choose .section-title{
    text-align:center;
    font-size:38px;
    margin-bottom:40px;
    font-weight:700;
    color:#0f2027;
}
.why-text{
    max-width:800px;
    margin:auto;
    font-size:20px;
    line-height:1.8;
    text-align:center;
    opacity:.9;
    animation:fadeInUp 1s ease forwards;
}


/* ===== SERVICES PREVIEW ===== */
.services-preview{
    padding:80px 10%;
    background:#f9fafc;
    text-align:center;
}
.section-subtitle{
    font-size:18px;
    margin-bottom:50px;
    opacity:.8;
}
.services-cards{
    display:flex;
    justify-content:space-between;
    gap:30px;
    flex-wrap:wrap;
    animation:fadeInUp 1s ease forwards;
}
.services-cards .card{
    background:white;
    flex:1;
    min-width:280px;
    padding:40px 20px;
    border-radius:12px;
    box-shadow:0 10px 25px rgba(255, 157, 46, 0.26);
    transition:.3s;
}
.services-cards .card:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 30px rgba(255, 157, 46, 0.658);
}
.services-cards .card i{
    font-size:36px;
    margin-bottom:20px;
    color:#00d4a3;
}
.services-cards .card h3{
    font-size:20px;
    margin-bottom:15px;
    color:#0f2027;
}
.services-cards .card p{
    font-size:16px;
    line-height:1.6;
    opacity:.85;
}
.services-button{
    margin-top:60px; 
}
.services-button a{
    display:inline-block;
    text-decoration:none;
}
.btn-primary i{
    margin-left:8px;
    transition:transform .3s ease;
}
.btn-primary:hover i{
    transform:translateX(6px);
}
.services-preview .section-title,
.services-preview .section-subtitle,
.services-preview .card,
.services-button{
    opacity:0;
    transform:translateY(60px) scale(.95);
    transition:all 0.8s ease;
}
.services-preview.active .section-title{
    opacity:1;
    transform:translateY(0) scale(1);
    transition-delay:0.1s;
}
.services-preview.active .section-subtitle{
    opacity:1;
    transform:translateY(0) scale(1);
    transition-delay:0.2s;
}
.services-preview.active .card:nth-child(1){
    opacity:1;
    transform:translateY(0) scale(1);
    transition-delay:0.3s;
}
.services-preview.active .card:nth-child(2){
    opacity:1;
    transform:translateY(0) scale(1);
    transition-delay:0.5s;
}
.services-preview.active .card:nth-child(3){
    opacity:1;
    transform:translateY(0) scale(1);
    transition-delay:0.7s;
}
.services-preview.active .services-button{
    opacity:1;
    transform:translateY(0) scale(1);
    transition-delay:0.9s;
}

@media (max-width: 992px){
    .hero{
        flex-direction:column;
        align-items:flex-start;
        min-height:auto;
    }
    .hero-content{
        max-width:100%;
    }
    .hero-content h1{
        font-size:48px;
    }
    .hero-image{
        width:100%;
        min-width:0;
    }
    .hero-panel,
    .hero-image-frame{
        align-self:stretch;
    }
    .hero-image-frame{
        display:flex;
        justify-content:center;
    }
    .about-container{
        flex-direction:column;
        text-align:center;
    }
    .about-image img{
        width:280px;
        margin-bottom:30px;
    }
    .about-text p{
        font-size:18px;
    }
    .why-text{
        font-size:18px;
        padding:0 10px;
    }
    .services-cards{
        flex-direction:column;
        align-items:center;
    }
    .services-cards .card{
        width:100%;
        max-width:400px;
    }
}

@media (max-width: 768px){
    .hero{
        gap:32px;
    }
    .hero-content h1{
        font-size:38px;
    }
    .hero-content p{
        font-size:17px;
    }
    .hero-trust{
        gap:10px;
    }
    .hero-buttons{
        justify-content:center;
    }
    .hero-panel{
        padding:24px;
        border-radius:22px;
    }
    .hero-panel h2{
        font-size:26px;
    }
    .hero-metrics{
        grid-template-columns:1fr;
    }
}

@media (max-width: 576px){
    .section-title{
        font-size:28px;
    }
    .section-subtitle{
        font-size:16px;
    }
    .hero-content h1{
        font-size:30px;
    }
    .hero-content p{
        font-size:15px;
    }
    .btn-primary,
    .btn-outline{
        padding:10px 20px;
        font-size:14px;
    }
}
