/*-----------------------------------*\
  #SWIFTCONNECT LOGISTICS STYLES
\*-----------------------------------*/

/**
 * SwiftConnect Logistics - Kenya Delivery Website
 * Professional logistics and delivery services across Kenya
 */

/*-----------------------------------*\
  #CUSTOM PROPERTIES
\*-----------------------------------*/

:root {
  /* Kenya-inspired color palette */
  --my-black: #0a0a0a;
  --my-blue: #1969f4e9;
  --kenya-green: #d4af37;
  --kenya-white: #ffffff;
  --charcoal-gray: #2c2c2c;
  --warm-gold: #d4af37;
  --warm-beige: #f5f2e8;
  --light-gray: #f8f9fa;
  --border-gray: #e5e5e5;
  --text-gray: #6c757d;
  --success-green: #6c757d;
  --warning-orange: #fd7e14;

  /* Typography */
  --ff-primary: 'Merriweather', serif;
  --ff-secondary: 'Lato', sans-serif;
  --ff-heading: 'Mozilla Text', 'Trebuchet MS', sans-serif;

  --fs-1: clamp(2.5rem, 5vw, 4rem);
  --fs-2: clamp(2rem, 4vw, 3rem);
  --fs-3: clamp(1.75rem, 3vw, 2.5rem);
  --fs-4: clamp(1.5rem, 2.5vw, 2rem);
  --fs-5: 1.25rem;
  --fs-6: 1.125rem;
  --fs-7: 1rem;
  --fs-8: 0.875rem;

  --fw-400: 400;
  --fw-500: 500;
  --fw-600: 600;
  --fw-700: 700;

  /* Spacing */
  --section-padding: 80px;
  --container-padding: 16px;

  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 50px;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/*-----------------------------------*\
  #RESET
\*-----------------------------------*/

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: var(--ff-primary);
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  position: relative;
  background-color: var(--kenya-white);
}
a {
  color: inherit;
  text-decoration: none;
}

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

ul,
ol {
  list-style: none;
}

button,
input,
textarea {
  font: inherit;
  border: none;
  background: none;
}

button {
  cursor: pointer;
}

/*-----------------------------------*\
  #REUSED STYLES
\*-----------------------------------*/

.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section {
  padding: var(--section-padding) 0;
  position: relative;
  background-color: var(--kenya-white);
  margin: 0;
  border-radius: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-weight: var(--fw-600);
  border-radius: var(--radius-full);
  transition: var(--transition-normal);
  cursor: pointer;
  text-align: center;
  border: 2px solid transparent;
  font-size: var(--fs-8);
}

.btn-primary {
  background-color: var(--my-blue);
  color: var(--kenya-white);
  border-color: var(--my-blue);
}

.btn-primary:hover {
  background-color: none;
  border-color: #1969f4e9;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--kenya-green);
  color: var(--kenya-white);
  border-color: var(--kenya-green);
}

.btn-secondary:hover {
  background-color: #1969f4e9;
  border-color: #1969f4e9;
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--kenya-white);
  border-color: var(--kenya-white);
}
.btn-outline-1{
  border: 1.5px solid var(--my-blue);
  border-radius: 20px;
  color: var(--my-blue);
  padding: 15px 20px;
  margin-top: 24px;
  font-weight: var(--fw-500);
  font-size: var(--fs-8);
  width: auto;
  min-width: 120px;
  display: inline-block;
  text-align: center;
}
.btn-outline:hover {
  background-color: transparent;
  border-color: var(--my-blue);
  color: var(--my-blue);
}

.section-title {
  font-family: var(--ff-heading);
  font-size: var(--fs-2);
  font-weight: var(--fw-700);
  color: var(--my-black);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: var(--fs-8);
  font-weight: var(--fw-600);
  color: var(--my-blue);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.grid {
  display: grid;
  gap: 24px;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/*-----------------------------------*\
  #TOP NAVBAR
\*-----------------------------------*/

.top-navbar {
  background-color: var(--my-blue);
  color: var(--kenya-white);
  padding: 8px 0;
  font-size: var(--fs-8);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
}

.top-navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.top-navbar-info {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.top-navbar-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.9);
  transition: var(--transition-fast);
}

.top-navbar-item:hover {
  color: var(--kenya-green);
}

.top-navbar-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-navbar-social-link {
  width: 28px;
  height: 28px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  font-size: 14px;
}

.top-navbar-social-link:hover {
  background-color: var(--kenya-green);
}

/*-----------------------------------*\
  #HEADER
\*-----------------------------------*/

.header {
  position: fixed;
  top: 44px; /* Account for top navbar height */
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: var(--transition-normal);
}

.header-container {
  position: relative;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px var(--container-padding);
}

.logo {
  font-family: var(--ff-heading);
  font-size: var(--fs-4);
  font-weight: var(--fw-700);
  color: var(--my-blue);
}

.logo img {
  height: 70px;
  width: auto;
}

.navbar {
  display: block;
}

.navbar-list {
  display: flex;
  gap: 32px;
  margin: 0;
  padding: 0;
}

.navbar-link {
  font-weight: var(--fw-500);
  color: var(--charcoal-gray);
  transition: var(--transition-fast);
  position: relative;
}

.navbar-link:hover,
.navbar-link.active {
  color: var(--my-blue);
}

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

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

.mobile-menu-btn {
  font-size: 24px;
  color: var(--charcoal-gray);
}

/*-----------------------------------*\
  #HERO
\*-----------------------------------*/

.hero {
  background-image: linear-gradient(to right, rgba(1, 9, 18, 0.6) 100%, rgba(25, 105, 244, 0.914) 50%),
  url('../images/bluelorrybg.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: var(--kenya-white);
  padding-top: calc(var(--section-padding) + 114px); /* Account for both navbars */
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0;
  border-radius: 0;
  backdrop-filter: none;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      rgba(1, 9, 18, 0.9) 0%,
      rgba(255, 255, 255, 0.2) 50%,
      rgba(1, 9, 18, 0.9) 100%);
  z-index: 1;
}

.hero-container {
  display: flex;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
  justify-content: center;
  text-align: center;
}

.hero-content {
  text-align: center;
  max-width: 800px;
}

.hero-title {
  font-family: var(--ff-heading);
  font-size: var(--fs-1);
  font-weight: var(--fw-700);
  line-height: 1.2;
  margin-bottom: 24px;
}

.hero-text {
  font-size: var(--fs-5);
  line-height: 1.7;
  margin-bottom: 32px;
  opacity: 1;
}

.hero-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/*-----------------------------------*\
  #SERVICES & OTHER SECTIONS
\*-----------------------------------*/
/*-----------------------------------*\
  #BOOKING / TRACKING
\*-----------------------------------*/

.service-card {
  background-color: var(--kenya-white);
  padding: 24px 20px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  text-align: left;
  border: 1px solid var(--border-gray);
  font-size: var(--fs-8);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.services-container {
  padding-top: 24px;
}

.services-container > .section-subtitle {
  margin-bottom: 16px;
  display: block;
}

.services-container > .section-title {
  margin-bottom: 16px;
}

.services-container > p {
  color: var(--text-gray);
  margin-bottom: 48px;
  font-size: var(--fs-6);
}

.services-grid {
  margin-top: 32px;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.service-icon {
  width: 48px;
  height: 48px;
  background-color: var(--my-blue);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 18px;
  color: var(--kenya-white);
}

.service-title {
  font-family: var(--ff-heading);
  font-size: var(--fs-5);
  font-weight: var(--fw-600);
  margin-bottom: 12px;
  color: var(--my-black);
}

.service-text {
  color: var(--text-gray);
  margin-bottom: 16px;
  line-height: 1.5;
}

/* Quick Actions Section */
.quick-actions {
  margin: 48px 0;
}

.quick-actions .section-subtitle {
  color: var(--my-blue);
  font-weight: var(--fw-600);
  margin-bottom: 8px;
}

.quick-actions .section-title {
  color: var(--my-black);
  margin-bottom: 32px;
}

/* Booking and Tracking Forms */
.booking-tracking-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 32px;
}

.booking-form-container,
.tracking-form-container {
  background-color: var(--kenya-white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-gray);
}

.booking-tracking-form {
  margin-bottom: 16px;
}

.booking-tracking-label {
  display: block;
  margin-bottom: 8px;
  font-weight: var(--fw-500);
  color: var(--my-black);
  font-size: var(--fs-7);
}

.booking-tracking-input,
.booking-tracking-select {
  width: 100%;
  padding: 12px;
  font-size: var(--fs-7);
  border: 1.5px solid var(--border-gray);
  border-radius: var(--radius-md);
  background-color: #fff;
  transition: all 0.3s ease;
}

.booking-tracking-input:focus,
.booking-tracking-select:focus {
  border-color: var(--my-blue);
  outline: none;
  box-shadow: 0 0 0 2px rgba(25, 105, 244, 0.1);
}

.booking-tracking-button {
  width: 100%;
  margin-top: 24px;
  padding: 14px 24px;
  font-weight: var(--fw-600);
}

/* Tracking Result */
.tracking-result {
  margin-top: 24px;
  padding: 20px;
  background-color: var(--light-gray);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-gray);
}

.tracking-result-title {
  font-size: var(--fs-7);
  font-weight: var(--fw-600);
  color: var(--my-black);
  margin-bottom: 12px;
}

.tracking-result-text {
  font-size: var(--fs-7);
  color: var(--text-gray);
  line-height: 1.6;
}
/* ABOUT SECTION - image left, content right */
.about-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 74px;
}

@media (min-width: 768px) {
  .about-intro {
    grid-template-columns: 1fr 1fr;
  }
  .about-image {
    order: 1; /* image first */
  }
  .about-content {
    order: 2; /* text second */
  }
}

.about-image {
  width: 100%;
  height: 400px;
  background: rgba(245, 242, 232, 0.9);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-6);
  color: var(--text-gray);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* ABOUT TEXT STYLES */
.about-subtitle {
  display: block;
  font-size: var(--fs-7);
  color: var(--my-blue);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-title {
  font-family: var(--ff-heading);
  font-size: var(--fs-3);
  font-weight: var(--fw-700);
  color: var(--my-black);
  margin-bottom: 16px;
}

.about-paragraph {
  font-size: var(--fs-6);
  line-height: 1.6;
  color: var(--text-gray);
  margin-bottom: 16px;
}

.about-subheading {
  font-size: var(--fs-4);
  font-weight: var(--fw-600);
  color: var(--my-black);
  margin-top: 24px;
  margin-bottom: 16px;
}

/* Stats section */
.about-stats {
  margin-top: 32px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
}

.stat-item {
  text-align: left;
  padding: 24px;
  background-color: var(--bg-light);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-4px);
}

.stat-number {
  font-family: var(--ff-heading);
  font-size: var(--fs-2);
  font-weight: var(--fw-700);
  color: var(--my-blue);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.stat-label {
  font-size: var(--fs-8);
  color: var(--text-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}/*-----------------------------------*\
  #PRICING
\*-----------------------------------*/

.pricing {
  background-color: var(--light-gray);
}

.pricing-table {
  background-color: var(--kenya-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin-top: 32px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  overflow: hidden;
}

.pricing-header {
  background-color: var(--my-blue);
  color: var(--kenya-white);
  padding: 24px;
  text-align: center;
  font-size: var(--fs-4);
  font-weight: var(--fw-600);
}

.pricing-body {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding: 32px;
}

.pricing-card {
  background-color: var(--light-gray);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition-normal);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  background-color: var(--kenya-white);
}

.route {
  font-size: var(--fs-6);
  font-weight: var(--fw-600);
  color: var(--my-black);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-gray);
  margin-bottom: 8px;
}

.price-group {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px 16px;
  align-items: center;
}

.label {
  font-size: var(--fs-7);
  font-weight: var(--fw-500);
  color: var(--text-gray);
}

.price {
  font-size: var(--fs-6);
  font-weight: var(--fw-600);
  color: var(--my-blue);
  text-align: right;
}

.pricing-footer {
  margin-top: 32px;
  text-align: center;
}

.pricing-footer p {
  color: var(--text-gray);
  margin-bottom: 16px;
  font-size: var(--fs-8);
}
.testimonial-profile {
  display: flex;
  align-items: center;
  gap: 12px;
}

.profile-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: white;
  font-size: var(--fs-8);
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/*-----------------------------------*\
  #CONTACT
\*-----------------------------------*/

.contact-info {
  background-color: var(--my-blue);
  color: var(--kenya-white);
  padding: 32px;
  border-radius: var(--radius-lg);
  font-size: var(--fs-7);
}

.services-container > p {
  text-align: left;
  margin-bottom: 32px;
  color: var(--text-gray);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  margin-bottom: 16px;
  transition: background-color 0.3s ease;
  border-radius: var(--radius-md);
}

.contact-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.contact-item div {
  line-height: 2;
}

.contact-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: var(--fs-6);
  font-weight: var(--fw-600);
}

.contact-icon {
  font-size: 20px;
  color: var(--kenya-white);
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  transition: background-color 0.3s ease;
}

.contact-item:hover .contact-icon {
  background-color: rgba(255, 255, 255, 0.2);
}

.contact-form {
  background-color: var(--kenya-white);
  padding: 40px;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 30%;
  height: 100%;
  background: linear-gradient(to left, rgba(25, 105, 244, 0.05), transparent);
  z-index: -1;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

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

.form-label {
  display: block;
  font-weight: var(--fw-500);
  margin-bottom: 6px;
  color: var(--my-black);
  font-size: var(--fs-8);
}

.form-group {
  position: relative;
  margin-bottom: 24px;
}

.form-label {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--kenya-white);
  padding: 0 8px;
  font-size: var(--fs-8);
  color: var(--text-gray);
  pointer-events: none;
  transition: all 0.3s ease;
}

.form-group:has(textarea) .form-label {
  top: 24px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 16px;
  border: 2px solid var(--border-gray);
  border-radius: var(--radius-md);
  font-size: var(--fs-7);
  background-color: transparent;
  transition: all 0.3s ease;
  color: var(--my-black);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus,
.form-input:not(:placeholder-shown),
.form-textarea:not(:placeholder-shown),
.form-select:not(:placeholder-shown) {
  outline: none;
  border-color: var(--my-blue);
  background-color: #fff;
}

.form-input:focus ~ .form-label,
.form-textarea:focus ~ .form-label,
.form-select:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label,
.form-textarea:not(:placeholder-shown) ~ .form-label,
.form-select:not(:placeholder-shown) ~ .form-label {
  top: 0;
  font-size: var(--fs-8);
  color: var(--my-blue);
  font-weight: var(--fw-600);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  padding: 12px;
  line-height: 1.6;
}

.full-width {
  width: 100%;
  margin-top: 16px;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.service-features li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border-gray);
  color: var(--text-gray);
  font-size: var(--fs-8);
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-features li:last-child {
  border-bottom: none;
}

.service-features li:before {
  content: '✓';
  color: var(--my-blue);
  font-weight: bold;
}
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-title {
  font-size: 2rem;
  margin: 16px 0;
}

.section-description {
  color: var(--text-gray);
  font-size: 1rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.contact-card {
  background-color: var(--kenya-white);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.contact-info {
  background-color: var(--my-blue);
  color: var(--kenya-white);
}

.contact-info h3 {
  margin-bottom: 24px;
  font-size: 1.25rem;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-icon {
  font-size: 20px;
  background-color: rgba(255,255,255,0.2);
  padding: 12px;
  border-radius: var(--radius-md);
}

.contact-form h3 {
  margin-bottom: 24px;
  font-size: 1.25rem;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

input, select, textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-md);
  font-size: 1rem;
  background-color: #fff;
}

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

button {
  padding: 14px;
  font-size: 1rem;
  background-color: var(--my-blue);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #1a5edb;
}



/*-----------------------------------*\
  #FOOTER
\*-----------------------------------*/

.footer {
  background-color: var(--my-black);
  color: var(--kenya-white);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.footer-section h4 {
  font-family: var(--ff-heading);
  font-size: var(--fs-5);
  font-weight: var(--fw-600);
  margin-bottom: 24px;
  color: var(--kenya-white);
}

.footer-section p,
.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 12px;
  display: block;
  transition: var(--transition-fast);
}

.footer-section a:hover {
  color: var(--my-blue);
}

.social-links {
  display: flex;
  gap: 40px;
  margin-top: 24px;
  flex-wrap: wrap;
}
/*

.social-link {
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 16px;
  color: var(--kenya-white);
}

.social-link:hover {
  background-color: var(--my-blue);
  color: var(--kenya-white);
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(25, 105, 244, 0.2);
}
  */

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  margin-top: 48px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

/*-----------------------------------*\
  #RESPONSIVE
\*-----------------------------------*/

@media (max-width: 767px) {
  .top-navbar {
    display: none; /* Hide on mobile to save space */
  }
  
  .header {
    top: 0;
  }
  
  .hero {
    padding-top: calc(var(--section-padding) + 70px);
  }
  
  .top-navbar-info {
    justify-content: center;
    gap: 16px;
  }
  
  .top-navbar-item {
    font-size: 12px;
  }

  /* Mobile logo fix */
  .logo img {
    height: 45px;
    width: auto;
  }

  /* Mobile button fix */
  .btn {
    padding: 8px 16px;
    font-size: 0.8rem;
    gap: 4px;
  }

  .hero-btn-group .btn {
    padding: 10px 18px;
    font-size: 0.85rem;
  }
}

@media (min-width: 768px) {
  .navbar {
    display: block;
  }

  .mobile-menu-btn {
    display: none;
  }

  .hero-container {
    text-align: center;
  }

  .hero-content {
    text-align: center;
  }

  .hero-btn-group {
    justify-content: center;
  }

  .about-container {
    grid-template-columns: 1fr 1fr;
  }

  .contact-container {
    grid-template-columns: 1fr 1fr;
  }

  .footer-container {
    grid-template-columns: repeat(3, 1fr);
  }

  .pricing-row {
    grid-template-columns: 3fr 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .hero-image {
    height: 500px;
  }

  .footer-container {
    grid-template-columns: repeat(4, 1fr);
  }
}

/*-----------------------------------*\
  #RESPONSIVE FIXES
\*-----------------------------------*/

@media (max-width: 767px) {
  .top-navbar {
    display: none;
  }
  .header {
    top: 0;
    padding: 8px var(--container-padding);
  }
  .navbar {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255,255,255,0.98);
    width: 100%;
    box-shadow: var(--shadow-md);
    padding: 16px;
    flex-direction: column;
    gap: 12px;
  }
  .navbar.show {
    display: flex;
  }
  .navbar-list {
    flex-direction: column;
    gap: 12px;
  }
  .hero {
    padding-top: calc(var(--section-padding) + 70px);
  }
  .hero-title {
    font-size: 1.8rem;
  }
  .hero-text {
    font-size: 1rem;
    line-height: 1.5;
  }
  .section {
    padding: 40px 0;
    margin: 0;
  }
  .grid,
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
  .profile-image {
    width: 70px;
    height: 70px;
  }
  .contact-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .pricing-body {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.5rem;
  }
  .hero-text {
    font-size: 0.95rem;
  }
  .btn {
    padding: 8px 14px;
    font-size: 0.8rem;
  }
  .service-card {
    padding: 16px;
  }
  .section-title {
    font-size: 1.4rem;
  }
  .section-subtitle {
    font-size: 0.75rem;
  }
  
  /* Extra small mobile logo */
  .logo img {
    height: 40px;
    width: auto;
  }

  /* Extra small mobile buttons */
  .hero-btn-group .btn {
    padding: 8px 14px;
    font-size: 0.8rem;
  }
}

/* Navigation fixes */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--my-blue);
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
  background-color: rgba(25, 105, 244, 0.1);
}

.navbar {
  display: block;
}

.navbar-list {
  display: flex;
  gap: 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (max-width: 767px) {
  .mobile-menu-btn {
    display: block;
  }

  .navbar {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    padding: 16px;
    z-index: 1000;
  }

  .navbar.show {
    display: block;
  }

  .navbar-list {
    flex-direction: column;
    gap: 0;
  }

  .navbar-link {
    display: block;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    color: var(--my-black);
    font-weight: var(--fw-500);
    border-bottom: 1px solid var(--border-gray);
  }

  .navbar-list li:last-child .navbar-link {
    border-bottom: none;
  }

  .navbar-link:hover,
  .navbar-link.active {
    background-color: var(--my-blue);
    color: var(--kenya-white);
  }
}