/* ===== style.css - Pacific Manufacturers ===== */
:root {
  --navy: #0B2A4A;
  --crimson: #D43F4A;
  --gold: #E3B35C;
  --offwhite: #F9F6F0;
  --gray-light: #F0F2F5;
  --text-dark: #1A2A3A;
  --shadow-sm: 0 8px 20px rgba(11,42,74,0.08);
  --shadow-hover: 0 20px 30px -10px rgba(212,63,74,0.2);
}

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

body {
  font-family: 'Outfit', sans-serif;
  color: var(--text-dark);
  scroll-behavior: smooth;
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
}

/* ===== IMAGE HANDLING ===== */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Fallback for missing images */
img[onerror] {
  background-color: var(--navy);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  min-height: 100px;
}

img[onerror]::before {
  content: attr(alt);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  padding: 1rem;
  font-size: 1.2rem;
  font-weight: 500;
  color: white;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  z-index: 2;
}

img[onerror]::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--navy), var(--crimson));
  z-index: 1;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 {
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 2.5rem;
  position: relative;
  display: inline-block;
  color: var(--navy);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 5px;
  background: var(--crimson);
  border-radius: 4px;
}

.text-crimson { color: var(--crimson); }
.bg-crimson { background-color: var(--crimson); }
.bg-navy { background-color: var(--navy); }
.bg-light { background-color: var(--gray-light); }

/* ===== BUTTONS ===== */
.btn-crimson {
  background-color: var(--crimson);
  color: white;
  font-weight: 600;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  border: 2px solid transparent;
  box-shadow: 0 10px 20px -8px rgba(212,63,74,0.3);
}

.btn-crimson:hover {
  background-color: transparent;
  color: var(--crimson);
  border-color: var(--crimson);
  transform: translateY(-3px);
  box-shadow: 0 15px 25px -8px rgba(212,63,74,0.4);
}

.btn-crimson-sm {
  background-color: var(--crimson);
  color: white;
  font-weight: 600;
  padding: 0.6rem 1.5rem;
  border-radius: 40px;
  text-decoration: none;
  transition: 0.3s;
  border: 2px solid transparent;
}

.btn-crimson-sm:hover {
  background-color: transparent;
  color: var(--crimson);
  border-color: var(--crimson);
}

.btn-outline {
  border: 2px solid white;
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
  font-weight: 500;
}

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

/* ===== NAVIGATION - PERFECT PADDING ===== */
.navbar {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  padding: 1rem 0;
  transition: all 0.3s;
  z-index: 1000;
  width: 100%;
}

/* Just a tiny bit of padding - less than half inch */
.navbar .container {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 10px !important;  /* Small padding on left */
  padding-right: 10px !important; /* Small padding on right */
  width: 100%;
}

/* Remove container-fluid padding if used */
.container-fluid {
  padding-left: 10px !important;
  padding-right: 10px !important;
}

/* Logo styling with minimal spacing */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 0;
  padding-left: 0;
  margin-right: auto;
}

.logo-img {
  height: 45px;
  width: auto;
}

.brand-text {
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--navy);
  line-height: 1;
}

/* Navbar toggler positioning */
.navbar-toggler {
  margin-right: 0;
  border: none;
  padding: 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

/* Navigation links */
.navbar-nav {
  margin-left: auto;
}

.nav-link {
  font-weight: 500;
  color: var(--navy) !important;
  padding: 0.5rem 1rem !important;
  margin: 0 0.1rem;
  border-radius: 30px;
  transition: 0.2s;
}

.nav-link:hover,
.nav-link.active {
  background-color: var(--crimson);
  color: white !important;
}

.nav-cta {
  margin-left: 0.5rem;
}

.nav-cta .btn-crimson-sm {
  padding: 0.5rem 1.2rem;
  font-size: 0.9rem;
}

/* Mobile adjustments */
@media (max-width: 991px) {
  .navbar .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  
  .navbar-brand {
    gap: 0.3rem;
  }
  
  .logo-img {
    height: 40px;
  }
  
  .brand-text {
    font-size: 1.2rem;
  }
  
  .navbar-nav {
    margin-left: 0;
    margin-top: 1rem;
  }
  
  .nav-cta {
    margin-left: 0;
    margin-top: 0.5rem;
  }
  
  .nav-cta .btn-crimson-sm {
    width: 100%;
    text-align: center;
  }
}

/* Extra small devices */
@media (max-width: 575px) {
  .navbar .container {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
}

/* ===== HERO SLIDER ===== */
.hero-slider {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.hero-slider .carousel {
  width: 100%;
  position: relative;
}

.hero-slider .carousel-inner {
  width: 100%;
  position: relative;
}

.hero-slider .carousel-item {
  height: 80vh;
  min-height: 500px;
  max-height: 800px;
  width: 100%;
  position: relative;
  background-color: var(--navy);
  overflow: hidden;
}

.hero-slider .carousel-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  object-position: center;
  margin: 0;
  padding: 0;
}

.hero-slider .carousel-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(11,42,74,0.4), rgba(212,63,74,0.2));
  z-index: 1;
  pointer-events: none;
}

.carousel-caption {
  position: absolute;
  z-index: 2;
  background: linear-gradient(90deg, rgba(11,42,74,0.85), rgba(212,63,74,0.85));
  backdrop-filter: blur(5px);
  border-radius: 20px;
  padding: 2.5rem;
  bottom: 15%;
  max-width: 600px;
  left: 10%;
  right: auto;
  text-align: left;
  box-shadow: 0 20px 30px -10px rgba(0,0,0,0.3);
}

.carousel-caption h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-family: 'Playfair Display', serif;
  margin-bottom: 1rem;
  line-height: 1.2;
  color: white;
}

.carousel-caption p {
  font-size: clamp(1rem, 2vw, 1.3rem);
  margin-bottom: 1.5rem;
  opacity: 0.95;
  color: white;
}

.carousel-control-prev,
.carousel-control-next {
  z-index: 3;
  width: 50px;
  height: 50px;
  background: rgba(212,63,74,0.5);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 20px;
  opacity: 0.8;
  transition: all 0.3s;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: var(--crimson);
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
}

.carousel-indicators {
  z-index: 3;
  bottom: 30px;
  margin-bottom: 0;
}

.carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: white;
  margin: 0 6px;
  opacity: 0.7;
  transition: all 0.3s;
}

.carousel-indicators button:hover {
  opacity: 1;
  transform: scale(1.2);
}

.carousel-indicators button.active {
  background-color: var(--crimson);
  opacity: 1;
  transform: scale(1.2);
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--navy);
  color: white;
  padding: 3rem 0;
  margin-top: -1px;
}

.stat-item {
  padding: 1rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--crimson);
  line-height: 1.2;
}

.stat-label {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* ===== SECTION PADDING ===== */
.section-padding {
  padding: 6rem 0;
}

/* ===== ABOUT CARDS ===== */
.about-grid-item {
  background: white;
  border-radius: 30px;
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(212,63,74,0.1);
  height: 100%;
  transition: 0.3s;
}

.about-grid-item:hover {
  border-color: var(--crimson);
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.about-grid-item h4 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--navy);
}

.about-grid-item .lead {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-dark);
}

.stat-highlight {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--crimson);
  line-height: 1;
  display: inline-block;
  margin-right: 0.5rem;
}

.certification-badge .badge {
  background: var(--offwhite);
  padding: 0.7rem 1.2rem;
  margin-right: 0.8rem;
  border-radius: 40px;
  color: var(--navy);
  font-weight: 500;
  font-size: 0.95rem;
}

.certification-badge .badge i {
  color: var(--crimson);
  margin-right: 0.5rem;
}

.timeline-marker {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 2px dashed rgba(212,63,74,0.2);
  font-weight: 600;
  color: var(--navy);
}

.timeline-marker span {
  position: relative;
}

.timeline-marker span::before {
  content: '';
  position: absolute;
  top: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: var(--crimson);
  border-radius: 50%;
}

/* ===== PRODUCT CARDS ===== */
.product-card {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: 0.3s;
  cursor: pointer;
  height: 100%;
}

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

.product-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  width: 100%;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

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

.product-overlay {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  padding: 2rem;
  background: linear-gradient(transparent, rgba(11,42,74,0.95));
  color: white;
  transition: bottom 0.3s ease;
}

.product-card:hover .product-overlay {
  bottom: 0;
}

.product-overlay h5 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.product-overlay p {
  margin-bottom: 1rem;
  opacity: 0.9;
}

/* ===== FIXED TEAM CARDS ===== */
.profile-card {
  background: white;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: 0.3s;
  height: 100%;
}

.profile-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.profile-img-wrapper {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
  background-color: var(--navy);
}

.profile-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  background-color: var(--navy);
  transition: transform 0.5s;
}

.profile-card:hover .profile-img-wrapper img {
  transform: scale(1.05);
}

.social-links {
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 1rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  transition: bottom 0.3s;
}

.profile-card:hover .social-links {
  bottom: 0;
}

.social-links a {
  color: white;
  background: var(--crimson);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.3s;
}

.social-links a:hover {
  background: var(--navy);
  transform: scale(1.1);
}

.profile-card .card-body {
  padding: 2rem;
}

.profile-card h4 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--navy);
}

.badge-citizen {
  background-color: var(--offwhite);
  border-left: 5px solid var(--crimson);
  padding: 0.4rem 1.2rem;
  font-weight: 500;
  border-radius: 0 30px 30px 0;
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.position {
  font-weight: 700;
  color: var(--crimson);
  margin: 0.5rem 0;
  font-size: 1.1rem;
}

.bio {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===== DIRECTORS CARDS ===== */
.director-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  padding: 2.5rem;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.2);
  transition: 0.3s;
  height: 100%;
}

.director-card:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-5px);
  border-color: var(--crimson);
}

.director-signature {
  height: 70px;
  margin-bottom: 1.5rem;
  filter: brightness(0) invert(1);
}

.director-card h4 {
  color: white;
  margin-bottom: 0.5rem;
  font-size: 1.6rem;
}

.director-card p {
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
}

.director-card .small {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

/* ===== CONTACT SECTION ===== */
.contact-info {
  margin-top: 2rem;
}

.contact-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.contact-icon {
  width: 55px;
  height: 55px;
  background: var(--crimson);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(212,63,74,0.2);
}

.contact-item h5 {
  margin-bottom: 0.25rem;
  color: var(--navy);
  font-size: 1.2rem;
}

.contact-item p {
  color: var(--text-dark);
  margin-bottom: 0;
  line-height: 1.5;
}

.contact-item a {
  color: var(--text-dark);
  text-decoration: none;
  transition: 0.3s;
}

.contact-item a:hover {
  color: var(--crimson);
}

.contact-form-wrapper {
  background: white;
  padding: 2.5rem;
  border-radius: 30px;
  box-shadow: var(--shadow-sm);
}

.contact-form-wrapper h3 {
  color: var(--navy);
  margin-bottom: 2rem;
}

.contact-form-wrapper .form-control {
  padding: 0.8rem 1.2rem;
  border-radius: 15px;
  border: 1px solid #e0e0e0;
  font-size: 1rem;
}

.contact-form-wrapper .form-control:focus {
  border-color: var(--crimson);
  box-shadow: 0 0 0 3px rgba(212,63,74,0.1);
  outline: none;
}

/* ===== NEWSLETTER ===== */
.newsletter-section {
  margin-top: 5rem;
}

.newsletter-box {
  background: linear-gradient(135deg, var(--offwhite), #ffffff);
  padding: 3.5rem;
  border-radius: 60px;
  text-align: center;
  border: 1px solid var(--crimson);
  box-shadow: var(--shadow-sm);
}

.newsletter-box h4 {
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 1rem;
}

.newsletter-box p {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 2rem;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  max-width: 600px;
  margin: 2rem auto;
}

.newsletter-form input {
  flex: 1;
  padding: 1.2rem 1.8rem;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.newsletter-form input:focus {
  outline: 2px solid var(--crimson);
}

.newsletter-form button {
  padding: 1.2rem 2.5rem;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

/* ===== SOCIAL MEDIA ===== */
.social-media {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: 2rem;
}

.social-media h5 {
  margin-right: 1rem;
  color: var(--navy);
}

.social-icon {
  width: 45px;
  height: 45px;
  background: var(--offwhite);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: 0.3s;
  font-size: 1.2rem;
  text-decoration: none;
}

.social-icon:hover {
  background: var(--crimson);
  color: white;
  transform: scale(1.1);
}

/* ===== MAP SECTION ===== */
.map-section {
  margin-top: 3rem;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.map-section iframe {
  display: block;
  width: 100%;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  color: white;
  padding: 5rem 0 2rem;
  margin-top: 4rem;
}

.footer-logo {
  height: 50px;
  filter: brightness(0) invert(1);
  margin-bottom: 1.5rem;
}

.footer h5 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.footer h5::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--crimson);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: var(--crimson);
  padding-left: 8px;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-social a {
  width: 45px;
  height: 45px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: 0.3s;
  text-decoration: none;
  font-size: 1.2rem;
}

.footer-social a:hover {
  background: var(--crimson);
  transform: scale(1.1);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 55px;
  height: 55px;
  background: var(--crimson);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 99;
  box-shadow: 0 5px 20px rgba(212,63,74,0.4);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--navy);
  transform: scale(1.1) translateY(-5px);
}

/* ===== PROGRESS BAR ===== */
.progress {
  background-color: var(--gray-light);
  overflow: hidden;
}

.progress-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .section-padding {
    padding: 5rem 0;
  }
  
  .hero-slider .carousel-item {
    height: 70vh;
    min-height: 450px;
  }
  
  .carousel-caption {
    max-width: 500px;
    padding: 2rem;
  }
  
  .carousel-caption h2 {
    font-size: 2.8rem;
  }
  
  .profile-img-wrapper {
    height: 280px;
  }
}

@media (max-width: 992px) {
  .section-title {
    font-size: 2.2rem;
  }
  
  .hero-slider .carousel-item {
    height: 65vh;
    min-height: 400px;
  }
  
  .carousel-caption {
    max-width: 450px;
    padding: 1.8rem;
    left: 5%;
  }
  
  .carousel-caption h2 {
    font-size: 2.3rem;
  }
  
  .carousel-caption p {
    font-size: 1.1rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .about-grid-item {
    padding: 2rem;
  }
  
  .about-grid-item h4 {
    font-size: 1.5rem;
  }
  
  .profile-img-wrapper {
    height: 260px;
  }
}

@media (max-width: 768px) {
  .navbar-brand .brand-text {
    font-size: 1.2rem;
  }
  
  .hero-slider .carousel-item {
    height: 60vh;
    min-height: 400px;
  }
  
  .carousel-caption {
    left: 5%;
    right: 5%;
    max-width: 90%;
    padding: 1.5rem;
    bottom: 15%;
    text-align: center;
  }
  
  .carousel-caption h2 {
    font-size: 2rem;
  }
  
  .carousel-caption p {
    font-size: 1rem;
  }
  
  .carousel-control-prev,
  .carousel-control-next {
    width: 40px;
    height: 40px;
    margin: 0 10px;
  }
  
  .stats-bar {
    padding: 2rem 0;
  }
  
  .stat-item {
    padding: 0.5rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .stat-label {
    font-size: 0.9rem;
  }
  
  .section-padding {
    padding: 4rem 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .profile-img-wrapper {
    height: 240px;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-box {
    padding: 2rem;
  }
  
  .newsletter-box h4 {
    font-size: 1.5rem;
  }
  
  .contact-form-wrapper {
    padding: 1.5rem;
  }
  
  .footer {
    padding: 3rem 0 1.5rem;
  }
}

@media (max-width: 576px) {
  .hero-slider .carousel-item {
    height: 70vh;
    min-height: 500px;
  }
  
  .carousel-caption {
    padding: 1.2rem;
    bottom: 10%;
  }
  
  .carousel-caption h2 {
    font-size: 1.6rem;
  }
  
  .carousel-caption p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
  
  .carousel-caption .btn-crimson {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .carousel-indicators {
    bottom: 15px;
  }
  
  .carousel-indicators button {
    width: 8px;
    height: 8px;
    margin: 0 4px;
  }
  
  .stat-number {
    font-size: 1.8rem;
  }
  
  .stat-label {
    font-size: 0.8rem;
  }
  
  .about-grid-item {
    padding: 1.5rem;
  }
  
  .about-grid-item h4 {
    font-size: 1.3rem;
  }
  
  .stat-highlight {
    font-size: 2.5rem;
  }
  
  .profile-img-wrapper {
    height: 220px;
  }
  
  .contact-item {
    gap: 1rem;
  }
  
  .contact-icon {
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }
  
  .back-to-top {
    width: 45px;
    height: 45px;
    bottom: 20px;
    right: 20px;
  }
}

/* Landscape mode for mobile */
@media (max-width: 896px) and (orientation: landscape) {
  .hero-slider .carousel-item {
    height: 100vh;
    min-height: 400px;
  }
  
  .carousel-caption {
    padding: 1rem;
    max-width: 70%;
  }
  
  .carousel-caption h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  
  .carousel-caption p {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
  }
  
  .profile-img-wrapper {
    height: 260px;
  }
}

/* ===== ANIMATIONS ===== */
[data-aos] {
  opacity: 0;
  transition: 0.6s;
}

[data-aos].aos-animate {
  opacity: 1;
}

/* ===== UTILITY CLASSES ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.mt-5 { margin-top: 3rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mt-3 { margin-top: 1rem; }
.mb-3 { margin-bottom: 1rem; }
.ms-2 { margin-left: 0.5rem; }
.me-2 { margin-right: 0.5rem; }
.ms-3 { margin-left: 1rem; }

.w-100 { width: 100%; }
.h-100 { height: 100%; }

.d-flex { display: flex; }
.align-items-center { align-items: center; }
.justify-content-center { justify-content: center; }