/* 
   ==========================================================================
   CSS Style System for Custom Navy & White Website
   Author: Antigravity
   Colors: Premium Navy Blue & White/Light Gray
   ========================================================================== 
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* Colors */
  --primary-color: #0B2545;       /* Dark Navy */
  --primary-light: #134074;       /* Medium Slate Blue */
  --primary-lighter: #1e528e;     /* Brighter Blueish Slate */
  --accent-color: #0066cc;        /* Brilliant Accent Blue */
  --accent-hover: #0052cc;        /* Darker Blue Accent */
  --bg-dark: #07162c;             /* Extra Dark Navy for Footer/Dark Backgrounds */
  --bg-light: #EEF4F8;            /* Ice White Background */
  --bg-white: #ffffff;            /* Pure White */
  --bg-offwhite: #f8fafc;         /* Very Light Grey/Slate */
  
  /* Text Colors */
  --text-dark: #0f172a;           /* Almost Black */
  --text-muted: #475569;          /* Muted Slate Grey */
  --text-light: #ffffff;          /* White */
  --text-light-muted: #94a3b8;    /* Muted Light Gray */
  
  /* Layout & Spacing */
  --max-width: 1200px;
  --header-height: 80px;
  --border-radius: 12px;
  --border-radius-sm: 6px;
  --border-radius-lg: 20px;
  --border-color: #e2e8f0;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(11, 37, 69, 0.05);
  --shadow-md: 0 10px 25px rgba(11, 37, 69, 0.06);
  --shadow-lg: 0 20px 35px rgba(11, 37, 69, 0.1);
  --shadow-glow: 0 0 20px rgba(0, 102, 204, 0.25);
  
  /* Fonts */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Transitions */
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary-color);
  font-weight: 700;
  line-height: 1.25;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

button, input, select, textarea {
  font-family: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Typography & Headers styling */
h1 { font-size: 3rem; font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: 2.25rem; font-weight: 700; letter-spacing: -0.01em; position: relative; margin-bottom: 1.5rem; }
h3 { font-size: 1.5rem; font-weight: 600; }
h4 { font-size: 1.25rem; font-weight: 600; }

@media (max-width: 768px) {
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.35rem; }
}

/* Utility Classes */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section-bg {
  background-color: var(--bg-offwhite);
}

.section-navy {
  background-color: var(--bg-white);
  color: var(--text-dark);
  border-bottom: 1px solid var(--border-color);
}

.section-navy h2, .section-navy h3 {
  color: var(--primary-color);
}

.text-center { text-align: center; }
.text-accent { color: var(--accent-color) !important; }
.text-light { color: var(--text-light) !important; }
.text-muted { color: var(--text-muted) !important; }

.section-title-wrapper {
  max-width: 700px;
  margin: 0 auto 60px auto;
  text-align: center;
}

.section-title-wrapper .badge {
  display: inline-block;
  padding: 6px 16px;
  background-color: var(--bg-light);
  color: var(--primary-light);
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: 50px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: var(--font-heading);
}

.section-navy .section-title-wrapper .badge {
  background-color: var(--bg-light);
  color: var(--primary-light);
}

.divider {
  width: 60px;
  height: 4px;
  background-color: var(--accent-color);
  margin: 15px auto 0 auto;
  border-radius: 2px;
}

.divider.left {
  margin: 15px 0 0 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--border-radius-sm);
  transition: var(--transition-normal);
  cursor: pointer;
  border: 2px solid transparent;
  font-family: var(--font-heading);
}

.btn-icon {
  margin-left: 8px;
  transition: transform 0.2s ease;
}

.btn:hover .btn-icon {
  transform: translateX(4px);
}

.btn-primary {
  background-color: var(--accent-color);
  color: var(--text-light);
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  box-shadow: var(--shadow-glow);
}

.btn-secondary {
  background-color: transparent;
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.btn-secondary:hover {
  background-color: var(--accent-color);
  color: var(--text-light);
}

.btn-white {
  background-color: var(--bg-white);
  color: var(--primary-color);
}

.btn-white:hover {
  background-color: var(--bg-light);
  transform: translateY(-2px);
}

.btn-outline-white {
  background-color: transparent;
  border-color: var(--text-light);
  color: var(--text-light);
}

.btn-outline-white:hover {
  background-color: var(--bg-white);
  color: var(--primary-color);
}

/* Top bar details */
.top-bar {
  background-color: var(--bg-dark);
  color: var(--text-light-muted);
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-info {
  display: flex;
  gap: 20px;
}

.top-bar-info a {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-bar-info a:hover {
  color: var(--text-light);
}

.top-bar-socials {
  display: flex;
  gap: 15px;
}

.top-bar-socials a:hover {
  color: var(--accent-color);
}

/* Header & Navigation */
.header {
  position: absolute;
  top: 38px;
  left: 0;
  width: 100%;
  height: var(--header-height);
  display: flex;
  align-items: center;
  z-index: 1000;
  transition: background-color 0.3s ease, height 0.3s ease, box-shadow 0.3s ease;
  background-color: transparent;
}

/* Header Sticky Mode */
.header.sticky {
  position: fixed;
  top: 0;
  background-color: var(--bg-white);
  height: 70px;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--border-color);
}

.header.sticky .logo-text {
  color: var(--primary-color);
}

.header.sticky .nav-link {
  color: var(--primary-light);
}

.header.sticky .nav-link:hover,
.header.sticky .nav-link.active {
  color: var(--accent-color);
}

.header.sticky .mobile-toggle svg {
  stroke: var(--primary-color);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  display: block;
  height: 80px;
  width: 150px;
  position: relative;
  overflow: hidden;
}

.logo-img {
  height: 110px;
  width: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: var(--transition-normal);
}

.header.sticky .logo {
  height: 60px;
  width: 112px;
}

.header.sticky .logo-img {
  height: 82px;
  top: 50%;
}

.footer .logo {
  height: 90px;
  width: 170px;
}

.footer .logo-img {
  height: 125px;
  top: 50%;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background-color: var(--accent-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-weight: 800;
  font-family: var(--font-heading);
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-color);
  letter-spacing: -0.02em;
}

.logo-text span {
  color: var(--accent-color);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--primary-light);
  padding: 8px 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-color);
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  outline: none;
}

.mobile-toggle svg {
  stroke: var(--primary-color);
  transition: var(--transition-fast);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 90vh;
  padding-top: calc(var(--header-height) + 60px);
  background: var(--bg-white);
  display: flex;
  align-items: center;
  color: var(--text-dark);
  overflow: hidden;
  border-bottom: 1px solid var(--border-color);
}

.hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 102, 204, 0.05) 0%, rgba(0,0,0,0) 70%);
  top: -100px;
  right: -100px;
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(11, 37, 69, 0.02) 0%, rgba(0,0,0,0) 70%);
  bottom: -50px;
  left: -50px;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 24px;
  color: var(--primary-light);
  animation: fadeInDown 0.8s ease;
}

.hero-badge svg {
  color: var(--accent-color);
}

.hero-title {
  font-size: 3.75rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--primary-color);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  animation: fadeInUp 0.8s ease;
}

.hero-title span {
  background: linear-gradient(to right, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 35px;
  line-height: 1.6;
  max-width: 600px;
  animation: fadeInUp 1s ease;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 1.2s ease;
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: scaleIn 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero-image {
  width: 100%;
  max-width: 460px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  position: relative;
  z-index: 2;
  transition: var(--transition-normal);
}

.hero-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 50px rgba(11, 37, 69, 0.15);
}

.hero-phone-mockup .notch {
  width: 60px;
  height: 12px;
  background: rgba(255,255,255,0.2);
  border-radius: 0 0 8px 8px;
  position: absolute;
  top: 0;
}

.hero-phone-mockup .brand-logo {
  font-size: 1.25rem;
  font-weight: 800;
  margin-top: 10px;
}

.hero-phone-mockup .status-badge {
  background: rgba(0, 204, 102, 0.2);
  color: #00cc66;
  border: 1px solid rgba(0, 204, 102, 0.3);
  font-size: 0.7rem;
  padding: 4px 8px;
  border-radius: 50px;
  margin-top: 5px;
  font-weight: 600;
}

@media (max-width: 991px) {
  .hero {
    padding-top: calc(var(--header-height) + 60px);
    padding-bottom: 80px;
    min-height: auto;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .hero-content {
    text-align: center;
    max-width: 100%;
  }
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-image-wrapper {
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-buttons .btn {
    width: 100%;
  }
}

/* Feature Highlights Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.feature-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 40px;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: var(--primary-light);
  transition: var(--transition-fast);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.feature-card:hover::before {
  background-color: var(--accent-color);
  width: 6px;
}

.feature-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: var(--border-radius);
  background-color: var(--bg-light);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.feature-card h3 {
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.feature-link {
  display: inline-flex;
  align-items: center;
  margin-top: 20px;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.9rem;
}

.feature-link svg {
  margin-left: 6px;
  transition: transform 0.2s ease;
}

.feature-card:hover .feature-link svg {
  transform: translateX(4px);
}

/* Product Categories Layout (Grid) */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.product-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.product-img-holder {
  background-color: var(--bg-offwhite);
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 30px;
  border-bottom: 1px solid var(--border-color);
}

.product-img-holder svg {
  width: 80px;
  height: 80px;
  color: var(--primary-light);
  opacity: 0.8;
  transition: var(--transition-normal);
}

.product-img-holder img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: var(--transition-normal);
}

.product-card:hover .product-img-holder svg {
  transform: scale(1.1);
  color: var(--accent-color);
}

.product-card:hover .product-img-holder img {
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--primary-color);
  color: var(--text-light);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
}

.product-details {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-details h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.product-details p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.product-info-list {
  margin-bottom: 20px;
}

.product-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.product-info-item svg {
  color: var(--accent-color);
  flex-shrink: 0;
}

.product-card-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Why Choose Us & Info Blocks */
.info-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.info-image-area {
  position: relative;
}

.info-graphic-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.info-graphic-box {
  background: var(--bg-white);
  padding: 30px;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.info-graphic-box.blue {
  background-color: var(--primary-color);
  color: var(--text-light);
  border-color: transparent;
}

.info-graphic-box.blue h3 {
  color: var(--text-light);
}

.info-graphic-box .count-num {
  font-size: 3rem;
  font-weight: 800;
  font-family: var(--font-heading);
  margin-bottom: 5px;
  color: var(--accent-color);
}

.info-graphic-box.blue .count-num {
  color: var(--bg-light);
}

.info-graphic-box p {
  font-size: 0.95rem;
}

.info-text-area h2 {
  margin-bottom: 20px;
}

.info-text-area p {
  color: var(--text-muted);
  margin-bottom: 25px;
}

.check-list-item {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
  align-items: flex-start;
}

.check-list-icon {
  width: 24px;
  height: 24px;
  background-color: rgba(0, 102, 204, 0.1);
  color: var(--accent-color);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.check-list-text h4 {
  font-size: 1.05rem;
  margin-bottom: 2px;
}

.check-list-text p {
  font-size: 0.9rem;
  margin: 0;
}

@media (max-width: 991px) {
  .info-section-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .info-image-area {
    order: 2;
  }
}

/* Quality Control Steps */
.qc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
}

.qc-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 40px 30px;
  text-align: center;
  position: relative;
  transition: var(--transition-normal);
}

.qc-card:hover {
  background-color: var(--bg-offwhite);
  border-color: var(--accent-color);
  transform: translateY(-5px);
}

.qc-step-num {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background-color: var(--accent-color);
  color: var(--text-light);
  font-weight: 700;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--bg-white);
}

.qc-card h3 {
  margin-top: 10px;
  margin-bottom: 12px;
}

.qc-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

@media (max-width: 991px) {
  .qc-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }
}

/* Tabs switcher styling (For solutions and products catalog) */
.tab-container {
  margin-bottom: 40px;
}

.tab-nav {
  display: flex;
  justify-content: center;
  gap: 15px;
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 15px;
  margin-bottom: 30px;
  overflow-x: auto;
  white-space: nowrap;
}

.tab-btn {
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 24px;
  color: var(--text-muted);
  cursor: pointer;
  border-radius: var(--border-radius-sm);
  transition: var(--transition-fast);
}

.tab-btn:hover {
  color: var(--primary-color);
  background-color: var(--bg-light);
}

.tab-btn.active {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

/* Accordion FAQs Component */
.accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.accordion-item:hover {
  border-color: var(--primary-light);
}

.accordion-header {
  padding: 22px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.accordion-header h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary-color);
  margin: 0;
  padding-right: 20px;
}

.accordion-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  background-color: var(--bg-light);
  color: var(--primary-color);
  transition: var(--transition-normal);
  flex-shrink: 0;
}

.accordion-icon svg {
  transition: var(--transition-normal);
}

.accordion-content {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
}

.accordion-content p {
  padding-bottom: 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.accordion-item.active {
  border-color: var(--accent-color);
  box-shadow: var(--shadow-md);
}

.accordion-item.active .accordion-icon {
  background-color: var(--accent-color);
  color: var(--text-light);
}

.accordion-item.active .accordion-icon svg {
  transform: rotate(45deg);
}

.accordion-item.active .accordion-content {
  max-height: 1000px;
  transition: max-height 0.4s cubic-bezier(1, 0, 1, 0);
}

/* Contact Grid & Map Form */
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
}

.contact-info-panel {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 40px;
  border-radius: var(--border-radius);
  position: relative;
  overflow: hidden;
}

.contact-info-panel h3 {
  color: var(--text-light);
  margin-bottom: 12px;
}

.contact-info-panel p {
  color: var(--text-light-muted);
  margin-bottom: 30px;
  font-size: 0.95rem;
}

.contact-details-list {
  margin-bottom: 40px;
}

.contact-detail-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  align-items: flex-start;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  flex-shrink: 0;
}

.contact-text h4 {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 4px;
}

.contact-text p, .contact-text a {
  font-size: 0.9rem;
  color: var(--text-light-muted);
  margin: 0;
}

.contact-text a:hover {
  color: var(--text-light);
}

.contact-form-panel {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
}

.contact-form-panel h3 {
  margin-bottom: 8px;
}

.contact-form-panel p {
  color: var(--text-muted);
  margin-bottom: 30px;
  font-size: 0.95rem;
}

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

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--primary-color);
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  background-color: var(--bg-offwhite);
  border-radius: var(--border-radius-sm);
  font-size: 0.95rem;
  transition: var(--transition-fast);
  color: var(--text-dark);
}

.form-control:focus {
  border-color: var(--accent-color);
  background-color: var(--bg-white);
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

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

.form-error {
  color: #dc2626;
  font-size: 0.8rem;
  margin-top: 5px;
  display: none;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Footer Section */
.footer {
  background-color: var(--bg-dark);
  color: var(--text-light-muted);
  padding: 80px 0 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand .logo {
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.footer-title {
  color: var(--bg-white);
  font-size: 1.1rem;
  margin-bottom: 24px;
  font-family: var(--font-heading);
  position: relative;
  padding-bottom: 8px;
}

.footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background-color: var(--accent-color);
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--bg-white);
  padding-left: 5px;
}

.footer-newsletter p {
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-form .form-control {
  background-color: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
  color: var(--text-light);
}

.newsletter-form .form-control:focus {
  background-color: rgba(255,255,255,0.08);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
}

/* Page Intro/Hero (For interior pages) */
.page-hero {
  background-image: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)), url('assets/page-hero-bg.png');
  background-size: cover;
  background-position: center;
  padding: 130px 0 70px 0;
  color: var(--primary-color);
  text-align: center;
  position: relative;
  border-bottom: 1px solid var(--border-color);
}

.page-hero h1 {
  color: var(--primary-color);
  margin-bottom: 12px;
}

.breadcrumbs {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.breadcrumbs a:hover {
  color: var(--accent-color);
}

/* Testimonial cards grid */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  padding: 35px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-quote {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 25px;
  line-height: 1.7;
}

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

.author-avatar {
  width: 48px;
  height: 48px;
  background-color: var(--bg-light);
  color: var(--primary-color);
  font-weight: 700;
  font-family: var(--font-heading);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
}

.author-info h4 {
  font-size: 1rem;
  margin-bottom: 2px;
}

.author-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.star-rating {
  color: #ffb703;
  font-size: 0.85rem;
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
}

/* Keyframes animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Mobile responsive menu navigation drawer styling */
@media (max-width: 991px) {
  .logo {
    height: 52px;
    width: 122px;
  }

  .logo-img {
    height: 102px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  .header.sticky .logo {
    height: 46px;
    width: 108px;
  }

  .header.sticky .logo-img {
    height: 90px;
    top: 50%;
  }

  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 80%;
    max-width: 320px;
    height: calc(100vh - var(--header-height));
    background-color: var(--bg-white);
    flex-direction: column;
    align-items: flex-start;
    padding: 40px;
    gap: 25px;
    box-shadow: 10px 0 30px rgba(0,0,0,0.15);
    transition: var(--transition-slow);
    z-index: 999;
    border-right: 1px solid var(--border-color);
  }
  
  .nav-menu.open {
    left: 0;
  }
  
  .nav-link {
    color: var(--primary-color);
    font-size: 1.1rem;
    width: 100%;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .header.sticky .mobile-toggle svg {
    stroke: var(--primary-color);
  }
  
  .header.sticky .nav-menu {
    top: 70px;
    height: calc(100vh - 70px);
  }
}

/* Premium Scroll Reveal Animation system */
.reveal-fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-fade.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.7s cubic-bezier(0.25, 1, 0.5, 1), transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-stagger.revealed > * {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.revealed > *:nth-child(1) { transition-delay: 0.1s; }
.reveal-stagger.revealed > *:nth-child(2) { transition-delay: 0.22s; }
.reveal-stagger.revealed > *:nth-child(3) { transition-delay: 0.34s; }
.reveal-stagger.revealed > *:nth-child(4) { transition-delay: 0.46s; }
.reveal-stagger.revealed > *:nth-child(5) { transition-delay: 0.58s; }
.reveal-stagger.revealed > *:nth-child(6) { transition-delay: 0.7s; }

