/* ===== VARIABLES ===== */
:root {
  --green:       #0E3B2E;
  --green-light: #164d3c;
  --red:         #8B1E1E;
  --gold:        #D4AF37;
  --gold-light:  #e8c84a;
  --cream:       #F7F3EB;
  --cream-dark:  #ede7d9;
  --text:        #1a1209;
  --text-muted:  #5a4e3a;
  --max-w:       1200px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Montserrat', sans-serif; background: var(--cream); color: var(--text); line-height: 1.7; overflow-x: hidden; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== UTILITY ===== */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section-label { font-size: .72rem; font-weight: 600; letter-spacing: .22em; color: var(--gold); text-transform: uppercase; margin-bottom: .6rem; display: block; }
.gold-line { width: 50px; height: 2px; background: var(--gold); margin: 1rem 0 1.5rem; }

/* ===== BUTTONS ===== */
.btn { display: inline-block; padding: .85rem 2.2rem; font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; cursor: pointer; border: none; transition: all .3s ease; }
.btn-gold { background: var(--gold); color: var(--green); }
.btn-gold:hover { background: var(--gold-light); box-shadow: 0 6px 28px rgba(212,175,55,.45); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--cream); border: 2px solid var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--green); transform: translateY(-2px); }
.btn-outline-green { background: transparent; color: var(--green); border: 2px solid var(--green); }
.btn-outline-green:hover { background: var(--green); color: var(--cream); transform: translateY(-2px); }

/* ===== NAVBAR ===== */
#navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 1.2rem 2rem; display: flex; align-items: center; justify-content: space-between; transition: all .4s ease; }
#navbar.scrolled { background: rgba(14,59,46,.97); box-shadow: 0 2px 20px rgba(0,0,0,.3); padding: .75rem 2rem; }

.logo { display: flex; align-items: center; gap: .8rem; cursor: pointer; }
.logo-b { font-family: 'Cinzel', serif; font-weight: 700; font-size: 2rem; color: var(--red); line-height: 1; }
.logo-divider { width: 1px; height: 2.4rem; background: var(--gold); opacity: .7; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name { font-family: 'Cinzel', serif; font-weight: 600; font-size: .9rem; letter-spacing: .2em; color: var(--cream); }
.logo-sub { font-family: 'Cinzel', serif; font-weight: 400; font-size: .62rem; letter-spacing: .3em; color: var(--gold); }

.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-link { font-family: 'Cinzel', serif; font-size: .78rem; letter-spacing: .1em; color: var(--cream); cursor: pointer; position: relative; padding-bottom: 4px; transition: color .3s ease; }
.nav-link::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--gold); transition: width .3s ease; }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link.active { color: var(--gold); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 25px; height: 2px; background: var(--cream); transition: all .3s ease; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu { display: none; position: fixed; inset: 0; background: var(--green); z-index: 998; padding: 6rem 2rem 2rem; flex-direction: column; gap: 1.5rem; overflow-y: auto; }
.mobile-menu.open { display: flex; }
.mobile-menu .nav-link { font-size: 1rem; padding: .75rem 0; border-bottom: 1px solid rgba(212,175,55,.15); width: 100%; }

/* ===== PAGE SYSTEM ===== */
.page { display: none; }
.page.active { display: block; animation: pageIn .45s ease; }
@keyframes pageIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }

/* ===== REVEAL ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero { height: 380px; background: var(--green); background-image: repeating-linear-gradient(45deg, rgba(212,175,55,.04) 0px, rgba(212,175,55,.04) 1px, transparent 1px, transparent 20px); display: flex; align-items: center; justify-content: center; text-align: center; padding-top: 80px; }
.page-hero h1 { font-family: 'Cinzel', serif; font-size: clamp(2rem, 5vw, 3.5rem); color: var(--cream); font-weight: 700; margin-bottom: .75rem; }
.page-hero p { font-family: 'Playfair Display', serif; font-size: clamp(.95rem, 2vw, 1.25rem); color: var(--gold); font-style: italic; }

/* ===== BREADCRUMB ===== */
.breadcrumb-bar { background: var(--green); padding: 100px 0 .85rem; font-family: 'Montserrat', sans-serif; font-size: .78rem; }
.breadcrumb-bar a { color: rgba(247,243,235,.65); transition: color .3s ease; }
.breadcrumb-bar a:hover { color: var(--gold); }
.breadcrumb-bar .sep { color: var(--gold); margin: 0 .45rem; }
.breadcrumb-bar .current { color: var(--gold); font-weight: 600; }

/* ===== HERO SLIDER ===== */
.hero-slider { position: relative; height: 100vh; min-height: 600px; overflow: hidden; }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease; }
.slide.active { opacity: 1; }
.slide-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.06); transition: transform 7s ease; }
.slide.active .slide-bg { transform: scale(1); }
.slide-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(14,59,46,.5) 0%, rgba(0,0,0,.65) 100%); }
.slide-content { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 2rem; }
.slide-label { font-size: .72rem; font-weight: 600; letter-spacing: .28em; color: var(--gold); margin-bottom: 1.5rem; text-transform: uppercase; }
.slide-title { font-family: 'Cinzel', serif; font-size: clamp(2rem, 5vw, 4rem); font-weight: 700; color: #fff; line-height: 1.2; margin-bottom: 2.5rem; text-shadow: 0 2px 20px rgba(0,0,0,.4); }
.slide-btn { font-family: 'Cinzel', serif; font-size: .82rem; letter-spacing: .15em; padding: .9rem 2.5rem; background: transparent; border: 2px solid var(--gold); color: var(--cream); cursor: pointer; transition: all .3s ease; }
.slide-btn:hover { background: var(--gold); color: var(--green); transform: translateY(-2px); }

.slider-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; background: rgba(14,59,46,.5); border: 1px solid rgba(212,175,55,.35); color: var(--cream); width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 1.5rem; transition: all .3s ease; line-height: 1; }
.slider-arrow:hover { background: var(--gold); color: var(--green); }
.slider-arrow.prev { left: 2rem; }
.slider-arrow.next { right: 2rem; }

.slider-dots { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); display: flex; gap: .75rem; z-index: 10; }
.slider-dot { width: 10px; height: 10px; border-radius: 50%; border: 2px solid var(--gold); background: transparent; cursor: pointer; transition: all .3s ease; padding: 0; }
.slider-dot.active { background: var(--gold); transform: scale(1.25); }

/* ===== HOME: SERVICES GRID ===== */
.home-services { background: var(--green); padding: 100px 0; }
.section-header { margin-bottom: 3.5rem; }
.section-header h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.5rem); color: var(--cream); margin-bottom: .5rem; }
.section-header p { color: rgba(247,243,235,.6); font-size: .92rem; }
.section-header.dark h2 { color: var(--green); }
.section-header.dark p { color: var(--text-muted); }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.svc-card { background: rgba(255,255,255,.05); border: 1px solid rgba(212,175,55,.50); padding: 2.5rem 2rem; transition: all .3s ease; }
.svc-card:hover { background: rgba(212,175,55,.07); border-color: rgba(212,175,55,.75); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.25); }
.svc-icon { width: 52px; height: 52px; color: var(--gold); margin-bottom: 1.5rem; }
.svc-card h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--cream); margin-bottom: .65rem; }
.svc-card p { font-size: .855rem; color: rgba(247,243,235,.6); line-height: 1.65; }

/* ===== HOME: WHY BRATSKAYA ===== */
.why-section { padding: 100px 0; background: var(--cream); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.why-left h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.5rem); color: var(--green); margin-bottom: 1.25rem; line-height: 1.2; }
.why-left > p { color: var(--text-muted); line-height: 1.85; margin-bottom: 2rem; }
.numbered-list { display: flex; flex-direction: column; gap: 1.4rem; }
.n-item { display: flex; gap: 1.25rem; padding-left: 1.25rem; border-left: 3px solid var(--gold); align-items: flex-start; }
.n-num { font-family: 'Cinzel', serif; font-size: .7rem; color: var(--gold); font-weight: 700; padding-top: .3rem; min-width: 20px; }
.n-item h4 { font-family: 'Playfair Display', serif; font-size: .95rem; color: var(--green); margin-bottom: .2rem; }
.n-item p { font-size: .845rem; color: var(--text-muted); }

/* ===== HOME: CTA ===== */
.cta-section { background: var(--green); padding: 80px 0; text-align: center; }
.cta-section h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.5rem, 3vw, 2.2rem); color: var(--cream); margin-bottom: .75rem; }
.cta-section p { color: rgba(247,243,235,.65); margin-bottom: 2.25rem; }

/* ===== ABOUT: STORY ===== */
.about-story { padding: 100px 0; background: var(--cream); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.story-image-wrap { position: relative; }
.story-image-wrap::after { content: ''; position: absolute; bottom: -20px; right: -20px; width: 80%; height: 80%; border: 2px solid var(--gold); z-index: 0; pointer-events: none; }
.story-image { position: relative; z-index: 1; height: 500px; overflow: hidden; }
.story-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.story-image:hover img { transform: scale(1.03); }
.story-text h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.5rem); color: var(--green); margin-bottom: 1.5rem; }
.story-text p { color: var(--text-muted); line-height: 1.85; margin-bottom: 1.25rem; }

/* ===== ABOUT: VALUES ===== */
.values-section { background: var(--green); padding: 100px 0; }
.values-section h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.5rem); color: var(--cream); margin-bottom: 3rem; }
.values-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.25rem; }
.val-card { background: rgba(255,255,255,.05); border: 1px solid rgba(212,175,55,.12); padding: 2rem 1.5rem; transition: all .3s ease; }
.val-card:hover { background: rgba(212,175,55,.07); border-color: rgba(212,175,55,.35); transform: translateY(-4px); }
.val-num { font-family: 'Cinzel', serif; font-size: 2.2rem; color: var(--gold); opacity: .45; font-weight: 700; display: block; margin-bottom: 1rem; line-height: 1; }
.val-card h3 { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--cream); margin-bottom: .65rem; }
.val-card p { font-size: .835rem; color: rgba(247,243,235,.6); line-height: 1.6; }

/* ===== ABOUT: MISSION/VISION ===== */
.mv-section { background: var(--cream-dark); padding: 100px 0; }
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
.mv-card { background: var(--cream); padding: 3rem; border-top: 4px solid var(--gold); box-shadow: 0 4px 30px rgba(0,0,0,.06); }
.mv-card h3 { font-family: 'Cinzel', serif; font-size: 1rem; color: var(--green); letter-spacing: .12em; margin-bottom: 1rem; }
.mv-card p { color: var(--text-muted); line-height: 1.85; }

/* ===== SERVICES: ALTERNATING ===== */
.services-list { padding: 80px 0; background: var(--cream); }
.svc-item { display: grid; grid-template-columns: 1fr 1fr; min-height: 460px; margin-bottom: 3.5rem; overflow: hidden; box-shadow: 0 4px 30px rgba(0,0,0,.1); }
.svc-item.rev { direction: rtl; }
.svc-item.rev > * { direction: ltr; }
.svc-item-img { overflow: hidden; }
.svc-item-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.svc-item:hover .svc-item-img img { transform: scale(1.05); }
.svc-item-body { background: var(--green); padding: 3.5rem; display: flex; flex-direction: column; justify-content: center; }
.svc-item-body h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.4rem, 2.5vw, 1.9rem); color: var(--cream); margin-bottom: 1.25rem; }
.svc-item-body > p { color: rgba(247,243,235,.72); line-height: 1.85; margin-bottom: 2rem; }
.svc-features { display: flex; flex-direction: column; gap: .55rem; }
.svc-features span { font-size: .84rem; color: var(--gold); letter-spacing: .04em; }

/* ===== FLEET CARDS ===== */
.fleet-section { padding: 100px 0; background: var(--cream); }
.fleet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.fleet-card { background: #fff; box-shadow: 0 4px 30px rgba(0,0,0,.08); overflow: hidden; transition: all .3s ease; }
.fleet-card:hover { transform: translateY(-4px); box-shadow: 0 12px 50px rgba(0,0,0,.15); }
.fleet-card-img { height: 240px; overflow: hidden; }
.fleet-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.fleet-card:hover .fleet-card-img img { transform: scale(1.05); }
.fleet-card-body { padding: 2rem; }
.fleet-card-body h3 { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: var(--green); margin-bottom: 1rem; }
.fleet-meta { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1rem; }
.fleet-row { display: flex; gap: .5rem; font-size: .845rem; }
.fleet-label { color: var(--gold); font-weight: 600; min-width: 90px; }
.fleet-val { color: var(--text-muted); }
.fleet-cap { display: inline-block; background: var(--green); color: var(--gold); font-size: .72rem; font-weight: 600; letter-spacing: .1em; padding: .35rem 1rem; margin-top: .5rem; }

/* ===== TRANSFER TABLE ===== */
.transfer-section { background: var(--cream-dark); padding: 80px 0; }
.transfer-section h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.5rem, 3vw, 2rem); color: var(--green); margin-bottom: 2rem; }
.t-table { width: 100%; border-collapse: collapse; background: #fff; box-shadow: 0 4px 20px rgba(0,0,0,.07); }
.t-table th { background: var(--green); color: var(--gold); font-family: 'Cinzel', serif; font-size: .78rem; letter-spacing: .1em; padding: 1.1rem 1.5rem; text-align: left; }
.t-table td { padding: 1rem 1.5rem; font-size: .88rem; color: var(--text); border-bottom: 1px solid var(--cream-dark); }
.t-table tr:last-child td { border-bottom: none; }
.t-table tr:hover td { background: var(--cream); }
.t-note { margin-top: .9rem; font-size: .83rem; color: var(--text-muted); font-style: italic; }

/* ===== GALLERY ===== */
.gallery-section { padding: 80px 0; background: var(--cream); }
.filter-btns { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; margin-bottom: 3rem; }
.filter-btn { padding: .6rem 1.5rem; font-family: 'Montserrat', sans-serif; font-size: .78rem; font-weight: 600; letter-spacing: .08em; cursor: pointer; border: 2px solid var(--green); background: transparent; color: var(--green); transition: all .3s ease; }
.filter-btn:hover, .filter-btn.active { background: var(--green); color: var(--gold); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.g-item { position: relative; overflow: hidden; aspect-ratio: 4/3; cursor: pointer; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.g-item:hover img { transform: scale(1.08); }
.g-overlay { position: absolute; inset: 0; background: rgba(14,59,46,.7); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .3s ease; }
.g-item:hover .g-overlay { opacity: 1; }
.g-plus { font-size: 2.5rem; color: var(--gold); font-weight: 300; line-height: 1; }

/* ===== CONTACT ===== */
.contact-section { padding: 100px 0; background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 5rem; align-items: flex-start; }
.contact-left h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.5rem, 2.5vw, 2rem); color: var(--green); margin-bottom: 2rem; }
.c-cards { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.5rem; }
.c-card { display: flex; gap: 1rem; align-items: flex-start; padding: 1.1rem 1.25rem; background: var(--cream-dark); border-left: 3px solid var(--gold); }
.c-card-icon { font-size: 1.2rem; min-width: 26px; line-height: 1.6; }
.c-card h4 { font-family: 'Cinzel', serif; font-size: .75rem; color: var(--green); letter-spacing: .1em; margin-bottom: .2rem; }
.c-card p { font-size: .87rem; color: var(--text-muted); }
.social-row { display: flex; gap: .85rem; }
.s-icon { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border: 1.5px solid var(--gold); color: var(--gold); transition: all .3s ease; cursor: pointer; }
.s-icon:hover { background: var(--gold); color: var(--green); }
.s-icon svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

.contact-form-wrap { background: var(--green); padding: 3rem; }
.contact-form-wrap h2 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--cream); margin-bottom: .4rem; }
.form-sub { color: rgba(247,243,235,.55); font-size: .855rem; margin-bottom: 2rem; }
.c-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fg { display: flex; flex-direction: column; gap: .35rem; }
.fg.full { grid-column: 1 / -1; }
.fg label { font-size: .7rem; font-weight: 600; letter-spacing: .1em; color: var(--gold); text-transform: uppercase; }
.fg input, .fg select, .fg textarea { background: rgba(255,255,255,.08); border: 1px solid rgba(212,175,55,.22); color: var(--cream); padding: .82rem 1rem; font-family: 'Montserrat', sans-serif; font-size: .88rem; outline: none; transition: border-color .3s ease; width: 100%; }
.fg input::placeholder, .fg textarea::placeholder { color: rgba(247,243,235,.35); }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--gold); }
.fg select option { background: var(--green); color: var(--cream); }
.fg textarea { resize: vertical; min-height: 100px; }
.form-submit { width: 100%; background: var(--gold); color: var(--green); border: none; padding: 1rem; font-family: 'Cinzel', serif; font-size: .88rem; letter-spacing: .15em; font-weight: 700; cursor: pointer; transition: all .3s ease; margin-top: .25rem; position: relative; }
.form-submit:hover:not(:disabled) { background: var(--gold-light); box-shadow: 0 6px 28px rgba(212,175,55,.45); transform: translateY(-2px); }
.form-submit:disabled { opacity: .65; cursor: not-allowed; transform: none; }
.form-msg { display: none; grid-column: 1 / -1; padding: 1rem 1.25rem; font-size: .85rem; font-family: 'Montserrat', sans-serif; border-radius: 2px; }
.form-msg.success { display: block; background: rgba(46,160,90,.15); border: 1px solid rgba(46,160,90,.4); color: #7eca9c; }
.form-msg.error   { display: block; background: rgba(220,53,69,.12); border: 1px solid rgba(220,53,69,.35); color: #f08a92; }
.form-success-overlay { display: none; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 2.5rem 1rem; gap: 1rem; }
.form-success-overlay.visible { display: flex; }
.form-success-overlay .check-icon { width: 56px; height: 56px; background: rgba(212,175,55,.18); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.form-success-overlay .check-icon svg { width: 28px; height: 28px; stroke: var(--gold); }
.form-success-overlay h3 { font-family: 'Playfair Display', serif; color: var(--cream); font-size: 1.4rem; margin: 0; }
.form-success-overlay p { color: rgba(247,243,235,.6); font-size: .88rem; margin: 0; line-height: 1.6; }
/* honeypot */
.hp-field { position: absolute; left: -9999px; top: -9999px; opacity: 0; pointer-events: none; }

/* ===== FOOTER ===== */
footer { background: var(--green); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 60px; border-bottom: 1px solid rgba(212,175,55,.12); }
.footer-col h4 { font-family: 'Cinzel', serif; font-size: .82rem; letter-spacing: .15em; color: var(--gold); margin-bottom: 1.5rem; padding-bottom: .75rem; border-bottom: 1px solid rgba(212,175,55,.18); }
.footer-about-text { font-size: .865rem; color: rgba(247,243,235,.6); line-height: 1.8; margin-bottom: 1.5rem; }
.footer-divider { width: 40px; height: 2px; background: var(--gold); margin-bottom: 1.5rem; }
.footer-links { display: flex; flex-direction: column; gap: .7rem; }
.footer-link { font-size: .865rem; color: rgba(247,243,235,.6); cursor: pointer; transition: color .3s ease; display: flex; align-items: center; gap: .5rem; }
.footer-link::before { content: '›'; color: var(--gold); }
.footer-link:hover { color: var(--gold); }
.footer-contact-line { display: flex; gap: .75rem; align-items: flex-start; font-size: .865rem; color: rgba(247,243,235,.6); margin-bottom: .75rem; }
.footer-contact-line .ico { color: var(--gold); min-width: 18px; }
.footer-wa { display: inline-block; margin-top: .75rem; padding: .55rem 1.2rem; border: 1.5px solid var(--gold); color: var(--gold); font-size: .78rem; font-weight: 600; letter-spacing: .08em; cursor: pointer; transition: all .3s ease; text-decoration: none; }
.footer-wa:hover { background: var(--gold); color: var(--green); }

.footer-bottom { background: rgba(0,0,0,.28); padding: 1.2rem 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .75rem; }
.footer-bottom-inner p { font-size: .78rem; color: rgba(247,243,235,.45); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: .78rem; color: rgba(247,243,235,.45); transition: color .3s ease; }
.footer-bottom-links a:hover { color: var(--gold); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .values-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  #navbar { padding: 1rem 1.25rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .story-grid { grid-template-columns: 1fr; }
  .story-image { height: 300px; }
  .story-image-wrap::after { display: none; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .mv-grid { grid-template-columns: 1fr; }
  .svc-item { grid-template-columns: 1fr; min-height: auto; }
  .svc-item.rev { direction: ltr; }
  .svc-item-img { height: 280px; }
  .fleet-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .c-form { grid-template-columns: 1fr; }
  .slider-arrow { display: none; }
  .contact-form-wrap { padding: 2rem; }
}
@media (max-width: 480px) {
  .values-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
}

h1 { font-size: clamp(2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.8rem); }

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===== AI CHAT BUTTON ===== */
.ai-chat-wrapper {
  position: fixed;
  bottom: 100px;
  right: 24px;
  z-index: 9998;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ai-chat-tooltip {
  background: rgba(0,0,0,0.75);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: .78rem;
  font-weight: 500;
  white-space: nowrap;
  padding: .45rem .85rem;
  border-radius: 6px;
  opacity: 0;
  transform: translateX(8px);
  transition: all .25s ease;
  pointer-events: none;
}
.ai-chat-wrapper:hover .ai-chat-tooltip { opacity: 1; transform: translateX(0); }
.ai-chat-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #0E3B2E;
  border: 2px solid #D4AF37;
  color: #D4AF37;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
  transition: all .3s ease;
  animation: whatsapp-bounce 0.6s cubic-bezier(0.22,1,0.36,1) 1.8s both;
}
.ai-chat-btn:hover {
  background: #D4AF37;
  color: #0E3B2E;
  transform: scale(1.08);
}
@media (max-width: 480px) { .ai-chat-btn { width: 46px; height: 46px; } }

/* ===== WHATSAPP BUTTON ===== */
@keyframes whatsapp-bounce {
  0%   { transform: scale(0) translateY(20px); opacity: 0; }
  60%  { transform: scale(1.15) translateY(-6px); opacity: 1; }
  80%  { transform: scale(0.95) translateY(2px); }
  100% { transform: scale(1) translateY(0); }
}
@keyframes whatsapp-pulse {
  0%   { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.5); opacity: 0; }
}
.whatsapp-wrapper {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
}
.whatsapp-tooltip {
  background: rgba(0,0,0,0.75);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: .78rem;
  font-weight: 500;
  white-space: nowrap;
  padding: .45rem .85rem;
  border-radius: 6px;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity .25s ease, transform .25s ease;
  pointer-events: none;
}
.whatsapp-wrapper:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}
.whatsapp-btn {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  flex-shrink: 0;
  animation: whatsapp-bounce 0.6s cubic-bezier(0.22,1,0.36,1) 1.2s both;
  transition: transform .25s ease, box-shadow .25s ease;
}
.whatsapp-btn::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(37,211,102,0.3);
  animation: whatsapp-pulse 2s ease-out 2s infinite;
  pointer-events: none;
}
.whatsapp-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 32px rgba(37,211,102,0.55);
}
@media (max-width: 768px) {
  .whatsapp-btn {
    width: 48px;
    height: 48px;
    bottom: 16px;
    right: 16px;
  }
  .whatsapp-btn svg {
    width: 24px;
    height: 24px;
  }
}
@media (prefers-color-scheme: dark) {
  .whatsapp-btn {
    background: #1ebe5d;
    box-shadow: 0 4px 20px rgba(30,190,93,0.5);
  }
}

/* ===== BLOG ===== */
.blog-section { padding: 5rem 0; background: var(--cream); }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; margin-top: 3rem; }
.blog-card { background: #fff; border: 1px solid rgba(212,175,55,.28); overflow: hidden; transition: all .3s ease; }
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(0,0,0,.12); border-color: rgba(212,175,55,.6); }
.blog-card-body { padding: 2rem; }
.blog-card-label { font-size: .7rem; font-weight: 600; letter-spacing: .2em; color: var(--gold); text-transform: uppercase; margin-bottom: .75rem; display: block; }
.blog-card-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--green); margin-bottom: 1rem; line-height: 1.45; }
.blog-card-excerpt { font-size: .84rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 1.5rem; }
.blog-card-btn { display: inline-flex; align-items: center; gap: .4rem; font-size: .75rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--green); border-bottom: 1.5px solid var(--gold); padding-bottom: 2px; cursor: pointer; transition: color .3s; background: none; border-top: none; border-left: none; border-right: none; font-family: 'Montserrat', sans-serif; }
.blog-card-btn:hover { color: var(--gold); }
.article-hero { background: var(--green); background-image: repeating-linear-gradient(45deg,rgba(212,175,55,.04) 0px,rgba(212,175,55,.04) 1px,transparent 1px,transparent 20px); padding: 7rem 0 4rem; }
.article-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(1.55rem,3.5vw,2.5rem); color: var(--cream); max-width: 820px; line-height: 1.35; margin-bottom: 1rem; }
.article-meta { font-size: .78rem; color: rgba(247,243,235,.55); letter-spacing: .1em; text-transform: uppercase; }
.article-meta span { color: var(--gold); margin: 0 .5rem; }
.article-body { padding: 4.5rem 0 5rem; background: var(--cream); }
.article-content { max-width: 780px; margin: 0 auto; }
.article-back { display: inline-flex; align-items: center; gap: .5rem; font-size: .75rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); cursor: pointer; margin-bottom: 2.5rem; background: none; border: none; font-family: 'Montserrat', sans-serif; transition: opacity .3s; }
.article-back:hover { opacity: .7; }
.article-content h2 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--green); margin: 2.5rem 0 1rem; padding-bottom: .5rem; border-bottom: 1px solid rgba(212,175,55,.2); }
.article-content h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--green); margin: 2rem 0 .75rem; }
.article-content p { font-size: .91rem; color: var(--text); line-height: 1.9; margin-bottom: 1.25rem; }
.article-content ul { list-style: none; margin: 1rem 0 1.5rem; padding: 0; }
.article-content ul li { padding: .45rem 0 .45rem 1.6rem; position: relative; font-size: .91rem; color: var(--text); line-height: 1.7; }
.article-content ul li::before { content: '✦'; position: absolute; left: 0; color: var(--gold); font-size: .65rem; top: .65rem; }
.article-cta-box { background: var(--green); padding: 3rem 2.5rem; text-align: center; margin-top: 3.5rem; border-left: 3px solid var(--gold); }
.article-cta-box h3 { font-family: 'Playfair Display', serif; color: var(--cream); font-size: 1.4rem; margin-bottom: .6rem; }
.article-cta-box p { color: rgba(247,243,235,.7); font-size: .87rem; margin-bottom: 1.75rem; line-height: 1.7; }
@media(max-width:768px) { .blog-grid { grid-template-columns: 1fr; } .article-hero { padding: 5.5rem 0 3rem; } .article-cta-box { padding: 2rem 1.5rem; } }
@media(min-width:769px) and (max-width:1024px) { .blog-grid { grid-template-columns: repeat(2,1fr); } }
