/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1a73e8;
    --primary-dark: #0d5cbf;
    --secondary: #00c2a8;
    --accent: #ff6b35;
    --text-dark: #1e2d3d;
    --text-mid: #4a5568;
    --text-light: #718096;
    --bg-light: #f7faff;
    --bg-white: #ffffff;
    --border: #e2e8f0;
    --shadow: 0 4px 24px rgba(26,115,232,0.10);
    --shadow-hover: 0 8px 32px rgba(26,115,232,0.18);
    --radius: 14px;
    --radius-sm: 8px;
    --transition: 0.3s ease;
    --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    color: var(--text-dark);
    background: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ===== UTILITY ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-tag {
    display: inline-block;
    background: rgba(26,115,232,0.10);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 14px;
}

.section-title span { color: var(--primary); }

.section-sub {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 560px;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-header .section-sub { margin: 0 auto; }

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 18px rgba(26,115,232,0.30);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(26,115,232,0.38);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

/* ===== TOP BAR ===== */
.topbar {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.90);
    font-size: 0.83rem;
    padding: 8px 0;
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.topbar-left, .topbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.topbar a {
    color: rgba(255,255,255,0.85);
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color var(--transition);
}

.topbar a:hover { color: #fff; }
.topbar .icon { font-style: normal; font-size: 0.9rem; }

/* ===== HEADER ===== */
.header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 54px;
    width: auto;
    object-fit: contain;
}

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

.logo-name {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.logo-tag {
    font-size: 0.68rem;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
}

.nav-links a {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-mid);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary);
    background: rgba(26,115,232,0.07);
}

.nav-cta { display: flex; align-items: center; gap: 10px; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    background: none;
    border: none;
    border-radius: var(--radius-sm);
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== DROPDOWN ===== */
.has-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.arrow {
    font-size: 0.7rem;
    transition: transform var(--transition);
    display: inline-block;
    line-height: 1;
}

.has-dropdown:hover .arrow {
    transform: rotate(180deg);
}

.dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border-radius: var(--radius);
    box-shadow: 0 12px 40px rgba(0,0,0,0.14);
    border: 1.5px solid var(--border);
    min-width: 220px;
    padding: 8px;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition), transform var(--transition);
    transform: translateX(-50%) translateY(8px);
}

.dropdown::before {
    content: '';
    position: absolute;
    top: -7px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid #fff;
    filter: drop-shadow(0 -2px 2px rgba(0,0,0,0.06));
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
    display: block;
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

.dropdown li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-mid);
    transition: var(--transition);
    white-space: nowrap;
    background: none;
}

.dropdown li a:hover {
    background: rgba(26,115,232,0.07);
    color: var(--primary);
}

.dd-icon {
    font-size: 1.1rem;
    width: 28px;
    height: 28px;
    background: rgba(26,115,232,0.08);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ===== HERO ===== */
/* ===== HERO SLIDER ===== */
.hero {
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 620px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.1s ease-in-out;
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.04);
    transition: transform 6s ease;
}

.hero-slide.active .hero-slide-bg img {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(13,43,102,0.88) 0%, rgba(13,43,102,0.60) 55%, rgba(0,60,80,0.35) 100%);
}

.hero-slide-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 48px;
    width: 100%;
    padding-top: 110px;
    padding-bottom: 160px;
}

.hero-slide-content {
    max-width: 600px;
}

/* Right-side circular girl image */
.hero-slide-img-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-slide-circle {
    width: 380px;
    height: 430px;
    border-radius: 55% 45% 50% 50% / 60% 60% 40% 40%;
    overflow: hidden;
    position: relative;
    z-index: 2;
    border: 4px solid rgba(91,224,208,0.5);
    box-shadow: 0 0 40px rgba(91,224,208,0.18), 0 24px 60px rgba(0,0,0,0.35);
}

.hero-slide-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 6s ease;
}

.hero-slide.active .hero-slide-circle img {
    transform: scale(1.05);
}

/* Decorative spinning rings */
.hero-slide-ring {
    position: absolute;
    border-radius: 50%;
    border-style: dashed;
    border-color: rgba(91,224,208,0.30);
    animation: heroRingSpin 18s linear infinite;
    z-index: 1;
}

.hero-slide-ring--outer {
    width: 480px;
    height: 480px;
    border-width: 1.5px;
}

.hero-slide-ring--inner {
    width: 410px;
    height: 410px;
    border-width: 1px;
    border-color: rgba(255,255,255,0.15);
    animation-direction: reverse;
    animation-duration: 12s;
}

@keyframes heroRingSpin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* Animate content in on active slide */
.hero-slide.active .hero-slide-content {
    animation: heroIn 0.75s ease both;
}

@keyframes heroIn {
    from { opacity: 0; transform: translateY(32px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 7px 20px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 22px;
    border: 1px solid rgba(255,255,255,0.28);
}

.hero-slide-content h1 {
    font-size: clamp(2.2rem, 4.8vw, 3.6rem);
    font-weight: 900;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-slide-content h1 span { color: #5be0d0; }

.hero-slide-content p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 36px;
    max-width: 540px;
    line-height: 1.75;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-white-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.70);
    padding: 13px 28px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-white-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: #fff;
}

/* Arrow navigation */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    border: 2px solid rgba(255,255,255,0.30);
    color: #fff;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, border-color 0.3s, transform 0.2s;
    line-height: 1;
}

.hero-arrow:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-50%) scale(1.08);
}

.hero-prev { left: 22px; }
.hero-next { right: 22px; }

/* Slide counter */
.hero-counter {
    position: absolute;
    right: 30px;
    bottom: 110px;
    z-index: 10;
    display: flex;
    align-items: baseline;
    gap: 4px;
    font-weight: 800;
    color: #fff;
}

.hero-counter #heroCurrentNum {
    font-size: 2.2rem;
    color: #5be0d0;
    line-height: 1;
}

.hero-counter-sep {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.5);
    margin: 0 2px;
}

.hero-counter-total {
    font-size: 1rem;
    color: rgba(255,255,255,0.55);
}

/* Dot navigation */
.hero-dots {
    position: absolute;
    bottom: 88px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 9px;
    align-items: center;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    border: 2px solid rgba(255,255,255,0.60);
    cursor: pointer;
    padding: 0;
    transition: background 0.3s, border-color 0.3s, transform 0.3s, width 0.3s;
}

.hero-dot.active {
    background: #5be0d0;
    border-color: #5be0d0;
    width: 28px;
    border-radius: 5px;
}

.hero-dot:hover:not(.active) {
    background: rgba(255,255,255,0.70);
    border-color: #fff;
}

/* Stats bar */
.hero-stats-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    background: rgba(10,30,80,0.80);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255,255,255,0.12);
    padding: 18px 0;
}

.hero-stats {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 16px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-stat-num {
    font-size: 1.7rem;
    font-weight: 900;
    color: #5be0d0;
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.65);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-top: 4px;
}

/* ===== SERVICES TICKER ===== */
.services-ticker {
    background: var(--primary);
    padding: 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    z-index: 10;
}
.ticker-track {
    display: inline-flex;
    gap: 0;
    animation: ticker-scroll 30s linear infinite;
    will-change: transform;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-track span {
    display: inline-flex;
    align-items: center;
    padding: 13px 28px;
    font-size: .92rem;
    font-weight: 600;
    border-right: 1px solid rgba(255,255,255,.2);
}
.ticker-track span a {
    color: #fff;
    text-decoration: none;
    transition: color .2s;
}
.ticker-track span a:hover { color: #b3d4ff; }
@keyframes ticker-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== SERVICES ===== */
.services {
    padding: 96px 0;
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.service-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1.5px solid var(--border);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(26,115,232,0.20);
}

.service-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img img { transform: scale(1.07); }

.service-img-icon {
    position: absolute;
    bottom: 12px;
    left: 12px;
    width: 42px;
    height: 42px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 3px 12px rgba(0,0,0,0.18);
}

.service-body {
    padding: 22px 22px 24px;
}

.service-body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 9px;
}

.service-body p {
    font-size: 0.86rem;
    color: var(--text-light);
    line-height: 1.65;
    margin-bottom: 16px;
}

.service-link {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap var(--transition);
}

.service-card:hover .service-link { gap: 10px; }

/* ===== ABOUT ===== */
.about {
    padding: 96px 0;
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

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

.about-img-main {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.about-img-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-img-secondary {
    position: absolute;
    bottom: -28px;
    right: -28px;
    width: 180px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.22);
    border: 4px solid #fff;
}

.about-img-secondary img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    top: 28px;
    left: -24px;
    background: var(--primary);
    border-radius: var(--radius);
    padding: 16px 20px;
    box-shadow: 0 6px 24px rgba(26,115,232,0.35);
    text-align: center;
    min-width: 110px;
}

.about-badge-num {
    font-size: 1.9rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.about-badge-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.85);
    font-weight: 600;
    margin-top: 4px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 28px 0 36px;
}

.about-feature { display: flex; align-items: flex-start; gap: 12px; }

.about-feature-icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: rgba(26,115,232,0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.about-feature h4 { font-size: 0.88rem; font-weight: 700; color: var(--text-dark); margin-bottom: 2px; }
.about-feature p { font-size: 0.8rem; color: var(--text-light); line-height: 1.5; }

/* ===== STATS ===== */
.stats {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.stats-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stats-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13,92,191,0.90) 0%, rgba(0,194,168,0.85) 100%);
}

.stats .container { position: relative; z-index: 1; }

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

.stat-item {
    text-align: center;
    color: #fff;
    padding: 32px 16px;
    border-radius: var(--radius);
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(6px);
    transition: var(--transition);
}

.stat-item:hover {
    background: rgba(255,255,255,0.18);
    transform: translateY(-4px);
}

.stat-icon { font-size: 2rem; margin-bottom: 10px; }
.stat-num { font-size: 2.5rem; font-weight: 900; line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: 0.88rem; opacity: 0.85; font-weight: 500; }

/* ===== HOW IT WORKS ===== */
.how {
    padding: 96px 0;
    background: var(--bg-light);
}

.how-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.how-step {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1.5px solid var(--border);
    transition: var(--transition);
}

.how-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.how-step-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.how-step-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.how-step:hover .how-step-img img { transform: scale(1.06); }

.step-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(26,115,232,0.40);
}

.how-step h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    padding: 20px 22px 8px;
}

.how-step p {
    font-size: 0.87rem;
    color: var(--text-light);
    line-height: 1.65;
    padding: 0 22px 24px;
}

/* ===== WHY CHOOSE US ===== */
.why {
    padding: 96px 0;
    background: #fff;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-top: 28px;
}

.why-item { display: flex; gap: 16px; align-items: flex-start; }

.why-item-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(26,115,232,0.25);
}

.why-item-text h4 { font-size: 0.98rem; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.why-item-text p { font-size: 0.86rem; color: var(--text-light); line-height: 1.6; }

.why-image-col { display: flex; flex-direction: column; gap: 14px; }

.why-img-big {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.why-img-big img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.why-img-big:hover img { transform: scale(1.04); }

.why-img-small-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.why-img-small {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow);
}

.why-img-small img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.why-img-small:hover img { transform: scale(1.06); }

.why-img-small span {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.60));
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 18px 10px 8px;
    text-align: center;
}

/* ===== GALLERY ===== */
.gallery {
    padding: 96px 0;
    background: var(--bg-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.gallery-item--wide {
    grid-column: span 2;
}

.gallery-item--wide img { height: 280px; }

.gallery-item--tall { grid-row: span 2; }
.gallery-item--tall img { height: 100%; min-height: 300px; }

.gallery-item:hover img { transform: scale(1.06); }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 45%, rgba(13,43,102,0.80) 100%);
    display: flex;
    align-items: flex-end;
    padding: 18px;
    opacity: 0;
    transition: opacity var(--transition);
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 96px 0;
    background: #fff;
}

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

.testimonial-card {
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 32px 26px;
    border: 1.5px solid var(--border);
    transition: var(--transition);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(26,115,232,0.18);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 14px;
    right: 22px;
    font-size: 5rem;
    font-family: Georgia, serif;
    color: rgba(26,115,232,0.10);
    line-height: 1;
}

.stars { color: #f6c90e; font-size: 0.9rem; margin-bottom: 14px; letter-spacing: 2px; }

.testimonial-card p {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.75;
    margin-bottom: 22px;
    font-style: italic;
}

.testimonial-author { display: flex; align-items: center; gap: 13px; }

.author-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid var(--primary);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name { font-size: 0.92rem; font-weight: 700; color: var(--text-dark); }
.author-location { font-size: 0.77rem; color: var(--text-light); }

/* ===== TEAM ===== */
.team {
    padding: 96px 0;
    background: var(--bg-light);
}

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

.team-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1.5px solid var(--border);
    transition: var(--transition);
    text-align: center;
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.team-img {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-img img { transform: scale(1.06); }

.team-body { padding: 18px 16px 20px; }

.team-body h3 { font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.team-body span { font-size: 0.82rem; color: var(--primary); font-weight: 600; }

/* ===== CONTACT ===== */
.contact { padding: 96px 0; background: #fff; }

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

.contact-info > h2 {
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.contact-info > p {
    font-size: 0.93rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 24px;
}

.contact-img-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 28px;
    box-shadow: var(--shadow);
}

.contact-img-wrap img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.contact-items { display: flex; flex-direction: column; gap: 18px; }

.contact-item { display: flex; gap: 14px; align-items: flex-start; }

.contact-item-icon {
    width: 44px;
    height: 44px;
    border-radius: 11px;
    background: rgba(26,115,232,0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-item-text strong {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.contact-item-text span { font-size: 0.93rem; color: var(--text-dark); font-weight: 600; }

.contact-form {
    background: var(--bg-light);
    border-radius: 20px;
    padding: 40px 36px;
    border: 1.5px solid var(--border);
}

.contact-form h3 { font-size: 1.25rem; font-weight: 800; color: var(--text-dark); margin-bottom: 24px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { margin-bottom: 16px; }

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-mid);
    margin-bottom: 7px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 0.93rem;
    color: var(--text-dark);
    background: #fff;
    outline: none;
    transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26,115,232,0.12);
}

.form-group textarea { resize: vertical; min-height: 120px; }

/* ===== CTA BANNER ===== */
.cta-banner {
    padding: 96px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13,43,102,0.88) 0%, rgba(0,80,70,0.82) 100%);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
}

.cta-content p {
    font-size: 1rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 32px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.btn-white {
    background: #fff;
    color: var(--primary);
    font-weight: 700;
    padding: 15px 34px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    box-shadow: 0 6px 24px rgba(0,0,0,0.20);
    transition: var(--transition);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(0,0,0,0.25);
}

.cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.90);
    font-size: 1.5rem;
    font-weight: 800;
    margin-top: 20px;
}

/* ===== FOOTER ===== */
.footer {
    background: #0d1b2e;
    color: rgba(255,255,255,0.75);
    padding: 72px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.3fr;
    gap: 36px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand img {
    height: 50px;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
    opacity: 0.85;
}

.footer-brand p {
    font-size: 0.87rem;
    line-height: 1.75;
    margin-bottom: 22px;
    color: rgba(255,255,255,0.55);
}

.footer-social { display: flex; gap: 10px; }

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: rgba(255,255,255,0.80);
    border: 1px solid rgba(255,255,255,0.10);
}

.social-btn svg { width: 18px; height: 18px; }

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

.social-fb { color: #fff; }
.social-fb:hover { background: #1877f2; border-color: #1877f2; box-shadow: 0 4px 14px rgba(24,119,242,0.45); }

.social-ig { color: #fff; }
.social-ig:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
    border-color: transparent;
    box-shadow: 0 4px 14px rgba(214,36,159,0.45);
}

.social-wa { color: #fff; }
.social-wa:hover { background: #25d366; border-color: #25d366; box-shadow: 0 4px 14px rgba(37,211,102,0.45); }

.social-yt { color: #fff; }
.social-yt:hover { background: #ff0000; border-color: #ff0000; box-shadow: 0 4px 14px rgba(255,0,0,0.40); }

.footer-col h4 {
    font-size: 0.88rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col ul li a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    transition: color var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-col ul li a::before { content: '›'; color: var(--secondary); font-weight: 700; }
.footer-col ul li a:hover { color: #fff; }

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    margin-bottom: 12px;
}

.footer-contact-item span:first-child { flex-shrink: 0; color: var(--secondary); }

.footer-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin-top: 18px;
}

.footer-gallery img {
    width: 100%;
    height: 64px;
    object-fit: cover;
    border-radius: 6px;
    opacity: 0.70;
    transition: opacity var(--transition);
}

.footer-gallery img:hover { opacity: 1; }

.footer-bottom {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.81rem;
    color: rgba(255,255,255,0.38);
}

.footer-bottom a { color: rgba(255,255,255,0.52); transition: color var(--transition); }
.footer-bottom a:hover { color: #fff; }

/* ===== FLOATING BUTTONS ===== */
.call-float,
.whatsapp-float {
    position: fixed;
    left: 28px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: var(--transition);
    text-decoration: none;
}

.call-float {
    bottom: 100px;
    background: #1a73e8;
    box-shadow: 0 4px 20px rgba(26,115,232,0.50);
    color: #fff;
}

.call-float svg { width: 26px; height: 26px; }

.call-float:hover {
    background: #0d5cbf;
    transform: scale(1.10);
    box-shadow: 0 6px 28px rgba(26,115,232,0.65);
}

.call-float::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(26,115,232,0.40);
    animation: call-pulse 2.2s ease-out infinite;
}

@keyframes call-pulse {
    0%   { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.6); opacity: 0; }
}

.whatsapp-float {
    bottom: 28px;
    background: #25d366;
    box-shadow: 0 4px 20px rgba(37,211,102,0.50);
}

.whatsapp-float svg { width: 28px; height: 28px; }

.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(37,211,102,0.40);
    animation: wa-pulse 2s ease-out infinite;
}

@keyframes wa-pulse {
    0%   { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.55); opacity: 0; }
}

.whatsapp-float:hover {
    background: #1ebd5a;
    transform: scale(1.10);
    box-shadow: 0 6px 28px rgba(37,211,102,0.65);
}

/* Shared tooltip */
.float-tooltip,
.whatsapp-tooltip {
    position: absolute;
    left: 64px;
    background: #1e2d3d;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}

.float-tooltip::before,
.whatsapp-tooltip::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -5px;
    transform: translateY(-50%);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-right: 5px solid #1e2d3d;
}

.call-float:hover .float-tooltip,
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 4px 16px rgba(26,115,232,0.40);
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
    pointer-events: none;
    z-index: 999;
    border: none;
    text-decoration: none;
}

.back-to-top.visible { opacity: 1; pointer-events: all; }

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* ===== MOBILE NAV ===== */
@media (max-width: 960px) {
    .hamburger { display: flex; }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 16px 24px 24px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.10);
        gap: 4px;
        z-index: 999;
    }
    .nav-links.open { display: flex; }
    .navbar { position: relative; flex-wrap: wrap; }
    .nav-cta .btn { padding: 10px 18px; font-size: 0.85rem; }

    /* Mobile dropdown */
    .dropdown {
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        background: var(--bg-light);
        border-radius: var(--radius-sm);
        padding: 6px;
        margin-top: 4px;
        display: none;
        opacity: 1;
        pointer-events: auto;
    }

    .dropdown::before { display: none; }

    .has-dropdown.open-mobile .dropdown {
        display: block;
        transform: none;
    }

    .has-dropdown:hover .dropdown { display: none; }
    .has-dropdown.open-mobile:hover .dropdown { display: block; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
    .hero-slider { height: auto; min-height: 100svh; }
    .hero-slide-inner { grid-template-columns: 1fr; padding-top: 100px; padding-bottom: 150px; gap: 28px; }
    .hero-slide-img-wrap { order: -1; }
    .hero-slide-circle { width: 260px; height: 300px; }
    .hero-slide-ring--outer { width: 320px; height: 320px; }
    .hero-slide-ring--inner { width: 280px; height: 280px; }
    .hero-counter { display: none; }
    .about-grid { grid-template-columns: 1fr; }
    .about-image-wrap { max-width: 480px; margin: 0 auto; }
    .about-img-secondary { right: -10px; width: 140px; }
    .why-grid { grid-template-columns: 1fr; }
    .how-steps { grid-template-columns: 1fr 1fr; gap: 20px; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .gallery-item--wide { grid-column: span 2; }
    .gallery-item--tall { grid-row: auto; }
    .testimonials-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .hero-slide-inner { padding-top: 85px; padding-bottom: 130px; }
    .hero-slide-circle { width: 200px; height: 230px; }
    .hero-slide-ring--outer { width: 250px; height: 250px; }
    .hero-slide-ring--inner { width: 218px; height: 218px; }
    .hero-arrow { width: 40px; height: 40px; font-size: 0.9rem; }
    .hero-prev { left: 12px; }
    .hero-next { right: 12px; }
    .hero-stats { gap: 8px; }
    .hero-stat-num { font-size: 1.3rem; }
    .services-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: 1fr 1fr; }
    .how-steps { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item--wide, .gallery-item--tall { grid-column: auto; grid-row: auto; }
    .gallery-item img, .gallery-item--wide img, .gallery-item--tall img { height: 200px; }
    .about-features { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .contact-form { padding: 24px 18px; }
    .form-row { grid-template-columns: 1fr; }
    .topbar-left { display: none; }
    .why-img-small-row { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   INNER PAGES – shared styles
   ============================================================ */

/* --- Page Hero Banner --- */
.page-hero {
    position: relative;
    padding: 80px 0 68px;
    text-align: center;
    overflow: hidden;
    background: var(--primary-dark);
}
.page-hero-bg { position: absolute; inset: 0; z-index: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.22; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 900; color: #fff; margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.80); font-size: 1rem; max-width: 520px; margin: 0 auto 16px; }

.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.84rem;
    color: rgba(255,255,255,0.65);
}
.breadcrumb a { color: rgba(255,255,255,0.80); transition: color var(--transition); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { opacity: 0.45; }
.breadcrumb .current { color: #5be0d0; font-weight: 600; }

/* --- Include Checklist --- */
.include-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 20px;
}
.include-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-light);
    padding: 11px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-dark);
}
.include-item::before {
    content: '✓';
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--secondary);
    color: #fff;
    font-size: 0.7rem; font-weight: 900;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

/* --- Pricing Cards --- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.pricing-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 36px 26px;
    border: 2px solid var(--border);
    text-align: center;
    transition: var(--transition);
    position: relative;
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.pricing-card.popular { border-color: var(--primary); box-shadow: var(--shadow); }
.popular-badge {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--primary); color: #fff;
    font-size: 0.74rem; font-weight: 700;
    padding: 5px 16px; border-radius: 50px; white-space: nowrap;
}
.pricing-name { font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-light); margin-bottom: 12px; }
.pricing-price { font-size: 2.4rem; font-weight: 900; color: var(--primary); line-height: 1; margin-bottom: 4px; }
.pricing-price span { font-size: 1rem; font-weight: 600; color: var(--text-light); }
.pricing-desc { font-size: 0.84rem; color: var(--text-light); margin-bottom: 22px; }
.pricing-features { text-align: left; margin-bottom: 26px; }
.pricing-features li {
    font-size: 0.87rem; color: var(--text-mid);
    padding: 8px 0; border-bottom: 1px solid var(--border);
    display: flex; align-items: center; gap: 8px;
}
.pricing-features li::before { content: '✓'; color: var(--secondary); font-weight: 700; flex-shrink: 0; }

/* --- FAQ Accordion --- */
.faq-list { display: flex; flex-direction: column; gap: 10px; max-width: 820px; margin: 0 auto; }
.faq-item { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; transition: border-color var(--transition); }
.faq-item.open { border-color: var(--primary); }
.faq-q {
    width: 100%; display: flex; align-items: center; justify-content: space-between;
    padding: 18px 22px; background: none; border: none; text-align: left;
    font-family: var(--font); font-size: 0.96rem; font-weight: 700; color: var(--text-dark);
    cursor: pointer; gap: 12px;
}
.faq-q::after { content: '+'; font-size: 1.5rem; font-weight: 300; color: var(--primary); flex-shrink: 0; transition: transform var(--transition); }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 22px 18px; font-size: 0.9rem; color: var(--text-light); line-height: 1.75; }
.faq-item.open .faq-a { display: block; }

/* --- Blog Grid & Cards --- */
.blog-layout { display: grid; grid-template-columns: 1fr 310px; gap: 40px; align-items: start; }
.blog-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.blog-grid-3 { grid-template-columns: repeat(3, 1fr); }

.blog-card { background: #fff; border-radius: var(--radius); overflow: hidden; border: 1.5px solid var(--border); transition: var(--transition); }
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }

.blog-card-img { position: relative; height: 210px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; display: block; }
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-cat {
    position: absolute; top: 12px; left: 12px;
    background: var(--primary); color: #fff;
    font-size: 0.72rem; font-weight: 700;
    padding: 4px 10px; border-radius: 4px;
    text-transform: uppercase; letter-spacing: 0.5px;
}
.blog-card-body { padding: 20px 22px 22px; }
.blog-meta { display: flex; align-items: center; gap: 14px; font-size: 0.78rem; color: var(--text-light); margin-bottom: 10px; flex-wrap: wrap; }
.blog-card-body h3 { font-size: 1rem; font-weight: 700; color: var(--text-dark); line-height: 1.4; margin-bottom: 10px; transition: color var(--transition); }
.blog-card:hover .blog-card-body h3 { color: var(--primary); }
.blog-card-body p { font-size: 0.86rem; color: var(--text-light); line-height: 1.65; margin-bottom: 16px; }
.read-more { font-size: 0.85rem; font-weight: 700; color: var(--primary); display: inline-flex; align-items: center; gap: 5px; transition: gap var(--transition); }
.blog-card:hover .read-more { gap: 10px; }

/* --- Sidebar --- */
.sidebar { position: sticky; top: 90px; display: flex; flex-direction: column; gap: 24px; }
.sidebar-widget { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius); padding: 22px; }
.sidebar-widget h4 { font-size: 0.9rem; font-weight: 800; color: var(--text-dark); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--border); text-transform: uppercase; letter-spacing: 0.5px; }
.sidebar-cats li { border-bottom: 1px solid var(--border); }
.sidebar-cats li:last-child { border-bottom: none; }
.sidebar-cats li a { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; font-size: 0.88rem; font-weight: 600; color: var(--text-mid); transition: color var(--transition); }
.sidebar-cats li a:hover { color: var(--primary); }
.sidebar-cats li a span { background: var(--bg-light); color: var(--text-light); font-size: 0.75rem; padding: 2px 8px; border-radius: 50px; }

.recent-post { display: flex; gap: 12px; padding-bottom: 14px; margin-bottom: 14px; border-bottom: 1px solid var(--border); }
.recent-post:last-child { padding-bottom: 0; margin-bottom: 0; border-bottom: none; }
.recent-post img { width: 68px; height: 58px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.recent-post-text h5 { font-size: 0.84rem; font-weight: 700; color: var(--text-dark); line-height: 1.35; margin-bottom: 4px; transition: color var(--transition); }
.recent-post:hover .recent-post-text h5 { color: var(--primary); }
.recent-post-text span { font-size: 0.75rem; color: var(--text-light); }

.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-cloud a { background: var(--bg-light); color: var(--text-mid); font-size: 0.79rem; font-weight: 600; padding: 5px 12px; border-radius: 50px; border: 1px solid var(--border); transition: var(--transition); }
.tag-cloud a:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

/* --- Blog Single Post --- */
.post-img { border-radius: var(--radius); overflow: hidden; margin-bottom: 32px; box-shadow: var(--shadow); }
.post-img img { width: 100%; height: 420px; object-fit: cover; display: block; }
.post-title { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 900; color: var(--text-dark); line-height: 1.28; margin-bottom: 14px; }
.post-meta-bar { display: flex; align-items: center; gap: 20px; font-size: 0.84rem; color: var(--text-light); margin-bottom: 28px; padding-bottom: 18px; border-bottom: 1.5px solid var(--border); flex-wrap: wrap; }
.post-content p { font-size: 0.97rem; color: var(--text-mid); line-height: 1.85; margin-bottom: 18px; }
.post-content h2 { font-size: 1.4rem; font-weight: 800; color: var(--text-dark); margin: 32px 0 12px; }
.post-content h3 { font-size: 1.1rem; font-weight: 700; color: var(--text-dark); margin: 22px 0 10px; }
.post-content ul { list-style: disc; padding-left: 22px; margin-bottom: 18px; }
.post-content ul li { font-size: 0.95rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 6px; }
.post-content blockquote { border-left: 4px solid var(--primary); padding: 16px 22px; background: var(--bg-light); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin: 24px 0; font-style: italic; color: var(--text-mid); font-size: 1rem; }
.post-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 28px; padding-top: 18px; border-top: 1.5px solid var(--border); }
.post-tag { background: var(--bg-light); color: var(--text-mid); font-size: 0.79rem; font-weight: 600; padding: 5px 12px; border-radius: 50px; border: 1px solid var(--border); }
.author-box { display: flex; gap: 20px; background: var(--bg-light); border-radius: var(--radius); padding: 24px; margin-top: 32px; border: 1.5px solid var(--border); align-items: flex-start; }
.author-box img { width: 78px; height: 78px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.author-box h4 { font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 2px; }
.author-box .role { font-size: 0.8rem; color: var(--primary); font-weight: 600; }
.author-box p { font-size: 0.87rem; color: var(--text-light); margin-top: 8px; line-height: 1.65; }

.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 28px; }

/* --- Gallery Full Page --- */
.gallery-filter { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 36px; }
.filter-btn { background: #fff; border: 1.5px solid var(--border); color: var(--text-mid); font-size: 0.87rem; font-weight: 700; padding: 9px 22px; border-radius: 50px; cursor: pointer; transition: var(--transition); font-family: var(--font); }
.filter-btn:hover, .filter-btn.active { background: var(--primary); border-color: var(--primary); color: #fff; box-shadow: 0 4px 14px rgba(26,115,232,0.25); }

.gallery-full-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery-full-item { border-radius: var(--radius); overflow: hidden; position: relative; cursor: pointer; }
.gallery-full-item img { width: 100%; height: 230px; object-fit: cover; transition: transform 0.5s ease; display: block; }
.gallery-full-item:hover img { transform: scale(1.07); }
.gal-overlay { position: absolute; inset: 0; background: linear-gradient(transparent 45%, rgba(13,43,102,0.80)); display: flex; align-items: flex-end; padding: 14px; opacity: 0; transition: opacity var(--transition); }
.gallery-full-item:hover .gal-overlay { opacity: 1; }
.gal-overlay span { color: #fff; font-size: 0.85rem; font-weight: 700; }

/* --- Contact Full Page --- */
.contact-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 56px; }
.contact-card { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius); padding: 28px 20px; text-align: center; transition: var(--transition); }
.contact-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); border-color: rgba(26,115,232,0.20); }
.contact-card-icon { width: 56px; height: 56px; border-radius: 14px; background: rgba(26,115,232,0.10); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin: 0 auto 14px; }
.contact-card h4 { font-size: 0.82rem; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; }
.contact-card p, .contact-card a { font-size: 0.93rem; font-weight: 600; color: var(--text-dark); line-height: 1.55; }
.contact-card a:hover { color: var(--primary); }
.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.map-wrap iframe { width: 100%; height: 400px; border: none; display: block; }

/* --- Pagination --- */
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 48px; }
.page-btn { width: 40px; height: 40px; border-radius: 9px; border: 1.5px solid var(--border); background: #fff; color: var(--text-mid); font-size: 0.9rem; font-weight: 700; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--transition); font-family: var(--font); }
.page-btn:hover, .page-btn.active { background: var(--primary); border-color: var(--primary); color: #fff; }

/* --- Inner page shared section padding --- */
.inner-section { padding: 80px 0; }
.inner-section.bg-light { background: var(--bg-light); }
.inner-section.bg-dark { background: #0d1b2e; }

/* ===== INNER PAGE RESPONSIVE ===== */
@media (max-width: 1100px) {
    .gallery-full-grid { grid-template-columns: repeat(3, 1fr); }
    .contact-cards { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
    .blog-layout { grid-template-columns: 1fr; }
    .sidebar { position: static; }
    .blog-grid, .blog-grid-3 { grid-template-columns: 1fr 1fr; }
    .gallery-full-grid { grid-template-columns: repeat(2, 1fr); }
    .related-grid { grid-template-columns: 1fr 1fr; }
    .include-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .pricing-grid { grid-template-columns: 1fr; }
    .contact-cards { grid-template-columns: 1fr 1fr; }
    .gallery-full-grid { grid-template-columns: 1fr 1fr; }
    .related-grid { grid-template-columns: 1fr; }
    .blog-grid, .blog-grid-3 { grid-template-columns: 1fr; }
    .author-box { flex-direction: column; }
    .post-img img { height: 240px; }
}
