/* === GLOBAL === */
body {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: #2a2a2a;
    background: #fff;
    margin: 0;
}

*, *::before, *::after { box-sizing: border-box; }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3 { font-weight: 500; margin: 0 0 15px; color: #2a2a2a; }
h1 { font-size: 28px; line-height: 1.25; }
h2 { font-size: 24px; }
h3 { font-size: 18px; }

a { text-decoration: none; }
p { margin: 0 0 12px; }
p:last-child { margin-bottom: 0; }

/* === HEADER === */
.site-header { background: #00a9e0; color: #fff; position: sticky; top: 0; z-index: 100; }
.site-header .top-bar { border-bottom: 1px solid rgba(255,255,255,0.15); padding: 8px 0; }
.site-header .top-bar .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.site-header .logo-wrap { display: flex; align-items: center; }
.site-header .logo-wrap a { display: inline-flex; align-items: center; }

.site-header .navbar { padding: 0; }
.site-header .navbar .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.site-header .main-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}
.site-header .main-menu li a {
    color: #fff;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    padding: 14px 15px;
    display: block;
    font-weight: 500;
    transition: background 0.2s;
}
.site-header .main-menu li a:hover { background: rgba(255,255,255,0.12); }
.site-header .main-menu li a.active { background: rgba(255,255,255,0.18); }

.menu-toggle {
    display: none;
    background: none;
    border: 0;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    padding: 8px;
}

/* === HERO === */
.hero-section { padding: 0; }
.hero-section .row { margin: 0; }
.hero-section .hero-img-col { padding: 0; }
.hero-section .hero-img-col img { width: 100%; height: 500px; object-fit: cover; display: block; }
.hero-section .hero-card-col { padding: 0; }
.hero-section .hero-card {
    background: #6f6f6f;
    color: #fff;
    padding: 50px 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 500px;
}
.hero-section .hero-card h1 { color: #fff; font-size: 26px; font-weight: 500; margin-bottom: 20px; }
.hero-section .hero-card p { color: rgba(255,255,255,0.9); font-size: 14px; margin-bottom: 15px; }
.hero-section .hero-card .btn { margin-top: 10px; }

/* === SECTIONS === */
.section { padding: 60px 0; }
.section.bg1 { background: #f2f2f2; }
.section.bg3 { background: #6a6a6a; color: #fff; }
.section.bg3 h2 { color: #fff; }
.section-title { margin-bottom: 35px; }
.section-title h2 { font-size: 22px; font-weight: 500; margin: 0; }
.section-title p { color: #6a6a6a; font-size: 13px; margin: 8px 0 0; }
.section-title .pre-label { font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: #00a9e0; margin-bottom: 5px; }

/* === FEATURE CARDS === */
.feature-card { background: #fff; margin-bottom: 30px; }
.feature-card .card-img-wrapper { overflow: hidden; }
.feature-card .card-img-wrapper img { width: 100%; height: 220px; object-fit: cover; display: block; transition: transform 0.3s; }
.feature-card:hover .card-img-wrapper img { transform: scale(1.03); }
.feature-card .card-block { padding: 20px 0 15px; }
.feature-card .card-block h3 { font-size: 17px; margin: 0 0 10px; color: #2a2a2a; }
.feature-card .card-block p { font-size: 13px; color: #4a4a4a; line-height: 1.55; margin: 0 0 8px; }
.feature-card .card-price { font-size: 18px; font-weight: 600; color: #00a9e0; margin: 8px 0 12px; }
.feature-card .card-bottom { padding-top: 10px; }

/* === OVERLAY CARDS === */
.feature-card-overlay { position: relative; margin-bottom: 30px; }
.feature-card-overlay .card-img-wrapper { position: relative; overflow: hidden; }
.feature-card-overlay .card-img-wrapper img { width: 100%; height: 240px; object-fit: cover; display: block; transition: transform 0.3s; }
.feature-card-overlay:hover .card-img-wrapper img { transform: scale(1.04); }
.feature-card-overlay .card-img-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.05) 60%);
    padding: 18px;
}
.feature-card-overlay .card-img-overlay h3 { color: #fff; font-size: 17px; margin: 0; }
.feature-card-overlay a { display: block; }

/* === BUTTONS === */
.btn {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10px 22px;
    border-radius: 0;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    -webkit-transition: all 0.2s ease;
    font-family: 'Poppins', sans-serif;
}
.btn-primary { background: #00a9e0; color: #fff; border-color: #00a9e0; }
.btn-primary:hover { background: #0089b8; border-color: #0089b8; color: #fff; }
.btn-outline { background: transparent; color: #00a9e0; border: 1px solid #00a9e0; }
.btn-outline:hover { background: #00a9e0; color: #fff; }
.btn-outline-white { background: transparent; color: #fff; border: 1px solid #fff; }
.btn-outline-white:hover { background: #fff; color: #2a2a2a; }
.btn-link-arrow {
    background: none; color: #00a9e0; padding: 0; border: 0;
    text-transform: none; letter-spacing: 0; font-weight: 500; font-size: 13px;
}
.btn-link-arrow::after { content: " →"; }
.btn-link-arrow:hover { color: #0089b8; }

/* === JUMBOTRON === */
.jumbotron {
    background: #6f6f6f;
    color: #fff;
    padding: 45px 0;
}
.jumbotron.cyan-bg { background: #00a9e0; }
.jumbotron h2 { color: #fff; font-size: 24px; margin: 0 0 10px; }
.jumbotron p { color: rgba(255,255,255,0.9); margin: 0 0 5px; font-size: 14px; }
.jumbotron .btn-primary {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
}
.jumbotron .btn-primary:hover { background: #fff; color: #2a2a2a; }

/* === TILES (how it works) === */
.feature-tile { margin-bottom: 30px; }
.feature-tile .tile-icon { font-size: 32px; color: #00a9e0; margin-bottom: 12px; }
.feature-tile h3 { font-size: 16px; margin: 0 0 8px; }
.feature-tile p { font-size: 13px; color: #4a4a4a; margin: 0; }

/* === MEDIA TILE === */
.media-tile .media-img { width: 100%; height: auto; object-fit: cover; display: block; }
.media-tile .media-content { padding: 30px 25px; }
.media-tile .media-content h3 { font-size: 20px; font-weight: 500; margin: 0 0 15px; }
.media-tile .media-content p { font-size: 14px; line-height: 1.6; color: #4a4a4a; }

/* === TESTIMONIALS === */
.testimonial-card {
    background: #fff;
    border-left: 3px solid #00a9e0;
    padding: 20px 20px 20px 22px;
    margin-bottom: 25px;
}
.testimonial-card .stars { color: #c9a96a; font-size: 14px; margin-bottom: 8px; }
.testimonial-card p { font-size: 13px; color: #4a4a4a; font-style: italic; margin-bottom: 10px; }
.testimonial-card .author { font-size: 12px; font-weight: 600; color: #2a2a2a; text-transform: uppercase; letter-spacing: 0.5px; }

/* === SUBSCRIPTION HIGHLIGHT === */
.subscription-box {
    background: #fff;
    border: 2px solid #00a9e0;
    padding: 30px;
    margin-bottom: 30px;
}
.subscription-box h3 { color: #00a9e0; }
.subscription-box .price-tag { font-size: 28px; font-weight: 600; color: #2a2a2a; }
.subscription-box .price-tag span { font-size: 14px; color: #6a6a6a; font-weight: 400; }

/* === CONTACT FORM === */
.contact-form-wrap { background: #f2f2f2; padding: 40px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; color: #2a2a2a; }
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    border: 1px solid #d8d8d8;
    padding: 10px 14px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: #2a2a2a;
    background: #fff;
    border-radius: 0;
    outline: none;
    transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus { border-color: #00a9e0; }
.form-group textarea { resize: vertical; min-height: 120px; }

/* === CONTENT PAGE === */
.content-page { padding: 60px 0; }
.content-page h1 { font-size: 26px; margin-bottom: 25px; }
.content-page h2 { font-size: 20px; margin: 30px 0 12px; }
.content-page h3 { font-size: 16px; margin: 20px 0 8px; }
.content-page p { font-size: 14px; line-height: 1.7; color: #3a3a3a; margin-bottom: 14px; }
.content-page ul { padding-left: 20px; margin-bottom: 14px; }
.content-page ul li { font-size: 14px; line-height: 1.7; color: #3a3a3a; margin-bottom: 5px; }

/* === PAGE HERO BANNER === */
.page-banner {
    background: #6f6f6f;
    color: #fff;
    padding: 45px 0;
}
.page-banner h1 { color: #fff; font-size: 26px; margin: 0 0 8px; }
.page-banner p { color: rgba(255,255,255,0.85); margin: 0; font-size: 14px; }

/* === FOOTER === */
.site-footer { background: #2a2a2a; color: #fff; }
.site-footer .footer-top { background: #bfa676; padding: 25px 0; }
.site-footer .footer-top .ft-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}
.site-footer .footer-top .ft-tagline { color: #fff; font-size: 14px; font-weight: 500; }
.site-footer .footer-top .socials { display: flex; align-items: center; gap: 12px; }
.site-footer .footer-top .socials .label {
    color: #fff;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
}
.site-footer .footer-top .socials .icons { display: flex; gap: 8px; }
.site-footer .footer-top .socials .icons a {
    color: #fff;
    font-size: 18px;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255,255,255,0.5);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.site-footer .footer-top .socials .icons a:hover { background: rgba(255,255,255,0.15); }

.site-footer .footer-main { padding: 45px 0 30px; }
.site-footer .footer-col .col-label {
    display: block;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin-bottom: 15px;
}
.site-footer .footer-col ul { list-style: none; margin: 0; padding: 0; }
.site-footer .footer-col ul li { margin-bottom: 8px; }
.site-footer .footer-col ul li a { color: #fff; font-size: 13px; text-decoration: none; }
.site-footer .footer-col ul li a:hover { color: #00a9e0; }
.site-footer .footer-col .contact-line { font-size: 13px; color: rgba(255,255,255,0.8); margin-bottom: 6px; }
.site-footer .footer-col .contact-line i { color: #00a9e0; margin-right: 7px; width: 14px; }

.site-footer .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}
.site-footer .footer-bottom .copy { font-size: 11px; color: rgba(255,255,255,0.45); }
.site-footer .footer-bottom .legal-links a {
    color: rgba(255,255,255,0.6);
    font-size: 11px;
    text-decoration: none;
    margin-left: 14px;
}
.site-footer .footer-bottom .legal-links a:hover { color: #fff; }

/* === COOKIE BANNER === */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2a2a2a;
    color: #fff;
    padding: 18px 0;
    z-index: 999;
    display: none;
    border-top: 3px solid #00a9e0;
}
#cookie-banner .cb-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
#cookie-banner p { font-size: 13px; color: rgba(255,255,255,0.85); margin: 0; flex: 1; min-width: 200px; }
#cookie-banner p a { color: #00a9e0; }
#cookie-banner .cb-actions { display: flex; gap: 10px; align-items: center; }

/* === GRID === */
.row { display: flex; flex-wrap: wrap; margin: 0 -15px; }
.col, [class*="col-"] { padding: 0 15px; }
.col-12 { flex: 0 0 100%; max-width: 100%; }

@media (min-width: 576px) {
    .col-sm-6 { flex: 0 0 50%; max-width: 50%; }
}
@media (min-width: 768px) {
    .col-md-4 { flex: 0 0 33.333%; max-width: 33.333%; }
    .col-md-6 { flex: 0 0 50%; max-width: 50%; }
    .col-md-8 { flex: 0 0 66.666%; max-width: 66.666%; }
}
@media (min-width: 992px) {
    .col-lg-3 { flex: 0 0 25%; max-width: 25%; }
    .col-lg-4 { flex: 0 0 33.333%; max-width: 33.333%; }
    .col-lg-6 { flex: 0 0 50%; max-width: 50%; }
    .col-lg-8 { flex: 0 0 66.666%; max-width: 66.666%; }
}
@media (min-width: 1200px) {
    .col-xl-3 { flex: 0 0 25%; max-width: 25%; }
    .col-xl-4 { flex: 0 0 33.333%; max-width: 33.333%; }
    .col-xl-6 { flex: 0 0 50%; max-width: 50%; }
}

/* utils */
.d-flex { display: flex; }
.align-items-center { align-items: center; }
.align-items-end { align-items: flex-end; }
.justify-content-between { justify-content: space-between; }
.text-center { text-align: center; }
.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mb-0 { margin-bottom: 0; }

/* === RESPONSIVE === */
@media (max-width: 991px) {
    .site-header .main-menu { display: none; }
    .site-header .main-menu.open { display: flex; flex-direction: column; align-items: flex-start; width: 100%; padding: 10px 0; }
    .site-header .main-menu.open li { width: 100%; }
    .site-header .main-menu.open li a { padding: 10px 15px; }
    .menu-toggle { display: block; }
    .hero-section .hero-img-col img { height: 300px; }
    .hero-section .hero-card { min-height: auto; padding: 30px 25px; }
    h1 { font-size: 22px; }
    .section { padding: 40px 0; }
}
@media (max-width: 767px) {
    .feature-card { margin-bottom: 25px; }
    .site-footer .footer-top .ft-inner { justify-content: center; }
    .media-tile .media-content { padding: 20px 15px; }
    .contact-form-wrap { padding: 25px 20px; }
}
