/*=========================================
  HERO
=========================================*/
.hero{
    position:relative;
    min-height:100svh;
    padding:calc(var(--header-h) + 50px) 20px 60px;
    display:flex;
    align-items:center;
    background:url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1600") center/cover;
}

.overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(rgba(8,26,54,.82),rgba(8,26,54,.74));
}

.hero-content{
    position:relative;
    z-index:2;
    width:100%;
    max-width:680px;
    margin:0 auto;
    color:#fff;
    text-align:center;
    animation:fadeUp .9s ease;
}

.hero-content h5{
    color:var(--gold);
    font-size:13px;
    letter-spacing:3px;
    margin-bottom:16px;
}

.hero-content h1{
    font-size:34px;
    line-height:1.25;
    margin-bottom:20px;
}

.hero-content span{
    color:var(--gold);
}

.hero-content p{
    font-size:15px;
    color:#dfe4ec;
    line-height:1.8;
    margin-bottom:30px;
}

.hero .buttons{
    justify-content:center;
}

.hero .gold-btn,
.hero .outline-btn{
    width:100%;
    justify-content:center;
}

@media(min-width:600px){
    .hero .buttons{
        flex-wrap:nowrap;
    }
    .hero .gold-btn,
    .hero .outline-btn{
        width:auto;
    }
}

@media(min-width:900px){
    .hero{
        padding:0 8%;
        text-align:left;
    }
    .hero-content{
        margin:0;
        text-align:left;
        max-width:650px;
    }
    .hero-content h5{
        font-size:16px;
    }
    .hero-content h1{
        font-size:52px;
    }
    .hero-content p{
        font-size:17px;
    }
    .hero .buttons{
        justify-content:flex-start;
    }
}

@media(min-width:1200px){
    .hero-content h1{
        font-size:62px;
    }
}

/*=========================================
  SECTION TITLE (shared pattern for this page)
=========================================*/
.section-title{
    text-align:center;
    max-width:680px;
    margin:0 auto 45px;
    padding:0 20px;
}

.section-title h5{
    color:#c89b2b;
    letter-spacing:3px;
    font-size:13px;
}

.section-title h2{
    font-size:28px;
    color:var(--primary);
    margin:14px 0;
}

.section-title p{
    color:#666;
    line-height:1.8;
    font-size:15px;
}

@media(min-width:900px){
    .section-title h2{
        font-size:40px;
    }
    .section-title p{
        font-size:16px;
    }
}

/*=========================================
  SERVICES
=========================================*/
.services{
    padding:70px 5% 20px;
    background:#fafafa;
}

.services-grid{
    max-width:1200px;
    margin:0 auto;
    display:grid;
    grid-template-columns:1fr;
    gap:24px;
    padding-bottom:50px;
}

.service-card{
    background:#fff;
    border:1px solid #e2e6ee;
    border-radius:14px;
    padding:26px;
    transition:.3s;
    box-shadow:0 5px 18px rgba(0,0,0,.05);
}

.service-card:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.icon-box{
    width:52px;
    height:52px;
    background:#f8eed8;
    border-radius:10px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:18px;
}

.icon-box i{
    color:#d39d22;
    font-size:20px;
}

.service-card h3{
    font-size:22px;
    color:var(--primary);
    margin-bottom:12px;
}

.service-card p{
    color:#666;
    line-height:1.8;
    margin-bottom:16px;
    font-size:15px;
}

.service-card ul{
    margin-bottom:22px;
}

.service-card ul li{
    margin:8px 0;
    color:#444;
    position:relative;
    padding-left:22px;
    font-size:14px;
}

.service-card ul li::before{
    content:"✓";
    position:absolute;
    left:0;
    color:#d39d22;
    font-weight:bold;
}

.service-card > a{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    color:var(--primary);
    border:1px solid #cfd6df;
    border-radius:8px;
    padding:12px;
    font-weight:600;
    transition:.25s;
    font-size:14px;
}

.service-card > a:hover{
    background:var(--primary);
    color:#fff;
    border-color:var(--primary);
}

@media(min-width:640px){
    .services-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(min-width:1050px){
    .services-grid{
        grid-template-columns:repeat(3,1fr);
    }
}

/*=========================================
  ABOUT SNIPPET
=========================================*/
.about{
    display:flex;
    flex-direction:column;
    gap:40px;
    padding:70px 6%;
}

.about-image img{
    border-radius:18px;
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

.about-text h2{
    color:var(--primary);
    font-size:28px;
    margin-bottom:18px;
}

.about-text p{
    color:#666;
    line-height:1.9;
    margin-bottom:22px;
    font-size:15px;
}

.about-text ul li{
    margin:12px 0;
    color:#333;
    font-size:15px;
    font-weight:500;
}

.about-text ul li::before{
    content:"✔";
    color:var(--gold);
    margin-right:10px;
    font-weight:bold;
}

@media(min-width:900px){
    .about{
        flex-direction:row;
        align-items:center;
        gap:60px;
        padding:100px 8%;
    }
    .about-image,
    .about-text{
        flex:1;
    }
    .about-text h2{
        font-size:38px;
    }
}

/*=========================================
  COUNTER
=========================================*/
.counter{
    padding:60px 6%;
    background:linear-gradient(rgba(10,35,69,.95),rgba(10,35,69,.95)),
    url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1600") center/cover;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    text-align:center;
}

.counter div{
    background:rgba(255,255,255,.08);
    border-radius:14px;
    padding:24px 12px;
    border:1px solid rgba(255,255,255,.15);
}

.counter h2{
    font-size:30px;
    color:var(--gold);
    margin-bottom:8px;
}

.counter p{
    color:#fff;
    font-size:14px;
}

@media(min-width:700px){
    .counter{
        grid-template-columns:repeat(4,1fr);
        gap:28px;
        padding:80px 6%;
    }
    .counter h2{
        font-size:44px;
    }
    .counter p{
        font-size:16px;
    }
}

/*=========================================
  PARTNER (home version)
=========================================*/
.partner{
    padding:70px 6%;
}

.partner-card{
    max-width:900px;
    margin:40px auto 0;
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:18px;
    padding:30px;
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    gap:24px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.partner-card img{
    width:130px;
}

.partner-content h3{
    color:var(--primary);
    font-size:24px;
    margin-bottom:12px;
}

.partner-content p{
    color:#666;
    line-height:1.8;
    font-size:15px;
}

@media(min-width:700px){
    .partner-card{
        flex-direction:row;
        text-align:left;
        padding:40px;
        gap:40px;
    }
    .partner-content h3{
        font-size:30px;
    }
}
