/* ═══════════════════════════════════════════════════════
   BODRUM MARİN SERVİS – MAIN STYLESHEET v1.0.0
   Colors: Navy #0d2149 | Turquoise #00b4d8 | Light Blue #90e0ef | White #fff
═══════════════════════════════════════════════════════ */

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

html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }

body {
    font-family: 'Inter', 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #1e293b;
    background: #fff;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: #00b4d8; text-decoration: none; transition: color .2s; }
a:hover { color: #0d2149; }
ul { list-style: none; }
address { font-style: normal; }

/* ── CSS VARIABLES ── */
:root {
    --navy:      #0d2149;
    --navy-dark: #080f2e;
    --turquoise: #00b4d8;
    --turq-dark: #0099bb;
    --blue-light:#90e0ef;
    --white:     #ffffff;
    --gray-50:   #f8fafc;
    --gray-100:  #f1f5f9;
    --gray-200:  #e2e8f0;
    --gray-400:  #94a3b8;
    --gray-600:  #475569;
    --gray-800:  #1e293b;
    --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
    --shadow-md: 0 4px 16px rgba(13,33,73,.10);
    --shadow-lg: 0 10px 40px rgba(13,33,73,.14);
    --radius:    0.75rem;
    --radius-lg: 1.25rem;
    --container: 1280px;
    --transition: .25s cubic-bezier(.4,0,.2,1);
}

/* ── CONTAINER ── */
.bms-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (max-width: 768px) {
    .bms-container { padding: 0 1rem; }
}

/* ── BUTTONS ── */
.bms-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .75rem 1.75rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: .95rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition);
    white-space: nowrap;
    text-decoration: none;
}
.bms-btn-primary {
    background: var(--turquoise);
    color: var(--white);
    border-color: var(--turquoise);
}
.bms-btn-primary:hover { background: var(--turq-dark); border-color: var(--turq-dark); color: #fff; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,180,216,.35); }
.bms-btn-whatsapp {
    background: #25d366;
    color: var(--white);
    border-color: #25d366;
}
.bms-btn-whatsapp:hover { background: #1fba58; color:#fff; transform: translateY(-1px); }
.bms-btn-outline {
    background: transparent;
    color: var(--turquoise);
    border-color: var(--turquoise);
}
.bms-btn-outline:hover { background: var(--turquoise); color: #fff; }
.bms-btn-outline-white {
    background: rgba(255,255,255,.12);
    color: var(--white);
    border-color: rgba(255,255,255,.6);
}
.bms-btn-outline-white:hover { background: var(--white); color: var(--navy); }
.bms-mt-2 { margin-top: 1.5rem; }

/* ── SECTIONS ── */
.bms-section { padding: 5.5rem 0; }
.bms-section-header { text-align: center; margin-bottom: 3.5rem; }
.bms-section-label {
    display: inline-block;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--turquoise);
    margin-bottom: .75rem;
}
.bms-section-title {
    font-size: clamp(1.75rem, 4vw, 2.6rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 1rem;
}
.bms-section-desc {
    font-size: 1.05rem;
    color: var(--gray-600);
    max-width: 52ch;
    margin: 0 auto;
}

/* ═══════════════════════════════════════════
   HEADER
═══════════════════════════════════════════ */
.bms-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: .9rem 0;
    background: transparent;
    transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.bms-header.scrolled {
    background: var(--white);
    box-shadow: var(--shadow-md);
    padding: .6rem 0;
}
.bms-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}
.bms-logo img { height: 56px; width: auto; transition: height var(--transition); }
.bms-header.scrolled .bms-logo img { height: 48px; }

.bms-nav-list { display: flex; align-items: center; gap: .25rem; }
.bms-nav-link {
    display: flex;
    align-items: center;
    gap: .25rem;
    padding: .5rem .85rem;
    border-radius: 8px;
    font-size: .9rem;
    font-weight: 500;
    color: var(--white);
    transition: all var(--transition);
}
.bms-header.scrolled .bms-nav-link { color: var(--gray-800); }
.bms-nav-link:hover, .bms-nav-link.active { color: var(--turquoise) !important; background: rgba(0,180,216,.08); }

/* Dropdown */
.has-dropdown { position: relative; }
.bms-dropdown {
    position: absolute;
    top: calc(100% + .5rem);
    left: 0;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    min-width: 230px;
    padding: .5rem 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: all var(--transition);
    border: 1px solid var(--gray-200);
}
.has-dropdown:hover .bms-dropdown { opacity: 1; pointer-events: all; transform: translateY(0); }
.bms-dropdown li a {
    display: block;
    padding: .65rem 1.25rem;
    font-size: .88rem;
    color: var(--gray-800);
    transition: all var(--transition);
}
.bms-dropdown li a:hover { background: var(--gray-50); color: var(--turquoise); padding-left: 1.6rem; }

/* Header CTA */
.bms-header-cta { display: flex; align-items: center; gap: .75rem; flex-shrink: 0; }
.bms-btn-phone, .bms-btn-wa {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .55rem 1.1rem;
    border-radius: 999px;
    font-size: .85rem;
    font-weight: 600;
    transition: all var(--transition);
}
.bms-btn-phone {
    background: var(--turquoise);
    color: #fff;
}
.bms-btn-phone:hover { background: var(--turq-dark); color: #fff; transform: translateY(-1px); }
.bms-btn-wa { background: #25d366; color: #fff; }
.bms-btn-wa:hover { background: #1fba58; color: #fff; transform: translateY(-1px); }

/* Mobile toggle */
.bms-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: .5rem;
}
.bms-mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
}
.bms-header.scrolled .bms-mobile-toggle span { background: var(--navy); }
.bms-mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.bms-mobile-toggle.active span:nth-child(2) { opacity: 0; }
.bms-mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.bms-mobile-menu {
    display: none;
    padding: 1rem 1.5rem 1.5rem;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg);
}
.bms-mobile-menu.open { display: block; }
.bms-mobile-menu ul { display: flex; flex-direction: column; gap: .25rem; }
.bms-mobile-menu li a {
    display: block;
    padding: .75rem 1rem;
    color: var(--gray-800);
    font-weight: 500;
    border-radius: 8px;
    transition: all var(--transition);
}
.bms-mobile-menu li a:hover { background: var(--gray-50); color: var(--turquoise); }
.bms-mobile-menu .mobile-cta a { background: var(--turquoise); color: #fff; text-align: center; font-weight: 700; margin-top: .5rem; }

@media (max-width: 1024px) {
    .bms-nav, .bms-header-cta .bms-btn-wa { display: none; }
    .bms-mobile-toggle { display: flex; }
}
@media (max-width: 640px) {
    .bms-header-cta { gap: .5rem; }
    .bms-btn-phone { font-size: .78rem; padding: .45rem .85rem; }
}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.bms-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.bms-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.bms-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.bms-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(8,15,46,.85) 0%, rgba(13,33,73,.7) 40%, rgba(0,180,216,.25) 100%);
}
.bms-hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    padding-top: 6rem;
    padding-bottom: 4rem;
}
.bms-hero-text { flex: 1; max-width: 680px; }
.bms-hero-badge {
    display: inline-block;
    background: rgba(0,180,216,.2);
    border: 1px solid rgba(0,180,216,.4);
    color: var(--blue-light);
    padding: .35rem 1rem;
    border-radius: 999px;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}
.bms-hero-title {
    font-size: clamp(2.2rem, 6vw, 4rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.05;
    letter-spacing: -.02em;
    margin-bottom: .75rem;
}
.bms-hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--blue-light);
    font-weight: 600;
    margin-bottom: 1rem;
}
.bms-hero-desc {
    color: rgba(255,255,255,.82);
    font-size: 1.05rem;
    max-width: 55ch;
    margin-bottom: 2rem;
}
.bms-hero-btns { display: flex; gap: .75rem; flex-wrap: wrap; }
.bms-hero-badges {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    flex-shrink: 0;
}
.bms-hero-badge-card {
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: var(--radius);
    padding: 1rem 1.5rem;
    text-align: center;
    min-width: 130px;
}
.bms-hero-badge-card .bms-stat-num {
    display: block;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--turquoise);
    line-height: 1;
    margin-bottom: .25rem;
}
.bms-hero-badge-card span:last-child { font-size: .82rem; color: rgba(255,255,255,.8); font-weight: 500; }
.bms-hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    animation: bounce 2s infinite;
    color: rgba(255,255,255,.7);
}
.bms-hero-scroll a { color: inherit; display: block; }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0);} 50%{transform:translateX(-50%) translateY(8px);} }

@media (max-width: 900px) {
    .bms-hero-content { flex-direction: column; }
    .bms-hero-badges { flex-direction: row; }
    .bms-hero-badge-card { flex: 1; }
}
@media (max-width: 480px) {
    .bms-hero-btns { flex-direction: column; }
    .bms-hero-btns .bms-btn { justify-content: center; }
}

/* ── TRUST STRIP ── */
.bms-trust-strip { background: var(--navy); padding: 1.5rem 0; }
.bms-trust-grid { display: flex; align-items: center; justify-content: space-around; gap: 1.5rem; flex-wrap: wrap; }
.bms-trust-item { text-align: center; padding: .5rem 1rem; }
.bms-trust-item strong { display: block; color: var(--turquoise); font-size: 1rem; font-weight: 800; }
.bms-trust-item span { color: rgba(255,255,255,.75); font-size: .82rem; }

/* ═══════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════ */
.bms-services { background: var(--gray-50); }
.bms-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}
.bms-service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
    border: 1px solid var(--gray-200);
}
.bms-service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.bms-service-card-img { aspect-ratio: 16/10; overflow: hidden; }
.bms-service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.bms-service-card:hover .bms-service-card-img img { transform: scale(1.04); }
.bms-service-card-body { padding: 1.4rem; }
.bms-service-card-title { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: .5rem; }
.bms-service-card-desc { font-size: .88rem; color: var(--gray-600); margin-bottom: 1rem; line-height: 1.6; }
.bms-service-card-link {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .88rem;
    font-weight: 600;
    color: var(--turquoise);
    transition: gap var(--transition);
}
.bms-service-card-link:hover { gap: .7rem; color: var(--navy); }

/* ═══════════════════════════════════════════
   STATS
═══════════════════════════════════════════ */
.bms-stats {
    background: linear-gradient(135deg, var(--navy) 0%, #0a1b3d 100%);
    padding: 4rem 0;
}
.bms-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.bms-stat-card {
    text-align: center;
    padding: 1.5rem;
}
.bms-stat-number {
    display: inline-block;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--turquoise);
    line-height: 1;
}
.bms-stat-suffix { font-size: 1.5rem; font-weight: 900; color: var(--turquoise); }
.bms-stat-label { display: block; color: rgba(255,255,255,.75); font-size: .9rem; margin-top: .5rem; font-weight: 500; }

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

/* ═══════════════════════════════════════════
   WHY US
═══════════════════════════════════════════ */
.bms-why { background: var(--white); }
.bms-why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.bms-why-features { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.75rem; }
.bms-feature { display: flex; align-items: flex-start; gap: .85rem; }
.bms-feature-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: rgba(0,180,216,.12);
    color: var(--turquoise);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: .1rem;
}
.bms-feature strong { display: block; color: var(--navy); font-weight: 700; font-size: .95rem; }
.bms-feature span { color: var(--gray-600); font-size: .88rem; }
.bms-why-img { position: relative; }
.bms-why-img img { border-radius: var(--radius-lg); width: 100%; object-fit: cover; box-shadow: var(--shadow-lg); }
.bms-why-badge {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background: var(--navy);
    color: var(--white);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    gap: .25rem;
    box-shadow: var(--shadow-lg);
}
.bms-why-badge strong { color: var(--turquoise); font-size: 1.2rem; font-weight: 900; }
.bms-why-badge span { font-size: .8rem; color: rgba(255,255,255,.8); }
@media (max-width: 900px) {
    .bms-why-grid { grid-template-columns: 1fr; gap: 3rem; }
    .bms-why-img { order: -1; }
    .bms-why-badge { left: 1rem; }
}

/* ═══════════════════════════════════════════
   PROCESS
═══════════════════════════════════════════ */
.bms-process { background: var(--gray-50); }
.bms-process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}
.bms-process-steps::before {
    content: '';
    position: absolute;
    top: 2.5rem;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--turquoise), var(--navy));
    z-index: 0;
}
.bms-step {
    text-align: center;
    position: relative;
    z-index: 1;
}
.bms-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background: var(--navy);
    color: var(--turquoise);
    font-size: 1.4rem;
    font-weight: 900;
    border-radius: 50%;
    margin: 0 auto 1.25rem;
    border: 4px solid var(--white);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition);
}
.bms-step:hover .bms-step-num { transform: scale(1.12); }
.bms-step h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: .5rem; }
.bms-step p { font-size: .88rem; color: var(--gray-600); }
@media (max-width: 768px) {
    .bms-process-steps { grid-template-columns: repeat(2, 1fr); }
    .bms-process-steps::before { display: none; }
}
@media (max-width: 480px) {
    .bms-process-steps { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════ */
.bms-testimonials { background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%); }
.bms-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}
.bms-testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: transform var(--transition), box-shadow var(--transition);
}
.bms-testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.bms-stars { color: #f59e0b; font-size: 1.1rem; margin-bottom: .75rem; letter-spacing: .1em; }
.bms-testimonial-text { color: var(--gray-600); font-size: .95rem; line-height: 1.7; margin-bottom: 1rem; font-style: italic; }
.bms-testimonial-name { color: var(--navy); font-weight: 700; font-size: .9rem; }

/* ═══════════════════════════════════════════
   BRANDS
═══════════════════════════════════════════ */
.bms-brands { background: var(--white); }
.bms-brands-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}
.bms-brand-item {
    padding: .75rem 2rem;
    border: 2px solid var(--gray-200);
    border-radius: 999px;
    font-weight: 700;
    font-size: .9rem;
    color: var(--gray-600);
    transition: all var(--transition);
    cursor: default;
}
.bms-brand-item:hover { border-color: var(--turquoise); color: var(--navy); transform: translateY(-2px); box-shadow: var(--shadow-sm); }

/* ═══════════════════════════════════════════
   DISTRICTS
═══════════════════════════════════════════ */
.bms-districts { background: var(--navy); }
.bms-districts .bms-section-label { color: var(--blue-light); }
.bms-districts .bms-section-title { color: var(--white); }
.bms-districts .bms-section-desc { color: rgba(255,255,255,.75); }
.bms-districts-grid { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; }
.bms-district-chip {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    color: rgba(255,255,255,.9);
    padding: .5rem 1.1rem;
    border-radius: 999px;
    font-size: .85rem;
    font-weight: 500;
    transition: all var(--transition);
}
.bms-district-chip:hover { background: var(--turquoise); border-color: var(--turquoise); color: #fff; transform: translateY(-2px); }
.bms-district-chip svg { fill: var(--turquoise); flex-shrink: 0; }

/* ═══════════════════════════════════════════
   FAQ
═══════════════════════════════════════════ */
.bms-faq { background: var(--gray-50); }
.bms-faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: .75rem; }
.bms-faq-item { background: var(--white); border-radius: var(--radius); border: 1px solid var(--gray-200); overflow: hidden; }
.bms-faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    font-size: .97rem;
    font-weight: 600;
    color: var(--navy);
    text-align: left;
    gap: 1rem;
    transition: color var(--transition);
}
.bms-faq-q:hover { color: var(--turquoise); }
.bms-faq-arrow { flex-shrink: 0; transition: transform var(--transition); }
.bms-faq-item.open .bms-faq-arrow { transform: rotate(180deg); }
.bms-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}
.bms-faq-item.open .bms-faq-a { max-height: 300px; }
.bms-faq-a p { padding: 0 1.5rem 1.25rem; color: var(--gray-600); font-size: .92rem; line-height: 1.7; }

/* ═══════════════════════════════════════════
   BLOG PREVIEW
═══════════════════════════════════════════ */
.bms-blog-preview { background: var(--white); }
.bms-blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.bms-blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: transform var(--transition), box-shadow var(--transition);
}
.bms-blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.bms-blog-thumb { display: block; aspect-ratio: 16/9; overflow: hidden; }
.bms-blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.bms-blog-card:hover .bms-blog-thumb img { transform: scale(1.04); }
.bms-blog-body { padding: 1.5rem; }
.bms-blog-body time { font-size: .8rem; color: var(--gray-400); display: block; margin-bottom: .6rem; }
.bms-blog-body h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: .6rem; line-height: 1.4; }
.bms-blog-body h3 a { color: inherit; } .bms-blog-body h3 a:hover { color: var(--turquoise); }
.bms-blog-body p { font-size: .88rem; color: var(--gray-600); margin-bottom: 1rem; }
.bms-read-more { font-size: .88rem; font-weight: 600; color: var(--turquoise); }
.bms-read-more:hover { color: var(--navy); }
@media (max-width: 900px) { .bms-blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .bms-blog-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════ */
.bms-contact { background: var(--gray-50); }
.bms-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: flex-start; }
.bms-contact-info { display: flex; flex-direction: column; gap: 1.25rem; }
.bms-contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.bms-contact-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--navy);
    color: var(--turquoise);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bms-contact-icon.bms-icon-wa { background: #25d366; color: #fff; }
.bms-contact-item strong { display: block; font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; color: var(--gray-400); margin-bottom: .2rem; }
.bms-contact-item a, .bms-contact-item span, .bms-contact-item address { color: var(--gray-800); font-weight: 500; font-size: .95rem; }
.bms-contact-item a:hover { color: var(--turquoise); }

/* Contact Form */
.bms-contact-form { background: var(--white); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); margin-top: 1rem; }
.bms-contact-form h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 1rem; }
.bms-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin-bottom: .75rem; }
.bms-input {
    width: 100%;
    padding: .75rem 1rem;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: .92rem;
    color: var(--gray-800);
    background: var(--gray-50);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
    margin-bottom: .75rem;
    display: block;
    font-family: inherit;
}
.bms-input:focus { border-color: var(--turquoise); box-shadow: 0 0 0 3px rgba(0,180,216,.12); background: var(--white); }
select.bms-input { appearance: none; cursor: pointer; }
textarea.bms-input { resize: vertical; min-height: 100px; }
.bms-form-msg { padding: .75rem; border-radius: var(--radius); font-size: .9rem; margin-top: .5rem; }
.bms-form-msg.success { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; }
.bms-form-msg.error { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }
.bms-contact-map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
@media (max-width: 900px) {
    .bms-contact-grid { grid-template-columns: 1fr; }
    .bms-form-row { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.bms-footer { background: var(--navy-dark); color: rgba(255,255,255,.8); }
.bms-footer-top { padding: 5rem 0 3rem; }
.bms-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 3rem; }
.bms-footer-brand img { height: 64px; width: auto; margin-bottom: 1rem; }
.bms-footer-desc { font-size: .88rem; color: rgba(255,255,255,.65); line-height: 1.7; margin-bottom: 1.25rem; }
.bms-footer-contact { display: flex; flex-direction: column; gap: .6rem; margin-bottom: 1.25rem; }
.bms-footer-contact a, .bms-footer-contact address {
    display: flex;
    align-items: flex-start;
    gap: .5rem;
    font-size: .88rem;
    color: rgba(255,255,255,.75);
    transition: color var(--transition);
}
.bms-footer-contact a:hover { color: var(--turquoise); }
.bms-footer-contact svg { flex-shrink: 0; margin-top: .15rem; fill: var(--turquoise); }
.bms-footer-hours { font-size: .82rem; color: rgba(255,255,255,.6); line-height: 1.8; }
.bms-footer-hours strong { color: rgba(255,255,255,.85); display: block; margin-bottom: .25rem; }
.badge-247 { display: inline-block; background: var(--turquoise); color: #fff; padding: .15rem .65rem; border-radius: 999px; font-weight: 700; font-size: .75rem; margin-top: .25rem; }
.bms-footer-col h4 { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--turquoise); margin-bottom: 1rem; }
.bms-footer-col ul { display: flex; flex-direction: column; gap: .5rem; }
.bms-footer-col ul a { font-size: .87rem; color: rgba(255,255,255,.65); transition: color var(--transition); }
.bms-footer-col ul a:hover { color: var(--white); padding-left: .25rem; }
.bms-district-list { column-count: 2; gap: .5rem; }
.bms-footer-blog a { font-size: .83rem; color: rgba(255,255,255,.6); display: block; margin-bottom: .5rem; }
.bms-footer-blog a:hover { color: var(--turquoise); }
.bms-footer-map { opacity: .8; }
.bms-footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 1.25rem 0; }
.bms-footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.bms-footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.5); }
.bms-footer-bottom a { color: rgba(255,255,255,.65); } .bms-footer-bottom a:hover { color: var(--turquoise); }
.bms-trust-badges { display: flex; gap: 1rem; }
.bms-trust-badges span { font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.4); font-weight: 600; }
@media (max-width: 1024px) { .bms-footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .bms-footer-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════
   FLOATING BUTTONS
═══════════════════════════════════════════ */
.bms-whatsapp-float {
    position: fixed;
    bottom: 1.75rem;
    right: 1.75rem;
    z-index: 999;
    width: 56px;
    height: 56px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,.45);
    transition: transform var(--transition), box-shadow var(--transition);
    animation: pulse-wa 3s infinite;
}
.bms-whatsapp-float:hover { transform: scale(1.12); box-shadow: 0 6px 28px rgba(37,211,102,.6); color: #fff; }
@keyframes pulse-wa { 0%,100%{box-shadow:0 4px 20px rgba(37,211,102,.45);} 50%{box-shadow:0 4px 32px rgba(37,211,102,.7);} }

.bms-phone-float {
    position: fixed;
    bottom: 5.5rem;
    right: 1.85rem;
    z-index: 999;
    width: 48px;
    height: 48px;
    background: var(--turquoise);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0,180,216,.4);
    transition: transform var(--transition);
}
.bms-phone-float:hover { transform: scale(1.1); color: #fff; }

/* ═══════════════════════════════════════════
   BLOG & SINGLE
═══════════════════════════════════════════ */
.bms-blog-archive .bms-posts-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.bms-post-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--gray-200); box-shadow: var(--shadow-sm); transition: transform var(--transition), box-shadow var(--transition); }
.bms-post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.bms-post-thumb { display: block; aspect-ratio: 16/9; overflow: hidden; }
.bms-post-thumb img { width: 100%; height: 100%; object-fit: cover; }
.bms-post-body { padding: 1.5rem; }
.bms-post-body time { font-size: .78rem; color: var(--gray-400); display: block; margin-bottom: .5rem; }
.bms-post-title { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: .75rem; line-height: 1.4; }
.bms-post-title a { color: inherit; } .bms-post-title a:hover { color: var(--turquoise); }
.bms-post-excerpt { font-size: .88rem; color: var(--gray-600); margin-bottom: 1rem; }

/* Single */
.bms-single-layout { display: grid; grid-template-columns: 1fr 320px; gap: 3rem; padding: 3rem 0; align-items: flex-start; }
.bms-breadcrumb { display: flex; align-items: center; gap: .5rem; font-size: .82rem; color: var(--gray-400); margin-bottom: 1.25rem; flex-wrap: wrap; }
.bms-breadcrumb a { color: var(--gray-400); } .bms-breadcrumb a:hover { color: var(--turquoise); }
.bms-breadcrumb span { color: var(--gray-400); }
.bms-post-header { margin-bottom: 1.75rem; }
.bms-post-meta-top { font-size: .82rem; color: var(--gray-400); margin-bottom: .75rem; display: flex; gap: .5rem; align-items: center; }
.bms-post-single-title { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 800; color: var(--navy); line-height: 1.2; }
.bms-post-feat-img { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 2rem; }
.bms-post-feat-img img { width: 100%; height: auto; }
.bms-prose { line-height: 1.8; color: var(--gray-800); }
.bms-prose h2 { font-size: 1.4rem; font-weight: 700; color: var(--navy); margin: 2rem 0 .75rem; }
.bms-prose h3 { font-size: 1.15rem; font-weight: 700; color: var(--navy); margin: 1.5rem 0 .6rem; }
.bms-prose p { margin-bottom: 1.25rem; }
.bms-prose ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1.25rem; }
.bms-prose li { margin-bottom: .4rem; }
.bms-post-footer { border-top: 1px solid var(--gray-200); padding-top: 1.25rem; margin-top: 2rem; }
.bms-post-share { display: flex; align-items: center; gap: .75rem; font-size: .88rem; }
.bms-post-share a { color: var(--turquoise); font-weight: 600; }

/* Sidebar */
.bms-sidebar { display: flex; flex-direction: column; gap: 1.5rem; position: sticky; top: 90px; }
.bms-sidebar-cta { background: var(--navy); color: var(--white); padding: 1.75rem; border-radius: var(--radius-lg); display: flex; flex-direction: column; gap: .75rem; }
.bms-sidebar-cta h4 { font-size: 1rem; font-weight: 700; color: var(--white); }
.bms-sidebar-cta p { font-size: .88rem; color: rgba(255,255,255,.75); }
.bms-sidebar-hours { border-top: 1px solid rgba(255,255,255,.1); padding-top: .75rem; font-size: .82rem; color: rgba(255,255,255,.65); display: flex; flex-direction: column; gap: .2rem; }
.bms-sidebar-hours strong { color: rgba(255,255,255,.9); }
.bms-sidebar-widget { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 1.5rem; }
.bms-sidebar-widget h4 { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--gray-400); margin-bottom: 1rem; }
.bms-sidebar-post { display: flex; align-items: center; gap: .75rem; padding: .6rem 0; border-bottom: 1px solid var(--gray-200); font-size: .85rem; color: var(--gray-800); }
.bms-sidebar-post:last-child { border-bottom: none; }
.bms-sidebar-post:hover { color: var(--turquoise); }
.bms-sidebar-post img { border-radius: 6px; object-fit: cover; flex-shrink: 0; }
.bms-sidebar-services { display: flex; flex-direction: column; }
.bms-sidebar-services li a { display: block; padding: .55rem .25rem; font-size: .88rem; color: var(--gray-600); border-bottom: 1px solid var(--gray-200); transition: all var(--transition); }
.bms-sidebar-services li:last-child a { border-bottom: none; }
.bms-sidebar-services li a:hover, .bms-sidebar-services li a.active { color: var(--turquoise); padding-left: .5rem; }
@media (max-width: 900px) { .bms-single-layout { grid-template-columns: 1fr; } .bms-sidebar { position: static; } }

/* ═══════════════════════════════════════════
   SERVICE PAGE
═══════════════════════════════════════════ */
.bms-service-hero { position: relative; height: 420px; display: flex; align-items: flex-end; overflow: hidden; }
.bms-service-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.bms-service-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,15,46,.9) 0%, rgba(8,15,46,.3) 100%); }
.bms-service-hero-content { position: relative; z-index: 1; padding-bottom: 2.5rem; }
.bms-service-hero-content h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; color: #fff; margin-top: .5rem; }
.bms-breadcrumb-light .bms-breadcrumb { color: rgba(255,255,255,.65); }
.bms-breadcrumb-light .bms-breadcrumb a { color: rgba(255,255,255,.65); }
.bms-service-layout { display: grid; grid-template-columns: 1fr 320px; gap: 3rem; padding: 3.5rem 0; align-items: flex-start; }
.bms-service-main h2 { font-size: 1.4rem; font-weight: 800; color: var(--navy); margin: 2rem 0 1rem; }
.bms-service-intro { font-size: 1.05rem; color: var(--gray-600); line-height: 1.8; margin-bottom: 1.5rem; }
.bms-service-features { display: flex; flex-direction: column; gap: .6rem; margin-bottom: 2rem; }
.bms-service-features li { display: flex; align-items: center; gap: .75rem; font-size: .95rem; color: var(--gray-700); }
.bms-related-services { display: flex; flex-wrap: wrap; gap: .75rem; }
.bms-related-card { background: var(--gray-50); border: 1px solid var(--gray-200); color: var(--navy); padding: .6rem 1.2rem; border-radius: 999px; font-size: .85rem; font-weight: 600; transition: all var(--transition); }
.bms-related-card:hover { background: var(--navy); color: var(--turquoise); border-color: var(--navy); }
@media (max-width: 900px) { .bms-service-layout { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════
   CTA STRIP
═══════════════════════════════════════════ */
.bms-cta-strip { background: linear-gradient(135deg, var(--turquoise), var(--navy)); padding: 3rem 0; }
.bms-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.bms-cta-inner h3 { font-size: 1.4rem; font-weight: 800; color: #fff; }
.bms-cta-inner p { color: rgba(255,255,255,.8); }
.bms-cta-buttons { display: flex; gap: .75rem; flex-wrap: wrap; }

/* ═══════════════════════════════════════════
   404
═══════════════════════════════════════════ */
.bms-404 { min-height: 60vh; display: flex; align-items: center; justify-content: center; }
.bms-404-content { text-align: center; max-width: 480px; }
.bms-404-num { display: block; font-size: 7rem; font-weight: 900; color: var(--turquoise); line-height: 1; margin-bottom: .5rem; }
.bms-404-content h1 { font-size: 1.6rem; font-weight: 800; color: var(--navy); margin-bottom: 1rem; }
.bms-404-content p { color: var(--gray-600); margin-bottom: 2rem; }
.bms-404-btns { display: flex; gap: 1rem; justify-content: center; }

/* ═══════════════════════════════════════════
   PAGE HEADER
═══════════════════════════════════════════ */
.bms-page-hero { background: linear-gradient(135deg, var(--navy), #0a2060); padding: 8rem 0 3rem; }
.bms-page-title { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 900; color: var(--white); }
.bms-page-content { padding: 3rem 0; }
.bms-archive-header { padding: 6rem 0 2rem; }
.bms-archive-desc { color: var(--gray-600); margin-top: .5rem; }

/* ═══════════════════════════════════════════
   UTILITIES
═══════════════════════════════════════════ */
.bms-main { padding-top: 72px; }

/* ═══════════════════════════════════════════
   PRINT
═══════════════════════════════════════════ */
@media print {
    .bms-header, .bms-footer, .bms-whatsapp-float, .bms-phone-float { display: none !important; }
    body { font-size: 12pt; }
}
