@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600;700&family=Rubik:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;600&display=swap');

:root {
  /* Brand Colors */
  --maroon: #5C1F1F;
  --navy: #0B1F3A;
  --paper: #FBFAF7;
  --ivory: #F6F3EC;
  --gold: #C89B3C;
  --steel: #6B7280;
  
  /* Typography */
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Rubik', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;

  /* Spacing */
  --section-pad: 6rem 2rem;
  --section-pad-sm: 4rem 1.5rem;
  --nav-height: 90px;
  --nav-height-scrolled: 70px;
}

/* Base & Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background-color: var(--paper);
  color: var(--navy);
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: var(--nav-height);
}

h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; letter-spacing: 0.05em; line-height: 1.2; }
a { text-decoration: none; color: inherit; transition: color 0.3s ease; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
p { margin-bottom: 1rem; color: var(--steel); }

/* Layout Utilities */
.container { max-width: 1200px; margin: 0 auto; width: 100%; }
.section { padding: var(--section-pad); }
.text-center { text-align: center; }
.bg-navy { background-color: var(--navy); color: var(--paper); }
.bg-navy p { color: var(--ivory); }
.bg-ivory { background-color: var(--ivory); }
.bg-maroon { background-color: var(--maroon); color: var(--paper); }
.bg-maroon p { color: var(--ivory); }

/* Grid Systems */
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 3rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; }

/* Typography */
.section-subtitle { color: var(--gold); font-family: var(--font-heading); text-transform: uppercase; letter-spacing: 2px; font-weight: 600; margin-bottom: 0.5rem; display: block; }
.section-title { font-size: 2.5rem; color: var(--navy); margin-bottom: 1.5rem; text-transform: uppercase; }
.section-title.light { color: var(--paper); }

/* Buttons */
.btn, .btn-outline {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 0.8rem 2rem; font-family: var(--font-heading);
  font-size: 1.1rem; font-weight: 600; text-transform: uppercase;
  transition: all 0.3s ease; cursor: pointer; border-radius: 4px; border: 2px solid transparent; text-align: center;
}
.btn { background-color: var(--maroon); color: var(--paper); border-color: var(--maroon); }
.btn:hover { background-color: transparent; color: var(--maroon); }
.btn-outline { background-color: transparent; color: var(--paper); border-color: var(--paper); }
.btn-outline:hover { background-color: var(--paper); color: var(--navy); }
.btn-outline.dark { border-color: var(--navy); color: var(--navy); }
.btn-outline.dark:hover { background-color: var(--navy); color: var(--paper); }

/* Header & Navigation */
.header {
  position: fixed; top: 0; left: 0; width: 100%; height: var(--nav-height);
  background-color: var(--paper); display: flex; align-items: center;
  z-index: 1000; transition: all 0.3s ease; box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.header.scrolled { height: var(--nav-height-scrolled); background-color: rgba(251, 250, 247, 0.95); backdrop-filter: blur(10px); }
.header .container { display: flex; justify-content: space-between; align-items: center; padding: 0 2rem; }

.logo { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.logo svg { height: 45px; width: auto; }
.logo-text { display: flex; flex-direction: column; }
.logo-title { font-family: var(--font-heading); color: var(--navy); font-size: 1.6rem; line-height: 1; text-transform: uppercase; }
.logo-subtitle { font-family: var(--font-body); color: var(--maroon); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }

.navbar-list { display: flex; gap: 2rem; align-items: center; }
.navbar-link { font-family: var(--font-heading); font-weight: 600; font-size: 1.1rem; color: var(--navy); text-transform: uppercase; transition: color 0.3s; position: relative; }
.navbar-link:hover, .navbar-link.active { color: var(--maroon); }
.navbar-link ion-icon { display: none; }

.header-contact { display: flex; align-items: center; gap: 1rem; border-left: 2px solid rgba(0,0,0,0.1); padding-left: 2rem; margin-left: 1rem; flex-shrink: 0; }
.contact-label { font-size: 0.85rem; color: var(--steel); font-weight: 500; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0; }
.contact-number { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; color: var(--navy); display: flex; flex-direction: column; line-height: 1.2; }
.contact-number span { color: var(--maroon); }
.contact-icon { font-size: 2rem; color: var(--maroon); background: var(--ivory); width: 45px; height: 45px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: 0.3s; flex-shrink: 0; }
.contact-icon:hover { background: var(--maroon); color: var(--paper); }

.nav-open-btn, .nav-close-btn { display: none; background: none; border: none; font-size: 2.5rem; color: var(--navy); cursor: pointer; }
.navbar-top { display: none; }

/* Mobile Menu overlay styling */
.overlay { display: none; }

/* Hero Section */
.hero {
  position: relative; min-height: 85vh; display: flex; align-items: center;
  background-size: cover; background-position: center; background-attachment: fixed;
  color: var(--paper); z-index: 1;
}
.hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, rgba(11, 31, 58, 0.95) 0%, rgba(11, 31, 58, 0.5) 70%, transparent 100%); z-index: -1; }
.hero-content { max-width: 700px; padding: 2rem 0; }
.hero-title { font-size: clamp(3rem, 5vw, 5rem); line-height: 1.1; margin-bottom: 1rem; text-transform: uppercase; }
.hero-title .span { color: var(--gold); display: block; }
.hero-text { font-size: clamp(1.1rem, 2vw, 1.3rem); margin-bottom: 2.5rem; font-weight: 500; letter-spacing: 1px; color: var(--ivory); line-height: 1.5; }
.hero-text strong { color: var(--maroon); background: var(--paper); padding: 0.2rem 0.5rem; border-radius: 4px; display: inline-block; margin-top: 0.5rem; }
.hero-buttons { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 3rem; margin-bottom: 3rem; flex-wrap: wrap; }
.hero-stats .stat-item { text-align: left; }
.hero-stats .stat-number { font-size: 3.5rem; font-family: var(--font-heading); color: var(--gold); font-weight: 700; line-height: 1; display: block; }
.hero-stats .stat-label { font-size: 1rem; text-transform: uppercase; letter-spacing: 1px; color: var(--paper); opacity: 0.9; }

/* Standalone Statistics */
.statistics { background-color: var(--ivory); position: relative; margin-top: -80px; z-index: 10; padding: 0; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); background: var(--paper); box-shadow: 0 10px 40px rgba(0,0,0,0.08); border-radius: 8px; overflow: hidden; }
.stat-card { padding: 3rem 2rem; text-align: center; border-right: 1px solid rgba(0,0,0,0.05); transition: 0.3s; }
.stat-card:last-child { border-right: none; }
.stat-card:hover { transform: translateY(-5px); background: var(--navy); color: var(--paper); border-color: transparent; }
.stat-icon { font-size: 3rem; color: var(--maroon); margin-bottom: 1rem; }
.stat-card:hover .stat-icon { color: var(--gold); }
.stat-card .stat-number { font-size: 3rem; font-family: var(--font-heading); font-weight: 700; margin-bottom: 0.5rem; color: inherit; }
.stat-card .stat-text { font-size: 1rem; font-weight: 500; color: var(--steel); text-transform: uppercase; margin: 0; }
.stat-card:hover .stat-text { color: var(--ivory); }

/* About / General Image Layouts */
.about { overflow: hidden; }
.about-banner { position: relative; }
.about-banner .img-cover { border-radius: 8px; width: 100%; height: 100%; object-fit: cover; box-shadow: 0 10px 30px rgba(0,0,0,0.1); aspect-ratio: 4/5; }
.abs-img-2 { position: absolute; bottom: -30px; right: -30px; width: 200px; height: 200px; border-radius: 50%; border: 10px solid var(--paper); display: flex; flex-direction: column; justify-content: center; align-items: center; box-shadow: 0 10px 30px rgba(0,0,0,0.2); z-index: 2; }
.about-content { padding-left: 2rem; }
.about-list { margin-bottom: 2.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.about-item { display: flex; align-items: center; gap: 10px; font-weight: 500; font-size: 1.1rem; color: var(--navy); }
.about-item ion-icon { color: var(--maroon); font-size: 1.5rem; flex-shrink: 0; }

/* Page Header */
.page-header { background: linear-gradient(rgba(11, 31, 58, 0.8), rgba(11, 31, 58, 0.8)), url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1920&q=80') center/cover; padding: 10rem 2rem 6rem; text-align: center; color: var(--paper); }
.page-header h1 { font-size: clamp(2.5rem, 4vw, 4rem); color: var(--gold); margin-bottom: 1rem; }
.page-header p { font-size: clamp(1.1rem, 2vw, 1.25rem); font-weight: 500; color: var(--ivory); }

/* Service Cards */
.service-card { background: var(--paper); padding: 3rem; border-radius: 8px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); text-align: center; border: 1px solid rgba(0,0,0,0.05); transition: 0.4s; position: relative; overflow: hidden; z-index: 1; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 0%; background: var(--maroon); z-index: -1; transition: 0.4s; }
.service-card:hover { transform: translateY(-10px); color: var(--paper); }
.service-card:hover::before { height: 100%; }
.service-icon { font-size: 4rem; color: var(--maroon); margin-bottom: 1.5rem; transition: 0.4s; }
.service-card:hover .service-icon { color: var(--gold); }
.service-card h3 { font-size: 1.6rem; color: var(--navy); margin-bottom: 1rem; transition: 0.4s; }
.service-card:hover h3 { color: var(--paper); }
.service-card p { transition: 0.4s; margin-bottom: 0; }
.service-card:hover p { color: var(--ivory); }

/* Feature / Deep Dive Blocks */
.feature-block { margin-bottom: 6rem; display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 4rem; align-items: center; }
.feature-block:nth-child(even) .feature-image { order: 2; }
.feature-image img { border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); width: 100%; aspect-ratio: 16/11; object-fit: cover; }
.feature-list { margin-top: 1.5rem; }
.feature-list li { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 1.2rem; }
.feature-list ion-icon { font-size: 1.8rem; color: var(--gold); background: var(--maroon); border-radius: 50%; padding: 5px; flex-shrink: 0; }
.feature-list div h4 { font-size: 1.2rem; color: var(--navy); margin-bottom: 0.2rem; }
.feature-list div p { font-size: 0.95rem; margin: 0; }

/* Timeline (Process/History) */
.timeline { position: relative; max-width: 800px; margin: 0 auto; }
.timeline::after { content: ''; position: absolute; width: 4px; background-color: var(--maroon); top: 0; bottom: 0; left: 50%; margin-left: -2px; border-radius: 4px; }
.timeline-item { padding: 10px 40px; position: relative; background-color: inherit; width: 50%; }
.timeline-item::after { content: ''; position: absolute; width: 20px; height: 20px; right: -10px; background-color: var(--gold); border: 4px solid var(--maroon); top: 15px; border-radius: 50%; z-index: 1; }
.timeline-item.left { left: 0; }
.timeline-item.right { left: 50%; }
.timeline-item.right::after { left: -10px; }
.timeline-content { padding: 20px 30px; background-color: var(--paper); position: relative; border-radius: 8px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); }
.timeline-content h3 { color: var(--maroon); font-size: 1.8rem; margin-bottom: 0.5rem; }

/* Process Strip (Horizontal) */
.process-strip { display: flex; justify-content: space-between; position: relative; padding: 2rem 0; flex-wrap: wrap; gap: 2rem; }
.process-step { text-align: center; flex: 1; min-width: 150px; position: relative; }
.process-step:not(:last-child)::after { content: ''; position: absolute; top: 40px; right: -50%; width: 100%; height: 2px; background: dashed 2px var(--maroon); z-index: -1; }
.process-icon { width: 80px; height: 80px; background: var(--ivory); border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 2.5rem; margin: 0 auto 1.5rem; color: var(--navy); box-shadow: 0 5px 15px rgba(0,0,0,0.1); transition: 0.3s; }
.process-step:hover .process-icon { background: var(--maroon); color: var(--gold); transform: scale(1.1); }
.process-step h4 { font-size: 1.2rem; }

/* Network & Branches */
.zone-title { color: var(--maroon); font-size: 2rem; margin: 4rem 0 2rem; border-bottom: 2px solid var(--ivory); padding-bottom: 1rem; }
.branch-card { background: var(--paper); padding: 2.5rem; border-radius: 8px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); border-left: 5px solid var(--maroon); }
.branch-card h3 { color: var(--navy); margin-bottom: 1rem; font-size: 1.4rem; display: flex; justify-content: space-between; align-items: center; }
.branch-badge { font-size: 0.8rem; background: var(--ivory); padding: 0.3rem 0.8rem; border-radius: 50px; color: var(--maroon); font-family: var(--font-body); letter-spacing: 0; }
.branch-card p { margin-bottom: 0.8rem; display: flex; align-items: flex-start; gap: 10px; }
.branch-card p ion-icon { color: var(--maroon); font-size: 1.2rem; flex-shrink: 0; margin-top: 3px; }
.branch-facilities { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--ivory); display: flex; gap: 1rem; flex-wrap: wrap; }
.facility-tag { font-size: 0.85rem; display: inline-flex; align-items: center; gap: 5px; color: var(--navy); background: var(--paper); border: 1px solid #ddd; padding: 0.3rem 0.8rem; border-radius: 4px; }
.facility-tag ion-icon { color: var(--gold); }

.tag-cloud { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 2rem; }
.tag { padding: 0.6rem 1.2rem; background: var(--paper); border-radius: 50px; font-weight: 500; color: var(--navy); box-shadow: 0 3px 10px rgba(0,0,0,0.05); transition: 0.3s; }
.tag:hover { background: var(--maroon); color: var(--paper); transform: translateY(-3px); }

/* Testimonials */
.testimonial-card { background: var(--paper); padding: 2.5rem; border-radius: 8px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); position: relative; }
.testimonial-card::before { content: '\201C'; font-family: var(--font-heading); font-size: 8rem; color: var(--ivory); position: absolute; top: -20px; left: 20px; line-height: 1; z-index: 0; }
.testimonial-text { font-size: 1.1rem; font-style: italic; color: var(--navy); position: relative; z-index: 1; margin-bottom: 1.5rem; line-height: 1.8; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; border-top: 1px solid var(--ivory); padding-top: 1.5rem; }
.testimonial-author img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.testimonial-author h4 { font-size: 1.1rem; margin-bottom: 0; }
.testimonial-author p { font-size: 0.9rem; margin: 0; color: var(--maroon); font-weight: 500; }

/* FAQ Accordion */
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--paper); margin-bottom: 1rem; border-radius: 8px; box-shadow: 0 3px 10px rgba(0,0,0,0.03); overflow: hidden; }
.faq-question { padding: 1.5rem 2rem; width: 100%; text-align: left; background: none; border: none; font-family: var(--font-heading); font-size: 1.2rem; color: var(--navy); cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: 0.3s; }
.faq-question:hover { color: var(--maroon); }
.faq-question ion-icon { font-size: 1.5rem; transition: transform 0.3s; }
.faq-question.active ion-icon { transform: rotate(180deg); color: var(--maroon); }
.faq-answer { padding: 0 2rem; max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; }
.faq-answer p { padding-bottom: 1.5rem; margin: 0; }
.faq-question.active + .faq-answer { max-height: 500px; } /* Arbitrary max height for CSS transition */

/* Tracking */
.tracking-wrapper { max-width: 700px; margin: 0 auto; background: var(--paper); padding: 4rem; border-radius: 12px; box-shadow: 0 10px 40px rgba(0,0,0,0.08); }
.tracking-input-group { display: flex; gap: 1rem; margin-bottom: 3rem; flex-wrap: wrap; }
.tracking-input { flex: 1; min-width: 200px; padding: 1.2rem 1.5rem; font-family: var(--font-mono); font-size: 1.1rem; border: 2px solid var(--ivory); border-radius: 6px; outline: none; background: var(--ivory); transition: 0.3s; }
.tracking-input:focus { border-color: var(--maroon); background: var(--paper); }
.tracking-timeline { display: none; margin-top: 3rem; }
.tracking-timeline.active { display: block; }
.tracking-node { display: flex; gap: 2rem; margin-bottom: 2.5rem; position: relative; }
.tracking-node:not(:last-child)::before { content: ''; position: absolute; top: 40px; left: 19px; bottom: -25px; width: 2px; background: #ddd; z-index: 1; }
.tracking-node.completed:not(:last-child)::before { background: var(--gold); }
.tracking-icon { width: 40px; height: 40px; border-radius: 50%; background: #ddd; display: flex; justify-content: center; align-items: center; color: white; font-size: 1.2rem; z-index: 2; flex-shrink: 0; }
.tracking-node.completed .tracking-icon { background: var(--gold); }
.tracking-node.current .tracking-icon { background: var(--maroon); animation: pulse 2s infinite; box-shadow: 0 0 0 5px rgba(92, 31, 31, 0.2); }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(92, 31, 31, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(92, 31, 31, 0); } 100% { box-shadow: 0 0 0 0 rgba(92, 31, 31, 0); } }
.tracking-content h4 { font-size: 1.3rem; color: #999; margin-bottom: 0.3rem; }
.tracking-node.completed .tracking-content h4, .tracking-node.current .tracking-content h4 { color: var(--navy); }
.tracking-content p { color: var(--steel); font-size: 0.95rem; margin: 0; }
.tracking-guide { background: var(--ivory); padding: 2rem; border-radius: 8px; margin-top: 4rem; }
.tracking-guide h3 { margin-bottom: 1rem; color: var(--navy); }
.tracking-guide ul { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; }
.tracking-guide li { display: flex; gap: 10px; align-items: flex-start; }
.tracking-guide ion-icon { color: var(--maroon); flex-shrink: 0; margin-top: 4px; }

/* Gallery */
.gallery-filter { display: flex; justify-content: center; gap: 1rem; margin-bottom: 3rem; flex-wrap: wrap; }
.filter-btn { background: var(--paper); border: 2px solid var(--ivory); padding: 0.5rem 1.5rem; border-radius: 50px; font-family: var(--font-heading); text-transform: uppercase; cursor: pointer; transition: 0.3s; font-size: 1rem; color: var(--navy); }
.filter-btn:hover, .filter-btn.active { background: var(--maroon); color: var(--paper); border-color: var(--maroon); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.5rem; }
.gallery-item { aspect-ratio: 4/3; border-radius: 8px; overflow: hidden; position: relative; cursor: pointer; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(11,31,58,0.9), transparent); display: flex; align-items: flex-end; padding: 2rem; opacity: 0; transition: 0.3s; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay h3 { color: var(--paper); font-size: 1.4rem; transform: translateY(20px); transition: 0.4s; }
.gallery-item:hover .gallery-overlay h3 { transform: translateY(0); }

/* Contact */
.contact-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.contact-form { background: var(--paper); padding: 3rem; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-weight: 500; color: var(--navy); margin-bottom: 0.5rem; }
.form-control { width: 100%; padding: 1.2rem; border: 1px solid rgba(0,0,0,0.1); border-radius: 6px; font-family: var(--font-body); font-size: 1rem; background: var(--ivory); transition: 0.3s; }
.form-control:focus { outline: none; border-color: var(--maroon); background: var(--paper); }
textarea.form-control { resize: vertical; min-height: 150px; }
.contact-info h3 { font-size: 2rem; color: var(--navy); margin-bottom: 2rem; }
.info-item { display: flex; gap: 1.5rem; margin-bottom: 2rem; }
.info-icon { width: 60px; height: 60px; background: var(--ivory); border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 2rem; color: var(--maroon); flex-shrink: 0; transition: 0.3s; }
.info-item:hover .info-icon { background: var(--maroon); color: var(--paper); transform: translateY(-5px); }
.info-content h4 { font-size: 1.3rem; margin-bottom: 0.5rem; color: var(--navy); }
.info-content p { color: var(--steel); font-size: 1.05rem; margin: 0; line-height: 1.5; }
.map-container { border-radius: 8px; overflow: hidden; height: 400px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); margin-top: 3rem; background: var(--ivory); display: flex; align-items: center; justify-content: center; }
.map-container iframe { width: 100%; height: 100%; border: 0; }
.success-msg { display: none; background: #d4edda; color: #155724; padding: 1rem; border-radius: 6px; margin-bottom: 1.5rem; border-left: 4px solid #28a745; }

/* Call to Action Banner */
.cta-banner { background: linear-gradient(135deg, var(--navy), var(--maroon)); padding: 5rem 2rem; text-align: center; color: var(--paper); border-radius: 12px; margin: 4rem 0; box-shadow: 0 20px 40px rgba(0,0,0,0.15); }
.cta-banner h2 { font-size: 2.5rem; color: var(--gold); margin-bottom: 1rem; }
.cta-banner p { color: var(--paper); font-size: 1.2rem; margin-bottom: 2rem; opacity: 0.9; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(11,31,58,0.95); z-index: 2000; display: flex; justify-content: center; align-items: center; opacity: 0; pointer-events: none; transition: 0.4s; padding: 2rem; }
.lightbox.active { opacity: 1; pointer-events: auto; }
.lightbox-content { max-width: 100%; max-height: 100%; transform: scale(0.9); transition: 0.4s; border-radius: 8px; box-shadow: 0 10px 40px rgba(0,0,0,0.3); }
.lightbox.active .lightbox-content { transform: scale(1); }
.lightbox-close { position: absolute; top: 20px; right: 30px; font-size: 3rem; color: var(--paper); cursor: pointer; transition: 0.3s; }
.lightbox-close:hover { color: var(--gold); transform: rotate(90deg); }

/* Footer */
.footer { background-color: var(--navy); color: var(--paper); padding: 5rem 2rem 2rem; }
.footer-top { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 3rem; margin-bottom: 4rem; }
.footer-brand p { margin-top: 1.5rem; opacity: 0.8; }
.footer-title { color: var(--paper); font-size: 1.5rem; margin-bottom: 2rem; position: relative; padding-bottom: 1rem; }
.footer-title::after { content: ''; position: absolute; left: 0; bottom: 0; width: 50px; height: 2px; background: var(--maroon); }
.footer-list li { margin-bottom: 1rem; }
.footer-link { color: var(--paper); opacity: 0.8; display: flex; align-items: center; gap: 10px; transition: 0.3s; }
.footer-link:hover { color: var(--gold); opacity: 1; transform: translateX(5px); }
.footer-link ion-icon { color: var(--maroon); flex-shrink: 0; }
.footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); color: var(--paper); opacity: 0.6; font-size: 0.95rem; }

/* 
 * RESPONSIVENESS (Media Queries) 
 */

/* Tablets / Small Desktops */
@media (max-width: 1200px) {
  .section { padding: 5rem 2rem; }
  .hero-title { font-size: 4rem; }
}

@media (max-width: 1024px) {
  .navbar-list { gap: 1.5rem; }
  .header-contact { padding-left: 1rem; margin-left: 0.5rem; }
  .contact-wrapper { grid-template-columns: 1fr; gap: 3rem; }
  .about-banner .abs-img-2 { width: 150px; height: 150px; bottom: -20px; right: -20px; border-width: 5px; }
  .process-step:not(:last-child)::after { display: none; } /* Hide dashed lines on smaller screens */
  .process-strip { flex-direction: column; align-items: center; gap: 3rem; }
}

/* Mobile Devices */
@media (max-width: 900px) {
  .nav-open-btn { display: block; }
  
  .navbar { position: fixed; top: 0; right: -100%; max-width: 350px; width: 100%; height: 100vh; background-color: var(--navy); color: var(--paper); padding: 30px; z-index: 1001; transition: 0.4s ease-in-out; display: flex; flex-direction: column; gap: 2rem; overflow-y: auto; }
  .navbar.active { right: 0; }
  .navbar-top { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 1rem; }
  .navbar-top .logo-title { color: var(--paper); }
  .navbar-top .logo-subtitle { color: var(--gold); }
  .nav-close-btn { display: block; color: var(--paper); }
  
  .navbar-list { flex-direction: column; align-items: flex-start; width: 100%; }
  .navbar-link { color: var(--paper); width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .navbar-link ion-icon { display: block; }
  
  .header-contact { display: none; }
  .overlay { display: block; position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: rgba(0,0,0,0.5); z-index: 1000; opacity: 0; pointer-events: none; transition: 0.3s; }
  .overlay.active { opacity: 1; pointer-events: auto; }

  .hero { min-height: auto; padding: 8rem 0 4rem; }
  .hero-stats { flex-direction: column; gap: 1.5rem; margin-bottom: 2rem; }
  
  .timeline::after { left: 31px; }
  .timeline-item { width: 100%; padding-left: 70px; padding-right: 25px; }
  .timeline-item.right { left: 0; }
  .timeline-item::after, .timeline-item.right::after { left: 21px; }
  .timeline-item.left::after { left: 21px; }
  
  .feature-block { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .feature-block:nth-child(even) .feature-image { order: 0; }
  .feature-list li { text-align: left; }
  .about-list { grid-template-columns: 1fr; }
  
  .tracking-wrapper { padding: 2rem; }
  .tracking-input-group { flex-direction: column; }
}

/* Small Mobile */
@media (max-width: 600px) {
  :root {
    --section-pad: 4rem 1rem;
    --nav-height: 80px;
    --nav-height-scrolled: 70px;
  }
  .section-title { font-size: 2rem; }
  .hero-title { font-size: 2.5rem; }
  
  .stats-grid, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .stat-card { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.05); }
  .stat-card:last-child { border-bottom: none; }
  
  .contact-form { padding: 1.5rem; }
  .cta-banner { padding: 3rem 1rem; }
  
  .page-header { padding: 8rem 1rem 4rem; }
  .page-header h1 { font-size: 2.2rem; }
}

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

/* Logo Sizing & Alignment */
.header-logo-img {
  height: 75px; 
  width: auto;
  object-fit: contain;
}

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

@media (max-width: 900px) {
  .header-logo-img {
    height: 65px;
    margin-left: 15px; 
  }
}

@media (max-width: 600px) {
  .header-logo-img {
    height: 55px;
    margin-left: 10px; 
  }
}
