/* ============================================================
   CORAL BLUE TEX — Main Stylesheet
   Brand: Deep Indigo + Amber/Gold
   Font: Playfair Display (headings) + DM Sans (body)
   ============================================================ */

/* ===== CSS VARIABLES ===== */
:root {
  --primary:      #1E3A5F;
  --dark:         #0F2040;
  --amber:        #C8922A;
  --amber-dark:   #A67520;
  --bg:           #F5F5F0;
  --text:         #1A1A2E;
  --white:        #FFFFFF;
  --grey:         #666666;
  --light-grey:   #E8E8E0;
  --border:       #D8D8D0;
  --light-amber:  #FFF8EE;
  --green:        #25D366;
  --shadow:       0 4px 20px rgba(30,58,95,0.10);
  --shadow-hover: 0 8px 32px rgba(30,58,95,0.18);
  --radius:       6px;
  --transition:   all 0.3s ease;
  --max-width:    1200px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'DM Sans', sans-serif; color: var(--text); background: #fff; line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }
h1 { font-size: clamp(1.8rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
p { line-height: 1.7; }

/* ===== LAYOUT ===== */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section-bg { background: var(--bg); }
.section-dark { background: var(--primary); }
.section-darker { background: var(--dark); }

/* ===== SECTION HEADINGS ===== */
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.5rem, 3vw, 2.2rem); color: var(--primary); text-align: center; margin-bottom: 12px; }
.section-subtitle { text-align: center; color: var(--grey); font-size: 1.05rem; margin-bottom: 48px; max-width: 600px; margin-left: auto; margin-right: auto; }
.section-title-left { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--primary); margin-bottom: 16px; }

/* ===== NAVIGATION ===== */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: var(--dark); box-shadow: 0 2px 20px rgba(0,0,0,0.3); transition: var(--transition); overflow: hidden; }
.navbar.scrolled { background: rgba(15,32,64,0.97); backdrop-filter: blur(10px); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; max-width: var(--max-width); margin: 0 auto; padding: 0 24px; height: 68px; overflow: hidden; }
.nav-logo { display: flex; align-items: center; flex-shrink: 0; text-decoration: none; outline: none; }
.nav-logo:focus, .nav-logo:focus-visible { outline: none; box-shadow: none; }
.nav-logo img { height: 44px; max-height: 44px; width: auto; max-width: 180px; object-fit: contain; display: block; flex-shrink: 0; border-radius: 8px; }
.nav-logo span { color: var(--amber); }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a { color: rgba(255,255,255,0.82); font-size: 0.87rem; font-weight: 500; padding: 8px 12px; border-radius: var(--radius); transition: var(--transition); white-space: nowrap; }
.nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(200,146,42,0.15); }
.nav-cta { background: var(--amber); color: var(--white) !important; padding: 9px 18px !important; border-radius: var(--radius) !important; font-weight: 600 !important; font-size: 0.85rem !important; transition: var(--transition) !important; white-space: nowrap !important; }
.nav-cta:hover { background: var(--amber-dark) !important; transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.mobile-menu { display: none; background: var(--dark); padding: 16px 24px 24px; border-top: 1px solid rgba(255,255,255,0.08); }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; color: rgba(255,255,255,0.85); padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 0.95rem; }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .nav-cta { background: var(--amber); color: var(--white) !important; text-align: center; border-radius: var(--radius); margin-top: 12px; padding: 12px !important; border-bottom: none !important; font-weight: 600 !important; }

/* ===== PAGE OFFSET (for fixed nav) ===== */
.page-top { padding-top: 68px; }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; border-radius: var(--radius); font-weight: 600; font-size: 0.95rem; transition: var(--transition); cursor: pointer; white-space: nowrap; }
.btn-primary { background: var(--amber); color: var(--white); }
.btn-primary:hover { background: var(--amber-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(200,146,42,0.35); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: var(--white); color: var(--primary); transform: translateY(-2px); }
.btn-outline-amber { background: transparent; color: var(--amber); border: 2px solid var(--amber); }
.btn-outline-amber:hover { background: var(--amber); color: var(--white); }
.btn-white { background: var(--white); color: var(--primary); }
.btn-white:hover { background: var(--bg); transform: translateY(-2px); }
.btn-green { background: var(--green); color: var(--white); }
.btn-green:hover { background: #1da851; transform: translateY(-2px); }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

/* ===== HERO SECTIONS ===== */
.hero { min-height: 88vh; display: flex; align-items: center; justify-content: flex-start; text-align: left; padding: 100px 24px 72px; background: url('../images/HomePG-Header.webp') center center / cover no-repeat; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, rgba(5,18,40,0.82) 0%, rgba(5,18,40,0.55) 60%, rgba(5,18,40,0.15) 100%); }
.hero-inner { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; }
.hero-badge { display: inline-block; background: rgba(200,146,42,0.2); color: var(--amber); border: 1px solid rgba(200,146,42,0.3); padding: 6px 16px; border-radius: 20px; font-size: 0.85rem; font-weight: 600; margin-bottom: 20px; letter-spacing: 1px; text-transform: uppercase; }
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero p { color: rgba(255,255,255,0.78); font-size: 1.1rem; margin-bottom: 36px; max-width: 640px; margin-left: auto; margin-right: auto; }
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Page hero (shorter, for inner pages) */
.page-hero { min-height: 42vh; padding: 100px 24px 60px; }
.page-hero h1 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }

/* ===== VERTICAL TILES (5 cards) ===== */
.verticals-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.vertical-card { background: var(--white); border: 1px solid var(--border); border-top: 4px solid var(--amber); border-radius: var(--radius); padding: 28px 20px 24px; text-align: center; transition: var(--transition); cursor: pointer; }
.vertical-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-top-color: var(--primary); }
.vertical-card .icon { font-size: 2.2rem; margin-bottom: 14px; display: block; }
.vertical-card .tag { font-size: 0.75rem; font-weight: 700; color: var(--amber); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.vertical-card h3 { color: var(--primary); font-size: 1.05rem; margin-bottom: 8px; }
.vertical-card p { color: var(--grey); font-size: 0.88rem; line-height: 1.5; margin-bottom: 16px; }
.vertical-card .card-link { color: var(--amber); font-size: 0.85rem; font-weight: 600; }
.vertical-card .card-link:hover { color: var(--amber-dark); }

/* ===== DIFFERENTIATORS (4 blocks) ===== */
.diff-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.diff-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; transition: var(--transition); }
.diff-item:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.diff-icon { font-size: 2rem; margin-bottom: 14px; }
.diff-item h3 { color: var(--primary); margin-bottom: 10px; font-size: 1.1rem; }
.diff-item p { color: var(--grey); font-size: 0.95rem; }

/* ===== TRUST STRIP ===== */
.trust-strip { background: var(--primary); padding: 48px 0; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { text-align: center; padding: 16px 20px; border-right: 1px solid rgba(255,255,255,0.12); }
.trust-item:last-child { border-right: none; }
.trust-num { font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 700; color: var(--amber); display: block; line-height: 1; }
.trust-label { color: rgba(255,255,255,0.78); font-size: 0.9rem; margin-top: 8px; display: block; }

/* ===== CTA SECTION ===== */
.cta-section { background: var(--primary); padding: 72px 0; text-align: center; }
.cta-section h2 { color: var(--white); margin-bottom: 14px; }
.cta-section p { color: rgba(255,255,255,0.78); font-size: 1.05rem; margin-bottom: 32px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== PRODUCT / FABRIC CARDS ===== */
.cards-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.cards-grid-4 { grid-template-columns: repeat(4, 1fr); }
.cards-grid-3 { grid-template-columns: repeat(3, 1fr); }
.product-card { background: var(--white); border: 1px solid var(--border); border-top: 3px solid var(--amber); border-radius: var(--radius); overflow: hidden; transition: var(--transition); }
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.card-swatch { height: 72px; background: linear-gradient(135deg, var(--primary), var(--dark)); display: flex; align-items: center; justify-content: center; font-size: 1.8rem; }
.card-body { padding: 18px 16px; }
.card-body h3 { color: var(--primary); font-size: 1rem; margin-bottom: 6px; }
.card-body p { color: var(--grey); font-size: 0.87rem; line-height: 1.5; }

/* ===== SPEC TABLE ===== */
.spec-table { width: 100%; border-collapse: collapse; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.spec-table thead th { background: var(--primary); color: var(--white); padding: 14px 18px; text-align: left; font-size: 0.9rem; font-weight: 600; }
.spec-table tbody td { padding: 12px 18px; font-size: 0.93rem; border-bottom: 1px solid var(--border); color: var(--text); }
.spec-table tbody tr:last-child td { border-bottom: none; }
.spec-table tbody tr:nth-child(even) td { background: var(--bg); }
.spec-table .fill { color: var(--amber); font-weight: 500; font-style: italic; }

/* ===== STEPS PROCESS ===== */
.steps-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.steps-row-5 { grid-template-columns: repeat(5, 1fr); }
.step-item { text-align: center; padding: 24px 16px; position: relative; }
.step-item::after { content: '→'; position: absolute; right: -12px; top: 30px; color: var(--amber); font-size: 1.4rem; font-weight: bold; }
.step-item:last-child::after { display: none; }
.step-num { width: 44px; height: 44px; background: var(--amber); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; font-weight: 700; margin: 0 auto 14px; }
.step-title { color: var(--primary); font-weight: 700; font-size: 0.95rem; margin-bottom: 6px; }
.step-desc { color: var(--grey); font-size: 0.84rem; line-height: 1.4; }

/* ===== VERTICAL TIMELINE ===== */
.timeline { max-width: 680px; margin: 0 auto; }
.tl-item { display: flex; gap: 20px; margin-bottom: 28px; }
.tl-left { flex-shrink: 0; }
.tl-circle { width: 38px; height: 38px; background: var(--amber); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; font-weight: 700; margin-top: 2px; }
.tl-right { flex: 1; padding-top: 4px; border-bottom: 1px solid var(--border); padding-bottom: 20px; }
.tl-item:last-child .tl-right { border-bottom: none; }
.tl-title { color: var(--primary); font-weight: 700; font-size: 1rem; margin-bottom: 4px; }
.tl-desc { color: var(--grey); font-size: 0.92rem; line-height: 1.6; }

/* ===== INFO BOX (amber left-border callout) ===== */
.info-box { background: var(--light-amber); border-left: 5px solid var(--amber); border-radius: 0 var(--radius) var(--radius) 0; padding: 20px 24px; margin: 24px 0; }
.info-box strong { color: var(--amber); display: block; margin-bottom: 6px; font-size: 0.95rem; }
.info-box p { color: var(--text); font-size: 0.93rem; margin: 0; }

/* ===== CHECKLIST ===== */
.checklist { list-style: none; }
.checklist li { padding: 8px 0; color: var(--text); display: flex; align-items: flex-start; gap: 12px; border-bottom: 1px solid var(--border); font-size: 0.97rem; }
.checklist li:last-child { border-bottom: none; }
.checklist li::before { content: '✓'; color: var(--amber); font-weight: 700; font-size: 1rem; flex-shrink: 0; margin-top: 2px; }

/* ===== TABS ===== */
.tabs-nav { display: flex; border-bottom: 2px solid var(--border); margin-bottom: 28px; gap: 0; overflow-x: auto; }
.tab-btn { padding: 12px 22px; font-size: 0.93rem; font-weight: 600; color: var(--grey); background: none; border: none; border-bottom: 3px solid transparent; margin-bottom: -2px; cursor: pointer; transition: var(--transition); white-space: nowrap; }
.tab-btn.active { color: var(--amber); border-bottom-color: var(--amber); }
.tab-btn:hover { color: var(--primary); }
.tab-content { display: none; }
.tab-content.active { display: block; animation: fadeIn 0.3s ease; }
.tab-content p { color: var(--text); font-size: 0.97rem; line-height: 1.7; }

/* ===== COMPARISON TABLE ===== */
.compare-table { width: 100%; border-collapse: collapse; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.compare-table thead th { padding: 14px 18px; font-size: 0.95rem; font-weight: 700; text-align: left; }
.compare-table thead .col-bad { background: #CC3333; color: var(--white); }
.compare-table thead .col-good { background: #1A6B3A; color: var(--white); }
.compare-table tbody td { padding: 12px 18px; font-size: 0.91rem; border-bottom: 1px solid rgba(0,0,0,0.06); }
.compare-table tbody .col-bad { background: #FFF5F5; color: #883333; }
.compare-table tbody .col-good { background: #F5FFF8; color: #1A6B3A; }
.compare-table tbody tr:last-child td { border-bottom: none; }

/* ===== PRICING TABLE ===== */
.price-table { width: 100%; border-collapse: collapse; }
.price-table th { background: var(--primary); color: var(--white); padding: 14px 18px; text-align: left; font-size: 0.93rem; }
.price-table td { padding: 13px 18px; border-bottom: 1px solid var(--border); font-size: 0.93rem; }
.price-table tr:nth-child(even) td { background: var(--bg); }
.price-table tr:last-child td { border-bottom: none; }
.price-val { color: var(--amber); font-weight: 700; }
.price-note { color: var(--grey); font-size: 0.83rem; margin-top: 10px; }

/* ===== INQUIRY FORM ===== */
.form-section { background: var(--bg); border-radius: var(--radius); padding: 40px; }
.form-title { font-family: 'Playfair Display', serif; color: var(--primary); font-size: 1.6rem; text-align: center; margin-bottom: 8px; }
.form-subtitle { text-align: center; color: var(--grey); font-size: 0.93rem; margin-bottom: 28px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-label { font-size: 0.88rem; font-weight: 600; color: var(--text); }
.form-input, .form-select, .form-textarea { padding: 11px 14px; border: 1px solid var(--border); border-radius: var(--radius); font-size: 0.93rem; color: var(--text); background: var(--white); transition: var(--transition); font-family: inherit; }
.form-input:focus, .form-select:focus, .form-textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(30,58,95,0.1); }
.form-textarea { resize: vertical; min-height: 100px; }
.checkbox-group { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 4px; }
.checkbox-label { display: flex; align-items: center; gap: 6px; font-size: 0.88rem; cursor: pointer; }
.form-submit { background: var(--amber); color: var(--white); padding: 15px; border-radius: var(--radius); font-size: 1rem; font-weight: 700; width: 100%; border: none; cursor: pointer; transition: var(--transition); margin-top: 8px; }
.form-submit:hover { background: var(--amber-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(200,146,42,0.35); }
.form-wa { background: var(--green); color: var(--white); padding: 12px; border-radius: var(--radius); font-size: 0.93rem; font-weight: 600; width: 100%; border: none; cursor: pointer; transition: var(--transition); margin-top: 10px; display: flex; align-items: center; justify-content: center; gap: 8px; }
.form-wa:hover { background: #1da851; }
.form-success { display: none; background: #d4edda; color: #155724; padding: 16px; border-radius: var(--radius); text-align: center; margin-top: 12px; font-weight: 600; }

/* ===== CONTACT DETAILS STRIP ===== */
.contact-strip { background: #E8F0F8; padding: 40px 0; }
.contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.contact-item { text-align: center; padding: 20px; }
.contact-icon { font-size: 2rem; margin-bottom: 10px; display: block; }
.contact-label { font-weight: 700; color: var(--primary); font-size: 0.9rem; margin-bottom: 4px; }
.contact-val { color: var(--grey); font-size: 0.92rem; }

/* ===== TWO COLUMN LAYOUT ===== */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.two-col-60 { grid-template-columns: 3fr 2fr; }
.photo-placeholder { background: var(--bg); border: 2px dashed var(--border); border-radius: var(--radius); min-height: 260px; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 12px; color: var(--grey); font-size: 0.9rem; text-align: center; padding: 24px; }
.photo-placeholder .icon { font-size: 3rem; opacity: 0.4; }

/* ===== TEAM CARDS ===== */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.team-card { text-align: center; }
.team-photo { width: 100px; height: 100px; border-radius: 50%; background: var(--bg); border: 4px solid var(--amber); margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; overflow: hidden; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-name { font-weight: 700; color: var(--primary); font-size: 1.05rem; }
.team-role { color: var(--grey); font-size: 0.88rem; margin-top: 4px; }

/* ===== TESTIMONIAL ===== */
.testimonial-section { background: var(--dark); padding: 72px 0; text-align: center; }
.quote-mark { font-size: 4rem; color: var(--amber); line-height: 1; font-family: 'Playfair Display', serif; }
.quote-text { color: var(--white); font-size: 1.15rem; font-style: italic; max-width: 680px; margin: 12px auto 20px; line-height: 1.7; }
.quote-author { color: var(--amber); font-weight: 700; font-size: 0.95rem; }

/* ===== MAP ===== */
.map-section { height: 360px; background: #d8e8f0; border: 2px dashed var(--border); display: flex; align-items: center; justify-content: center; }
.map-section iframe { width: 100%; height: 100%; border: 0; }

/* ===== FOOTER ===== */
.footer { background: var(--dark); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 48px; }
.footer-brand .logo { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--white); margin-bottom: 14px; }
.footer-brand .logo span { color: var(--amber); }
.footer-brand p { color: rgba(255,255,255,0.58); font-size: 0.9rem; line-height: 1.7; }
.footer-col h4 { color: var(--amber); font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.62); font-size: 0.9rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--amber); }
.footer-contact p { color: rgba(255,255,255,0.62); font-size: 0.9rem; margin-bottom: 8px; display: flex; align-items: flex-start; gap: 10px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 24px; text-align: center; color: rgba(255,255,255,0.35); font-size: 0.83rem; max-width: var(--max-width); margin: 0 auto; }

/* ===== WHATSAPP STICKY BUTTON ===== */
.wa-sticky { position: fixed; bottom: 28px; right: 28px; z-index: 999; }
.wa-sticky a { display: flex; align-items: center; gap: 10px; background: var(--green); color: var(--white); padding: 13px 22px; border-radius: 50px; font-weight: 600; font-size: 0.92rem; box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: var(--transition); }
.wa-sticky a:hover { background: #1da851; transform: translateY(-3px); box-shadow: 0 8px 28px rgba(37,211,102,0.45); }
.wa-sticky .wa-icon { font-size: 1.3rem; }
.wa-mobile-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 999; background: var(--green); color: var(--white); text-align: center; padding: 14px; font-weight: 700; font-size: 1rem; }

/* ===== WHO WE SUPPLY TO ===== */
.supply-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.supply-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 14px; text-align: center; transition: var(--transition); }
.supply-item:hover { border-color: var(--amber); box-shadow: var(--shadow); }
.supply-item .icon { font-size: 1.8rem; margin-bottom: 10px; display: block; }
.supply-item p { color: var(--primary); font-weight: 600; font-size: 0.88rem; line-height: 1.4; }

/* ===== USE CASES SECTION ===== */
.use-case-content { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.use-case-content h3 { color: var(--primary); margin-bottom: 12px; }

/* ===== ALERTS / NOTICE ===== */
.notice { background: var(--light-amber); border: 1px solid rgba(200,146,42,0.3); border-radius: var(--radius); padding: 14px 18px; font-size: 0.88rem; color: var(--text); margin-top: 16px; }

/* ===== ANIMATIONS ===== */
@keyframes fadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== PAGE SPECIFIC ===== */
.breadcrumb { padding: 14px 0; font-size: 0.87rem; color: rgba(255,255,255,0.55); }
.breadcrumb a { color: var(--amber); }
.breadcrumb span { margin: 0 8px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .verticals-grid { grid-template-columns: repeat(3, 1fr); }
  .cards-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .diff-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: none; }
  .steps-row, .steps-row-5 { grid-template-columns: 1fr 1fr; }
  .step-item::after { display: none; }
  .two-col, .two-col-60 { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .supply-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .section { padding: 52px 0; }
  .verticals-grid { grid-template-columns: 1fr 1fr; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .cards-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .cards-grid-3 { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-section { padding: 28px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .compare-table { font-size: 0.84rem; }
  .compare-table td, .compare-table th { padding: 10px 12px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .wa-sticky { display: none; }
  .wa-mobile-bar { display: block; }
  .cta-btns { flex-direction: column; align-items: center; }
}
@media (max-width: 520px) {
  .verticals-grid { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
  .supply-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-row, .steps-row-5 { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  h1 { font-size: 1.6rem; }
}

/* ============================================================
   EXTENDED STYLES — matching HTML class names used in pages
   ============================================================ */

/* ===== SECTION HELPERS ===== */
.section-alt { background: var(--bg); }
.section-dark { background: var(--primary); }
.section-dark .section-title,
.section-dark .section-sub { color: var(--white); }
.section-header { text-align: center; margin-bottom: 48px; }
.section-sub { text-align: center; color: var(--grey); font-size: 1.05rem; max-width: 600px; margin: 0 auto; margin-top: 8px; }
.section-sub-left { color: var(--grey); font-size: 1rem; margin-bottom: 28px; }
.section-title.left { text-align: left; }
.section-header.light .section-title,
.section-header.light .section-sub { color: var(--white); }

/* ===== NAVIGATION (matches HTML: nav-menu, nav-link) ===== */
.nav-menu { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-menu li { list-style: none; }
.nav-link { color: rgba(255,255,255,0.82); font-size: 0.87rem; font-weight: 500; padding: 8px 12px; border-radius: var(--radius); transition: var(--transition); white-space: nowrap; display: block; }
.nav-link:hover, .nav-link.active-page { color: var(--white); background: rgba(200,146,42,0.15); }
.nav-cta { background: var(--amber); color: var(--white) !important; padding: 9px 18px !important; border-radius: var(--radius) !important; font-weight: 600 !important; font-size: 0.85rem !important; transition: var(--transition) !important; white-space: nowrap !important; }
.nav-cta:hover { background: var(--amber-dark) !important; transform: translateY(-1px); }
/* Mobile nav */
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 768px) {
  .nav-menu { display: none; flex-direction: column; align-items: stretch; position: fixed; top: 68px; left: 0; right: 0; background: var(--dark); padding: 16px 24px 28px; border-top: 1px solid rgba(255,255,255,0.08); gap: 0; }
  .nav-menu.open { display: flex; }
  .nav-menu li { border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav-menu li:last-child { border-bottom: none; margin-top: 12px; }
  .nav-link { padding: 14px 0; font-size: 0.97rem; }
  .nav-cta { text-align: center; padding: 13px !important; display: block; }
  .hamburger { display: flex; }
}

/* ===== HERO (matches HTML structure) ===== */
.hero-content { position: relative; z-index: 1; max-width: 680px; margin: 0; }
.hero-eyebrow { color: var(--amber); font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 16px; }
.hero-heading { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 5vw, 3.4rem); color: var(--white); line-height: 1.15; margin-bottom: 20px; }
.hero-sub { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 36px; max-width: 560px; margin-left: 0; margin-right: 0; }
.hero-actions { display: flex; gap: 14px; justify-content: flex-start; flex-wrap: wrap; }

/* ===== PAGE HERO ===== */
.page-hero { background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%); min-height: 38vh; display: flex; align-items: center; padding: 100px 24px 60px; text-align: center; }
.page-hero .container { width: 100%; }
.page-hero-eyebrow { color: var(--amber); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px; }
.page-hero-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--white); margin-bottom: 16px; line-height: 1.2; }
.page-hero-sub { color: rgba(255,255,255,0.78); font-size: 1.05rem; max-width: 640px; margin: 0 auto 28px; line-height: 1.7; }

/* Page hero with image background (left-aligned) */
.page-hero--img { background: none; position: relative; overflow: hidden; min-height: 52vh; text-align: left; justify-content: flex-start; }
.page-hero--img::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, rgba(5,18,40,0.85) 0%, rgba(5,18,40,0.55) 60%, rgba(5,18,40,0.10) 100%); z-index: 1; }
.page-hero--img .page-hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; z-index: 0; }
.page-hero--img .container { position: relative; z-index: 2; }
.page-hero--img .page-hero-sub { margin-left: 0; margin-right: 0; }

/* Page hero with image background (right-aligned) */
.page-hero--img.page-hero--right { text-align: right; justify-content: flex-end; }
.page-hero--img.page-hero--right::before { background: linear-gradient(to left, rgba(5,18,40,0.88) 0%, rgba(5,18,40,0.55) 60%, rgba(5,18,40,0.10) 100%); }
.page-hero--img.page-hero--right .container { display: flex; flex-direction: column; align-items: flex-end; }
.page-hero--img.page-hero--right .page-hero-sub { margin-left: 0; margin-right: 0; }

/* ===== VERTICAL TILES (homepage 5-grid) ===== */
.vertical-tile { background: var(--white); border: 1px solid var(--border); border-top: 4px solid var(--amber); border-radius: var(--radius); padding: 28px 20px 24px; text-align: center; transition: var(--transition); }
.vertical-tile:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-top-color: var(--primary); }
.tile-icon { margin-bottom: 14px; display: block; }
.tile-img { width: 100%; height: 120px; object-fit: cover; border-radius: 8px; display: block; }
.tile-title { font-family: 'Playfair Display', serif; color: var(--primary); font-size: 1.05rem; margin-bottom: 8px; }
.tile-desc { color: var(--grey); font-size: 0.88rem; line-height: 1.5; margin-bottom: 16px; }
.tile-link { color: var(--amber); font-size: 0.87rem; font-weight: 600; }
.tile-link:hover { color: var(--amber-dark); }

/* ===== CLIENT / WHO-WE-SERVE CARDS ===== */
.client-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.client-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 20px; text-align: center; transition: var(--transition); }
.client-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.client-icon { font-size: 2.2rem; display: block; margin-bottom: 12px; }
.client-name { font-family: 'Playfair Display', serif; color: var(--primary); font-size: 1.05rem; margin-bottom: 8px; }
.client-card p { color: var(--grey); font-size: 0.9rem; line-height: 1.6; }

/* ===== FEATURED SECTION (dark bg) ===== */
.featured-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.featured-text .checklist li { color: rgba(255,255,255,0.85); border-bottom-color: rgba(255,255,255,0.12); }
.featured-text .checklist li::before { color: var(--amber); }
.featured-text .btn-white { margin-top: 28px; display: inline-flex; }
.featured-categories { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.feat-cat { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius); padding: 16px 18px; color: var(--white); font-weight: 600; font-size: 0.93rem; text-align: center; }

/* ===== STEPS (matches HTML: steps-4, steps-5) ===== */
.steps-4 { grid-template-columns: repeat(4, 1fr); }
.steps-5 { grid-template-columns: repeat(5, 1fr); }

/* ===== CTA SECTION (matches HTML) ===== */
.cta-inner { text-align: center; }
.cta-heading { font-family: 'Playfair Display', serif; font-size: clamp(1.5rem, 3vw, 2.2rem); color: var(--white); margin-bottom: 14px; }
.cta-sub { color: rgba(255,255,255,0.78); font-size: 1.05rem; margin-bottom: 32px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER (matches HTML) ===== */
.footer-logo { margin-bottom: 14px; }
.footer-logo img { height: 60px; max-width: 180px; width: auto; object-fit: contain; background: #fff; border-radius: 8px; padding: 6px 10px; display: block; }
.footer-logo span { color: var(--amber); }
.footer-tagline { color: rgba(255,255,255,0.58); font-size: 0.9rem; line-height: 1.7; margin-bottom: 12px; }
.footer-copy { color: rgba(255,255,255,0.38); font-size: 0.82rem; margin-top: 16px; }
.footer-dev-bar { background: rgba(0,0,0,0.25); border-top: 1px solid rgba(255,255,255,0.08); padding: 12px 0; text-align: center; }
.footer-dev-bar p { color: rgba(255,255,255,0.42); font-size: 0.80rem; letter-spacing: 0.3px; }
.footer-dev-bar a { color: var(--amber); font-weight: 600; text-decoration: none; transition: color 0.2s; }
.footer-dev-bar a:hover { color: #fff; }
.footer-heading { color: var(--amber); font-size: 0.88rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; font-family: 'DM Sans', sans-serif; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.62); font-size: 0.9rem; transition: var(--transition); }
.footer-links a:hover { color: var(--amber); }
.footer-contact { list-style: none; }
.footer-contact li { color: rgba(255,255,255,0.62); font-size: 0.88rem; margin-bottom: 10px; line-height: 1.5; }
.footer-contact a { color: rgba(255,255,255,0.62); transition: var(--transition); }
.footer-contact a:hover { color: var(--amber); }

/* ===== WHATSAPP BUTTON (matches HTML: whatsapp-btn, wa-icon, wa-text) ===== */
.whatsapp-btn { position: fixed; bottom: 28px; right: 28px; z-index: 999; background: var(--green); color: var(--white); display: flex; align-items: center; gap: 10px; padding: 13px 22px; border-radius: 50px; font-weight: 600; font-size: 0.92rem; box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: var(--transition); cursor: pointer; border: none; font-family: inherit; }
.whatsapp-btn:hover { background: #1da851; transform: translateY(-3px); box-shadow: 0 8px 28px rgba(37,211,102,0.45); }
.wa-icon { display: flex; align-items: center; }
.wa-text { white-space: nowrap; }
@media (max-width: 768px) {
  .whatsapp-btn { bottom: 0; right: 0; left: 0; border-radius: 0; padding: 15px; justify-content: center; width: 100%; font-size: 1rem; font-weight: 700; box-shadow: 0 -2px 16px rgba(37,211,102,0.3); }
}

/* ===== TABS (matches HTML: tab-panel instead of tab-content) ===== */
.tabs-container { margin-top: 8px; }
.tabs { display: flex; border-bottom: 2px solid var(--border); margin-bottom: 28px; gap: 0; overflow-x: auto; flex-wrap: nowrap; }
.tab-panel { display: none; animation: fadeIn 0.3s ease; }
.tab-panel.active { display: block; }
.tab-content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.tab-text h3 { font-family: 'Playfair Display', serif; color: var(--primary); font-size: 1.3rem; margin-bottom: 12px; }
.tab-text p { color: var(--grey); font-size: 0.97rem; line-height: 1.7; margin-bottom: 16px; }
.tab-image img { width: 100%; height: 360px; object-fit: cover; border-radius: 12px; display: block; }

/* ===== TWO COLUMN LAYOUT ===== */
.two-col-text { }
.two-col-text p { color: var(--grey); font-size: 0.97rem; line-height: 1.7; margin-bottom: 16px; }
.two-col-visual { display: flex; align-items: stretch; }
.placeholder-img { background: var(--bg); border: 2px dashed var(--border); border-radius: var(--radius); min-height: 280px; width: 100%; display: flex; align-items: center; justify-content: center; color: var(--grey); font-size: 0.9rem; text-align: center; padding: 24px; }
.page-img { width: 100%; min-height: 280px; max-height: 380px; object-fit: cover; border-radius: var(--radius); box-shadow: 0 8px 32px rgba(0,0,0,0.12); display: block; }

/* ===== PRODUCT CARD GRID + SWATCHES ===== */
.product-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; padding: 20px; transition: var(--transition); }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.product-swatch { height: 64px; border-radius: var(--radius); margin-bottom: 14px; }
.product-card-img { width: calc(100% + 40px); margin: -20px -20px 16px -20px; height: 160px; object-fit: cover; border-radius: var(--radius) var(--radius) 0 0; display: block; }

/* ===== IMAGE ZOOM & LIGHTBOX ===== */
.img-zoom-wrap { position: relative; display: block; }
.product-card .img-zoom-wrap { margin: -20px -20px 16px -20px; border-radius: var(--radius) var(--radius) 0 0; overflow: hidden; }
.product-card .img-zoom-wrap .product-card-img { margin: 0; border-radius: 0; width: 100%; }
.img-zoom-btn { position: absolute; top: 8px; right: 8px; background: rgba(0,0,0,0.55); border: none; border-radius: 50%; width: 34px; height: 34px; cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 3; opacity: 0; transition: opacity 0.2s; padding: 0; }
.img-zoom-wrap:hover .img-zoom-btn { opacity: 1; }
.img-zoom-btn:hover { background: rgba(0,0,0,0.8); }
#img-lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.92); z-index: 9999; align-items: center; justify-content: center; }
#img-lightbox.active { display: flex; }
.lb-img { max-width: 90vw; max-height: 88vh; object-fit: contain; border-radius: 8px; box-shadow: 0 8px 40px rgba(0,0,0,0.6); cursor: default; }
.lb-close { position: absolute; top: 18px; right: 24px; background: none; border: none; color: #fff; font-size: 2.4rem; cursor: pointer; line-height: 1; z-index: 10000; opacity: 0.8; transition: opacity 0.2s; }
.lb-close:hover { opacity: 1; }
.swatch-indigo  { background: linear-gradient(135deg, #1E3A5F, #2a4f82); }
.swatch-blue    { background: linear-gradient(135deg, #1a5fb4, #2d7dd2); }
.swatch-light-blue { background: linear-gradient(135deg, #5ba4e6, #a8d0f6); }
.swatch-black   { background: linear-gradient(135deg, #1a1a2e, #2d2d3e); }
.swatch-green   { background: linear-gradient(135deg, #2e7d32, #43a047); }
.swatch-amber   { background: linear-gradient(135deg, #C8922A, #e6a93a); }
.product-name { font-family: 'Playfair Display', serif; color: var(--primary); font-size: 1rem; margin-bottom: 8px; }
.product-desc { color: var(--grey); font-size: 0.88rem; line-height: 1.5; margin-bottom: 12px; }
.spec-table.compact { font-size: 0.82rem; }
.spec-table.compact td { padding: 7px 10px; }
.spec-table.full-width { }
.checklist.mini li { padding: 4px 0; font-size: 0.87rem; }

/* ===== TIMELINE (matches HTML: tl-marker, tl-content, tl-time) ===== */
.tl-item { display: flex; gap: 20px; margin-bottom: 28px; align-items: flex-start; }
.tl-marker { flex-shrink: 0; width: 38px; height: 38px; background: var(--amber); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; font-weight: 700; margin-top: 2px; }
.tl-content { flex: 1; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.tl-item:last-child .tl-content { border-bottom: none; }
.tl-title { font-family: 'Playfair Display', serif; color: var(--primary); font-weight: 700; font-size: 1rem; margin-bottom: 6px; }
.tl-desc { color: var(--grey); font-size: 0.92rem; line-height: 1.6; }
.tl-time { display: inline-block; margin-top: 8px; background: var(--light-amber); color: var(--amber); font-size: 0.78rem; font-weight: 700; padding: 3px 10px; border-radius: 20px; }

/* ===== COMPARISON TABLE (div wrapper with <table> inside) ===== */
.compare-table table { width: 100%; border-collapse: collapse; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.compare-table th { padding: 14px 18px; font-size: 0.95rem; font-weight: 700; text-align: left; background: var(--primary); color: var(--white); }
.compare-table .col-bad { background: #CC3333 !important; color: var(--white) !important; }
.compare-table .col-good { background: #1A6B3A !important; color: var(--white) !important; }
.compare-table td { padding: 12px 18px; font-size: 0.91rem; border-bottom: 1px solid rgba(0,0,0,0.06); }
.compare-table tbody .col-bad { background: #FFF5F5 !important; color: #883333 !important; }
.compare-table tbody .col-good { background: #F5FFF8 !important; color: #1A6B3A !important; }
.compare-table tbody tr:last-child td { border-bottom: none; }

/* ===== PRICING CARDS ===== */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 24px; }
.pricing-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 24px; text-align: center; transition: var(--transition); position: relative; }
.pricing-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.pricing-card.featured-pricing { border-color: var(--amber); border-width: 2px; }
.pricing-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--amber); color: var(--white); font-size: 0.75rem; font-weight: 700; padding: 4px 14px; border-radius: 20px; white-space: nowrap; text-transform: uppercase; letter-spacing: 0.5px; }
.pricing-tier { font-family: 'Playfair Display', serif; color: var(--primary); font-size: 1.2rem; margin-bottom: 8px; }
.pricing-range { color: var(--amber); font-size: 1.8rem; font-weight: 700; font-family: 'Playfair Display', serif; }
.pricing-unit { color: var(--grey); font-size: 0.85rem; margin-bottom: 20px; }
.pricing-features { list-style: none; margin-bottom: 24px; text-align: left; }
.pricing-features li { padding: 7px 0; color: var(--text); font-size: 0.9rem; border-bottom: 1px solid var(--border); display: flex; align-items: flex-start; gap: 8px; }
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li::before { content: '✓'; color: var(--amber); font-weight: 700; flex-shrink: 0; }
.pricing-note { color: var(--grey); font-size: 0.85rem; font-style: italic; text-align: center; }

/* ===== INQUIRY FORM (matches HTML) ===== */
.inquiry-form { background: var(--bg); border-radius: var(--radius); padding: 40px; }
.inquiry-form label { font-size: 0.88rem; font-weight: 600; color: var(--text); margin-bottom: 4px; display: block; }
.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea { width: 100%; padding: 11px 14px; border: 1px solid var(--border); border-radius: var(--radius); font-size: 0.93rem; color: var(--text); background: var(--white); transition: var(--transition); font-family: inherit; }
.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(30,58,95,0.1); }
.inquiry-form textarea { resize: vertical; min-height: 100px; }
.form-group.full-width { grid-column: 1 / -1; }
.checkbox-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 8px; }
.checkbox-label { display: flex; align-items: center; gap: 8px; font-size: 0.87rem; cursor: pointer; font-weight: 400; }
.checkbox-label input { width: auto; }
.form-message { padding: 0; margin-top: 8px; font-size: 0.9rem; }
.form-message.success { background: #d4edda; color: #155724; padding: 14px 18px; border-radius: var(--radius); font-weight: 600; }
.form-message.error { background: #f8d7da; color: #721c24; padding: 14px 18px; border-radius: var(--radius); }

/* ===== CONTACT PAGE ===== */
.contact-strip { background: #E8F0F8; padding: 40px 0; }
.contact-strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.contact-strip-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon { font-size: 1.8rem; flex-shrink: 0; }
.contact-detail { flex: 1; }
.contact-label { font-size: 0.8rem; font-weight: 700; color: var(--grey); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.contact-value { font-weight: 600; color: var(--primary); font-size: 0.97rem; display: block; }
.contact-value a { color: var(--primary); }
.contact-value a:hover { color: var(--amber); }
.contact-note { color: var(--grey); font-size: 0.82rem; margin-top: 2px; }
.contact-layout { display: grid; grid-template-columns: 3fr 2fr; gap: 60px; align-items: start; }
.contact-form-col h2 { margin-bottom: 8px; }
.contact-info-col { padding-top: 8px; }
.contact-info-heading { font-family: 'Playfair Display', serif; color: var(--primary); font-size: 1.1rem; margin-bottom: 16px; }
.map-placeholder { background: var(--bg); border: 2px dashed var(--border); border-radius: var(--radius); min-height: 320px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; color: var(--grey); font-size: 0.95rem; }

/* ===== ABOUT PAGE — TEAM & TESTIMONIALS ===== */
.team-avatar { width: 80px; height: 80px; border-radius: 50%; background: var(--bg); border: 3px solid var(--amber); display: flex; align-items: center; justify-content: center; font-size: 2.2rem; margin: 0 auto 14px; }
.team-bio { color: var(--grey); font-size: 0.9rem; line-height: 1.6; margin-top: 8px; }
.team-note { text-align: center; color: var(--grey); font-size: 0.85rem; margin-top: 20px; font-style: italic; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; transition: var(--transition); }
.testimonial-card:hover { box-shadow: var(--shadow-hover); }
.testimonial-text { color: var(--text); font-style: italic; line-height: 1.7; margin-bottom: 20px; font-size: 0.97rem; }
.testimonial-author strong { display: block; color: var(--primary); font-weight: 700; font-size: 0.95rem; }
.testimonial-author span { color: var(--grey); font-size: 0.85rem; }

/* ===== RESPONSIVE ADDITIONS ===== */
@media (max-width: 1100px) {
  .product-card-grid { grid-template-columns: repeat(3, 1fr); }
  .client-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-grid { gap: 32px; }
}
@media (max-width: 900px) {
  .tab-content-grid { grid-template-columns: 1fr; }
  .featured-grid { grid-template-columns: 1fr; }
  .contact-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .product-card-grid { grid-template-columns: 1fr 1fr; }
  .client-grid { grid-template-columns: 1fr 1fr; }
  .checkbox-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-categories { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .inquiry-form { padding: 24px 18px; }
  .steps-4, .steps-5 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .product-card-grid { grid-template-columns: 1fr; }
  .client-grid { grid-template-columns: 1fr; }
  .checkbox-grid { grid-template-columns: 1fr 1fr; }
  .contact-strip-grid { grid-template-columns: 1fr; }
  .steps-4, .steps-5 { grid-template-columns: 1fr; }
  .tabs { gap: 0; }
  .tab-btn { padding: 10px 14px; font-size: 0.82rem; }
}

/* ===== TAB GALLERY SLIDER ===== */
.tab-gallery {
  position: relative;
  margin-bottom: 18px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--light-grey);
  line-height: 0;
}
.tab-gallery .tg-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  display: none;
  cursor: zoom-in;
}
.tab-gallery .tg-img.tg-active { display: block; }

/* Prev / Next nav buttons */
.tg-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.50);
  border: none;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: background 0.2s;
  padding: 0;
}
.tg-nav-btn:hover { background: rgba(0,0,0,0.82); }
.tg-prev { left: 8px; }
.tg-next { right: 8px; }

/* Zoom button on gallery */
.tg-zoom {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(0,0,0,0.55);
  border: none;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 6;
  padding: 0;
  transition: background 0.2s;
}
.tg-zoom:hover { background: rgba(0,0,0,0.82); }

/* Dots */
.tg-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 5;
  line-height: 0;
}
.tg-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  transition: background 0.2s;
  display: inline-block;
}
.tg-dot.tg-dot-active { background: #fff; }

/* ===== LIGHTBOX PREV / NEXT ===== */
.lb-prev, .lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  font-size: 3rem;
  line-height: 1;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  transition: background 0.2s;
  padding: 0;
}
.lb-prev { left: 20px; }
.lb-next { right: 20px; }
.lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,0.25); }

/* ===== ROADMAP — About Journey ===== */
.rm-wrap { position: relative; padding: 8px 0; overflow: visible; }

.rm-road-line {
  position: absolute;
  left: 10%; right: 10%;
  top: 50%; transform: translateY(-50%);
  height: 5px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--amber) 50%, var(--primary) 100%);
  border-radius: 3px;
  z-index: 0;
}

.rm-stops {
  display: flex;
  position: relative;
  z-index: 1;
}

.rm-stop {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rm-half-top {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  min-height: 150px;
  padding: 0 4px;
  width: 100%;
}
.rm-half-bot {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 150px;
  padding: 0 4px;
  width: 100%;
}

.rm-vline {
  width: 2px;
  height: 24px;
  background: var(--amber);
  flex-shrink: 0;
}
.rm-vline-today { background: var(--primary); }

.rm-dot {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--primary);
  border: 4px solid #fff;
  box-shadow: 0 0 0 3px var(--amber), 0 6px 20px rgba(30,58,95,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 2;
}
.rm-dot-today {
  background: var(--amber);
  box-shadow: 0 0 0 3px var(--primary), 0 6px 20px rgba(200,146,42,0.4);
}

.rm-card {
  background: #fff;
  border-radius: 10px;
  padding: 14px 10px;
  box-shadow: 0 4px 20px rgba(30,58,95,0.11);
  border-top: 3px solid var(--amber);
  text-align: center;
  width: 100%;
  max-width: 164px;
}
.rm-card-today {
  background: var(--light-amber);
  border-top-color: var(--primary);
}

.rm-badge {
  display: inline-block;
  background: var(--amber);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 9px;
  border-radius: 20px;
  margin-bottom: 7px;
  letter-spacing: 0.03em;
}
.rm-badge-today { background: var(--primary); }

.rm-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 5px;
  line-height: 1.3;
}
.rm-desc {
  font-size: 0.73rem;
  color: var(--grey);
  line-height: 1.45;
}

/* Mobile: vertical left-line roadmap */
@media (max-width: 767px) {
  .rm-road-line {
    top: 0; bottom: 0;
    left: 22px; right: auto;
    width: 5px; height: auto;
    transform: none;
    background: linear-gradient(180deg, var(--primary) 0%, var(--amber) 50%, var(--primary) 100%);
  }
  .rm-stops {
    flex-direction: column;
    padding-left: 62px;
    gap: 0;
  }
  .rm-stop {
    flex-direction: row;
    align-items: flex-start;
    padding: 14px 0;
    position: relative;
    min-height: 0;
  }
  .rm-stop.rm-ab .rm-half-bot,
  .rm-stop.rm-be .rm-half-top { display: none; }
  .rm-stop.rm-ab .rm-half-top,
  .rm-stop.rm-be .rm-half-bot {
    flex: 1;
    min-height: 0;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0;
  }
  .rm-vline { display: none; }
  .rm-card { max-width: 100%; text-align: left; }
  .rm-dot {
    position: absolute;
    left: -58px;
    top: 14px;
    width: 44px;
    height: 44px;
  }
}
