:root{
    --navy:#0a315e;
    --navy-dark:#072748;
    --blue:#1768bb;
    --blue-2:#0f4f96;
    --beige:#e8d7c2;
    --beige-light:#f1e4d6;
    --bg:#f5f6f8;
    --text:#16375e;
    --muted:#6c7b90;
    --white:#ffffff;
    --shadow:0 24px 60px rgba(7, 30, 58, 0.16);
    --shadow-soft:0 14px 32px rgba(7, 30, 58, 0.08);
    --radius:24px;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:var(--bg);
    color:var(--text);
    overflow-x:hidden;
}

a{
    text-decoration:none;
    color:inherit;
}

img{
    display:block;
    max-width:100%;
}

button,
input,
textarea{
    font-family:'Poppins',sans-serif;
}

.container{
    width:min(1240px, calc(100% - 48px));
    margin:0 auto;
}

/* HEADER */
.site-header{
    position:sticky;
    top:0;
    z-index:1000;
    background:rgba(7, 30, 58, 0.82);
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);
    border-bottom:1px solid rgba(255,255,255,.08);
    box-shadow:0 10px 30px rgba(0,0,0,.10);
}

.header-inner{
    min-height:92px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
    flex-wrap:nowrap;
}

.brand{
    display:flex;
    align-items:center;
    gap:14px;
    min-width:280px;
    flex-shrink:0;
}

.brand-mark{
    width:58px;
    height:58px;
    border-radius:18px;
    background:linear-gradient(145deg, #0f3f74, #0a315e);
    display:grid;
    place-items:center;
    box-shadow:inset 0 0 0 1px rgba(255,255,255,.08);
    overflow:hidden;
    flex-shrink:0;
}

.brand-mark img{
    width:41px;
    height:41px;
    object-fit:contain;
}

.brand-title{
    color:#fff;
    font-size:29px;
    font-weight:700;
    letter-spacing:.25px;
    line-height:1.15;
}

.main-nav{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    flex-wrap:nowrap;
    flex:1;
    min-width:0;
}

.main-nav li{
    position:static !important;
}

.main-nav .submenu,
.main-nav .dropdown,
.main-nav .mega-menu,
.main-nav .nav-preview,
.main-nav .menu-preview,
.main-nav li:hover .submenu,
.main-nav li:hover .dropdown,
.main-nav li:hover .mega-menu,
.main-nav li:hover .nav-preview,
.main-nav li:hover .menu-preview{
    display:none !important;
    opacity:0 !important;
    visibility:hidden !important;
    pointer-events:none !important;
    transform:none !important;
}

.main-nav a{
    position:relative;
    overflow:hidden;
    color:#fff;
    font-size:16px;
    font-weight:500;
    padding:14px 18px;
    border:1px solid transparent;
    border-radius:14px;
    transition:.25s ease;
    white-space:nowrap;
}

.main-nav a:hover,
.main-nav a.active{
    background:rgba(255,255,255,.06);
    border-color:rgba(255,255,255,.16);
}

.main-nav a::after{
    content:"";
    position:absolute;
    left:18px;
    bottom:10px;
    width:0;
    height:2px;
    background:linear-gradient(90deg, #ffffff, #9fd4ff);
    border-radius:999px;
    transition:width .25s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after{
    width:calc(100% - 36px);
}

.header-cta{
    position:relative;
    overflow:hidden;
    white-space:nowrap;
    color:#fff;
    font-weight:700;
    padding:16px 28px;
    border-radius:999px;
    background:linear-gradient(135deg,#0f4f96,#082d57);
    border:1px solid rgba(255,255,255,.14);
    box-shadow:0 12px 28px rgba(8,36,69,.22);
    transition:.25s ease;
    flex-shrink:0;
}

.header-cta::before{
    content:"";
    position:absolute;
    top:0;
    left:-120%;
    width:80%;
    height:100%;
    background:linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
    transform:skewX(-20deg);
    transition:left .65s ease;
}

.header-cta:hover::before{
    left:140%;
}

.header-cta:hover{
    transform:translateY(-2px);
}

/* HERO */
.hero{
    position:relative;
    overflow:hidden;
    background:
        linear-gradient(180deg, rgba(7,31,61,.08), rgba(7,31,61,.08)),
        repeating-linear-gradient(
            -35deg,
            rgba(255,255,255,.05) 0,
            rgba(255,255,255,.05) 2px,
            transparent 2px,
            transparent 18px
        ),
        linear-gradient(140deg, #0a315e 0%, #0f4f96 70%, #1768bb 100%);
    padding:72px 0 150px;
}

.hero::before{
    content:"";
    position:absolute;
    left:-140px;
    bottom:-180px;
    width:430px;
    height:430px;
    background:radial-gradient(circle, rgba(255,255,255,.08), transparent 68%);
    pointer-events:none;
}

.hero::after{
    content:"";
    position:absolute;
    right:-120px;
    top:60px;
    width:420px;
    height:420px;
    background:radial-gradient(circle, rgba(255,255,255,.10), transparent 68%);
    filter:blur(20px);
    pointer-events:none;
}

.hero-head{
    text-align:center;
    color:#fff;
    margin-bottom:34px;
    position:relative;
    z-index:2;
}

.hero-kicker{
    display:inline-block;
    margin-bottom:18px;
    padding:10px 18px;
    border-radius:999px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.12);
    font-size:13px;
    font-weight:700;
    letter-spacing:1.8px;
}

.hero-head h1{
    font-size:58px;
    line-height:1;
    font-weight:800;
    letter-spacing:.4px;
    margin-bottom:18px;
}

.hero-head p{
    font-size:24px;
    opacity:.92;
    font-weight:300;
}

/* HONEYCOMB */
.honey-section{
    position:relative;
}

.honeycomb{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:0;
    position:relative;
    z-index:2;
}

.honey-row{
    display:flex;
    justify-content:center;
    gap:10px;
    margin-top:-30px;
}

.honey-row:first-child{
    margin-top:0;
}

.hex{
    position:relative;
    width:170px;
    height:196px;
    clip-path:polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
    background:#d7c5af;
    cursor:pointer;
    transition:transform .28s ease, filter .28s ease, box-shadow .28s ease;
    overflow:hidden;
    box-shadow:0 8px 18px rgba(0,0,0,.10);
    border:2px solid rgba(255,255,255,.06);
}

.hex img{
    width:100%;
    height:100%;
    object-fit:cover;
    filter:grayscale(.05) brightness(.78) sepia(.18);
    transition:.3s ease;
}

.hex::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(180deg, rgba(232,215,194,.16), rgba(10,49,94,.08));
}

.hex:hover{
    transform:translateY(-10px) scale(1.035);
    box-shadow:0 20px 42px rgba(0,0,0,.18);
}

.hex:hover img{
    filter:grayscale(0) brightness(.96);
}

.hex:hover::before{
    content:"";
    position:absolute;
    inset:0;
    border:2px solid rgba(159,212,255,.55);
    clip-path:polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
    z-index:4;
    pointer-events:none;
}

.hex-plus{
    position:absolute;
    inset:0;
    display:grid;
    place-items:center;
    z-index:3;
}

.hex-plus span{
    width:54px;
    height:54px;
    border-radius:50%;
    border:3px solid rgba(10,49,94,.88);
    display:grid;
    place-items:center;
    color:#0a315e;
    font-size:34px;
    font-weight:600;
    background:rgba(255,255,255,.22);
    backdrop-filter:blur(3px);
}

.project-modal{
    position:absolute;
    left:0;
    top:210px;
    width:min(620px, calc(100% - 20px));
    background:var(--beige);
    color:var(--text);
    border-radius:28px;
    box-shadow:0 30px 60px rgba(0,0,0,.22);
    z-index:40;
    overflow:hidden;
    border:1px solid rgba(11,46,88,.08);
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transform:translateY(12px);
    transition:opacity .28s ease, visibility .28s ease, transform .28s ease;
}

.project-modal.active{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
    transform:translateY(0);
}

.modal-top{
    display:grid;
    grid-template-columns:1fr 220px;
}

.modal-title{
    padding:34px 32px 10px;
    font-size:38px;
    line-height:1.08;
    font-weight:800;
    letter-spacing:-0.5px;
}

.modal-price{
    background:linear-gradient(135deg,#1768bb,#0a315e);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    font-weight:800;
    clip-path:polygon(16% 0,100% 0,100% 100%,0 100%);
}

.modal-meta{
    display:flex;
    gap:24px;
    flex-wrap:wrap;
    padding:0 32px 10px;
    color:#173a63;
    font-weight:500;
}

.modal-desc{
    padding:8px 32px 0;
    line-height:1.85;
    font-size:17px;
    color:#23456f;
}

.modal-actions{
    display:flex;
    gap:16px;
    flex-wrap:wrap;
    padding:28px 32px 34px;
}

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:210px;
    padding:15px 28px;
    border-radius:999px;
    font-weight:700;
    transition:.25s ease;
    border:2px solid transparent;
    cursor:pointer;
}

.btn-primary{
    background:#fff;
    color:#0a315e;
}

.btn-outline{
    background:transparent;
    border-color:#ffffffa6;
    color:#0a315e;
}

.modal-actions .btn:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 22px rgba(8,36,69,.12);
}

/* GENERAL SECTIONS */
.section{
    padding:90px 0;
}

.intro{
    background:#f5f6f8;
    text-align:center;
}

.tiny-line{
    width:150px;
    height:3px;
    background:#bcc4cf;
    margin:0 auto 38px;
    border-radius:999px;
}

.section-title{
    position:relative;
    display:inline-block;
    padding-bottom:18px;
    font-size:54px;
    line-height:1.05;
    font-weight:800;
    color:var(--text);
    margin-bottom:24px;
}

.section-title::after{
    content:"";
    position:absolute;
    left:50%;
    bottom:0;
    transform:translateX(-50%);
    width:84px;
    height:5px;
    border-radius:999px;
    background:linear-gradient(90deg,#0a315e,#1768bb,#8fc7ff);
}

.section-sub{
    max-width:1020px;
    margin:0 auto;
    font-size:23px;
    line-height:1.8;
    color:#16375e;
}

/* STATS */
.stats-wrap{
    margin-top:68px;
}

.stats-label{
    font-size:22px;
    font-weight:700;
    margin-bottom:38px;
    color:#17385e;
}

.stats{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:28px;
    max-width:1120px;
    margin:0 auto;
}

.stat{
    background:linear-gradient(180deg,#f7f8fa,#eef2f7);
    border:1px solid rgba(11,46,88,.05);
    padding:24px 10px;
    border-radius:24px;
    transition:.3s ease;
}

.stat:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 32px rgba(11,46,88,.08);
}

.stat strong{
    display:block;
    font-size:62px;
    line-height:1.05;
    font-weight:800;
    color:#1768bb;
    margin-bottom:14px;
}

.stat span{
    color:#233f62;
    font-size:20px;
}

/* PROJECT CARDS */
.projects-area{
    background:#f1f2f4;
}

.cards-head{
    text-align:center;
    margin-bottom:44px;
}

.cards-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.project-card{
    background:#fff;
    border-radius:0 0 26px 26px;
    overflow:hidden;
    box-shadow:0 14px 34px rgba(8,36,69,.08);
    transition:transform .25s ease, box-shadow .25s ease;
    border:1px solid rgba(11,46,88,.06);
}

.project-card:hover{
    transform:translateY(-8px);
    box-shadow:0 22px 42px rgba(8,36,69,.12);
}

.project-card figure{
    position:relative;
    height:350px;
    overflow:hidden;
}

.project-card figure img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.badge-sold{
    position:absolute;
    top:0;
    left:28px;
    background:#0c3d73;
    color:#fff;
    padding:14px 20px 26px;
    font-weight:700;
    clip-path:polygon(0 0,100% 0,100% 72%,50% 100%,0 72%);
}

.card-floating{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:12px;
    margin:-52px 22px 0;
    position:relative;
    z-index:2;
}

.mini-hex{
    width:106px;
    height:118px;
    clip-path:polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
    background:#fff;
    border:2px solid #17375f;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:4px;
    color:#0a315e;
    font-weight:700;
    box-shadow:0 10px 18px rgba(0,0,0,.08);
}

.mini-date{
    font-size:14px;
}

.mini-price{
    background:linear-gradient(180deg,#ffffff,#f7f7f7);
    color:#0a315e;
    padding:14px 24px;
    border-radius:999px;
    border:1px solid rgba(11,46,88,.12);
    font-weight:800;
    min-width:130px;
    text-align:center;
    box-shadow:0 10px 18px rgba(0,0,0,.08);
}

.project-card-body{
    background:var(--beige-light);
    padding:26px 24px 30px;
    position:relative;
}

.project-card-body::before{
    content:"";
    position:absolute;
    left:24px;
    top:0;
    width:54px;
    height:4px;
    background:linear-gradient(90deg,#1768bb,#77bfff);
    border-radius:999px;
}

.project-card h3{
    font-size:26px;
    line-height:1.2;
    margin-bottom:18px;
    font-weight:800;
}

.meta-row{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
    color:#17385e;
    font-weight:500;
    margin-bottom:16px;
    font-size:15px;
}

.project-card p{
    line-height:1.9;
    font-size:17px;
    color:#1d3f69;
    margin-bottom:22px;
}

.card-link{
    display:inline-block;
    font-weight:700;
    color:#0a315e;
    border-bottom:2px solid #1768bb;
    padding-bottom:6px;
    transition:.25s ease;
}

.card-link:hover{
    color:#1768bb;
}

.all-projects{
    text-align:center;
    margin-top:44px;
}

.hex-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:18px 42px;
    background:#1768bb;
    color:#fff;
    font-weight:700;
    font-size:22px;
    clip-path:polygon(8% 0,92% 0,100% 50%,92% 100%,8% 100%,0 50%);
    transition:.25s ease;
}

.hex-btn:hover{
    transform:translateY(-3px);
    box-shadow:var(--shadow);
}

/* SERVICES */
.services{
    text-align:center;
    background:#f6f7f8;
}

.service-honey{
    margin-top:34px;
    display:flex;
    justify-content:center;
    padding:20px 0 10px;
}

.service-honey-inner{
    position:relative;
    width:100%;
    max-width:980px;
    min-height:760px;
    margin:0 auto;
}

.service-hex{
    position:absolute;
    width:152px;
    height:174px;
    clip-path:polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background:#1768bb;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:0 18px;
    box-shadow:0 14px 26px rgba(14,92,168,.18);
    transition:.28s ease;
    z-index:2;
}

.service-hex:hover{
    transform:translateY(-6px) scale(1.03);
    box-shadow:0 16px 30px rgba(14,92,168,.20);
}

.service-hex.outline{
    background:linear-gradient(180deg, rgba(255,255,255,.95), rgba(232,242,255,.95));
    color:#1768bb;
    border:6px solid #1768bb;
}

.service-hex span{
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    height:100%;
    margin:0 auto;
    text-align:center;
    font-size:20px;
    font-weight:700;
    line-height:1.22;
    word-break:break-word;
}

.s1{ top:140px; left:140px; }
.s2{ top:0; left:414px; }
.s3{ top:140px; right:140px; }
.s4{ top:360px; left:250px; }
.s5{ top:360px; right:250px; }
.s6{ top:500px; left:414px; }

.service-label{
    display:none !important;
}

/* CONTACT */
.contact-home{
    background:#f0f1f3;
}

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1.2fr;
    gap:42px;
    align-items:start;
}

.contact-box h2{
    font-size:38px;
    font-weight:800;
    line-height:1.2;
    margin-bottom:26px;
}

.contact-box p{
    font-size:18px;
    line-height:1.9;
    color:#1d3f69;
    margin-bottom:28px;
}

.label-title{
    font-size:18px;
    font-weight:600;
    margin-bottom:10px;
}

.toggle-row{
    display:flex;
    gap:16px;
    margin:16px 0 28px;
}

.toggle-btn{
    padding:16px 28px;
    font-size:18px;
    font-weight:700;
    border:none;
    cursor:pointer;
    transition:.25s ease;
    border-radius:12px;
}

.toggle-btn.active{
    background:#1768bb;
    color:#fff;
}

.toggle-btn.secondary{
    background:#e9d2b3;
    color:#17375f;
}

.form-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:16px;
    margin-top:16px;
}

.input{
    width:100%;
    border:none;
    background:#fff;
    padding:18px 18px;
    font-size:16px;
    border-radius:12px;
    outline:none;
    transition:.25s ease;
}

.input:focus{
    box-shadow:0 0 0 3px rgba(23,104,187,.12);
}

.submit-btn{
    margin-top:18px;
    width:100%;
    background:#1768bb;
    color:#fff;
    font-size:18px;
    font-weight:700;
    border:none;
    padding:19px 18px;
    border-radius:12px;
    cursor:pointer;
    transition:.25s ease;
}

.submit-btn:hover{
    transform:translateY(-2px);
    box-shadow:var(--shadow-soft);
}

.contact-info-card{
    background:#111827;
    color:#fff;
    border-radius:24px;
    padding:36px 32px;
    min-height:470px;
    box-shadow:0 16px 32px rgba(11,46,88,.12);
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.contact-info-card h3{
    font-size:28px;
    line-height:1.35;
    margin-bottom:18px;
    font-weight:700;
}

.contact-info-card p{
    font-size:15px;
    line-height:1.8;
    color:rgba(255,255,255,0.82);
    margin-bottom:28px;
}

.contact-info-list{
    display:grid;
    gap:18px;
}

.contact-info-item{
    padding:18px 20px;
    border:1px solid rgba(255,255,255,0.12);
    border-radius:18px;
    background:rgba(255,255,255,0.03);
}

.contact-info-item .info-label{
    display:block;
    font-size:12px;
    text-transform:uppercase;
    letter-spacing:0.08em;
    color:rgba(255,255,255,0.6);
    margin-bottom:6px;
}

.contact-info-item strong{
    display:block;
    font-size:17px;
    line-height:1.5;
    margin-bottom:4px;
    font-weight:600;
}

.contact-info-item span{
    display:block;
    font-size:14px;
    color:rgba(255,255,255,0.8);
}

.contact-info-item a{
    color:#fff;
    text-decoration:none;
}

.contact-info-item a:hover{
    text-decoration:underline;
}

/* FOOTER */
.site-footer{
    background:#0a315e;
    color:#fff;
    padding:52px 0;
}

.footer-grid{
    display:grid;
    grid-template-columns:1.15fr 1fr 1fr 1fr;
    gap:34px;
    align-items:start;
}

.footer-brand{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.footer-logo{
    width:96px;
    height:96px;
    border-radius:24px;
    background:rgba(255,255,255,.05);
    display:grid;
    place-items:center;
    overflow:hidden;
}

.footer-logo img{
    width:72px;
    height:72px;
    object-fit:contain;
}

.footer-title{
    font-size:20px;
    font-weight:700;
    margin-bottom:20px;
}

.footer-copy,
.footer-phone{
    font-size:17px;
    opacity:.88;
}

.footer-links a{
    display:block;
    color:rgba(255,255,255,.86);
    margin-bottom:14px;
    transition:.25s ease;
}

.footer-links a:hover{
    color:#fff;
    transform:translateX(4px);
}

.socials{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
    margin-top:12px;
}

.social{
    width:46px;
    height:46px;
    border-radius:50%;
    background:rgba(255,255,255,.10);
    display:grid;
    place-items:center;
    font-weight:700;
    color:#fff;
    transition:.25s ease;
}

.social:hover{
    background:#1768bb;
    transform:translateY(-3px);
}

/* FLOATING BUTTONS */
.floating-actions{
    position:fixed;
    right:22px;
    bottom:22px;
    z-index:999;
    display:flex;
    flex-direction:column;
    gap:12px;
}

.floating-btn{
    min-width:140px;
    text-align:center;
    padding:14px 18px;
    border-radius:999px;
    background:linear-gradient(135deg,#1768bb,#0a315e);
    color:#fff;
    font-weight:700;
    box-shadow:0 12px 28px rgba(11,46,88,.24);
    border:1px solid rgba(255,255,255,.10);
    transition:.25s ease;
}

.floating-btn:hover{
    transform:translateY(-3px);
}

.floating-btn.alt{
    background:#fff;
    color:#0a315e;
}

/* RESPONSIVE */
@media (max-width:1200px){
    .hero-head h1{font-size:46px}
    .honey-row .hex{width:145px;height:168px}
    .cards-grid{grid-template-columns:1fr}

    .service-honey-inner{
        width:100%;
        min-height:auto;
        display:grid;
        grid-template-columns:repeat(2, minmax(220px, 1fr));
        gap:24px;
        justify-items:center;
    }

    .service-hex{
        position:static;
        clip-path:none;
        width:100%;
        max-width:320px;
        height:auto;
        min-height:170px;
        border-radius:24px;
    }

    .service-hex.outline{
        border-width:4px;
    }

    .s1,.s2,.s3,.s4,.s5,.s6{
        top:auto;
        left:auto;
        right:auto;
    }
}

@media (max-width:980px){
    .header-inner{
        flex-direction:column;
        padding:18px 0;
        flex-wrap:wrap;
    }

    .brand{
        justify-content:center;
        min-width:unset;
    }

    .main-nav{
        flex-wrap:wrap;
    }

    .hero{
        padding:56px 0 110px;
    }

    .hero-head h1{
        font-size:40px;
    }

    .hero-head p{
        font-size:20px;
    }

    .project-modal{
        position:relative;
        top:auto;
        left:auto;
        margin:30px auto 0;
        width:100%;
    }

    .modal-top{
        grid-template-columns:1fr;
    }

    .modal-price{
        clip-path:none;
        min-height:84px;
    }

    .stats{
        grid-template-columns:1fr;
    }

    .contact-grid{
        grid-template-columns:1fr;
    }

    .footer-grid{
        grid-template-columns:1fr 1fr;
    }

    .honey-row{
        gap:8px;
        margin-top:-22px;
    }

    .honey-row .hex{
        width:115px;
        height:132px;
    }

    .hex-plus span{
        width:40px;
        height:40px;
        font-size:28px;
    }
}

@media (max-width:640px){
    .container{
        width:min(100% - 26px, 1240px);
    }

    .brand-title{
        font-size:24px;
    }

    .main-nav{
        gap:4px;
    }

    .main-nav a{
        font-size:14px;
        padding:11px 12px;
    }

    .header-cta{
        padding:13px 20px;
        font-size:14px;
    }

    .hero-head h1{
        font-size:30px;
    }

    .hero-head p{
        font-size:17px;
    }

    .section-title{
        font-size:36px;
    }

    .section-sub{
        font-size:18px;
    }

    .stat strong{
        font-size:38px;
    }

    .stat span{
        font-size:16px;
    }

    .project-card figure{
        height:250px;
    }

    .contact-box h2{
        font-size:30px;
    }

    .form-grid{
        grid-template-columns:1fr;
    }

    .footer-grid{
        grid-template-columns:1fr;
    }

    .honey-row .hex{
        width:88px;
        height:102px;
    }

    .project-modal .modal-title{
        font-size:28px;
    }

    .modal-price{
        font-size:24px;
    }

    .floating-actions{
        right:14px;
        bottom:14px;
    }

    .floating-btn{
        min-width:118px;
        padding:12px 14px;
        font-size:14px;
    }
}