/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  /* Colors */
  --color-primary: #0000;
  --color-secondary: #111;
  --color-tertiary: #1a1a1a;
  --color-white: #fff;
  --color-text: #f5f5f5;
  --color-text-muted: #8a8a8a;
  --color-gold: #646464;
  --color-accent: #144d63;
  --color-border: #333;

  /* Shadows */
  --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 15px 30px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 25px 50px rgba(0, 0, 0, 0.3);

  /* Typography */
  --font-display: "Iceland", system-ui, sans-serif;
  --font-body: "Montserrat", sans-serif;

  /* Transitions */
  --transition-quick: 0.3s ease;
  --transition-smooth: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  /* Border Radius */
  --radius: 6px;
  --radius-lg: 16px;

  /* Layout */
  --container-width: 90%;
  --container-max-width: 1400px;
  --container-padding: clamp(15px, 4vw, 30px);
}

/* ===== RESET & BASE STYLES ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 18px;
  overflow-x: hidden;
}

body {
  font: 400 1rem/1.8 var(--font-body);
  color: var(--color-text);
  background: var(--color-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  cursor: url('noboxfaviconArtboard 1@0.75x.webp'), auto;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* ===== LAYOUT COMPONENTS ===== */
.container {
  width: min(var(--container-width), var(--container-max-width));
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.content-box {
  background: var(--color-secondary);
  padding: 60px 50px;
  border-radius: var(--radius-lg);
  margin-bottom: 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.section-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  margin: 80px 0;
  position: relative;
}

.section-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background: var(--color-gold);
  border-radius: 50%;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 28px;
  background: var(--color-gold);
  color: var(--color-white);
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  font-family: var(--font-body);
  transition: all var(--transition-smooth);
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left var(--transition-smooth);
}

.btn:hover::before {
  left: 100%;
}

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

.btn--primary {
  background: #c87941;
  color: var(--color-white);
  border-color: #c87941;
  padding: 14px 32px;
  font-size: 0.95rem;
  white-space: nowrap;
}

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

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

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

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

.btn--alert:hover {
  background: #329ec8;
  border-color: #329ec8;
}

/* ===== HEADER & NAVIGATION ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding-block: 20px;
  transition: all var(--transition-smooth);
  backdrop-filter: blur(10px);
  background-color: rgba(0, 0, 0, 0.6);
}

.header.scrolled {
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(15px);
  padding-block: 15px;
  box-shadow: var(--shadow-md);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 60px;
}

.logo {
  display: block;
  width: 140px;
  transition: transform var(--transition-quick);
}

.logo:hover {
  transform: scale(1.05);
}

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

.nav__list {
  display: flex;
  align-items: center;
  gap: 35px;
  font-family: var(--font-display);
}

.nav__list a {
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  transition: all var(--transition-quick);
  padding: 8px 0;
  color: var(--color-text);
  white-space: nowrap;
  font-family: var(--font-body);
  letter-spacing: 0.02em;
}

.nav__list a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: width var(--transition-quick);
}

.nav__list a:not(.btn):hover {
  color: var(--color-white);
}

.nav__list a:not(.btn):hover::after {
  width: 100%;
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: relative;
  z-index: 101;
}

.nav__toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-white);
  position: absolute;
  left: 0;
  transition: all var(--transition-quick);
}

.nav__toggle span:first-child { top: 0; }
.nav__toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav__toggle span:last-child { bottom: 0; }

.nav__toggle[aria-expanded="true"] span:first-child {
  transform: translateY(9px) rotate(45deg);
}

.nav__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav__toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-9px) rotate(-45deg);
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

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

.hero .container {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero__content {
  max-width: 900px;
  margin: 0 auto;
  color: var(--color-white);
  animation: fadeInUp 1s ease-out;
}

.hero__title {
  font: 800 clamp(3rem, 8vw, 5rem)/1.1 var(--font-display);
  letter-spacing: -0.03em;
  color: var(--color-white);
  margin-bottom: 30px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero__subtitle {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  color: var(--color-text);
  max-width: 700px;
  margin: 0 auto 50px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  font-weight: 500;
  line-height: 1.6;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.hero .btn {
  animation: fadeInUp 1s ease-out 0.6s both;
  font-size: 1.1rem;
  padding: 20px 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* ===== SERVICES SECTION ===== */
.services {
  background: var(--color-tertiary);
  padding: 80px 0;
}

.services h2 {
  text-align: center;
  margin-bottom: 50px;
  font: 700 2.5rem var(--font-display);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 60px;
  width: 100%;
}

.service-card {
  padding: 50px 40px;
  border-radius: var(--radius);
  background: var(--color-secondary);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-quick), box-shadow var(--transition-quick);
  width: 100%;
  min-height: 400px;
}

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

.service-card h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-family: var(--font-display);
}

.service-card p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 25px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 50px;
  margin-top: 60px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.service-item {
  background: var(--color-tertiary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-smooth);
  border: 1px solid var(--color-border);
  position: relative;
  cursor: pointer;
  display: block;
  color: inherit;
  min-height: 600px;
}

.service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  transition: left var(--transition-smooth);
}

.service-item:hover::before {
  left: 100%;
}

.service-item:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-gold);
}

.service-image {
  height: 200px;
  background: linear-gradient(135deg, var(--color-gold), var(--color-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.service-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}

.service-image i {
  font-size: 4rem;
  color: var(--color-white);
  position: relative;
  z-index: 1;
}

.service-content {
  padding: 50px 40px;
}

.service-item h3 {
  font: 700 1.8rem/1.3 var(--font-display);
  color: var(--color-white);
  margin-bottom: 15px;
  letter-spacing: -0.01em;
}

.service-item p {
  color: var(--color-text);
  margin-bottom: 25px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.service-features {
  list-style: none;
  margin-bottom: 30px;
}

.service-features li {
  color: var(--color-text-muted);
  margin-bottom: 12px;
  position: relative;
  padding-left: 25px;
  font-size: 1rem;
  line-height: 1.5;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-gold);
  font-weight: bold;
  font-size: 1.1rem;
}

.service-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
}

.price {
  font: 700 1.4rem var(--font-display);
  color: var(--color-gold);
}

.service-cta {
  background: var(--color-gold);
  color: var(--color-white);
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.9rem;
  transition: all var(--transition-quick);
  border: none;
  cursor: pointer;
}

.service-cta:hover {
  background: var(--color-white);
  color: var(--color-primary);
  transform: translateY(-2px);
}

/* ===== ABOUT SECTION ===== */
.about {
  background: var(--color-secondary);
  padding: 80px 0;
}

.about h2 {
  text-align: center;
  margin-bottom: 50px;
  font: 700 2.5rem var(--font-display);
}

.about__content {
  display: flex;
  align-items: center;
  gap: 80px;
  flex-wrap: wrap;
}

.about__text {
  flex: 1 1 500px;
}

.about__image {
  flex: 1 1 500px;
  text-align: center;
}

.about__image img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

/* ===== RED FLAG GUIDE SECTION ===== */
.red-flag {
  background: var(--color-secondary);
  padding: 120px 0;
}

.red-flag-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.red-flag-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.red-flag-list li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  font-size: 1.1rem;
  line-height: 1.6;
}

.red-flag-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-gold);
}

.red-flag-image .image-placeholder {
  width: 100%;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #999;
  font-style: italic;
  border-radius: var(--radius);
}

/* ===== CONTACT SECTION ===== */
.contact {
  background: var(--color-secondary);
  padding: 80px 0;
}

.contact h2 {
  text-align: center;
  margin-bottom: 50px;
  font: 700 2.5rem var(--font-display);
}

.contact__content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 60px;
}

.contact__info {
  flex: 1 1 500px;
}

.contact__form {
  flex: 1 1 500px;
}

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

.contact__form label {
  display: block;
  margin-bottom: 8px;
}

.contact__form input,
.contact__form textarea {
  width: 100%;
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  background: var(--color-primary);
  color: var(--color-text);
  font: 400 1rem var(--font-body);
  box-sizing: border-box;
}

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

.contact__form input:focus,
.contact__form textarea:focus {
  outline: none;
  border-color: var(--color-gold);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--color-tertiary);
  padding-top: 80px;
  padding-bottom: 30px;
  border-top: 1px solid var(--color-border);
  margin-top: 80px;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
}

.footer-logo {
  width: 180px;
}

.footer-contact h4 {
  font: 700 1.3rem var(--font-display);
  color: var(--color-white);
  margin-bottom: 20px;
}

.footer-contact p {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.footer-contact a {
  color: var(--color-text-muted);
  transition: color var(--transition-quick);
}

.footer-contact a:hover {
  color: var(--color-white);
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-bottom: 50px;
}

.footer-nav-column h4 {
  font: 700 1.3rem var(--font-display);
  color: var(--color-white);
  margin-bottom: 20px;
}

.footer-nav-column ul li {
  margin-bottom: 12px;
}

.footer-nav-column ul li a {
  color: var(--color-text-muted);
  transition: color var(--transition-quick);
  font-size: 1rem;
}

.footer-nav-column ul li a:hover {
  color: var(--color-white);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--color-border);
}

.footer-bottom p {
  color: var(--color-text-muted);
  font-size: 1rem;
}

/* ===== LOADING SCREEN ===== */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  overflow: hidden;
  transition: opacity 1s ease;
}

.loading-screen.hidden {
  opacity: 0;
  pointer-events: none;
}

.static-logo {
  width: 150px;
  height: auto;
  opacity: 0;
  animation: fadeInBar 3s forwards;
}

.spinning-logo {
  width: 80px;
  height: auto;
  margin-top: 20px;
  animation: spin 2s linear infinite, fadeOut 1s forwards;
  animation-delay: 3s;
}

.loading-bar {
  width: 0;
  height: 4px;
  background: linear-gradient(to right, #FF5F6D, #FFC371);
  margin-top: 30px;
  animation: loadBar 3s forwards;
}

/* ===== ANIMATIONS ===== */
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes fadeInBar {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes loadBar {
  from { width: 0; }
  to { width: 200px; }
}

@keyframes fadeOut {
  0% { opacity: 1; }
  100% { opacity: 0; }
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
  .nav__toggle {
    display: block;
  }

  .nav__list {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 350px;
    height: 100vh;
    background: var(--color-primary);
    flex-direction: column;
    justify-content: center;
    transition: right var(--transition-smooth);
    z-index: 100;
    border-left: 1px solid var(--color-border);
    padding: 20px;
  }

  .nav__list.active {
    right: 0;
  }

  .nav__list a {
    font-size: 1.1rem;
    font-weight: 500;
    padding: 15px 0;
    text-align: center;
    width: 100%;
    border-bottom: 1px solid var(--color-border);
  }

  .nav__list a:last-child {
    border-bottom: none;
  }

  .nav__list .btn {
    margin-top: 20px;
    padding: 12px 24px;
    font-size: 1rem;
  }

  body.menu-open {
    overflow: hidden;
  }

  .services__grid,
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
  }

  .container {
    padding: 0 clamp(15px, 4vw, 25px);
  }
}

@media (min-width: 993px) {
  .nav__list {
    display: flex !important;
    gap: 30px;
    align-items: center;
    position: static;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .nav__toggle {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .mobile-short {
    display: block;
  }

  .desktop-full {
    display: none;
  }

  .hero {
    min-height: 100vh;
    padding-top: 100px;
  }

  .hero__title {
    font-size: clamp(2.5rem, 8vw, 3.5rem);
  }

  .hero__subtitle {
    font-size: 1.1rem;
  }

  .hero .btn {
    padding: 16px 32px;
    font-size: 1rem;
  }

  .services__grid,
  .services-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .service-card,
  .service-content {
    padding: 30px 25px;
  }

  .service-item {
    min-height: auto;
  }

  .content-box {
    padding: 40px 25px;
  }

  .red-flag-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about__content {
    gap: 40px;
  }

  .about__text,
  .about__image {
    flex: 1 1 100%;
  }

  .contact__content {
    gap: 40px;
  }

  .contact__info,
  .contact__form {
    flex: 1 1 100%;
  }

  .footer-main {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .footer-nav {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-logo {
    width: 150px;
    margin: 0 auto;
  }

  .logo img {
    height: 68px;
  }
}

@media (max-width: 576px) {
  .hero__title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero__subtitle {
    font-size: 1rem;
  }

  .footer {
    padding-top: 40px;
  }

  .footer-nav {
    gap: 25px;
  }

  .footer-nav-column h4 {
    font-size: 1.1rem;
  }

  .footer-nav-column ul li a {
    font-size: 0.9rem;
  }

  .content-box {
    padding: 30px 20px;
  }

  .service-card {
    padding: 25px 20px;
  }

  .hero__content {
    max-width: 100%;
  }
}

/* ===== UTILITY CLASSES ===== */
.mobile-short {
  display: none;
}

.desktop-full {
  display: block;
}

@media (max-width: 768px) {
  .mobile-short {
    display: block;
  }

  .desktop-full {
    display: none;
  }
}

/* ===== IMPORTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Iceland&display=swap');
/* ===== ENHANCED STYLES FOR INDEX PAGE ===== */

/* Enhanced Global Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: clamp(16px, 1.2vw, 18px);
}

body {
    font-family: var(--ff-body);
    line-height: 1.6;
    color: var(--c-text);
    background: var(--c-bg-primary);
    overflow-x: hidden;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Enhanced Container */
.container {
    width: min(var(--wrapper), var(--wrapper-max));
    margin-inline: auto;
    padding-inline: clamp(20px, 4vw, 40px);
}

/* Loading Screen Enhancement */
.loading-screen {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: linear-gradient(135deg, var(--c-bg-primary), var(--c-bg-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: all .8s cubic-bezier(0.4, 0, 0.2, 1);
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
}

.loading-logo {
    width: 100px;
    height: 100px;
    margin-bottom: 30px;
    animation: pulse-glow 2s ease-in-out infinite;
    filter: drop-shadow(var(--glow-gold));
}

.loading-text {
    font: 600 1.2rem var(--ff-body);
    color: var(--c-gold);
    letter-spacing: 2px;
    animation: fade-pulse 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(var(--glow-gold));
    }
    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 30px rgba(200, 121, 65, 0.5));
    }
}

@keyframes fade-pulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* Enhanced Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding-block: 20px;
    transition: all var(--tr-smooth);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.header.scrolled {
    background: rgba(26, 29, 35, 0.98);
    padding-block: 15px;
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid var(--c-border);
}

.logo {
    display: block;
    width: 160px;
    transition: all var(--tr-smooth);
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: var(--radius);
    background: linear-gradient(45deg, transparent, var(--c-gold), transparent);
    opacity: 0;
    transition: opacity var(--tr-smooth);
    z-index: -1;
}

.logo:hover::after {
    opacity: 0.1;
}

.logo:hover {
    transform: scale(1.02);
}

/* Enhanced Navigation */
.nav__list {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav__list a {
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    transition: all var(--tr-smooth);
    padding: 10px 0;
}

.nav__list a:not(.btn)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--c-gold), var(--c-gold-light));
    transition: width var(--tr-smooth);
}

.nav__list a:not(.btn):hover::before {
    width: 100%;
}

.nav__toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 35px;
    height: 25px;
    position: relative;
    z-index: 1001;
}

.nav__toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--c-white);
    position: absolute;
    left: 0;
    transition: all var(--tr-smooth);
    border-radius: 2px;
}

.nav__toggle span:first-child { top: 0; }
.nav__toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav__toggle span:last-child { bottom: 0; }

.nav__toggle[aria-expanded="true"] span:first-child {
    transform: translateY(11px) rotate(45deg);
}
.nav__toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}
.nav__toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-11px) rotate(-45deg);
}

/* Enhanced Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    transition: all var(--tr-smooth);
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left var(--tr-smooth);
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%),
        url('../images/background/hero-scenic.jpg') center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background:
        radial-gradient(circle at 20% 80%, rgba(200, 121, 65, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(44, 95, 111, 0.15) 0%, transparent 50%);
    pointer-events: none;
    animation: gradientShift 15s ease-in-out infinite;
}

/* Animated gradient overlay */
.hero-section::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 30% 50%, rgba(200, 121, 65, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 70% 50%, rgba(173, 216, 230, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 50% 80%, rgba(200, 121, 65, 0.05) 0%, transparent 50%);
    pointer-events: none;
    animation: gradientRotate 20s linear infinite;
    z-index: 1;
}

@keyframes gradientShift {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

@keyframes gradientRotate {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.1);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding-top: 40px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(200, 121, 65, 0.1);
    border: 1px solid var(--c-gold);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--c-gold);
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font: 900 clamp(3rem, 8vw, 6rem)/0.9 var(--ff-display);
    color: var(--c-white);
    margin-bottom: 30px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    margin-bottom: 50px;
    line-height: 1.8;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

/* Content Sections */
.content-section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font: 800 clamp(2.5rem, 6vw, 4rem)/1.1 var(--ff-display);
    margin-bottom: 25px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    color: rgba(245, 245, 245, 0.9);
    font-weight: 400;
}

/* Services Grid - Enhanced */
.wwh-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    padding: 50px 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--tr-smooth);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(200, 121, 65, 0.05), transparent);
    transition: left var(--tr-smooth);
}

.service-card:hover::before {
    left: 100%;
}

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

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 30px;
    transition: all var(--tr-smooth);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card h3 {
    font: 700 1.8rem/1.3 var(--ff-display);
    margin-bottom: 20px;
}

.service-card p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* About/Founder Section - Enhanced */
.founder-section {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.founder-image {
    text-align: center;
    position: relative;
}

.founder-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
    border: 3px solid var(--c-gold);
    border-radius: 50%;
    opacity: 0.3;
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.1; }
}

.founder-image img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto;
    border: 4px solid var(--c-gold);
    position: relative;
    z-index: 1;
    transition: all var(--tr-smooth);
}

.founder-image img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.founder-content h3 {
    font: 700 2.5rem/1.2 var(--ff-display);
    margin-bottom: 25px;
}

.founder-content p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Red Flag Guide Promo - Enhanced */
.red-flag-promo {
    padding: 100px 20px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--c-bg-primary);
}

.red-flag-promo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.red-flag-content-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

.red-flag-cover {
    text-align: left;
    justify-self: start;
}

.red-flag-cover img {
    width: 100%;
    max-width: 240px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: transform var(--tr-smooth);
}

.red-flag-cover img:hover {
    transform: scale(1.05) rotate(2deg);
}

.red-flag-content h3 {
    font: 700 2.2rem/1.3 var(--ff-display);
    margin-bottom: 18px;
    color: var(--c-text-on-dark);
}

.red-flag-content p {
    font-size: 1.1rem;
    margin-bottom: 28px;
    line-height: 1.7;
    color: var(--c-text-light);
    max-width: 600px;
}

/* Red Flag Popup */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 29, 35, 0.9);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--tr-smooth);
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    border-radius: var(--radius-lg);
    padding: 50px 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-lg);
    transform: scale(0.8);
    transition: transform var(--tr-smooth);
}

.popup-overlay.active .popup-content {
    transform: scale(1);
}

.popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color var(--tr-quick);
}

.popup-content h3 {
    font: 700 2rem/1.2 var(--ff-display);
    margin-bottom: 20px;
}

.popup-content p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.popup-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.popup-form input {
    padding: 15px;
    border: 2px solid var(--c-border);
    border-radius: var(--radius);
    font-size: 1rem;
    transition: border-color var(--tr-quick);
}

.popup-form input:focus {
    outline: none;
}

/* Enhanced Footer */
.footer {
    padding: 80px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
}

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

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    width: 200px;
    margin-bottom: 25px;
}

.footer-description {
    line-height: 1.7;
    margin-bottom: 30px;
}

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

.footer-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--tr-smooth);
    font-size: 1.2rem;
}

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

.footer-column h4 {
    font: 700 1.3rem var(--ff-display);
    margin-bottom: 25px;
    position: relative;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
}

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

.footer-column ul li a {
    transition: all var(--tr-smooth);
    font-size: 1rem;
    position: relative;
}

.footer-column ul li a::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    transition: width var(--tr-smooth);
}

.footer-column ul li a:hover {
    padding-left: 20px;
}

.footer-column ul li a:hover::before {
    width: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--c-border);
}

.footer-bottom p {
    font-size: 1rem;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.contact-buttons .btn {
    min-width: 220px;
    text-align: center;
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    z-index: 9999;
    transition: width 0.1s ease;
}

/* Animation Classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-up.animate {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-right.animate {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scale-in.animate {
    opacity: 1;
    transform: scale(1);
}

/* Mobile Responsive Enhancements */
@media (max-width: 1200px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 992px) {
    html {
        font-size: 16px;
    }

    .nav__list {
        position: fixed;
        top: 0;
        right: -100%;
        width: 90%;
        max-width: 400px;
        height: 100vh;
        background: rgba(26, 29, 35, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        transition: right var(--tr-smooth);
        z-index: 1000;
        border-left: 1px solid var(--c-border);
    }

    .nav__list.active {
        right: 0;
    }

    .nav__toggle {
        display: block;
    }

    .hero-content {
        padding-top: 80px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

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

    .wwh-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-card {
        padding: 40px 30px;
    }

    .founder-section {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .founder-image img {
        width: 200px;
        height: 200px;
    }

    .founder-image::before {
        width: 230px;
        height: 230px;
    }

    .red-flag-content-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        padding: 0 20px;
    }
    
    .red-flag-cover {
        text-align: center;
        justify-self: center;
    }
    
    .red-flag-cover img {
        max-width: 220px;
    }
    
    .red-flag-content h3 {
        font-size: 1.9rem;
    }
    
    .red-flag-content p {
        font-size: 1.05rem;
        max-width: 100%;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-brand {
        max-width: none;
    }

    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .container {
        padding-inline: 20px;
    }

    .hero-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .btn {
        padding: 14px 24px;
        font-size: 0.9rem;
    }

    .service-card {
        padding: 30px 20px;
    }

    .service-icon {
        font-size: 2.5rem;
    }

    .popup-content {
        padding: 30px 20px;
        margin: 20px;
    }

    .section-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
}

@media (max-width: 480px) {
    .hero-cta {
        gap: 15px;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }

    .wwh-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        margin-bottom: 20px;
    }
}

/* ===== IMPROVED LEGIBILITY FOR ABOUT PAGE ===== */
.timeline-text,
.story-timeline p,
.content-section p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: rgba(245, 245, 245, 0.92);
  font-weight: 400;
  letter-spacing: 0.01em;
}

.timeline-title,
.content-section h3 {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.section-title {
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.01em;
}

/* Improve contrast for all text elements */
body {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Better readability for paragraphs */
p {
  max-width: 75ch;
  margin-left: auto;
  margin-right: auto;
}

/* Improve heading hierarchy */
h1, h2, h3, h4, h5, h6 {
  color: #ffffff;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

/* Better list readability */
ul, ol {
  line-height: 1.8;
}

/* Improve link visibility */
a:not(.btn) {
  color: #c87941;
  transition: color 0.3s ease;
}

a:not(.btn):hover {
  color: #d89055;
}

/* ===== ABOUT PAGE IMPROVEMENTS ===== */

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.team-card {
  background: var(--color-secondary);
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
  border: 1px solid var(--color-border);
}

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

.team-image {
  width: 180px;
  height: 180px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #c87941;
}

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

.team-name {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
}

.team-role {
  font-size: 1rem;
  color: #c87941;
  font-weight: 500;
  margin-bottom: 15px;
}

.team-bio {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(245, 245, 245, 0.85);
  margin-bottom: 20px;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.team-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 121, 65, 0.1);
  border: 1px solid #c87941;
  border-radius: 50%;
  color: #c87941;
  transition: all var(--transition-quick);
}

.team-social a:hover {
  background: #c87941;
  color: #ffffff;
  transform: translateY(-3px);
}

/* Timeline Improvements */
.story-timeline {
  position: relative;
  padding: 40px 0;
}

.timeline-item {
  margin-bottom: 60px;
  position: relative;
}

.timeline-content {
  background: var(--color-secondary);
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  position: relative;
}

.timeline-year {
  font-size: 2rem;
  font-weight: 700;
  color: #c87941;
  margin-bottom: 15px;
  font-family: var(--font-display);
}

.timeline-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 15px;
}

.timeline-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(245, 245, 245, 0.9);
}

/* Hero Stats Improvements */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  margin-top: 50px;
  padding: 40px 0;
}

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

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #c87941;
  margin-bottom: 8px;
  font-family: var(--font-display);
}

.stat-label {
  display: block;
  font-size: 0.9rem;
  color: rgba(245, 245, 245, 0.8);
  font-weight: 500;
}

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

.section-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(200, 121, 65, 0.1);
  border: 1px solid #c87941;
  border-radius: 50px;
  color: #c87941;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
  max-width: 800px;
  margin: 0 auto;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  font-weight: 400;
}

/* Content Section */
.content-section {
  padding: 80px 0;
  background: var(--color-primary);
}

/* Improve readability */
.content-section p,
.timeline-text,
.team-bio {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  background: rgba(200, 121, 65, 0.15);
  border: 1px solid #c87941;
  border-radius: 50px;
  color: #c87941;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 25px;
}

.hero-badge i {
  font-size: 1rem;
}

/* Hero Title */
.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 25px;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Hero Subtitle */
.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 35px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero CTA */
.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .team-image {
    width: 150px;
    height: 150px;
  }
  
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .timeline-content {
    padding: 20px;
  }
  
  .timeline-year {
    font-size: 1.5rem;
  }
  
  .timeline-title {
    font-size: 1.3rem;
  }
}

/* ===== TEAM SECTION DARK BACKGROUND ===== */
.team-section-dark {
  background: #1a1d23 !important;
  position: relative;
}

.team-section-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(200, 121, 65, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(44, 95, 111, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.team-section-dark .container {
  position: relative;
  z-index: 1;
}

/* ===== HERO GRADIENT BACKGROUND FOR ALL PAGES ===== */

/* Apply gradient background to body */
body {
  background: linear-gradient(135deg, #000000 0%, #1a1d23 50%, #000000 100%);
  background-attachment: fixed;
  position: relative;
}

/* Add subtle animated gradient overlay */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(200, 121, 65, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(44, 95, 111, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
  animation: gradientShift 20s ease infinite;
}

@keyframes gradientShift {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

/* Ensure content is above the gradient */
.header,
main,
.footer {
  position: relative;
  z-index: 1;
}

/* Override content-section backgrounds to be transparent or semi-transparent */
.content-section {
  background: transparent !important;
}

/* Keep cards with solid backgrounds for readability */
.team-card,
.service-card,
.timeline-content,
.value-card {
  background: rgba(26, 29, 35, 0.95) !important;
  backdrop-filter: blur(10px);
}

/* ===== SMOOTH ANIMATIONS ===== */

/* Fade in animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Fade in from left */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Fade in from right */
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Scale in animation */
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Floating animation */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Pulse animation */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Apply animations to elements */
.fade-in-up {
  animation: fadeIn 0.8s ease-out forwards;
  opacity: 0;
}

.fade-in-left {
  animation: fadeInLeft 0.8s ease-out forwards;
  opacity: 0;
}

.fade-in-right {
  animation: fadeInRight 0.8s ease-out forwards;
  opacity: 0;
}

/* Stagger animation delays for multiple elements */
.fade-in-up:nth-child(1) { animation-delay: 0.1s; }
.fade-in-up:nth-child(2) { animation-delay: 0.2s; }
.fade-in-up:nth-child(3) { animation-delay: 0.3s; }
.fade-in-up:nth-child(4) { animation-delay: 0.4s; }
.fade-in-up:nth-child(5) { animation-delay: 0.5s; }
.fade-in-up:nth-child(6) { animation-delay: 0.6s; }

/* Card hover animations */
.team-card,
.service-card,
.value-card,
.timeline-content {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.team-card:hover,
.service-card:hover,
.value-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(200, 121, 65, 0.2);
}

/* Button animations */
.btn {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(200, 121, 65, 0.4);
}

.btn:active {
  transform: translateY(-1px);
}

/* Image hover effects */
.team-image,
.founder-image {
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.team-image::after,
.founder-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(200, 121, 65, 0.3), rgba(44, 95, 111, 0.3));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.team-image:hover::after,
.founder-image:hover::after {
  opacity: 1;
}

.team-image:hover,
.founder-image:hover {
  transform: scale(1.05);
}

/* Section badge animation */
.section-badge {
  animation: pulse 2s ease-in-out infinite;
}

/* Hero stats animation */
.stat-item {
  animation: fadeIn 0.8s ease-out forwards;
  opacity: 0;
}

.stat-item:nth-child(1) { animation-delay: 0.2s; }
.stat-item:nth-child(2) { animation-delay: 0.4s; }
.stat-item:nth-child(3) { animation-delay: 0.6s; }
.stat-item:nth-child(4) { animation-delay: 0.8s; }

.stat-number {
  transition: all 0.3s ease;
}

.stat-item:hover .stat-number {
  transform: scale(1.2);
  color: #e09560;
}

/* Timeline animations */
.timeline-item {
  opacity: 0;
  animation: fadeInLeft 0.8s ease-out forwards;
}

.timeline-item:nth-child(even) {
  animation: fadeInRight 0.8s ease-out forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.2s; }
.timeline-item:nth-child(2) { animation-delay: 0.4s; }
.timeline-item:nth-child(3) { animation-delay: 0.6s; }
.timeline-item:nth-child(4) { animation-delay: 0.8s; }

/* Loading animation for images */
img {
  animation: fadeIn 0.6s ease-out;
}

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

/* Link hover effects */
a:not(.btn) {
  position: relative;
  transition: all 0.3s ease;
}

a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #c87941, #e09560);
  transition: width 0.3s ease;
}

a:not(.btn):hover::after {
  width: 100%;
}

/* Footer social icons animation */
.footer-social a,
.team-social a {
  transition: all 0.3s ease;
}

.footer-social a:hover,
.team-social a:hover {
  transform: translateY(-5px) rotate(5deg);
  box-shadow: 0 5px 15px rgba(200, 121, 65, 0.4);
}

/* Scroll reveal animation */
@keyframes scrollReveal {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Add this class to elements you want to animate on scroll */
.scroll-reveal {
  opacity: 0;
  animation: scrollReveal 0.8s ease-out forwards;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===== SERVICES PREVIEW BLUE COLOR ===== */
.services-preview .section-title {
  color: rgba(173, 216, 230, 0.95) !important;
}

.services-preview .section-subtitle {
  color: rgba(173, 216, 230, 0.85) !important;
}

.services-preview .section-badge {
  color: rgba(173, 216, 230, 0.95) !important;
  border-color: rgba(173, 216, 230, 0.6) !important;
  background: rgba(173, 216, 230, 0.1) !important;
}

/* ===== FOOTER BLUE COLOR ===== */
.footer-column h4 {
  color: rgba(173, 216, 230, 0.95) !important;
}

.footer-description {
  color: rgba(173, 216, 230, 0.85) !important;
}

.footer-bottom p {
  color: rgba(173, 216, 230, 0.8) !important;
}


/* ===== STICKY CTA BAR ===== */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1a1d23 0%, #2c5f6f 100%);
  padding: 1rem 2rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 2px solid rgba(200, 121, 65, 0.5);
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-cta-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.sticky-cta-text {
  flex: 1;
}

.sticky-cta-text h4 {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.25rem 0;
}

.sticky-cta-text p {
  color: rgba(173, 216, 230, 0.9);
  font-size: 0.9rem;
  margin: 0;
}

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

.sticky-cta .btn {
  white-space: nowrap;
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
}

.sticky-cta .btn--primary {
  background: linear-gradient(135deg, #c87941 0%, #d89a5f 100%);
  box-shadow: 0 4px 15px rgba(200, 121, 65, 0.3);
}

.sticky-cta .btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 121, 65, 0.4);
}

.sticky-cta .btn--secondary {
  background: transparent;
  border: 2px solid rgba(173, 216, 230, 0.5);
  color: rgba(173, 216, 230, 0.95);
}

.sticky-cta .btn--secondary:hover {
  background: rgba(173, 216, 230, 0.1);
  border-color: rgba(173, 216, 230, 0.8);
}

.sticky-cta-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  line-height: 1;
  transition: all 0.3s ease;
}

.sticky-cta-close:hover {
  color: #fff;
  transform: rotate(90deg);
}

/* Mobile responsive sticky CTA */
@media (max-width: 768px) {
  .sticky-cta {
    padding: 1rem;
  }
  
  .sticky-cta-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .sticky-cta-text h4 {
    font-size: 1rem;
  }
  
  .sticky-cta-text p {
    font-size: 0.85rem;
  }
  
  .sticky-cta-actions {
    width: 100%;
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .sticky-cta .btn {
    width: 100%;
    padding: 0.875rem 1.5rem;
  }
  
  .sticky-cta-close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
  }
}

