/*
Theme Name: MedKontrol
Author: MedKontrol
Version: 1.0
*/

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

html{
    scroll-behavior:smooth;
}

body{
    font-family: Arial, sans-serif;
    background:#f4f8fc;
    color:#1f2d3d;
    line-height:1.6;
}

a{
    text-decoration:none;
}

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

.container{
    width:min(1440px, 96%);
    margin:0 auto;
}

.site-header{
    position:sticky;
    top:0;
    z-index:1000;
    background:#ffffff;
    box-shadow:0 4px 20px rgba(0,0,0,0.06);
}

.header-inner{
    display:grid;
    grid-template-columns:minmax(280px, 340px) 1fr auto;
    align-items:center;
    gap:20px;
    padding:14px 0;
}

.logo-block{
    display:flex;
    align-items:center;
    gap:12px;
    min-width:0;
}

.logo-icon{
    width:46px;
    height:46px;
    border-radius:12px;
    background:linear-gradient(135deg,#0d6efd,#39a0ff);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    font-weight:700;
    box-shadow:0 10px 24px rgba(13,110,253,0.25);
    flex:0 0 46px;
}

.logo-text{
    display:flex;
    flex-direction:column;
    min-width:0;
}

.logo-title{
    font-size:18px;
    font-weight:800;
    color:#0c2d57;
    line-height:1.1;
    white-space:nowrap;
    letter-spacing:-0.2px;
}

.logo-subtitle{
    font-size:12px;
    color:#6c7a89;
    margin-top:4px;
    white-space:nowrap;
}

.main-nav{
    display:flex;
    align-items:center;
    justify-content:center;
    min-width:0;
}

.main-nav-list{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:14px;
    list-style:none;
    margin:0;
    padding:0;
}

.main-nav-list li{
    list-style:none;
    margin:0;
    padding:0;
}

.main-nav-list a{
    color:#234;
    font-size:13px;
    font-weight:600;
    transition:0.2s;
    white-space:nowrap;
}

.main-nav-list a:hover,
.main-nav-list .current-menu-item > a,
.main-nav-list .current_page_item > a{
    color:#0d6efd;
}

.header-right{
    display:flex;
    align-items:center;
    gap:14px;
    justify-self:end;
}

.header-phone{
    display:flex;
    flex-direction:column;
    align-items:flex-end;
    text-align:right;
}

.header-phone small{
    color:#7d8a97;
    font-size:12px;
    line-height:1.2;
    white-space:nowrap;
}

.header-phone strong{
    color:#0c2d57;
    font-size:14px;
    line-height:1.2;
    white-space:nowrap;
}

.header-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,#ff9a2f,#ff7a00);
    color:#fff;
    padding:11px 16px;
    border-radius:12px;
    font-weight:700;
    font-size:14px;
    white-space:nowrap;
    box-shadow:0 12px 24px rgba(255,122,0,0.2);
    transition:0.2s;
}

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

.hero-med{
    position:relative;
    overflow:hidden;
    background:linear-gradient(115deg, rgba(8,79,186,0.95) 0%, rgba(29,127,255,0.88) 55%, rgba(84,171,255,0.82) 100%);
    padding:90px 0;
}

.hero-med::before{
    content:"";
    position:absolute;
    top:-120px;
    right:-120px;
    width:420px;
    height:420px;
    background:rgba(255,255,255,0.08);
    border-radius:50%;
}

.hero-med::after{
    content:"";
    position:absolute;
    bottom:-140px;
    left:-100px;
    width:320px;
    height:320px;
    background:rgba(255,255,255,0.06);
    border-radius:50%;
}

.hero-container{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:1.05fr 0.95fr;
    align-items:center;
    gap:50px;
}

.hero-badge{
    display:inline-block;
    background:rgba(255,255,255,0.14);
    color:#fff;
    padding:10px 18px;
    border-radius:999px;
    font-size:14px;
    font-weight:700;
    margin-bottom:20px;
    backdrop-filter:blur(4px);
}

.hero-left h1{
    color:#fff;
    font-size:58px;
    line-height:1.05;
    margin-bottom:18px;
    font-weight:800;
}

.hero-left h2{
    color:#eaf4ff;
    font-size:28px;
    line-height:1.35;
    margin-bottom:20px;
    font-weight:600;
}

.hero-left p{
    color:#e4efff;
    font-size:18px;
    max-width:640px;
    margin-bottom:32px;
}

.hero-buttons{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin-bottom:34px;
}

.btn-primary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:54px;
    padding:0 26px;
    border-radius:14px;
    background:#fff;
    color:#0d6efd;
    font-size:16px;
    font-weight:800;
    box-shadow:0 12px 30px rgba(0,0,0,0.12);
    transition:0.2s;
}

.btn-primary:hover{
    transform:translateY(-2px);
}

.btn-secondary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:54px;
    padding:0 26px;
    border-radius:14px;
    background:transparent;
    color:#fff;
    font-size:16px;
    font-weight:700;
    border:2px solid rgba(255,255,255,0.6);
    transition:0.2s;
}

.btn-secondary:hover{
    background:rgba(255,255,255,0.08);
}

.hero-stats{
    display:flex;
    flex-wrap:wrap;
    gap:18px;
}

.hero-stat{
    min-width:160px;
    background:rgba(255,255,255,0.12);
    border:1px solid rgba(255,255,255,0.15);
    border-radius:18px;
    padding:18px 20px;
    color:#fff;
    backdrop-filter:blur(4px);
}

.hero-stat strong{
    display:block;
    font-size:24px;
    margin-bottom:4px;
}

.hero-stat span{
    font-size:14px;
    color:#e9f3ff;
}

.hero-image-wrap{
    position:relative;
}

.hero-image-card{
    background:#fff;
    padding:14px;
    border-radius:28px;
    box-shadow:0 24px 60px rgba(5,44,102,0.25);
}

.hero-image-card img{
    width:100%;
    border-radius:20px;
    min-height:520px;
    object-fit:cover;
}

.hero-float{
    position:absolute;
    left:-40px;
    bottom:30px;
    background:#fff;
    border-radius:20px;
    padding:18px 20px;
    box-shadow:0 20px 40px rgba(0,0,0,0.12);
    max-width:260px;
}

.hero-float-title{
    font-size:16px;
    font-weight:800;
    color:#0c2d57;
    margin-bottom:8px;
}

.hero-float-text{
    font-size:14px;
    color:#5e6c79;
}

.section{
    padding:90px 0;
}

.section-light{
    background:#ffffff;
}

.section-gray{
    background:#f4f8fc;
}

.section-title{
    font-size:40px;
    color:#0c2d57;
    margin-bottom:14px;
    font-weight:800;
}

.section-subtitle{
    color:#667788;
    font-size:17px;
    max-width:760px;
    margin-bottom:40px;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:26px;
}

.about-card{
    background:#fff;
    border-radius:24px;
    padding:30px;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.about-card h3{
    font-size:24px;
    color:#0c2d57;
    margin-bottom:14px;
}

.about-card p{
    color:#607080;
    font-size:16px;
}

.about-points{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px;
    margin-top:20px;
}

.about-point{
    background:#f6faff;
    border:1px solid #e6f0fb;
    border-radius:18px;
    padding:18px;
    font-weight:700;
    color:#194067;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
}

.service-card{
    background:#fff;
    border-radius:24px;
    padding:30px 24px;
    box-shadow:0 12px 30px rgba(0,0,0,0.05);
    transition:0.2s;
}

.service-card:hover{
    transform:translateY(-4px);
}

.service-icon{
    width:62px;
    height:62px;
    border-radius:18px;
    background:linear-gradient(135deg,#eaf3ff,#d8ebff);
    color:#0d6efd;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:18px;
}

.service-card h3{
    color:#0c2d57;
    font-size:22px;
    margin-bottom:12px;
}

.service-card p{
    color:#627384;
    font-size:15px;
}

.price-box{
    background:#fff;
    border-radius:28px;
    box-shadow:0 16px 40px rgba(0,0,0,0.06);
    overflow:hidden;
}

.price-top{
    background:linear-gradient(135deg,#0d6efd,#3294ff);
    color:#fff;
    padding:26px 30px;
}

.price-top h3{
    font-size:28px;
    margin-bottom:8px;
}

.price-top p{
    color:#e7f2ff;
}

.price-table{
    width:100%;
    border-collapse:collapse;
}

.price-table th{
    background:#f3f8ff;
    color:#17416b;
    font-size:15px;
    text-align:left;
    padding:18px 24px;
    border-bottom:1px solid #e8eef6;
}

.price-table td{
    padding:18px 24px;
    border-bottom:1px solid #eef3f8;
    color:#495a6b;
    font-size:15px;
}

.price-table tr:hover td{
    background:#fbfdff;
}

.price-value{
    color:#0d6efd;
    font-weight:800;
    white-space:nowrap;
}

.advantages-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.adv-card{
    background:#fff;
    border-radius:22px;
    padding:28px 24px;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.adv-card h3{
    color:#0c2d57;
    font-size:20px;
    margin-bottom:10px;
}

.adv-card p{
    color:#667788;
    font-size:15px;
}

.contact-box{
    display:grid;
    grid-template-columns:1.1fr 0.9fr;
    gap:24px;
}

.contact-card,
.form-card{
    background:#fff;
    border-radius:28px;
    padding:34px;
    box-shadow:0 12px 30px rgba(0,0,0,0.05);
}

.contact-list{
    display:grid;
    gap:18px;
    margin-top:20px;
}

.contact-item{
    padding:18px 20px;
    border-radius:18px;
    background:#f6faff;
    border:1px solid #e7f0fb;
}

.contact-item strong{
    display:block;
    color:#0c2d57;
    margin-bottom:4px;
}

.contact-item span{
    color:#617181;
}

.contact-note{
    margin-top:22px;
    color:#5d6d7c;
}

.form-grid{
    display:grid;
    gap:16px;
    margin-top:20px;
}

.form-grid input,
.form-grid textarea{
    width:100%;
    border:1px solid #dbe7f3;
    border-radius:14px;
    padding:15px 16px;
    font-size:15px;
    outline:none;
    background:#fbfdff;
}

.form-grid textarea{
    min-height:130px;
    resize:vertical;
}

.form-submit{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:54px;
    padding:0 26px;
    border:none;
    border-radius:14px;
    background:linear-gradient(135deg,#ff9a2f,#ff7a00);
    color:#fff;
    font-size:16px;
    font-weight:800;
    cursor:pointer;
    box-shadow:0 12px 24px rgba(255,122,0,0.18);
}

.site-footer{
    background:#0c2340;
    color:#dbe6f4;
    padding:34px 0;
}

.footer-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
}

.footer-brand{
    font-size:22px;
    font-weight:800;
    color:#fff;
}

.footer-text{
    color:#a9b7c7;
    font-size:14px;
}

/* CONTACT FORM 7 */
.custom-cf7-form p{
    margin-bottom:16px;
}

.custom-cf7-form label{
    display:block;
    font-size:14px;
    font-weight:600;
    color:#0c2d57;
    margin-bottom:8px;
}

.custom-cf7-form input,
.custom-cf7-form textarea{
    width:100%;
    border:1px solid #dbe7f3;
    border-radius:14px;
    padding:15px 16px;
    font-size:15px;
    outline:none;
    background:#fbfdff;
    box-sizing:border-box;
}

.custom-cf7-form textarea{
    min-height:130px;
    resize:vertical;
}

.custom-cf7-form .wpcf7-submit{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:54px;
    padding:0 26px;
    border:none;
    border-radius:14px;
    background:linear-gradient(135deg,#ff9a2f,#ff7a00);
    color:#fff;
    font-size:16px;
    font-weight:800;
    cursor:pointer;
    box-shadow:0 12px 24px rgba(255,122,0,0.18);
}

.custom-cf7-form .wpcf7-spinner{
    margin-top:10px;
}

.custom-cf7-form .wpcf7-response-output{
    margin:20px 0 0 0;
    border-radius:12px;
    padding:12px 14px;
}

/* MODERN DOCUMENTS PAGE */
.docs-hero{
    position:relative;
    overflow:hidden;
    padding:90px 0 80px;
    background:linear-gradient(135deg,#0d6efd 0%, #4aa6ff 100%);
    color:#fff;
}

.docs-hero::before{
    content:"";
    position:absolute;
    right:-120px;
    top:-120px;
    width:360px;
    height:360px;
    border-radius:50%;
    background:rgba(255,255,255,0.08);
}

.docs-hero::after{
    content:"";
    position:absolute;
    left:-100px;
    bottom:-100px;
    width:260px;
    height:260px;
    border-radius:50%;
    background:rgba(255,255,255,0.06);
}

.docs-hero__wrap{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:1.1fr 0.9fr;
    gap:30px;
    align-items:center;
}

.docs-hero__left h1{
    font-size:56px;
    line-height:1.05;
    margin-bottom:18px;
    font-weight:800;
}

.docs-hero__left p{
    font-size:18px;
    line-height:1.7;
    color:#eaf4ff;
    max-width:760px;
}

.docs-hero__badge{
    display:inline-block;
    margin-bottom:18px;
    padding:10px 16px;
    border-radius:999px;
    background:rgba(255,255,255,0.15);
    font-size:14px;
    font-weight:700;
}

.docs-hero__actions{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin-top:28px;
}

.docs-hero-card{
    background:rgba(255,255,255,0.12);
    border:1px solid rgba(255,255,255,0.18);
    border-radius:28px;
    padding:34px;
    backdrop-filter:blur(5px);
    box-shadow:0 18px 40px rgba(0,0,0,0.12);
}

.docs-hero-card__title{
    font-size:28px;
    font-weight:800;
    margin-bottom:12px;
}

.docs-hero-card__text{
    font-size:17px;
    line-height:1.7;
    color:#eef6ff;
}

.docs-main{
    padding:80px 0;
    background:#f4f8fc;
}

.docs-header{
    margin-bottom:34px;
}

.docs-header h2{
    font-size:40px;
    color:#0c2d57;
    margin-bottom:12px;
    font-weight:800;
}

.docs-header p{
    max-width:760px;
    color:#667788;
    font-size:17px;
}

.docs-showcase{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:28px;
}

.doc-modern-card{
    background:#fff;
    border-radius:28px;
    overflow:hidden;
    box-shadow:0 18px 40px rgba(0,0,0,0.06);
    transition:0.25s;
}

.doc-modern-card:hover{
    transform:translateY(-4px);
    box-shadow:0 22px 50px rgba(0,0,0,0.08);
}

.doc-modern-card__top{
    padding:28px 28px 20px;
}

.doc-modern-card__badge{
    display:inline-block;
    margin-bottom:12px;
    padding:7px 12px;
    border-radius:999px;
    background:#edf5ff;
    color:#0d6efd;
    font-size:13px;
    font-weight:700;
}

.doc-modern-card__top h3{
    font-size:26px;
    color:#0c2d57;
    margin-bottom:10px;
    line-height:1.25;
}

.doc-modern-card__top p{
    color:#627384;
    font-size:15px;
    line-height:1.7;
}

.doc-modern-card__image{
    padding:0 20px 20px;
}

.doc-modern-card__image img{
    width:100%;
    height:900px;
    object-fit:contain;
    background:#fff;
    border-radius:20px;
    border:1px solid #edf2f7;
}

.doc-modern-card__bottom{
    padding:0 28px 28px;
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}

.docs-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:50px;
    padding:0 20px;
    border-radius:14px;
    font-size:14px;
    font-weight:700;
    transition:0.2s;
}

.docs-btn--primary{
    background:#fff;
    color:#0d6efd;
    box-shadow:0 12px 24px rgba(0,0,0,0.08);
}

.docs-btn--secondary{
    background:transparent;
    color:#fff;
    border:2px solid rgba(255,255,255,0.55);
}

.docs-btn--secondary:hover{
    background:rgba(255,255,255,0.08);
}

.docs-btn--light{
    background:#eef5ff;
    color:#0d6efd;
}

.docs-btn--light:hover{
    background:#e5efff;
}

.docs-btn--accent{
    background:linear-gradient(135deg,#ff9a2f,#ff7a00);
    color:#fff;
    box-shadow:0 12px 24px rgba(255,122,0,0.18);
}

.docs-note{
    padding:0 0 90px;
    background:#f4f8fc;
}

.docs-note__box{
    background:#fff;
    border-radius:28px;
    padding:34px;
    box-shadow:0 18px 40px rgba(0,0,0,0.06);
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
}

.docs-note__left h2{
    font-size:30px;
    color:#0c2d57;
    margin-bottom:10px;
    font-weight:800;
}

.docs-note__left p{
    color:#617181;
    font-size:16px;
    max-width:760px;
    line-height:1.7;
}

@media (max-width:1100px){
    .hero-container,
    .about-grid,
    .contact-box,
    .docs-hero__wrap,
    .docs-showcase{
        grid-template-columns:1fr;
    }

    .services-grid,
    .advantages-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .hero-left h1{
        font-size:48px;
    }

    .hero-image-card img{
        min-height:420px;
    }

    .hero-float{
        left:20px;
        bottom:20px;
    }

    .doc-modern-card__image img{
        height:700px;
    }
}

@media (max-width:980px){
    .header-inner{
        grid-template-columns:1fr;
        justify-items:center;
        text-align:center;
        gap:16px;
    }

    .logo-block{
        justify-content:center;
    }

    .main-nav{
        width:100%;
        justify-content:center;
    }

    .main-nav-list{
        flex-wrap:wrap;
        justify-content:center;
    }

    .header-right{
        justify-self:center;
        flex-wrap:wrap;
        justify-content:center;
    }

    .header-phone{
        align-items:center;
        text-align:center;
    }

    .logo-subtitle{
        white-space:normal;
        text-align:center;
    }
}

@media (max-width:768px){
    .hero-med{
        padding:70px 0;
    }

    .hero-left h1{
        font-size:38px;
    }

    .hero-left h2{
        font-size:22px;
    }

    .section{
        padding:65px 0;
    }

    .section-title,
    .docs-header h2{
        font-size:30px;
    }

    .services-grid,
    .advantages-grid,
    .about-points{
        grid-template-columns:1fr;
    }

    .price-table th,
    .price-table td{
        padding:14px 12px;
        font-size:14px;
    }

    .footer-inner{
        flex-direction:column;
        align-items:flex-start;
    }

    .hero-float{
        position:static;
        max-width:100%;
        margin-top:18px;
    }

    .header-btn{
        padding:12px 16px;
        font-size:14px;
    }

    .docs-hero{
        padding:70px 0 60px;
    }

    .docs-hero__left h1{
        font-size:40px;
    }

    .doc-modern-card__top h3{
        font-size:22px;
    }

    .doc-modern-card__image img{
        height:480px;
    }

    .docs-note__box{
        flex-direction:column;
        align-items:flex-start;
    }
}

@media (max-width:560px){
    .main-nav-list{
        gap:14px;
    }

    .main-nav-list a{
        font-size:14px;
    }

    .header-btn{
        padding:12px 16px;
        font-size:14px;
    }

    .btn-primary,
    .btn-secondary{
        width:100%;
    }

    .hero-buttons,
    .docs-hero__actions{
        flex-direction:column;
    }

    .hero-stat{
        width:100%;
    }

    .contact-card,
    .form-card,
    .about-card{
        padding:24px;
    }
}

/* FIX MENU WORDPRESS */
.main-nav ul{
    display:flex !important;
    flex-direction:row !important;
    align-items:center !important;
    justify-content:center !important;
    gap:16px !important;
    list-style:none !important;
    margin:0 !important;
    padding:0 !important;
}

.main-nav li{
    list-style:none !important;
    margin:0 !important;
    padding:0 !important;
}

.main-nav a{
    display:block;
    color:#234;
    font-size:14px;
    font-weight:600;
    white-space:nowrap;
}

.main-nav a:hover{
    color:#0d6efd;
}

/* SERVICES PAGE */
.services-page-hero{
    position:relative;
    overflow:hidden;
    padding:90px 0 80px;
    background:linear-gradient(135deg,#0d6efd 0%, #4aa6ff 100%);
    color:#fff;
}

.services-page-hero::before{
    content:"";
    position:absolute;
    top:-120px;
    right:-120px;
    width:360px;
    height:360px;
    border-radius:50%;
    background:rgba(255,255,255,0.08);
}

.services-page-hero::after{
    content:"";
    position:absolute;
    left:-100px;
    bottom:-100px;
    width:260px;
    height:260px;
    border-radius:50%;
    background:rgba(255,255,255,0.06);
}

.services-page-hero__wrap{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:1.1fr 0.9fr;
    gap:30px;
    align-items:center;
}

.services-page-badge{
    display:inline-block;
    margin-bottom:18px;
    padding:10px 16px;
    border-radius:999px;
    background:rgba(255,255,255,0.15);
    font-size:14px;
    font-weight:700;
}

.services-page-hero__left h1{
    font-size:56px;
    line-height:1.05;
    margin-bottom:18px;
    font-weight:800;
}

.services-page-hero__left p{
    font-size:18px;
    line-height:1.7;
    color:#eaf4ff;
    max-width:760px;
}

.services-page-hero__actions{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin-top:28px;
}

.services-page-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:50px;
    padding:0 20px;
    border-radius:14px;
    font-size:14px;
    font-weight:700;
    transition:0.2s;
}

.services-page-btn--primary{
    background:#fff;
    color:#0d6efd;
    box-shadow:0 12px 24px rgba(0,0,0,0.08);
}

.services-page-btn--secondary{
    background:transparent;
    color:#fff;
    border:2px solid rgba(255,255,255,0.55);
}

.services-page-btn--secondary:hover{
    background:rgba(255,255,255,0.08);
}

.services-page-btn--accent{
    background:linear-gradient(135deg,#ff9a2f,#ff7a00);
    color:#fff;
    box-shadow:0 12px 24px rgba(255,122,0,0.18);
}

.services-page-hero-card{
    background:rgba(255,255,255,0.12);
    border:1px solid rgba(255,255,255,0.18);
    border-radius:28px;
    padding:34px;
    backdrop-filter:blur(5px);
    box-shadow:0 18px 40px rgba(0,0,0,0.12);
}

.services-page-hero-card__title{
    font-size:28px;
    font-weight:800;
    margin-bottom:12px;
}

.services-page-hero-card__text{
    font-size:17px;
    line-height:1.7;
    color:#eef6ff;
}

.services-page-main{
    padding:80px 0;
    background:#f4f8fc;
}

.services-page-head{
    margin-bottom:34px;
}

.services-page-head h2{
    font-size:40px;
    color:#0c2d57;
    margin-bottom:12px;
    font-weight:800;
}

.services-page-head p{
    max-width:760px;
    color:#667788;
    font-size:17px;
}

.services-page-grid{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:28px;
}

.service-modern-card{
    background:#fff;
    border-radius:28px;
    padding:30px;
    box-shadow:0 18px 40px rgba(0,0,0,0.06);
    transition:0.25s;
}

.service-modern-card:hover{
    transform:translateY(-4px);
    box-shadow:0 22px 50px rgba(0,0,0,0.08);
}

.service-modern-card__icon{
    width:64px;
    height:64px;
    border-radius:20px;
    background:linear-gradient(135deg,#edf5ff,#dceeff);
    color:#0d6efd;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    margin-bottom:18px;
}

.service-modern-card h3{
    font-size:26px;
    color:#0c2d57;
    margin-bottom:12px;
    line-height:1.25;
}

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

.service-modern-card ul{
    margin:0;
    padding-left:20px;
    color:#33485f;
}

.service-modern-card ul li{
    margin-bottom:8px;
    line-height:1.6;
}

.services-page-detail{
    padding:0 0 80px;
    background:#f4f8fc;
}

.services-page-detail__box{
    background:#fff;
    border-radius:28px;
    padding:34px;
    box-shadow:0 18px 40px rgba(0,0,0,0.06);
    display:grid;
    grid-template-columns:1.1fr 0.9fr;
    gap:24px;
    align-items:center;
}

.services-page-detail__left h2{
    font-size:30px;
    color:#0c2d57;
    margin-bottom:10px;
    font-weight:800;
}

.services-page-detail__left p{
    color:#617181;
    font-size:16px;
    line-height:1.7;
}

.services-page-mini-list{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
}

.services-page-mini-item{
    background:#f6faff;
    border:1px solid #e7f0fb;
    border-radius:18px;
    padding:16px 18px;
    font-weight:700;
    color:#194067;
}

.services-page-cta{
    padding:0 0 90px;
    background:#f4f8fc;
}

.services-page-cta__box{
    background:#fff;
    border-radius:28px;
    padding:38px;
    box-shadow:0 18px 40px rgba(0,0,0,0.06);
    text-align:center;
}

.services-page-cta__box h2{
    font-size:34px;
    color:#0c2d57;
    margin-bottom:12px;
    font-weight:800;
}

.services-page-cta__box p{
    color:#617181;
    font-size:16px;
    max-width:760px;
    margin:0 auto 22px;
    line-height:1.7;
}

@media (max-width:1100px){
    .services-page-hero__wrap,
    .services-page-detail__box,
    .services-page-grid{
        grid-template-columns:1fr;
    }
}

@media (max-width:768px){
    .services-page-hero{
        padding:70px 0 60px;
    }

    .services-page-hero__left h1{
        font-size:40px;
    }

    .services-page-head h2,
    .services-page-detail__left h2,
    .services-page-cta__box h2{
        font-size:30px;
    }

    .service-modern-card h3{
        font-size:22px;
    }

    .services-page-mini-list{
        grid-template-columns:1fr;
    }

    .services-page-hero__actions{
        flex-direction:column;
    }
}

/* TRANSPORT PAGE */
.transport-hero{
    position:relative;
    overflow:hidden;
    padding:100px 0 90px;
    background:linear-gradient(135deg,#0d6efd 0%, #4aa6ff 100%);
    color:#fff;
}

.transport-hero::before{
    content:"";
    position:absolute;
    right:-140px;
    top:-140px;
    width:420px;
    height:420px;
    border-radius:50%;
    background:rgba(255,255,255,0.08);
}

.transport-hero::after{
    content:"";
    position:absolute;
    left:-120px;
    bottom:-120px;
    width:320px;
    height:320px;
    border-radius:50%;
    background:rgba(255,255,255,0.06);
}

.transport-hero__content{
    position:relative;
    z-index:2;
    max-width:860px;
}

.transport-badge{
    display:inline-block;
    margin-bottom:20px;
    padding:10px 16px;
    border-radius:999px;
    background:rgba(255,255,255,0.14);
    font-size:14px;
    font-weight:700;
}

.transport-hero h1{
    font-size:58px;
    line-height:1.05;
    margin-bottom:20px;
    font-weight:800;
}

.transport-hero p{
    font-size:18px;
    line-height:1.8;
    color:#eaf4ff;
    max-width:760px;
}

.transport-hero__buttons{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin-top:32px;
}

.transport-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:54px;
    padding:0 24px;
    border-radius:14px;
    font-size:15px;
    font-weight:700;
    transition:0.2s;
}

.transport-btn--primary{
    background:#fff;
    color:#0d6efd;
    box-shadow:0 14px 28px rgba(0,0,0,0.12);
}

.transport-btn--secondary{
    border:2px solid rgba(255,255,255,0.5);
    color:#fff;
}

.transport-btn--secondary:hover{
    background:rgba(255,255,255,0.08);
}

.transport-btn--accent{
    background:linear-gradient(135deg,#ff9a2f,#ff7a00);
    color:#fff;
    box-shadow:0 12px 24px rgba(255,122,0,0.18);
}

.transport-gallery-section,
.transport-services,
.transport-info,
.transport-cta{
    background:#f4f8fc;
}

.transport-gallery-section{
    padding:90px 0;
}

.transport-section-head{
    margin-bottom:36px;
}

.transport-section-head h2{
    font-size:42px;
    color:#0c2d57;
    margin-bottom:14px;
    font-weight:800;
}

.transport-section-head p{
    color:#667788;
    font-size:17px;
    max-width:760px;
}

.transport-gallery-modern{
    display:grid;
    grid-template-columns:1.2fr 0.8fr;
    gap:24px;
}

.transport-gallery-main,
.transport-gallery-side a{
    display:block;
    overflow:hidden;
    border-radius:28px;
    background:#fff;
    box-shadow:0 18px 40px rgba(0,0,0,0.07);
}

.transport-gallery-main img{
    width:100%;
    height:620px;
    object-fit:cover;
    transition:0.3s;
}

.transport-gallery-side{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:24px;
}

.transport-gallery-side img{
    width:100%;
    height:298px;
    object-fit:cover;
    transition:0.3s;
}

.transport-gallery-main:hover img,
.transport-gallery-side a:hover img{
    transform:scale(1.04);
}

.transport-services{
    padding:0 0 90px;
}

.transport-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:26px;
}

.transport-card{
    background:#fff;
    border-radius:28px;
    padding:34px;
    box-shadow:0 18px 40px rgba(0,0,0,0.06);
}

.transport-card__icon{
    width:68px;
    height:68px;
    border-radius:22px;
    background:linear-gradient(135deg,#edf5ff,#dceeff);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    margin-bottom:18px;
}

.transport-card h3{
    font-size:26px;
    color:#0c2d57;
    margin-bottom:12px;
}

.transport-card p{
    color:#617181;
    line-height:1.8;
}

.transport-info{
    padding:0 0 90px;
}

.transport-info__box{
    background:#fff;
    border-radius:30px;
    padding:38px;
    box-shadow:0 18px 40px rgba(0,0,0,0.06);
    display:grid;
    grid-template-columns:1.1fr 0.9fr;
    gap:30px;
}

.transport-info__left h2{
    font-size:34px;
    color:#0c2d57;
    margin-bottom:14px;
    font-weight:800;
}

.transport-info__left p{
    color:#617181;
    line-height:1.8;
}

.transport-info__right{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
}

.transport-mini-item{
    background:#f6faff;
    border:1px solid #e7f0fb;
    border-radius:18px;
    padding:18px;
    font-weight:700;
    color:#194067;
}

.transport-cta{
    padding:0 0 90px;
}

.transport-cta__box{
    background:#fff;
    border-radius:30px;
    padding:50px;
    text-align:center;
    box-shadow:0 18px 40px rgba(0,0,0,0.06);
}

.transport-cta__box h2{
    font-size:40px;
    color:#0c2d57;
    margin-bottom:14px;
    font-weight:800;
}

.transport-cta__box p{
    max-width:760px;
    margin:0 auto 26px;
    color:#617181;
    line-height:1.8;
}

@media (max-width:1100px){
    .transport-gallery-modern,
    .transport-grid,
    .transport-info__box{
        grid-template-columns:1fr;
    }

    .transport-gallery-main img{
        height:460px;
    }

    .transport-gallery-side img{
        height:240px;
    }
}

@media (max-width:768px){
    .transport-hero{
        padding:80px 0 70px;
    }

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

    .transport-section-head h2,
    .transport-info__left h2,
    .transport-cta__box h2{
        font-size:30px;
    }

    .transport-gallery-side,
    .transport-info__right{
        grid-template-columns:1fr;
    }

    .transport-gallery-main img,
    .transport-gallery-side img{
        height:260px;
    }

    .transport-hero__buttons{
        flex-direction:column;
    }
    .post-content{
    font-size:18px;
    line-height:1.9;
    color:#445566;
}

.post-content h2{
    font-size:34px;
    color:#0c2d57;
    margin:40px 0 20px;
}

.post-content h3{
    font-size:28px;
    color:#0c2d57;
    margin:30px 0 15px;
}

.post-content p{
    margin-bottom:20px;
}

.post-content ul{
    margin:20px 0;
    padding-left:25px;
}

.post-content li{
    margin-bottom:10px;
}

.post-content img{
    border-radius:20px;
    margin:25px auto;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}
.news-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:26px;
}

.news-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 14px 35px rgba(0,0,0,0.06);
    transition:0.25s;
}

.news-card:hover{
    transform:translateY(-4px);
    box-shadow:0 20px 45px rgba(0,0,0,0.09);
}

.news-card__image{
    display:block;
    height:260px;
    overflow:hidden;
    background:#eef5ff;
}

.news-card__image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.3s;
}

.news-card:hover .news-card__image img{
    transform:scale(1.04);
}

.news-card__body{
    padding:24px;
}

.news-card__date{
    font-size:13px;
    color:#7d8a97;
    margin-bottom:10px;
}

.news-card h2{
    font-size:22px;
    line-height:1.3;
    margin-bottom:12px;
}

.news-card h2 a{
    color:#0c2d57;
}

.news-card p{
    color:#617181;
    font-size:15px;
    line-height:1.7;
    margin-bottom:18px;
}

.news-card__btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:46px;
    padding:0 18px;
    border-radius:12px;
    background:linear-gradient(135deg,#0d6efd,#3294ff);
    color:#fff;
    font-weight:700;
    font-size:14px;
}

@media (max-width:1100px){
    .news-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media (max-width:768px){
    .news-grid{
        grid-template-columns:1fr;
    }

    .news-card__image{
        height:230px;
    }
}

}
