*{margin:0;padding:0;box-sizing:border-box}

body{
    font-family:'Montserrat',Arial,sans-serif;
    color:#1f1f1f;
    background:#fff;
    line-height:1.6;
}

a{text-decoration:none;color:inherit}
img{max-width:100%;height:auto;display:block}

.container{
    width:90%;
    max-width:1320px;
    margin:0 auto;
}

.site-header{
    background:#fff;
    border-bottom:1px solid #eee;
    position:sticky;
    top:0;
    z-index:999;
}

.header-inner{
    min-height:96px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
}

.site-logo img{
    max-height:72px;
    width:auto;
}

.site-logo span{
    font-size:34px;
    color:#dca72c;
    font-weight:700;
}

.site-logo span strong{
    color:#0f6b3f;
}

.site-nav{
    display:flex;
    gap:34px;
    align-items:center;
    font-weight:600;
}

.site-nav a:hover{color:#0f6b3f}

.header-cta,
.btn-primary{
    display:inline-block;
    background:#0f6b3f;
    color:#fff;
    padding:16px 28px;
    border-radius:8px;
    font-weight:700;
}

.hero{
    position:relative;
    min-height:720px;
    background:url('../images/cyprus-hero.jpg') center/cover no-repeat;
    display:flex;
    align-items:center;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(90deg,rgba(0,0,0,.72),rgba(0,0,0,.22));
}

.hero-content{
    position:relative;
    z-index:2;
    color:#fff;
    max-width:760px;
    margin-left:5%;
}

.gold-line{
    display:block;
    width:110px;
    height:4px;
    background:#dca72c;
    margin-bottom:28px;
}

.hero h1{
    font-size:64px;
    line-height:1.12;
    margin-bottom:26px;
    font-weight:800;
}

.hero p{
    font-size:22px;
    max-width:680px;
    margin-bottom:36px;
}

.hero-buttons{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.btn-secondary{
    display:inline-block;
    color:#fff;
    border:2px solid rgba(255,255,255,.9);
    padding:14px 28px;
    border-radius:8px;
    font-weight:700;
}

.intro,
.services,
.why,
.process,
.blog-preview,
.contact-cta{
    padding:95px 0;
}

.intro-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.section-label{
    color:#0f6b3f;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:13px;
    font-weight:800;
    display:block;
    margin-bottom:14px;
}

.intro h2,
.section-title h2,
.contact-box h2{
    font-size:44px;
    line-height:1.18;
    font-weight:800;
}

.intro p{
    font-size:19px;
    color:#555;
}

.services,
.process{
    background:#f8f8f8;
}

.section-title{
    text-align:center;
    max-width:820px;
    margin:0 auto 55px;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:26px;
}

.service-card{
    background:#fff;
    border:1px solid #eee;
    border-radius:16px;
    padding:34px 26px;
    text-align:center;
    box-shadow:0 12px 28px rgba(0,0,0,.05);
}

.service-icon{
    font-size:42px;
    margin-bottom:18px;
}

.service-card h3{
    font-size:21px;
    margin-bottom:12px;
}

.service-card p{
    color:#666;
    font-size:15px;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
}

.why-grid div{
    background:#fff;
    border:1px solid #e8e8e8;
    border-left:5px solid #dca72c;
    padding:28px;
    border-radius:12px;
}

.why-grid strong{
    display:block;
    font-size:20px;
    margin-bottom:8px;
}

.why-grid span{
    color:#666;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.process-grid div{
    background:#fff;
    padding:34px;
    border-radius:15px;
}

.process-grid span{
    color:#dca72c;
    font-size:34px;
    font-weight:800;
}

.posts-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

.post-card{
    background:#fff;
    border:1px solid #eee;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 12px 28px rgba(0,0,0,.05);
}

.post-content{
    padding:26px;
}

.post-content h3{
    font-size:22px;
    margin-bottom:12px;
}

.post-content p{
    color:#666;
}

.center-button{
    text-align:center;
    margin-top:42px;
}

.btn-outline-dark{
    display:inline-block;
    border:2px solid #0f6b3f;
    color:#0f6b3f;
    padding:14px 28px;
    border-radius:8px;
    font-weight:800;
}

.contact-cta{
    background:#0f6b3f;
}

.contact-box{
    text-align:center;
    color:#fff;
    max-width:850px;
}

.contact-box p{
    margin:20px auto 32px;
    font-size:20px;
}

.contact-box .btn-primary{
    background:#dca72c;
    color:#111;
}

.site-footer{
    background:#111;
    color:#fff;
    padding:60px 0;
}

.footer-inner{
    display:flex;
    justify-content:space-between;
    gap:40px;
}

@media(max-width:1000px){
    .services-grid,
    .why-grid,
    .process-grid,
    .posts-grid,
    .intro-grid{
        grid-template-columns:1fr 1fr;
    }

    .hero h1{font-size:48px}
}

@media(max-width:700px){
    .header-inner{
        flex-direction:column;
        padding:18px 0;
    }

    .site-nav{
        gap:20px;
    }

    .hero{
        min-height:620px;
    }

    .hero-content{
        margin-left:0;
    }

    .hero h1{
        font-size:38px;
    }

    .services-grid,
    .why-grid,
    .process-grid,
    .posts-grid,
    .intro-grid{
        grid-template-columns:1fr;
    }

    .intro h2,
    .section-title h2,
    .contact-box h2{
        font-size:34px;
    }

    .footer-inner{
        flex-direction:column;
    }
}