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

body {
  font-family: 'Inter', sans-serif;
  background-color: #ffffff;
  color: #1e2a3e;
  line-height: 1.5;
  overflow-x: hidden;
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Sticky Social Icons */
.sticky-social {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sticky-social a {
  background: #0a2647;
  color: white;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 22px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}

.sticky-social a:hover {
  background: #c49a6c;
  transform: scale(1.1) translateX(-3px);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #c49a6c;
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.back-to-top:hover {
  background: #0a2647;
  transform: translateY(-3px);
}

/* Header / Nav */
.navbar {
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid #eef2f6;
  transition: box-shadow 0.3s ease;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
 /* padding: 16px 24px; */
  max-width: 1400px;
  margin: 0 auto;
}

.logo-area {
  display: flex;
  align-items: baseline;
  gap: 4px;
  flex-wrap: wrap;
}

.logo-main {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #0a2647;
}

.logo-main span {
  color: #c49a6c;
}

.tagline-logo {
  font-size: 12px;
  font-weight: 500;
  color: #5a6e7c;
  margin-left: 6px;
  letter-spacing: 0.3px;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-weight: 600;
  color: #1e2a3e;
  transition: 0.2s;
  font-size: 16px;
}

.nav-links a:hover,
.nav-links a.active {
  color: #c49a6c;
  border-bottom: 2px solid #c49a6c;
  padding-bottom: 4px;
}

/* Dropdown styles */
.dropdown {
  position: relative;
}

.dropdown-toggle i {
  font-size: 12px;
  margin-left: 6px;
  transition: transform 0.3s;
}

.dropdown:hover .dropdown-toggle i {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 220px;
  box-shadow: 0 15px 30px -12px rgba(0, 0, 0, 0.15);
  border-radius: 16px;
  padding: 12px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 100;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 10px 24px;
  color: #1e2a3e;
  border-bottom: none !important;
  font-weight: 500;
}

.dropdown-menu li a:hover {
  background: #f8fafc;
  color: #c49a6c;
  padding-left: 32px;
}

.mobile-menu {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #0a2647;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #f9fafc 0%, #ffffff 100%);
  padding: 80px 0 70px;
  border-bottom: 1px solid #edf2f7;
}

.hero-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.hero-content {
  flex: 1.2;
}

.hero-badge {
  background: #e9ecef;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 600;
  color: #0a2647;
  margin-bottom: 24px;
}

.hero-content h1 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.2;
  color: #0a2647;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  color: #334155;
  max-width: 90%;
  margin-bottom: 32px;
}

.btn-group {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.btn-primary {
  background: #0a2647;
  color: white;
  padding: 14px 34px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: #c49a6c;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(196, 154, 108, 0.3);
}

.btn-outline {
  border: 2px solid #0a2647;
  color: #0a2647;
  padding: 12px 32px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline:hover {
  background: #0a2647;
  color: white;
  transform: translateY(-2px);
}

.btn-small {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0a2647;
  color: white;
  padding: 10px 26px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 500;
  margin-top: 16px;
  transition: all 0.3s ease;
}

.btn-small:hover {
  background: #c49a6c;
  transform: translateX(5px);
}

.hero-image {
  flex: 0.9;
  background: #eef2f6;
  border-radius: 32px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
}

.image-fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.image-fallback i {
  font-size: 100px;
  color: #c49a6c;
}

/* Stats Section */
.stats-section {
  background: #0a2647;
  padding: 60px 0;
  margin-top: -1px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-item {
  color: white;
}

.stat-number {
  font-size: 48px;
  font-weight: 800;
  color: #c49a6c;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 16px;
  opacity: 0.9;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  font-size: 38px;
  font-weight: 700;
  color: #0a2647;
  position: relative;
  display: inline-block;
  margin-bottom: 16px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #c49a6c;
  border-radius: 2px;
}

.section-sub {
  color: #5a6e7c;
  font-size: 18px;
  margin-top: 20px;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 32px;
  margin: 40px 0 60px;
}

.service-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 32px 28px;
  box-shadow: 0 10px 30px -8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #edf2f7;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.15);
  border-color: #c49a6c;
}

.service-icon {
  width: 80px;
  height: 80px;
  background: #fef5ed;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.service-icon i {
  font-size: 40px;
  color: #c49a6c;
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #0a2647;
}

.service-card p {
  color: #5a6e7c;
  margin-bottom: 20px;
}

.service-link {
  color: #c49a6c;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-link:hover {
  gap: 12px;
  color: #0a2647;
}

/* About Section */
.about-section {
  background: #fefcf8;
  padding: 80px 0;
}

.about-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  align-items: center;
}

.about-text {
  flex: 1;
}

.about-highlight {
  font-size: 20px;
  margin: 20px 0 16px;
  color: #0a2647;
}

.about-more {
  margin-top: 18px;
}

.about-features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 30px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  padding: 10px 20px;
  border-radius: 40px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.feature i {
  color: #c49a6c;
  font-size: 20px;
}

.about-block {
  flex: 1;
  background: #ffffff;
  border-radius: 28px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.1);
}

.about-block img {
  width: 100%;
  border-radius: 20px;
  margin-bottom: 20px;
}

.about-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 20px 0;
}

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

.about-stat .stat-value {
  font-size: 28px;
  font-weight: 800;
  color: #c49a6c;
  display: block;
}

.about-stat .stat-label {
  font-size: 14px;
  color: #5a6e7c;
}

/* Spaces Section */
.spaces-section {
  padding: 80px 0;
}

.space-category {
  margin-bottom: 50px;
  background: #ffffff;
  border-radius: 28px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #edf2f7;
  overflow: hidden;
  transition: all 0.3s ease;
}

.space-category:hover {
  box-shadow: 0 15px 35px -12px rgba(0, 0, 0, 0.12);
}

.category-header {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  padding: 22px 32px;
  border-bottom: 3px solid #c49a6c;
  display: flex;
  align-items: center;
  gap: 15px;
}

.category-header i {
  font-size: 36px;
  color: #c49a6c;
}

.category-header h3 {
  font-size: 28px;
  color: #0a2647;
}

.category-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 32px;
}

.category-desc {
  flex: 2;
}

.category-desc p {
  margin-bottom: 16px;
  color: #334155;
}

.category-desc ul {
  list-style: none;
  margin: 20px 0;
}

.category-desc ul li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.category-desc ul li i {
  color: #c49a6c;
  font-size: 14px;
}

.category-image {
  flex: 1;
  text-align: center;
  background: #fefcf8;
  border-radius: 20px;
  padding: 20px;
}

.category-image img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  height: 200px;
}

.category-image p {
  margin-top: 12px;
  font-weight: 600;
  color: #0a2647;
}

.permitting-banner {
  margin-top: 50px;
  background: linear-gradient(135deg, #0a2647 0%, #1a3a5f 100%);
  border-radius: 28px;
  padding: 40px;
  text-align: center;
  color: white;
}

.permitting-banner i {
  font-size: 48px;
  color: #c49a6c;
  margin-bottom: 16px;
}

.permitting-banner h3 {
  font-size: 28px;
  margin-bottom: 12px;
}

.permitting-banner p {
  opacity: 0.9;
}

/* Testimonials Section */
.testimonials-section {
  background: #f9fafb;
  padding: 80px 0;
}

.testimonials-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-card {
  display: none;
  background: white;
  border-radius: 28px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.08);
}

.testimonial-card.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

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

.testimonial-card i.fa-quote-left {
  font-size: 48px;
  color: #c49a6c;
  opacity: 0.3;
  margin-bottom: 20px;
}

.testimonial-card p {
  font-size: 18px;
  line-height: 1.6;
  color: #334155;
  margin-bottom: 30px;
}

.client-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.client-info img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.client-info h4 {
  font-size: 18px;
  color: #0a2647;
  margin-bottom: 4px;
}

.client-info span {
  font-size: 14px;
  color: #5a6e7c;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.testimonial-prev,
.testimonial-next {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: white;
  border: 1px solid #e2e8f0;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 18px;
}

.testimonial-prev:hover,
.testimonial-next:hover {
  background: #c49a6c;
  color: white;
  border-color: #c49a6c;
}

.testimonial-dots {
  display: flex;
  gap: 10px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active {
  width: 25px;
  background: #c49a6c;
  border-radius: 10px;
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

.contact-info {
  flex: 1;
}

.contact-details {
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
}

.contact-item i {
  width: 50px;
  height: 50px;
  background: #fef5ed;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #c49a6c;
}

.contact-item h4 {
  font-size: 18px;
  margin-bottom: 6px;
  color: #0a2647;
}

.contact-item p {
  color: #5a6e7c;
}

.contact-hours {
  background: #f8fafc;
  padding: 24px;
  border-radius: 20px;
  margin-top: 20px;
}

.contact-hours h4 {
  font-size: 18px;
  margin-bottom: 16px;
  color: #0a2647;
}

.contact-hours p {
  margin-bottom: 8px;
  color: #5a6e7c;
}

.contact-form {
  flex: 1;
  background: #f8fafc;
  padding: 35px;
  border-radius: 28px;
}

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

input,
textarea,
select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  font-family: inherit;
  font-size: 16px;
  transition: all 0.3s;
  background: white;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #c49a6c;
  box-shadow: 0 0 0 3px rgba(196, 154, 108, 0.1);
}

.submit-btn {
  width: 100%;
  justify-content: center;
}

.form-status {
  margin-top: 16px;
  text-align: center;
  padding: 10px;
  border-radius: 12px;
}

.form-status.sending {
  background: #e0f2fe;
  color: #0369a1;
}

.form-status.success {
  background: #dcfce7;
  color: #166534;
}

/* Footer */
footer {
  background: #0a2647;
  color: #cfdfed;
  padding: 60px 0 30px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h3,
.footer-col h4 {
  color: white;
  margin-bottom: 20px;
}

.footer-col p {
  margin-bottom: 12px;
  opacity: 0.8;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #cfdfed;
  text-decoration: none;
  transition: all 0.3s;
}

.footer-col ul li a:hover {
  color: #c49a6c;
  padding-left: 5px;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s;
}

.footer-social a:hover {
  background: #c49a6c;
  transform: translateY(-3px);
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #1f3a5f;
  font-size: 14px;
  opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 42px;
  }
  
  .section-title {
    font-size: 32px;
  }
}

@media (max-width: 850px) {
  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    background: white;
    padding: 20px 0;
    gap: 18px;
    text-align: center;
    position: absolute;
    top: 100%;
    left: 0;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
  }
  
  .nav-links.show {
    display: flex;
  }
  
  .mobile-menu {
    display: block;
  }
  
  .hero-content h1 {
    font-size: 32px;
  }
  
  .sticky-social {
    right: 12px;
    gap: 10px;
  }
  
  .sticky-social a {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }
  
  .container {
    padding: 0 20px;
  }
  
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    display: none;
    background: #f8fafc;
    margin-top: 10px;
    width: 100%;
  }
  
  .dropdown-menu.show-dropdown {
    display: block;
  }
  
  .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
  }
  
  .category-header h3 {
    font-size: 22px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-grid {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-content p {
    max-width: 100%;
  }
  
  .btn-group {
    justify-content: center;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .about-wrap {
    flex-direction: column;
  }
  
  .category-content {
    flex-direction: column;
  }
  
  .contact-grid {
    flex-direction: column;
  }
  
  .testimonial-card {
    padding: 25px;
  }
  
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 550px) {
  .btn-primary,
  .btn-outline {
    padding: 10px 24px;
  }
  
  .hero-content h1 {
    font-size: 28px;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .category-header {
    padding: 16px 20px;
  }
  
  .category-header i {
    font-size: 28px;
  }
  
  .category-header h3 {
    font-size: 20px;
  }
  
  .category-content {
    padding: 20px;
  }
  
  .contact-form {
    padding: 25px;
  }
  
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
    font-size: 18px;
  }
}

/* Loading Animation for Images */
img {
  transition: opacity 0.3s ease;
}

/* Smooth Scroll Behavior */
html {
  scroll-behavior: smooth;
}

/* Selection Color */
::selection {
  background: #c49a6c;
  color: white;
}

.logo-area {
  display: flex;
  align-items: center;
}

.logo-image-only {
  height: 85px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo-link:hover .logo-image-only {
  transform: scale(1.02);
}

@media (max-width: 850px) {
  .logo-image-only {
    height: 45px;
  }
}

@media (max-width: 550px) {
  .logo-image-only {
    height: 38px;
  }
}

/* About Page Specific Styles - Add to your styles.css */

.page-header {
  background: linear-gradient(135deg, #0a2647 0%, #1a3a5f 100%);
  padding: 120px 0 80px;
  text-align: center;
  color: white;
  margin-top: -1px;
}

.page-header h1 {
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 16px;
}

.page-header p {
  font-size: 18px;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  margin-bottom: 30px;
}

.breadcrumb a {
  color: #c49a6c;
  text-decoration: none;
}

.who-we-are {
  padding: 80px 0;
  background: #ffffff;
}

.who-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: center;
}

.who-content {
  flex: 1;
}

.who-highlight {
  font-size: 20px;
  font-weight: 500;
  color: #0a2647;
  margin: 20px 0 16px;
  line-height: 1.4;
}

.who-stats {
  display: flex;
  gap: 40px;
  margin-top: 30px;
  flex-wrap: wrap;
}

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

.who-stat .stat-number {
  font-size: 36px;
  font-weight: 800;
  color: #c49a6c;
  display: block;
}

.who-image {
  flex: 1;
  position: relative;
}

.who-image img {
  width: 100%;
  border-radius: 28px;
  object-fit: cover;
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: #c49a6c;
  padding: 20px 25px;
  border-radius: 20px;
  text-align: center;
  color: white;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.experience-badge span {
  font-size: 32px;
  font-weight: 800;
}

.mission-vision {
  padding: 80px 0;
  background: #f8fafc;
}

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

.mv-card {
  text-align: center;
  padding: 40px 30px;
  background: white;
  border-radius: 28px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.mv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 35px -12px rgba(0,0,0,0.1);
}

.mv-icon {
  width: 80px;
  height: 80px;
  background: #0a2647;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.mv-icon i {
  font-size: 36px;
  color: #c49a6c;
}

.values-section {
  padding: 80px 0;
  background: #ffffff;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.value-item {
  text-align: center;
  padding: 30px 20px;
}

.value-item i {
  font-size: 48px;
  color: #c49a6c;
  margin-bottom: 20px;
}

.services-overview {
  padding: 80px 0;
  background: #fefcf8;
}

.services-grid-about {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-about-card {
  text-align: center;
  padding: 35px 25px;
  background: white;
  border-radius: 24px;
  transition: all 0.3s;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.service-about-card:hover {
  transform: translateY(-5px);
}

.service-about-card i {
  font-size: 48px;
  color: #c49a6c;
  margin-bottom: 20px;
}

.timeline-section {
  padding: 80px 0;
  background: #ffffff;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 50px auto 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: #c49a6c;
}

.timeline-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  position: relative;
}

.timeline-item:nth-child(odd) {
  flex-direction: row-reverse;
}

.timeline-year {
  width: 120px;
  background: #c49a6c;
  color: white;
  padding: 10px 20px;
  border-radius: 40px;
  text-align: center;
  font-weight: 700;
  z-index: 2;
}

.timeline-content {
  width: calc(50% - 40px);
  background: #f8fafc;
  padding: 20px 25px;
  border-radius: 20px;
}

.why-choose {
  padding: 80px 0;
  background: #ffffff;
}

.why-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: center;
}

.why-list {
  list-style: none;
  margin: 30px 0;
}

.why-list li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.why-list li i {
  color: #c49a6c;
  font-size: 20px;
}

.cta-section {
  padding: 70px 0;
  background: linear-gradient(135deg, #0a2647 0%, #1a3a5f 100%);
  text-align: center;
  color: white;
}

.cta-section .btn-primary {
  background: #c49a6c;
}

.cta-section .btn-primary:hover {
  background: white;
  color: #0a2647;
}

/* Responsive */
@media (max-width: 768px) {
  .page-header h1 {
    font-size: 36px;
  }
  
  .timeline::before {
    left: 30px;
  }
  
  .timeline-item,
  .timeline-item:nth-child(odd) {
    flex-direction: column;
    margin-left: 50px;
  }
  
  .timeline-year {
    margin-bottom: 10px;
  }
  
  .timeline-content {
    width: 100%;
  }
  
  .experience-badge {
    position: static;
    margin-top: 20px;
    display: inline-block;
  }
  
  .cta-section h2 {
    font-size: 28px;
  }
}
