/**
 * Poletana Roastery Coffee — Main Stylesheet
 * Theme: Coffee (warm dark + gold accent)
 * Fonts: Poppins (body), Josefin Sans (headings), Great Vibes (decorative)
 */

/* ========== VARIABLES ========== */
:root {
    --gold: #c49b63;
    --gold-dark: #a07d4f;
    --dark: #000;
    --dark-soft: #1a1a2e;
    --white: #fff;
    --light: #f8f5f0;
    --text: #999;
    --text-dark: #555;
    --radius: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --font-heading: 'Josefin Sans', Arial, sans-serif;
    --font-body: 'Poppins', sans-serif;
    --font-script: 'Great Vibes', cursive;
    --transition: all .3s ease;
    --navbar-h: 70px;
}

/* ========== RESET & BASE ========== */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.8;
    background: var(--white);
    color: var(--text-dark);
    margin: 0;
    padding: 0;
}
main { min-height: 100vh; }
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: #000;
}
a { transition: var(--transition); }

/* ========== NAVBAR ========== */
.navbar-public {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1030;
    height: var(--navbar-h);
    background: transparent;
    border-bottom: 1px solid rgba(255,255,255,.1);
    transition: var(--transition);
}
.navbar-public.scrolled {
    background: rgba(0,0,0,.95);
    border-bottom: none;
    box-shadow: 0 0 10px rgba(0,0,0,.4);
}
.navbar-public .container-fluid {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    max-width: 1400px;
    margin: 0 auto;
}
.navbar-brand-custom {
    display: flex;
    align-items: center;
    gap: .6rem;
    text-decoration: none;
}
.navbar-brand-custom .brand-name {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
}
.navbar-brand-custom .brand-name small {
    font-size: .6rem;
    display: block;
    font-weight: 400;
    color: rgba(255,255,255,.5);
    text-transform: uppercase;
    letter-spacing: .05em;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: .1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-links .nav-item .nav-link-item {
    padding: .5rem 1rem;
    color: rgba(255,255,255,.8);
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    transition: var(--transition);
    letter-spacing: .02em;
}
.nav-links .nav-item .nav-link-item:hover,
.nav-links .nav-item .nav-link-item.active {
    color: var(--gold);
}
.nav-links .nav-item .nav-link-login {
    padding: .4rem 1.3rem;
    color: #fff;
    border: 1px solid var(--gold);
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    transition: var(--transition);
}
.nav-links .nav-item .nav-link-login:hover {
    background: var(--gold);
    color: #fff;
}
.navbar-toggle {
    display: none;
    background: none;
    border: 1px solid rgba(255,255,255,.3);
    border-radius: var(--radius);
    color: #fff;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.nav-mobile-drawer {
    display: none;
    position: fixed;
    top: var(--navbar-h);
    left: 0; right: 0;
    background: rgba(0,0,0,.97);
    padding: 1rem 1.5rem;
    z-index: 1025;
    flex-direction: column;
    gap: .3rem;
}
.nav-mobile-drawer.open { display: flex; }
.nav-mobile-drawer .nav-link-item {
    padding: .7rem .85rem;
    color: rgba(255,255,255,.8);
    text-decoration: none;
    font-size: .9rem;
    transition: var(--transition);
}
.nav-mobile-drawer .nav-link-item:hover,
.nav-mobile-drawer .nav-link-item.active { color: var(--gold); }
.nav-mobile-drawer .nav-link-login {
    margin-top: .5rem;
    border: 1px solid var(--gold);
    color: #fff;
    text-align: center;
    border-radius: 30px;
    padding: .5rem;
}
@media (max-width: 991px) {
    .nav-links { display: none; }
    .navbar-toggle { display: flex; }
}

/* ========== UTILITIES ========== */
.text-gold { color: var(--gold) !important; }
.bg-light-section { background: var(--light); }
.subheading {
    font-family: var(--font-script);
    font-size: 1.6rem;
    color: var(--gold);
    display: block;
    margin-bottom: .3rem;
}
.heading-section h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: .5rem; }
.heading-section p { color: var(--text); font-size: .9rem; max-width: 500px; }
.heading-section.text-center p { margin: 0 auto; }
.btn-gold {
    background: var(--gold);
    color: #fff;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: .85rem;
    border: none;
    border-radius: 30px;
    padding: .75rem 2rem;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}
.btn-gold:hover {
    background: var(--gold-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(196,155,99,.4);
}
.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: .85rem;
    border-radius: 30px;
    padding: .75rem 2rem;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}
.btn-outline-gold:hover { background: var(--gold); color: #fff; }
.page-section { padding: 6rem 0; }
.eyebrow {
    font-family: var(--font-script);
    font-size: 1.3rem;
    color: var(--gold);
    display: inline-block;
    margin-bottom: .3rem;
}
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    color: #000;
    margin-bottom: .5rem;
}
.section-subtitle {
    font-size: .9rem;
    color: var(--text);
    max-width: 500px;
    margin: 0 auto;
}
.card-glass {
    background: #fff;
    border: 1px solid rgba(0,0,0,.05);
    border-radius: var(--radius-md);
    box-shadow: 0 2px 10px rgba(0,0,0,.04);
}

/* ========== PAGE HEADER (inner pages) ========== */
.page-header {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.page-header .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.5);
}
.page-header h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.page-header .breadcrumb-text {
    color: rgba(255,255,255,.7);
    font-size: .85rem;
    margin-top: .5rem;
}
.page-header .breadcrumb-text a {
    color: rgba(255,255,255,.9);
    text-decoration: none;
}
.page-header .breadcrumb-text a:hover { color: var(--gold); }

/* ========== CARDS ========== */
.card-coffee {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,.06);
    transition: var(--transition);
}
.card-coffee:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,.12);
}
.card-coffee .card-img { height: 220px; overflow: hidden; }
.card-coffee .card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.card-coffee:hover .card-img img { transform: scale(1.05); }
.card-coffee .card-body { padding: 1.5rem; }
.card-coffee .card-body h3 { font-size: 1rem; margin-bottom: .4rem; }
.card-coffee .card-body p { font-size: .83rem; color: var(--text); line-height: 1.6; margin: 0; }

/* ========== FOOTER ========== */
.footer-public {
    background: var(--dark);
    color: rgba(255,255,255,.55);
    padding: 4rem 0 1.5rem;
}
.footer-public .footer-heading {
    color: var(--gold);
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.footer-public .footer-links { list-style: none; padding: 0; margin: 0; }
.footer-public .footer-links li + li { margin-top: .5rem; }
.footer-public .footer-links a {
    color: rgba(255,255,255,.5);
    text-decoration: none;
    font-size: .85rem;
    transition: var(--transition);
}
.footer-public .footer-links a:hover { color: var(--gold); }
.footer-public .footer-contact-item {
    display: flex;
    gap: .5rem;
    font-size: .84rem;
    color: rgba(255,255,255,.5);
    margin-bottom: .6rem;
}
.footer-public .footer-contact-item i { color: var(--gold); margin-top: 3px; }
.footer-divider { border-color: rgba(255,255,255,.06); margin: 2.5rem 0 1rem; }
.footer-bottom { font-size: .75rem; color: rgba(255,255,255,.3); text-align: center; }


/* ========== LANDING PAGE SECTIONS ========== */

/* Dark textured background (bg_4.jpg) for main page body */
.page-dark-bg {
    background-color: #0f0f0f;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
}

/* Hero */
.home-slider .slider-item {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}
.home-slider .overlay { position: absolute; inset: 0; background: rgba(0,0,0,.5); }
.home-slider .slider-text { position: relative; z-index: 1; min-height: 100vh; display: flex; align-items: center; }
.home-slider .subheading { font-family: var(--font-script); font-size: 2rem; color: var(--gold); display: block; margin-bottom: .5rem; }
.home-slider h1 { font-family: var(--font-heading); font-size: clamp(2.2rem,5vw,3.5rem); color: #fff; font-weight: 700; }
.home-slider p { color: rgba(255,255,255,.8); font-size: 1rem; max-width: 600px; margin: 0 auto; }
.btn-coffee { background: var(--gold); color: #fff; border: 2px solid var(--gold); border-radius: 0; font-weight: 500; transition: var(--transition); }
.btn-coffee:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: #fff; }
.btn-white { background: transparent; color: #fff; border: 2px solid #fff; border-radius: 0; font-weight: 500; margin-left: .5rem; transition: var(--transition); }
.btn-white:hover { background: #fff; color: #000; }
.btn-outline-coffee { background: transparent; color: var(--gold); border: 2px solid var(--gold); border-radius: 0; }
.btn-outline-coffee:hover { background: var(--gold); color: #fff; }

/* Intro bar */
.ftco-intro { background: var(--dark-soft); padding: 2.5rem 0; }
.ftco-intro .col-md-4 { display: flex; align-items: flex-start; gap: 1rem; padding: 1rem 1.5rem; border-right: 1px solid rgba(255,255,255,.08); }
.ftco-intro .col-md-4:last-child { border-right: none; }
.ftco-intro .icon { font-size: 1.5rem; color: var(--gold); flex-shrink: 0; margin-top: .2rem; }
.ftco-intro .text h3 { font-family: var(--font-heading); font-size: .9rem; color: #fff; margin-bottom: .3rem; font-weight: 700; }
.ftco-intro .text p { font-size: .78rem; color: rgba(255,255,255,.5); margin: 0; }
@media (max-width: 767px) { .ftco-intro .col-md-4 { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); } }

/* About / Story — image left 50%, right shows page bg_4 through (transparent) */
.ftco-about {
    display: flex;
    min-height: 550px;
}
.ftco-about .about-img {
    width: 50%;
    background-size: cover;
    background-position: center;
}
.ftco-about .about-content {
    width: 50%;
    display: flex;
    align-items: center;
    padding: 3rem;
    margin-left: -80px;
    position: relative;
    z-index: 2;
}
.ftco-about .about-card {
    background: rgba(0,0,0,.75);
    border: 1px solid rgba(255,255,255,.08);
    padding: 2.5rem;
    max-width: 500px;
}
.ftco-about .heading-section .subheading { font-family: var(--font-script); font-size: 1.5rem; color: var(--gold); display: block; margin-bottom: .3rem; }
.ftco-about .heading-section h2 { font-family: var(--font-heading); font-size: 2rem; color: #fff; text-transform: uppercase; }
.ftco-about p { color: rgba(255,255,255,.65); line-height: 1.8; font-size: .9rem; }
@media (max-width: 767px) {
    .ftco-about { flex-direction: column; }
    .ftco-about .about-img { width: 100%; min-height: 300px; }
    .ftco-about .about-content { width: 100%; padding: 2rem; margin-left: 0; }
}

/* Services — gold background band */
.ftco-services { padding: 4rem 0; background: var(--gold); }
.ftco-services .services { padding: 1.5rem 1rem; }
.ftco-services .heading { font-family: var(--font-heading); font-size: 1rem; margin-bottom: .4rem; color: #000; text-transform: uppercase; letter-spacing: .03em; }
.ftco-services p { font-size: .82rem; color: rgba(0,0,0,.6); }
.ftco-services .icon i { color: #000 !important; }

/* Section on dark texture */
.section-dark { padding: 6rem 0; }
.section-dark .heading-section .subheading { color: var(--gold); }
.section-dark .heading-section h2 { color: #fff; }
.section-dark .heading-section p { color: rgba(255,255,255,.6); }

/* Product/menu entries on dark */
.menu-entry { margin-bottom: 2rem; }
.menu-entry .img { display: block; height: 250px; background-size: cover; background-position: center; border-radius: var(--radius-md); }
.menu-entry .img-placeholder { display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,.05); height: 250px; border-radius: var(--radius-md); }
.menu-entry .img-placeholder i { font-size: 3rem; color: var(--gold); opacity: .4; }
.menu-entry .text h3 { font-family: var(--font-heading); font-size: 1rem; }
.menu-entry .text h3 a { color: #fff; text-decoration: none; }
.menu-entry .text h3 a:hover { color: var(--gold); }
.menu-entry .text p { color: rgba(255,255,255,.6); font-size: .83rem; }

/* Blog entries on dark */
.blog-entry { margin-bottom: 2rem; }
.blog-entry .blog-img { height: 220px; background-size: cover; background-position: center; border-radius: var(--radius-md); }
.blog-entry .blog-date { font-size: .75rem; color: var(--gold); font-weight: 500; }
.blog-entry .heading { font-family: var(--font-heading); font-size: 1rem; }
.blog-entry .heading a { color: #fff; text-decoration: none; }
.blog-entry .heading a:hover { color: var(--gold); }
.blog-entry p { color: rgba(255,255,255,.6); font-size: .83rem; }

/* Gallery */
.ftco-gallery { padding: 0; }
.gallery-item { height: 300px; background-size: cover; background-position: center; transition: var(--transition); position: relative; }
.gallery-item::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,.1); transition: var(--transition); }
.gallery-item:hover::after { background: rgba(0,0,0,.3); }

/* Counter */
.ftco-counter { position: relative; padding: 5rem 0; background-size: cover; background-position: center; background-attachment: fixed; }
.ftco-counter .overlay { position: absolute; inset: 0; background: rgba(0,0,0,.7); }
.ftco-counter .block-18 { position: relative; z-index: 1; padding: 2rem 0; }
.ftco-counter .icon { font-size: 2rem; color: var(--gold); margin-bottom: .5rem; }
.ftco-counter .number { font-family: var(--font-heading); font-size: 2.5rem; color: #fff; display: block; }
.ftco-counter span { color: rgba(255,255,255,.7); font-size: .85rem; }

/* Animate on scroll */
.ftco-animate { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
.ftco-animate.visible { opacity: 1; transform: translateY(0); }

/* General dark section heading */
.heading-section .subheading { font-family: var(--font-script); font-size: 1.5rem; color: var(--gold); display: block; margin-bottom: .3rem; }
.heading-section h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: .5rem; }
.heading-section p { color: var(--text); font-size: .9rem; max-width: 500px; }
.heading-section.text-center p { margin: 0 auto; }


/* ========== CONTACT PAGE ========== */
.contact-info-heading { font-family: var(--font-heading); font-size: 1.6rem; color: var(--gold); margin-bottom: 2rem; }
.contact-info-item { margin-bottom: 1.5rem; }
.contact-info-item .label { color: rgba(255,255,255,.5); font-size: .85rem; margin-bottom: .2rem; }
.contact-info-item .value { color: rgba(255,255,255,.85); font-size: .95rem; }
.contact-info-item .value a { color: var(--gold); text-decoration: none; }
.contact-info-item .value a:hover { text-decoration: underline; }
.contact-input { background: transparent !important; border: none !important; border-bottom: 1px solid rgba(255,255,255,.25) !important; border-radius: 0 !important; color: #fff !important; padding: .75rem 0 !important; font-size: .9rem; }
.contact-input:focus { border-bottom-color: var(--gold) !important; box-shadow: none !important; }
.contact-input::placeholder { color: rgba(255,255,255,.4) !important; }
.btn-send { background: var(--gold); color: #fff; border: none; padding: .75rem 2.5rem; font-weight: 500; font-size: .9rem; cursor: pointer; transition: var(--transition); }
.btn-send:hover { background: var(--gold-dark); }

/* ========== EDUCATION PAGE ========== */
.edu-content-card {
    position: relative;
    padding-left: 1rem;
}
.edu-content-card h4 {
    font-family: var(--font-heading);
    color: var(--gold);
    font-size: 1.15rem;
    margin-bottom: .8rem;
}
.edu-content-card p {
    color: rgba(255,255,255,.6);
    font-size: .87rem;
    line-height: 1.8;
    margin-bottom: .8rem;
}
.edu-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(196,155,99,.15);
    position: absolute;
    top: -1.2rem;
    right: 0;
    line-height: 1;
}
.edu-highlight {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    padding: .8rem 1rem;
    background: rgba(196,155,99,.08);
    border-left: 3px solid var(--gold);
    border-radius: 0 var(--radius) var(--radius) 0;
    margin-top: .8rem;
}
.edu-highlight i {
    color: var(--gold);
    font-size: 1rem;
    margin-top: .1rem;
    flex-shrink: 0;
}
.edu-highlight span {
    color: rgba(255,255,255,.7);
    font-size: .82rem;
    line-height: 1.6;
}
.edu-visual-card {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(196,155,99,.15);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 250px;
}
.edu-visual-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
}
.edu-visual-icon i {
    font-size: 2rem;
    color: #fff;
}
.edu-vs-badge {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-top: .5rem;
}
.edu-vs-badge .vs-left, .edu-vs-badge .vs-right {
    padding: .4rem .8rem;
    border-radius: 20px;
    font-size: .78rem;
    font-weight: 600;
}
.edu-vs-badge .vs-left { background: rgba(46,125,50,.2); color: #66bb6a; }
.edu-vs-badge .vs-right { background: rgba(198,40,40,.2); color: #ef5350; }
.edu-vs-badge .vs-divider { color: var(--gold); font-weight: 700; font-size: .9rem; }

.edu-roast-levels {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}
.roast-item { text-align: center; }
.roast-color {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin: 0 auto .4rem;
    border: 2px solid rgba(255,255,255,.2);
}
.roast-item span { font-size: .72rem; color: rgba(255,255,255,.6); }

.edu-flavor-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
    justify-content: center;
    margin-top: 1rem;
}
.flavor-tag {
    padding: .3rem .7rem;
    border-radius: 20px;
    font-size: .75rem;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(196,155,99,.2);
    color: rgba(255,255,255,.7);
}

.edu-journey {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: .3rem;
}
.journey-step { text-align: center; }
.journey-icon { font-size: 1.5rem; }
.journey-step span { display: block; font-size: .68rem; color: rgba(255,255,255,.6); margin-top: .2rem; }
.journey-arrow { color: var(--gold); font-size: .9rem; }

.edu-factor-list {
    display: flex;
    flex-direction: column;
    gap: .6rem;
    margin-top: 1rem;
    width: 100%;
    max-width: 200px;
}
.factor-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .4rem .8rem;
    background: rgba(255,255,255,.04);
    border-radius: 6px;
    border: 1px solid rgba(196,155,99,.12);
}
.factor-item i { color: var(--gold); font-size: .9rem; }
.factor-item span { color: rgba(255,255,255,.7); font-size: .78rem; }

.edu-three-types {
    display: flex;
    gap: .5rem;
    margin-top: 1rem;
}
.type-badge {
    padding: .35rem .8rem;
    border-radius: 20px;
    font-size: .75rem;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.15);
    color: rgba(255,255,255,.6);
}
.type-badge.type-highlight {
    background: rgba(196,155,99,.15);
    border-color: var(--gold);
    color: var(--gold);
    font-weight: 600;
}

/* Responsive Education */
@media (max-width: 768px) {
    .edu-visual-card { min-height: 180px; padding: 1.5rem 1rem; }
    .edu-number { font-size: 2rem; top: -.8rem; }
    .edu-journey { gap: .2rem; }
    .journey-icon { font-size: 1.2rem; }
}



/* ========== MOBILE RESPONSIVE FIXES ========== */

/* Fix background-attachment: fixed not working on iOS/mobile */
@media (max-width: 991px) {
    .page-header,
    .page-dark-bg,
    .home-slider .slider-item,
    .ftco-counter {
        background-attachment: scroll !important;
    }
}

/* Hero section mobile */
@media (max-width: 767px) {
    .home-slider .slider-item {
        min-height: 80vh;
    }
    .home-slider h1 {
        font-size: 1.8rem;
    }
    .home-slider p {
        font-size: .85rem;
    }
    .btn-coffee, .btn-white {
        padding: .6rem 1.5rem !important;
        font-size: .85rem;
    }
    .btn-white {
        margin-left: 0 !important;
        margin-top: .5rem;
    }
}

/* Page header mobile */
@media (max-width: 767px) {
    .page-header {
        min-height: 40vh;
    }
    .page-header h1 {
        font-size: 1.6rem;
        letter-spacing: 1px;
    }
}

/* Section padding mobile */
@media (max-width: 767px) {
    .section-dark {
        padding: 3rem 0;
    }
    .ftco-services {
        padding: 2.5rem 0;
    }
}

/* Gallery mobile */
@media (max-width: 767px) {
    .gallery-item {
        height: 180px;
    }
}

/* Menu entry (produk) mobile */
@media (max-width: 767px) {
    .menu-entry .img {
        height: 180px;
    }
}

/* Footer mobile */
@media (max-width: 767px) {
    .footer-public {
        padding: 2.5rem 0 1rem;
        text-align: center;
    }
    .footer-public .footer-contact-item {
        justify-content: center;
    }
}

/* Counter mobile */
@media (max-width: 767px) {
    .ftco-counter .number {
        font-size: 1.8rem;
    }
}

/* Contact form mobile */
@media (max-width: 767px) {
    .contact-info-heading {
        font-size: 1.3rem;
    }
}

/* Blog entry mobile */
@media (max-width: 767px) {
    .blog-entry .blog-img {
        height: 160px;
    }
}
