/* DIMOTRANS Group Website - Clean Local Version */
/* Based on https://www.dimotrans-group.com/ */

:root {
  --primary: #233cfb;
  --primary-dark: #1a2ec9;
  --primary-darker: #1424a0;
  --primary-light: #C5e1f8;
  --primary-500: #233cfb;
  --primary-400: #4d63fc;
  --primary-700: #1a2ec9;
  --navy: #050a30;
  --blue-light: #f3f5fb;
  --azure-light: #C5e1f8;
  --gray-100: #f5f5f5;
  --gray-200: #eeeeee;
  --gray-300: #e0e0e0;
  --gray-700: #616161;
  --gray-900: #212121;
  --gray-600: #757575;
  --white: #ffffff;
  --black: #000000;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Cabin', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  color: #343434;
  line-height: 1.6;
  overflow-x: hidden;
  font-size: 16px;
  padding-top: 90px;
}

/* Typography */
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0;
}

h1, .h1 {
  font-size: 3rem;
}

h2, .h2 {
  font-size: 2.5rem;
}

h3, .h3 {
  font-size: 2rem;
}

h4, .h4 {
  font-size: 1.5rem;
}

h6, .h6 {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
}

p {
  margin-bottom: 0;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--primary);
}

/* Utility Classes */
.text-primary, .text-primary-500 {
  color: var(--primary) !important;
}

.text-primary-400 {
  color: var(--primary-400) !important;
}

.text-white {
  color: var(--white) !important;
}

.text-gray-900 {
  color: #343434 !important;
}

.text-gray-700 {
  color: var(--gray-700) !important;
}

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

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

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

.bg-gray-100 {
  background-color: var(--gray-100);
}

.bg-gray-200 {
  background-color: var(--gray-200);
}

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

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

.mr-2 {
  margin-right: 0.5rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-7 {
  margin-bottom: 1.75rem;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-family: 'Cabin', sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  border-radius: 4px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  line-height: 1.5;
}

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
}

.btn-primary-md {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  padding: 0.75rem 1.5rem;
}

.btn-primary-md:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}

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

.btn-secondary-md {
  background-color: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
  padding: 0.75rem 1.5rem;
}

.btn-secondary-md:hover {
  background-color: var(--primary);
  color: var(--white);
}

.btn-tertiary {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

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

.btn-link-md {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
}

.btn-link-md:hover {
  color: var(--primary-dark);
}

.btn-link-secondary {
  color: var(--white);
  text-decoration: none;
  display: block;
  padding: 0.5rem 0;
  transition: color 0.2s ease;
}

.btn-link-secondary:hover {
  color: var(--primary);
}

.icon-footer {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin-right: 0.5rem;
}

/* Header */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.main-header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  background-color: rgba(255, 255, 255, 1);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.logo-section {
  flex: 0 0 auto;
}

.logo-img {
  height: 70px;
  width: auto;
  transition: height 0.3s ease;
}

.main-header.scrolled .logo-img {
  height: 55px;
}

.main-navigation {
  flex: 1;
  display: flex;
  justify-content: flex-start;
  margin-left: 3rem;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: #050a30;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.5rem 0;
  display: block;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.tracking-btn {
  background-color: #050a30;
  color: var(--white);
  border: 1px solid #050a30;
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
  border-radius: 4px;
  text-transform: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.tracking-btn:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.language-selector {
  position: relative;
}

.lang-toggle {
  color: #050a30;
  font-size: 0.95rem;
  padding: 0.75rem 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  font-weight: 600;
  background: rgba(5, 10, 48, 0.05);
  border-radius: 8px;
  border: 2px solid transparent;
  min-width: 85px;
  justify-content: center;
  gap: 0.5rem;
}

.lang-toggle:hover {
  color: var(--primary);
  background: var(--azure-light);
  border-color: var(--primary);
}

.lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 0.75rem);
  right: 0;
  background-color: var(--white);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  min-width: 120px;
  margin-top: 0;
  list-style: none;
  padding: 0.5rem 0;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.language-selector:hover .lang-dropdown {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.25rem;
  color: var(--navy);
  transition: all 0.2s ease;
  font-weight: 500;
  cursor: pointer;
}

.lang-option::before {
  content: '🌐';
  font-size: 1.1rem;
}

.lang-option:hover {
  background-color: var(--blue-light);
  color: var(--primary);
  padding-left: 1.5rem;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 9999;
  position: relative;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
}

.mobile-menu-toggle:hover {
  background: rgba(5, 10, 48, 0.05);
  border-radius: 4px;
}

.mobile-menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background-color: var(--navy);
  margin: 5px auto;
  transition: all 0.3s ease;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .mobile-menu-toggle span {
    display: block !important;
  }
}

.mobile-menu-toggle.active {
  background: rgba(5, 10, 48, 0.08);
  border-radius: 4px;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu (hidden by default, will add mobile styles later) */
@media (max-width: 1024px) {
  .nav-menu {
    gap: 1.5rem;
  }
  
  .main-navigation {
    margin-left: 2rem;
  }
  
  .nav-link {
    font-size: 0.9rem;
  }
  
  body {
    padding-top: 80px;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 60px;
    padding-bottom: 0;
    overflow-x: hidden;
  }
  
  .header-container {
    padding: 0.5rem 0.75rem;
    position: relative;
    display: grid;
    grid-template-columns: 40px 1fr 65px;
    gap: 0.75rem;
    align-items: center;
    min-height: 50px;
    max-width: 100vw;
    width: 100%;
  }
  
  /* Show mobile menu toggle - LEFT SIDE */
  .mobile-menu-toggle {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    grid-column: 1;
    visibility: visible !important;
    opacity: 1 !important;
    align-self: center;
    flex-shrink: 0;
  }
  
  /* Logo adjustments - CENTER */
  .logo-section {
    grid-column: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    min-width: 0;
  }
  
  .logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
  }
  
  .logo-img {
    height: 35px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
  }
  
  .main-header.scrolled .logo-img {
    height: 30px;
  }
  
  /* Language Selector - RIGHT SIDE (visible on mobile header) */
  .header-actions {
    display: flex !important;
    grid-column: 3;
    gap: 0;
    align-items: center;
    justify-content: flex-end;
    flex-shrink: 0;
  }
  
  /* Hide contact buttons, show only language selector */
  .header-actions .tracking-btn {
    display: none !important;
  }
  
  .header-actions .language-selector {
    display: block;
    position: relative;
  }
  
  .header-actions .lang-toggle {
    padding: 0.35rem 0.5rem;
    font-size: 0.75rem;
    min-width: auto;
    white-space: nowrap;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }
  
  .header-actions .lang-dropdown {
    right: 0;
    left: auto;
    min-width: 100px;
    top: calc(100% + 0.5rem);
  }
  
  .header-actions .language-selector:hover .lang-dropdown,
  .header-actions .language-selector.active .lang-dropdown {
    display: block;
    opacity: 1;
    visibility: visible;
  }
  
  /* Mobile Navigation - appears below header */
  .main-navigation {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1003;
    margin: 0;
    order: 4;
    width: 100%;
  }
  
  .main-navigation.active {
    max-height: 100vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  /* Ensure header stays on top */
  .main-header {
    z-index: 1004;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
  }
  
  /* Mobile menu content */
  .nav-menu {
    flex-direction: column;
    padding: 0;
    gap: 0;
    margin: 0;
  }
  
  .nav-item {
    width: 100%;
    border-bottom: 1px solid var(--gray-200);
    margin: 0;
  }
  
  .nav-item:last-child {
    border-bottom: 1px solid var(--gray-200);
  }
  
  .nav-link {
    font-size: 1.05rem;
    padding: 1.2rem 1.5rem;
    display: block;
    text-align: left;
    color: var(--navy);
    transition: all 0.2s ease;
    font-weight: 500;
  }
  
  .nav-link:hover {
    background: var(--blue-light);
    color: var(--primary);
    padding-left: 2rem;
  }
  
  .nav-link.active {
    color: var(--primary);
    background: var(--blue-light);
    border-left: 4px solid var(--primary);
    padding-left: calc(1.5rem - 4px);
  }
  
  /* Mobile Language Selector - inside menu */
  .main-navigation .language-selector {
    width: 100%;
    border-top: 2px solid var(--primary);
    background: var(--blue-light);
    padding: 0.5rem 0;
    display: block;
  }
  
  .main-navigation .lang-toggle {
    width: calc(100% - 3rem);
    margin: 0.5rem 1.5rem;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background: var(--white);
    border: 2px solid var(--primary);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
  }
  
  .main-navigation .lang-toggle:hover {
    background: var(--primary);
    color: var(--white);
  }
  
  .main-navigation .lang-dropdown {
    position: static;
    display: none;
    width: calc(100% - 3rem);
    margin: 0 1.5rem 0.5rem 1.5rem;
    transform: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
  }
  
  .main-navigation .language-selector.active .lang-dropdown {
    display: block;
    opacity: 1;
    visibility: visible;
  }
  
  .lang-option {
    padding: 1rem 1.5rem;
    font-size: 1rem;
    border-bottom: 1px solid var(--gray-200);
  }
  
  .lang-option:last-child {
    border-bottom: none;
  }
  
  .lang-option:hover {
    background: var(--primary);
    color: var(--white);
    padding-left: 1.5rem;
  }
  
  /* Mobile Contact Buttons in Menu */
  .mobile-menu-actions {
    padding: 1.5rem;
    background: var(--gray-100);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    border-top: 2px solid var(--gray-200);
  }
  
  .mobile-menu-actions .tracking-btn {
    width: 100%;
    padding: 1rem;
    font-size: 0.95rem;
    justify-content: center;
    display: flex;
    align-items: center;
  }
  
  /* Prevent body scroll when menu is open */
  body.menu-open {
    overflow: hidden;
  }
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  min-height: 750px;
  display: flex;
  align-items: center;
  background-color: var(--gray-100);
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 8rem 0 10rem;
}

.hero-content h1 {
  color: var(--white);
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.hero-content .h1-home {
  display: block;
  margin-bottom: 0.5rem;
}

.hero-content .text-white {
  color: var(--white);
}

.hero-content .text-primary {
  color: var(--primary);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

/* Services Grid */
.services-grid {
  position: relative;
  z-index: 10;
  margin-top: -7rem;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}

.service-card {
  background-color: var(--white);
  padding: 3.5rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 14rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
  color: #343434;
  font-weight: 400;
}

.service-card:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  color: #343434;
}

.service-icon {
  font-size: 48px;
  color: var(--primary);
  margin-bottom: 1.75rem;
  display: block;
}

.service-card span {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero {
    min-height: 550px;
  }
  
  .hero-content {
    padding: 6rem 0 8rem;
  }
  
  .hero-video {
    /* Ensure video plays on mobile */
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .hero-buttons .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: -4rem;
  }
  
  .service-card {
    padding: 2rem 1rem;
    min-height: 10rem;
  }
  
  /* Add bottom padding to body for fixed footer buttons */
  body {
    padding-bottom: 80px;
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* Checkerboard Section */
.checkerboard {
  position: relative;
  width: 100%;
  background-color: var(--gray-100);
  padding: 4rem 0;
  overflow: hidden;
}

.checkerboard-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.checkerboard-content {
  position: relative;
  margin-left: 50%;
  padding: 4rem 0 4rem 5rem;
}

.checkerboard-content .section-intro {
  max-width: 600px;
}

.checkerboard-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  margin-top: 0.5rem;
}

.checkerboard-content p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.checkerboard-content .btn {
  margin-top: 1rem;
}

@media (max-width: 1024px) {
  .checkerboard-image {
    position: relative;
    width: 100%;
    height: 400px;
  }
  
  .checkerboard-content {
    margin-left: 0;
    padding: 3rem 1.5rem;
  }
  
  .checkerboard-content .section-intro {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .checkerboard-content h2 {
    font-size: 1.75rem;
  }
  
  .checkerboard-content {
    padding: 2rem 1rem;
  }
}

/* Key Numbers Section */
.key-numbers-section {
  position: relative;
  background-color: var(--gray-200);
  padding: 5rem 0;
}

.key-numbers-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-color: var(--white);
}

.key-numbers-content {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 3rem;
  align-items: center;
}

.key-numbers-intro {
  flex: 0 0 33.333%;
  padding-right: 2rem;
}

.key-numbers-intro h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  margin-top: 0.5rem;
}

.key-numbers-intro p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.key-numbers-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  background-color: var(--white);
  padding: 3rem;
  border-radius: 8px 0 0 8px;
}

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

.key-number .key-numbers {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  font-family: 'Oswald', sans-serif;
  line-height: 1;
}

.key-number .h4 {
  font-size: 1.5rem;
  color: var(--primary);
  display: inline;
}

.key-number .h6 {
  font-size: 0.875rem;
  text-transform: none;
  font-weight: 400;
  margin-top: 0.5rem;
}

@media (max-width: 1024px) {
  .key-numbers-content {
    flex-direction: column;
  }
  
  .key-numbers-intro {
    flex: 1;
    width: 100%;
    padding-right: 0;
    text-align: center;
  }
  
  .key-numbers-grid {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    border-radius: 8px;
  }
}

@media (max-width: 768px) {
  .key-numbers-section {
    padding: 3rem 0;
  }
  
  .key-numbers-intro h2 {
    font-size: 1.75rem;
  }
  
  .key-numbers-grid {
    grid-template-columns: 1fr;
    padding: 2rem;
  }
  
  .key-number .key-numbers {
    font-size: 2.5rem;
  }
}

/* Blog Section */
.blog-section {
  background-color: var(--gray-100);
  padding: 5rem 0;
}

.blog-section .section-intro {
  margin-bottom: 4rem;
}

.blog-section h2 {
  font-size: 2.5rem;
}

.blog-posts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.post-card {
  background-color: var(--white);
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
  position: relative;
}

.post-card:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.post-image {
  width: 100%;
  height: 18rem;
  object-fit: cover;
}

.post-tags {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.post-tag {
  background-color: var(--primary);
  color: var(--white);
  padding: 0.375rem 0.75rem;
  border-radius: 0;
  font-size: 0.875rem;
  font-weight: 400;
}

.post-content {
  padding: 1rem;
}

.post-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.4;
  color: #343434;
}

.post-date {
  color: var(--primary-400);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.post-excerpt {
  margin-bottom: 1rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #343434;
}

.post-btn {
  color: var(--primary);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  font-size: 0.9rem;
}

.post-btn i {
  margin-right: 0.5rem;
}

.post-btn:hover {
  color: var(--primary-dark);
}

@media (max-width: 1024px) {
  .blog-posts {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .blog-section {
    padding: 3rem 0;
  }
  
  .blog-section h2 {
    font-size: 1.75rem;
  }
  
  .blog-posts {
    grid-template-columns: 1fr;
  }
  
  .post-image {
    height: 12rem;
  }
}

/* Contact Section */
.contact-section {
  background-color: #050a30;
  color: var(--white);
  padding: 5rem 0;
  position: relative;
}

.contact-content {
  display: flex;
  gap: 5rem;
  align-items: center;
}

.contact-intro {
  flex: 1;
}

.contact-intro h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  margin-top: 0.5rem;
}

.contact-intro p {
  margin-bottom: 2rem;
  line-height: 1.6;
}

.contact-form-wrapper {
  flex: 1;
}

@media (max-width: 1024px) {
  .contact-content {
    flex-direction: column;
    gap: 3rem;
  }
  
  .contact-intro,
  .contact-form-wrapper {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 3rem 0;
  }
  
  .contact-intro h2 {
    font-size: 1.75rem;
  }
}

/* Footer */
.footer {
  background-color: #050a30;
  color: var(--white);
  padding: 4rem 0 0;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo-column {
  padding-right: 2rem;
}

.footer-logo {
  height: 120px;
  width: auto;
  margin-bottom: 2rem;
  filter: brightness(0) invert(1);
}

/* Footer Map Styles */
.footer-map {
  margin-top: 1.5rem;
  width: 100%;
}

.footer-map iframe {
  width: 100%;
  height: 200px;
  border: 0;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  margin-bottom: 1rem;
}

.footer-address {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--white);
  padding: 0.5rem 0;
}

.footer-address i {
  color: var(--primary);
  font-size: 1.1rem;
}

.footer-address span {
  line-height: 1.4;
}

.footer-column h6 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 1rem;
  text-transform: uppercase;
}

.footer-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 0.75rem;
}

.footer-column a {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 400;
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: var(--primary);
}

.footer-social {
  margin-top: 2rem;
}

.footer-social h6 {
  margin-bottom: 1rem;
}

.social-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

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

.social-btn:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  transform: translateY(-3px);
  color: var(--white);
}

.footer-bottom {
  padding: 2rem 0;
  text-align: center;
}

.footer-copyright {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-logo-column {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 3rem 0 0;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-logo-column,
  .footer-column {
    text-align: center;
  }
  
  .social-buttons {
    justify-content: center;
  }
}

/* Responsive Design - Mobile Optimizations */
@media (max-width: 1024px) {
  h1, .h1 {
    font-size: 2.5rem;
  }
  
  h2, .h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  h1, .h1 {
    font-size: 2rem;
  }
  
  h2, .h2 {
    font-size: 1.75rem;
  }
  
  h3, .h3 {
    font-size: 1.5rem;
  }
  
  .container {
    padding: 0 1rem;
  }
}

/* Contact Section Styles */
.contact-section {
  background-color: var(--gray-100);
  padding: 4rem 0;
  position: relative;
}

.contact-wrapper {
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .stat-block {
    min-height: 150px;
    padding: 1.5rem 1rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
}

.contact-intro h2 {
  margin: 1.5rem 0;
  color: #343434;
}

.contact-intro p {
  color: var(--gray-700);
  margin-bottom: 1rem;
}

.contact-image {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 8px;
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Contact Stats Grid */
.contact-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.stat-block {
  background: linear-gradient(135deg, var(--navy) 0%, #0a1555 100%);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 180px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.stat-block:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 8px 25px rgba(35, 60, 251, 0.3);
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--azure-light);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-family: 'Oswald', sans-serif;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.5rem;
  font-family: 'Oswald', sans-serif;
}

.stat-unit {
  font-size: 1rem;
  font-weight: 500;
  color: var(--primary);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: 'Oswald', sans-serif;
}

/* Services Page Styles */
.services-hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, #0a1555 100%);
  padding: 180px 0 100px;
  overflow: hidden;
}

.services-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/rectangular-shape.png') repeat;
  opacity: 0.05;
}

.services-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.services-hero-content h1 {
  color: var(--white);
  font-size: 3rem;
  margin: 1.5rem 0;
}

.hero-description {
  color: var(--azure-light);
  font-size: 1.2rem;
  margin-top: 1rem;
}

.nav-link.active {
  color: var(--primary) !important;
  position: relative;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
}

/* Services Section */
.services-section {
  padding: 80px 0;
  background: var(--white);
}

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 100px;
  padding: 40px 0;
}

.service-detail.reverse {
  direction: rtl;
}

.service-detail.reverse > * {
  direction: ltr;
}

.service-detail-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.service-detail-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-detail-image:hover img {
  transform: scale(1.05);
}

.service-badge {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary) 0%, #4d63fc 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px rgba(35, 60, 251, 0.4);
}

.service-badge i {
  font-size: 2rem;
  color: var(--white);
}

.service-detail-content h2 {
  font-size: 2.5rem;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.service-intro {
  font-size: 1.1rem;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.service-features {
  margin: 2.5rem 0;
}

.feature-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: var(--blue-light);
  border-radius: 8px;
  border-left: 4px solid var(--primary);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: var(--azure-light);
  transform: translateX(10px);
}

.feature-item i {
  font-size: 2rem;
  color: var(--primary);
  min-width: 40px;
}

.feature-item h4 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
  font-family: 'Oswald', sans-serif;
}

.feature-item p {
  color: var(--gray-700);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Why Choose Us Section */
.why-choose-us {
  background: var(--blue-light);
  padding: 80px 0;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.advantage-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.advantage-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: 0 8px 30px rgba(35, 60, 251, 0.2);
}

.advantage-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary) 0%, #4d63fc 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.advantage-icon i {
  font-size: 2rem;
  color: var(--white);
}

.advantage-card h3 {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 1rem;
  font-family: 'Oswald', sans-serif;
}

.advantage-card p {
  color: var(--gray-700);
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, #0a1555 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/rectangular-shape.png') repeat;
  opacity: 0.05;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.2rem;
  color: var(--azure-light);
  margin-bottom: 2.5rem;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive Services Page */
@media (max-width: 1024px) {
  .services-hero-content h1 {
    font-size: 2.5rem;
  }
  
  .service-detail {
    gap: 3rem;
  }
  
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-hero {
    padding: 140px 0 60px;
  }
  
  .services-hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .service-detail {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 60px;
  }
  
  .service-detail.reverse {
    direction: ltr;
  }
  
  .service-detail-image img {
    height: 300px;
  }
  
  .service-detail-content h2 {
    font-size: 1.75rem;
  }
  
  .advantages-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-content h2 {
    font-size: 1.75rem;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
}

/* About Page Styles */
.about-hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, #0a1555 100%);
  padding: 180px 0 100px;
  overflow: hidden;
}

.about-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/rectangular-shape.png') repeat;
  opacity: 0.05;
}

.about-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.about-hero-content h1 {
  color: var(--white);
  font-size: 3.5rem;
  margin: 1.5rem 0;
}

.about-section {
  padding: 80px 0;
}

.about-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--navy);
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--gray-700);
  margin-bottom: 1.5rem;
}

/* Vision & Mission */
.vision-mission-section {
  background: var(--blue-light);
  padding: 80px 0;
}

.vm-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.vm-card {
  background: var(--white);
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.vm-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(35, 60, 251, 0.2);
}

.vm-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary) 0%, #4d63fc 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.vm-icon i {
  font-size: 2rem;
  color: var(--white);
}

.vm-card h3 {
  font-size: 1.75rem;
  color: var(--navy);
  margin-bottom: 1rem;
  font-family: 'Oswald', sans-serif;
}

.vm-card p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--gray-700);
}

/* Values Section */
.values-section {
  padding: 80px 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.value-card {
  position: relative;
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.value-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: 0 8px 30px rgba(35, 60, 251, 0.2);
}

.value-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 3rem;
  font-weight: 700;
  color: var(--azure-light);
  font-family: 'Oswald', sans-serif;
  opacity: 0.3;
}

.value-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary) 0%, #4d63fc 100());
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.value-icon i {
  font-size: 1.75rem;
  color: var(--white);
}

.value-card h3 {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 1rem;
  font-family: 'Oswald', sans-serif;
}

.value-card p {
  color: var(--gray-700);
  line-height: 1.6;
}

/* Team Section */
.team-section {
  background: var(--blue-light);
  padding: 80px 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.team-member {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 35px rgba(35, 60, 251, 0.2);
}

.team-photo {
  position: relative;
  overflow: hidden;
  height: 350px;
}

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

.team-member:hover .team-photo img {
  transform: scale(1.1);
}

.team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(5, 10, 48, 0.9) 0%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.team-member:hover .team-overlay {
  opacity: 1;
}

.team-social {
  display: flex;
  gap: 1rem;
}

.team-social-btn {
  width: 45px;
  height: 45px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: all 0.3s ease;
}

.team-social-btn:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

.team-info {
  padding: 2rem;
}

.team-info h3 {
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
  font-family: 'Oswald', sans-serif;
}

.team-role {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.team-bio {
  color: var(--gray-700);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Why Us Section */
.why-us-section {
  padding: 80px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}

.why-item {
  text-align: center;
  padding: 2rem;
  background: var(--blue-light);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.why-item:hover {
  background: var(--white);
  box-shadow: 0 5px 20px rgba(35, 60, 251, 0.15);
  transform: translateY(-5px);
}

.why-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary) 0%, #4d63fc 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.why-icon i {
  font-size: 1.75rem;
  color: var(--white);
}

.why-item h4 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
  font-family: 'Oswald', sans-serif;
}

.why-item p {
  color: var(--gray-700);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Responsive About Page */
@media (max-width: 1024px) {
  .about-hero-content h1 {
    font-size: 2.75rem;
  }
  
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-hero {
    padding: 140px 0 60px;
  }
  
  .about-hero-content h1 {
    font-size: 2rem;
  }
  
  .about-content-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .about-image img {
    height: 300px;
  }
  
  .about-text h2 {
    font-size: 1.75rem;
  }
  
  .vm-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* Blog Page Styles */
.blog-hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, #0a1555 100%);
  padding: 180px 0 100px;
  overflow: hidden;
}

.blog-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/rectangular-shape.png') repeat;
  opacity: 0.05;
}

.blog-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.blog-hero-content h1 {
  color: var(--white);
  font-size: 3.5rem;
  margin: 1.5rem 0;
}

/* Blog Categories */
.blog-categories {
  background: var(--white);
  padding: 2rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 90px;
  z-index: 100;
}

.categories-filter {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.category-btn {
  padding: 0.75rem 1.5rem;
  background: var(--blue-light);
  border: 2px solid transparent;
  border-radius: 50px;
  font-family: 'Cabin', sans-serif;
  font-weight: 500;
  color: var(--navy);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.category-btn i {
  font-size: 1rem;
}

.category-btn:hover {
  background: var(--azure-light);
  transform: translateY(-2px);
}

.category-btn.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* Blog Articles Section */
.blog-articles-section {
  padding: 80px 0;
  background: var(--blue-light);
}

/* Featured Article */
.featured-article {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 4rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.featured-image {
  position: relative;
  overflow: hidden;
}

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

.featured-article:hover .featured-image img {
  transform: scale(1.05);
}

.featured-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(135deg, var(--primary) 0%, #4d63fc 100%);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(35, 60, 251, 0.4);
}

.featured-content {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-content h2 {
  font-size: 2rem;
  color: var(--navy);
  margin: 1.5rem 0 1rem;
  line-height: 1.3;
}

.featured-content p {
  font-size: 1.1rem;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* Articles Grid */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-article {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  opacity: 1;
  transform: translateY(0);
}

.blog-article:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(35, 60, 251, 0.15);
}

.article-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

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

.blog-article:hover .article-image img {
  transform: scale(1.1);
}

.article-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(5, 10, 48, 0.7) 0%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.blog-article:hover .article-overlay {
  opacity: 1;
}

.read-more-btn {
  width: 50px;
  height: 50px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.read-more-btn:hover {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.1);
}

.article-content {
  padding: 1.5rem;
}

.article-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.85rem;
}

.article-date {
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.article-category {
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.article-category.conseils {
  background: #e3f2fd;
  color: #1976d2;
}

.article-category.guides {
  background: #f3e5f5;
  color: #7b1fa2;
}

.article-category.actualites {
  background: #e8f5e9;
  color: #388e3c;
}

.article-category.temoignages {
  background: #fff3e0;
  color: #f57c00;
}

.article-reading {
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.article-content h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
  line-height: 1.4;
  font-family: 'Oswald', sans-serif;
}

.article-content > p {
  color: var(--gray-700);
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.article-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-200);
}

.article-link {
  color: var(--primary);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.3s ease;
}

.article-link:hover {
  gap: 0.8rem;
}

/* Load More */
.blog-load-more {
  text-align: center;
  margin-top: 3rem;
}

/* Newsletter Section */
.newsletter-section {
  background: linear-gradient(135deg, var(--navy) 0%, #0a1555 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/rectangular-shape.png') repeat;
  opacity: 0.05;
}

.newsletter-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  padding: 2.5rem 3rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.newsletter-icon {
  width: 70px;
  height: 70px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.newsletter-icon i {
  font-size: 2rem;
  color: var(--white);
}

.newsletter-text h2 {
  color: var(--white);
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.newsletter-text p {
  color: var(--azure-light);
  font-size: 1rem;
}

.newsletter-form form {
  display: flex;
  gap: 1rem;
  min-width: 400px;
}

.newsletter-form input {
  flex: 1;
  padding: 1rem 1.5rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-family: 'Cabin', sans-serif;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.15);
}

/* Responsive Blog Page */
@media (max-width: 1024px) {
  .blog-hero-content h1 {
    font-size: 2.75rem;
  }
  
  .featured-article {
    grid-template-columns: 1fr;
  }
  
  .articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .newsletter-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .newsletter-icon {
    margin: 0 auto;
  }
  
  .newsletter-form form {
    min-width: auto;
  }
}

@media (max-width: 768px) {
  .blog-hero {
    padding: 140px 0 60px;
  }
  
  .blog-hero-content h1 {
    font-size: 2rem;
  }
  
  .blog-categories {
    top: 70px;
  }
  
  .categories-filter {
    gap: 0.5rem;
  }
  
  .category-btn {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }
  
  .featured-content {
    padding: 2rem;
  }
  
  .featured-content h2 {
    font-size: 1.5rem;
  }
  
  .articles-grid {
    grid-template-columns: 1fr;
  }
  
  .newsletter-content {
    padding: 2rem 1.5rem;
  }
  
  .newsletter-form form {
    flex-direction: column;
  }
}

/* Contact Page Styles */
.contact-hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, #0a1555 100%);
  padding: 180px 0 100px;
  overflow: hidden;
}

.contact-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/rectangular-shape.png') repeat;
  opacity: 0.05;
}

.contact-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.contact-hero-content h1 {
  color: var(--white);
  font-size: 3.5rem;
  margin: 1.5rem 0;
}

/* Contact Info Section */
.contact-info-section {
  padding: 80px 0;
  background: var(--blue-light);
  margin-top: -60px;
  position: relative;
  z-index: 10;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.contact-info-card {
  background: var(--white);
  padding: 3rem 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(35, 60, 251, 0.15);
}

.contact-info-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary) 0%, #4d63fc 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.contact-info-icon i {
  font-size: 2rem;
  color: var(--white);
}

.contact-info-card h3 {
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 1rem;
  font-family: 'Oswald', sans-serif;
}

.contact-info-card p {
  color: var(--gray-700);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.contact-info-link {
  display: inline-flex;
  align-items: center;
  color: var(--primary);
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-info-link:hover {
  gap: 0.5rem;
}

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

.contact-form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
}

.contact-form-intro h2 {
  font-size: 2.5rem;
  color: var(--navy);
  margin-bottom: 1rem;
}

.contact-form-intro > p {
  font-size: 1.1rem;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.contact-features {
  margin: 2rem 0;
}

.contact-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--gray-700);
}

.contact-feature i {
  color: var(--primary);
  font-size: 1.25rem;
}

.contact-cta-box {
  background: var(--blue-light);
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid var(--primary);
  margin-top: 2.5rem;
}

.contact-cta-box h4 {
  color: var(--navy);
  margin-bottom: 0.75rem;
  font-family: 'Oswald', sans-serif;
}

.contact-cta-box p {
  color: var(--gray-700);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.contact-form-container {
  background: var(--white);
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.contact-form .form-group {
  margin-bottom: 1.5rem;
}

.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--navy);
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--gray-200);
  border-radius: 8px;
  font-family: 'Cabin', sans-serif;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(35, 60, 251, 0.1);
}

.contact-form textarea {
  resize: vertical;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin-top: 0.25rem;
}

.checkbox-label span {
  font-weight: 400;
  font-size: 0.9rem;
}

.checkbox-label a {
  color: var(--primary);
  text-decoration: underline;
}

.submit-btn {
  width: 100%;
  margin-top: 1rem;
}

.form-message {
  text-align: center;
  padding: 3rem;
  border-radius: 12px;
}

.form-message i {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.form-message.success {
  background: #e8f5e9;
  color: #2e7d32;
}

.form-message.success i {
  color: #4caf50;
}

.form-message.error {
  background: #ffebee;
  color: #c62828;
}

.form-message.error i {
  color: #f44336;
}

.form-message h3 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

/* Map Section */
.map-section {
  margin-bottom: -8px;
}

.map-container {
  width: 100%;
  height: 450px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(0.3);
}

/* Responsive Contact Page */
@media (max-width: 1024px) {
  .contact-hero-content h1 {
    font-size: 2.75rem;
  }
  
  .contact-form-wrapper {
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 140px 0 60px;
  }
  
  .contact-hero-content h1 {
    font-size: 2rem;
  }
  
  .contact-info-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-form-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-form-container {
    padding: 2rem;
  }
  
  .map-container {
    height: 300px;
  }
}

/* Packs Conseils Section */
.packs-section {
  background: linear-gradient(135deg, #f8f9fd 0%, #ffffff 100%);
  padding: 80px 0;
  position: relative;
}

.packs-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--primary) 50%, transparent 100%);
}

.packs-section .section-intro {
  margin-bottom: 4rem;
}

.packs-section .section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-700);
  max-width: 600px;
  margin: 1rem auto 0;
}

@media (max-width: 768px) {
  .packs-section {
    padding: 60px 0;
  }
  
  .packs-section .section-intro {
    margin-bottom: 3rem;
  }
  
  .packs-section .section-subtitle {
    font-size: 1rem;
  }
}

/* Packs Conseils Cards */
.packs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .packs-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.pack-card {
  position: relative;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.pack-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(35, 60, 251, 0.2);
}

.pack-card.pack-featured {
  border: 2px solid var(--primary);
  box-shadow: 0 6px 25px rgba(35, 60, 251, 0.15);
}

.pack-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--primary);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.pack-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
  position: relative;
}

.pack-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.pack-card:hover .pack-image img {
  transform: scale(1.08);
}

.pack-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pack-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  gap: 1rem;
}

.pack-header h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin: 0;
  flex: 1;
}

.pack-price {
  text-align: right;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 1rem 1.25rem;
  border-radius: 8px;
  min-width: 140px;
}

.pack-price .price {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.pack-price .price-detail {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.pack-price .price-detail em {
  font-style: normal;
  font-weight: 300;
}

.pack-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  flex: 1;
}

.pack-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray-200);
  color: #343434;
  font-size: 0.95rem;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

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

.pack-features li i {
  color: var(--primary);
  font-size: 1.1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.pack-features li strong {
  color: var(--navy);
  font-weight: 600;
}

@media (max-width: 768px) {
  .pack-image {
    height: 220px;
  }
  
  .pack-content {
    padding: 1.5rem;
  }
  
  .pack-header {
    flex-direction: column;
  }
  
  .pack-price {
    width: 100%;
    text-align: center;
    min-width: unset;
  }
  
  .pack-header h4 {
    font-size: 1.3rem;
    text-align: center;
  }
  
  .pack-features li {
    font-size: 0.9rem;
    padding: 0.6rem 0;
  }
}

/* Partners Section */
.partners-section {
  background: var(--white);
  padding: 60px 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  overflow: hidden;
}

.partners-header {
  text-align: center;
  margin-bottom: 3rem;
}

.partners-header h2 {
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.partners-header p {
  color: var(--gray-700);
  font-size: 1.1rem;
}

.partners-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.partners-track {
  display: flex;
  gap: 4rem;
  animation: scroll 30s linear infinite;
}

.partners-track:hover {
  animation-play-state: paused;
}

.partner-logo {
  flex-shrink: 0;
  width: 200px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: var(--white);
  border-radius: 8px;
  transition: all 0.3s ease;
  filter: grayscale(100%) opacity(0.7);
}

.partner-logo:hover {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.05);
}

.partner-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .partners-track {
    gap: 2rem;
  }
  
  .partner-logo {
    width: 150px;
    height: 80px;
  }
  
  .partners-header h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .contact-image {
    height: 300px;
  }
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .contact-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

.contact-card {
  background-color: var(--white);
  padding: 2.5rem 2rem;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.contact-card-icon {
  font-size: 3rem;
  color: var(--primary);
}

.contact-card h6 {
  color: #343434;
  margin: 0;
  font-size: 1.1rem;
}

.contact-card .btn {
  margin-top: 0.5rem;
}

/* Image Animations */
.image-animate {
  opacity: 0;
  transform: scale(0.95) translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.image-animate.image-visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* Specific animations for different image types */
img.image-animate {
  filter: blur(5px);
}

img.image-animate.image-visible {
  filter: blur(0);
  transition: opacity 0.8s ease, transform 0.8s ease, filter 0.8s ease;
}

.checkerboard-image.image-animate {
  transform: scale(0.9);
}

.checkerboard-image.image-animate.image-visible {
  transform: scale(1);
  transition: opacity 1s ease, transform 1s ease;
}

.contact-image.image-animate {
  transform: translateX(-30px);
}

.contact-image.image-animate.image-visible {
  transform: translateX(0);
}

.post-image.image-animate {
  transform: scale(0.9) rotate(-2deg);
}

.post-image.image-animate.image-visible {
  transform: scale(1) rotate(0deg);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Add stagger effect for multiple images */
.post-card:nth-child(1) .post-image.image-animate {
  transition-delay: 0.1s;
}

.post-card:nth-child(2) .post-image.image-animate {
  transition-delay: 0.2s;
}

.post-card:nth-child(3) .post-image.image-animate {
  transition-delay: 0.3s;
}

.post-card:nth-child(4) .post-image.image-animate {
  transition-delay: 0.4s;
}
