/* ===== CSS VARIABLES ===== */
:root {
  --primary-color: #335c67;
  --secondary-color: #fff3b0;
  --accent-orange: #e09f3e;
  --accent-red: #9e2a2b;
  --accent-dark: #540b0e;
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --medium-gray: #6c757d;
  --dark-gray: #343a40;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
  --border-radius: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: var(--dark-gray);
  background: var(--white);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }

p {
  margin-bottom: 1rem;
  color: var(--medium-gray);
}

/* ===== HEADER & NAVIGATION ===== */
/* ===== Base Styles ===== */
:root {
  --primary-color: #335c67;
  --accent-orange: #e09f3e;
  --dark-gray: #333;
  --white: #fff;
  --secondary-color: #f5f5f5;
  --transition: all 0.3s ease;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 5px 15px rgba(0, 0, 0, 0.1);
  --border-radius: 4px;
}

/* ===== Header/Nav Structure ===== */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(51, 92, 103, 0.1);
  z-index: 1000;
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
}

.navbar {
  padding: 1rem 0;
}

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

/* ===== Logo Styles ===== */
.logo h1 {
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.5px;
}

.logo span {
  color: var(--accent-orange);
  font-size: 0.7rem;
  font-weight: 500;
  display: block;
  margin-top: -3px;
}

/* ===== Main Navigation ===== */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: var(--dark-gray);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
  padding: 0.5rem 0;
  display: block;
}

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

/* ===== Dropdown Styles ===== */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 200px;
  list-style: none;
  padding: 0.5rem 0;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-hover);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  border: 1px solid rgba(51, 92, 103, 0.1);
  z-index: 1001;
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--dark-gray);
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.9rem;
}

.dropdown-menu a:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
}

/* Dropdown Arrow Indicator */
.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.dropdown-toggle::after {
  content: "▾";
  font-size: 0.7rem;
  transition: var(--transition);
  margin-left: 0.25rem;
}

/* ===== Desktop Styles ===== */
@media (min-width: 769px) {
  .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
  }
}

/* ===== Mobile Styles ===== */
@media (max-width: 768px) {
  .nav-container {
    padding: 0 1rem;
  }
  
  /* Hamburger Button */
  .hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    background: none;
    border: none;
    z-index: 1001;
  }
  
  .bar {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
  }
  
  /* Mobile Menu */
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 6rem 1.5rem 2rem;
    gap: 0;
    transition: all 0.4s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    overflow-y: auto;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-item {
    width: 100%;
    border-bottom: 1px solid rgba(51, 92, 103, 0.1);
  }
  
  .nav-link {
    padding: 1.2rem 0;
    font-size: 1.1rem;
  }
  
  /* Mobile Dropdowns */
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0;
    width: 100%;
    display: none;
    background: rgba(51, 92, 103, 0.05);
  }
  
  .dropdown.active .dropdown-menu {
    display: block;
    padding-left: 1rem;
    animation: fadeIn 0.3s ease;
  }
  
  .dropdown-toggle::after {
    margin-left: auto;
    padding-right: 1rem;
  }
  
  .dropdown.active .dropdown-toggle::after {
    transform: rotate(180deg);
  }
  
  /* Hamburger Animation */
  .hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }
  
  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }
}

/* ===== Small Mobile Adjustments ===== */
@media (max-width: 480px) {
  .logo h1 {
    font-size: 1.3rem;
  }
  
  .logo span {
    font-size: 0.6rem;
  }
  
  .nav-menu {
    width: 85%;
  }
}
/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--border-radius);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

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

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

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

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

.btn-outline {
  background: transparent;
  color: var(--dark-gray);
  border: 2px solid var(--medium-gray);
}

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

.btn-full {
  width: 100%;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

/* ===== MAIN CONTENT ===== */
.main-content {
  margin-top: 80px;
  min-height: calc(100vh - 80px);
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-dark) 100%);
  color: var(--white);
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grid" width="2" height="2" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,243,176,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

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

.hero-text {
  max-width: 600px;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.title-line {
  display: block;
  animation: slideInUp 0.8s ease-out forwards;
  opacity: 0;
}

.title-line:nth-child(2) {
  animation-delay: 0.2s;
}

.hero-description {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--secondary-color);
  animation: slideInUp 0.8s ease-out 0.4s forwards;
  opacity: 0;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  animation: slideInUp 0.8s ease-out 0.6s forwards;
  opacity: 0;
}

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

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-orange);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--secondary-color);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: slideInUp 0.8s ease-out 0.8s forwards;
  opacity: 0;
}

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-dark) 100%);
  color: var(--white);
  padding: 6rem 0 4rem;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.2rem;
  color: var(--secondary-color);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== SECTIONS ===== */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== VIDEOS SECTION ===== */
.videos-section {
  padding: 6rem 0;
  background: var(--light-gray);
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.video-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.video-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

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

/* ===== SERVICES SECTION ===== */
/* Training Cards */
.training-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.training-card {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(51, 92, 103, 0.1);
}

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

.training-header {
  background: var(--primary-color);
  color: var(--white);
  padding: 1.5rem;
  position: relative;
}

.training-header h3 {
  margin-bottom: 0.5rem;
}

.training-level {
  position: center;
  top: 1rem;
  right: 1rem;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 500;
}

.training-level.beginner {
  background: var(--accent-orange);
  color: var(--white);
}

.training-level.intermediate {
  background: var(--secondary-color);
  color: var(--primary-color);
}

.training-level.advanced {
  background: var(--accent-red);
  color: var(--white);
}

.training-level.expert {
  background: var(--accent-dark);
  color: var(--white);
}

.training-content {
  padding: 1.5rem;
}

.training-duration {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: var(--medium-gray);
}

.training-duration i {
  color: var(--accent-orange);
}

.training-topics {
  margin: 1.5rem 0;
}

.training-topics h4 {
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

.training-topics ul {
  list-style: none;
}

.training-topics li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.75rem;
}

.training-topics li i {
  position: absolute;
  left: 0;
  color: var(--accent-orange);
}

.training-price {
  margin-top: 1.5rem;
  text-align: right;
}

.price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.price-note {
  display: block;
  font-size: 0.8rem;
  color: var(--medium-gray);
}

.training-actions {
  padding: 1.5rem;
  background: var(--light-gray);
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Training Features */
.training-features {
  margin: 4rem 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.feature-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

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

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--primary-color);
  font-size: 1.5rem;
}

/* Training Requirements */
.training-requirements {
  margin: 4rem 0;
}

.requirements-content {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.requirement-section {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.requirement-section h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--accent-orange);
  padding-bottom: 0.5rem;
}

.requirement-section ul {
  list-style: none;
}

.requirement-section li {
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 1.75rem;
}

.requirement-section li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--accent-orange);
}

/* Training Schedule */
.training-schedule {
  margin: 4rem 0;
}

.schedule-table {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-top: 1.5rem;
}

.schedule-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  background: var(--primary-color);
  color: var(--white);
  padding: 1rem;
  font-weight: 600;
}

.schedule-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  padding: 1rem;
  align-items: center;
  border-bottom: 1px solid var(--light-gray);
}

.schedule-row:last-child {
  border-bottom: none;
}

.seats-available {
  font-weight: 500;
}

.seats-available:before {
  content: "\f007";
  font-family: "Font Awesome 6 Free";
  margin-right: 0.5rem;
}

.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .training-grid,
  .features-grid,
  .requirements-content {
    grid-template-columns: 1fr;
  }

  .schedule-header,
  .schedule-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 0.75rem;
  }

  .schedule-header div,
  .schedule-row div {
    display: flex;
    justify-content: space-between;
  }

  .schedule-header div::before,
  .schedule-row div::before {
    content: attr(data-label);
    font-weight: 600;
    color: var(--primary-color);
  }

  .training-actions {
    flex-direction: column;
  }
  
  .training-actions .btn {
    width: 100%;
  }
}
.services-section {
  padding: 6rem 0;
}

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

.service-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(51, 92, 103, 0.1);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent-orange);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}
/* Club Cards */
.clubs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.club-card {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(51, 92, 103, 0.1);
}

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

.club-header {
  background: var(--primary-color);
  color: var(--white);
  padding: 1.5rem;
  position: relative;
}

.club-header h3 {
  margin-bottom: 0.5rem;
}

.club-status {
  position: center;
  top: 1rem;
  right: 1rem;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 500;
}

.club-status.verified {
  background: var(--accent-orange);
  color: var(--white);
}

.club-content {
  padding: 1.5rem;
}

.club-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: var(--medium-gray);
}

.club-location i {
  color: var(--accent-red);
}

.club-features {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.feature i {
  color: var(--accent-orange);
  width: 20px;
  text-align: center;
}

.club-actions {
  padding: 1.5rem;
  background: var(--light-gray);
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Requirements Section */
.club-requirements {
  margin: 4rem 0;
}

.requirements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.requirement-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  text-align: center;
  border-top: 4px solid var(--accent-orange);
}

.requirement-icon {
  width: 60px;
  height: 60px;
  background: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--primary-color);
  font-size: 1.5rem;
}

/* Benefits Section */
.club-benefits {
  margin: 4rem 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.benefit-item {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.benefit-item i {
  font-size: 1.5rem;
  color: var(--accent-orange);
  margin-bottom: 1rem;
  display: inline-block;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .clubs-grid,
  .requirements-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .club-actions {
    flex-direction: column;
  }
  
  .club-actions .btn {
    width: 100%;
  }
}
.service-icon svg {
  width: 26px;
  height: 26px;
  stroke-width: 2;
}

/* Base icon style */
.fa-gavel {
  font-size: 1em; /* Default size (inherits from parent) */
  color: inherit; /* Inherits text color */
  vertical-align: middle;
}

/* Size variations */
.fa-gavel.sm {
  font-size: 0.875em; /* ~14px at default 16px base */
}

.fa-gavel.md {
  font-size: 1.5em; /* ~20px */
}

.fa-gavel.lg {
  font-size: 1.5em; /* ~24px */
}

.fa-gavel.xl {
  font-size: 2em; /* ~32px */
}

/* Custom color */
.fa-gavel.primary {
  color: #335c67; /* Your primary color */
}

.fa-gavel.accent {
  color: #e09f3e; /* Your accent color */
}

/* Animated hover effect */
.fa-gavel.hover-grow {
  transition: transform 0.3s ease;
}

.fa-gavel.hover-grow:hover {
  transform: scale(1.2);
}

/* For use in buttons */
.btn .fa-gavel {
  margin-right: 8px;
  font-size: 0.9em;
}

.service-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.service-card p {
  margin-bottom: 1.5rem;
}

.service-link {
  color: var(--accent-orange);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.service-link:hover {
  color: var(--accent-red);
}

/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 6rem 0;
  background: var(--light-gray);
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-text h2 {
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.about-text p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  text-align: left;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border: 2px solid var(--secondary-color);
  background:#9e2a2b;
  border-radius: 13px;
  color: #ffffff !important;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.social-link,
.social-link:visited,
.social-link:active {
  color: #e9ecef !important;
}

.social-link:hover {
  background: var(--accent-orange);
  transform: translateY(-3px);
}

.social-link svg {
  width: 24px;
  height: 24px;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: 3rem 1rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  width: 100%;
}

.contact-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(51, 92, 103, 0.1);
  width: 100%;
  box-sizing: border-box;
}

.contact-card h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.contact-details {
  margin-bottom: 2rem;
}

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

.contact-icon {
  width: 36px;
  height: 36px;
  background: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  flex-shrink: 0;
}

.contact-icon svg {
  width: 18px;
  height: 18px;
}

.contact-item h4 {
  color: var(--primary-color);
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.contact-item p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--dark-gray);
}

.social-section h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1rem;
}

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

.social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 2.8rem 0.5rem 2.3rem;
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  color: #e9ecef;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--primary-color);
  color: white;
}

.social-link svg {
  width: 15px;
  height: 16px;
}

/* ===== CONTACT FORM ===== */
.contact-form-container {
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(51, 92, 103, 0.1);
  width: 100%;
  box-sizing: border-box;
}

.contact-form {
  padding: 1.5rem;
}

.contact-left-title {
  margin-bottom: 1.5rem;
}

.contact-left-title h2 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.contact-left-title hr {
  width: 50px;
  height: 3px;
  background: var(--accent-orange);
  border: none;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  margin-bottom: 1.25rem;
  width: 100%;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--dark-gray);
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: inherit;
  box-sizing: border-box;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(51, 92, 103, 0.1);
}

/* Submit button styles - add if you have one */
.submit-btn {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 10px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.submit-btn:hover {
  opacity: 0.9;
}

/* ===== MEDIA QUERIES FOR TABLET/DESKTOP ===== */
@media (min-width: 768px) {
  .contact-section {
    padding: 6rem 0;
  }
  
  .contact-grid {
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
  }
  
  .contact-card {
    padding: 2rem;
  }
  
  .contact-card h3 {
    font-size: 1.5rem;
  }
  
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
  
  .submit-btn {
    width: auto;
    padding: 0.8rem 2rem;
  }
}
/* ===== APPLICATIONS SECTION ===== */
.applications-section {
  padding: 6rem 0;
}

.applications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.application-card {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(51, 92, 103, 0.1);
  min-height: 420px;
  display: flex;
  flex-direction: column;
}

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

.application-header {
  background: var(--primary-color);
  color: var(--white);
  padding: 1.5rem;
  position: relative;
}

.application-header h3 {
  margin-bottom: 0.5rem;
}

.license-type {
  background: var(--accent-blue);
  color: #343a40;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 1rem;
  font-weight: 800;
  display: inline-block;
  margin-left: 3rem;
  vertical-align: center;
}

.application-content {
  padding: 1.5rem;
  flex-grow: 1;
}

.application-content p {
  margin-bottom: 1rem;
}

.requirements-list {
  list-style: none;
  margin-bottom: 1.5rem;
}

.requirements-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #f0f0f0;
  position: relative;
  padding-left: 1.5rem;
}

.requirements-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-orange);
  font-weight: bold;
}

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

.application-actions {
  padding: 1.5rem;
  background: var(--light-gray);
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: auto;
}

.application-actions .btn {
  flex: 1;
  min-width: 140px;
}

.application-actions .btn svg {
  width: 18px;
  height: 18px;
}

/* ===== PROCESS SECTION ===== */
.process-section {
  margin: 4rem 0;
}

.process-section h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 3rem;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.step-number {
  width: 40px;
  height: 40px;
  background: var(--accent-orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

.step-content h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.step-content p {
  margin: 0;
  font-size: 0.95rem;
}

/* ===== HELP SECTION ===== */
.help-section {
  margin: 4rem 0;
}

.help-card {
  background: var(--secondary-color);
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  border: 2px solid var(--accent-orange);
}

.help-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.help-card p {
  margin-bottom: 2rem;
}

.help-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
}

.feature svg {
  width: 20px;
  height: 20px;
  color: var(--accent-orange);
  stroke-width: 2;
}

.feature span {
  font-weight: 500;
  color: var(--primary-color);
}

/* ===== LEGAL CONTENT ===== */
.legal-content {
  padding: 6rem 0;
}

.legal-navigation {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.legal-navigation .nav-item {
  padding: 0.75rem 1.5rem;
  background: var(--light-gray);
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  font-weight: 500;
  border: 2px solid transparent;
}

.legal-navigation .nav-item:hover,
.legal-navigation .nav-item.active {
  background: var(--primary-color);
  color: var(--white);
}

.legal-sections {
  position: relative;
}

.legal-section {
  display: none;
}

.legal-section.active {
  display: block;
  animation: fadeIn 0.5s ease-in;
}

.legal-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
  border: 1px solid rgba(51, 92, 103, 0.1);
}

.legal-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.legal-card h4 {
  color: var(--accent-red);
  margin-bottom: 0.75rem;
  margin-top: 1.5rem;
}

.legal-card ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-card li {
  margin-bottom: 0.5rem;
  color: var(--medium-gray);
}

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

.definition-item {
  background: var(--light-gray);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  border-left: 4px solid var(--accent-orange);
}

.definition-item h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  margin-top: 0;
}

.definition-item p {
  margin: 0;
  font-size: 0.95rem;
}

.license-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.license-type {
  background: var(--light-gray);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  border-left: 4px solid var(--primary-color);
}

.license-type h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  margin-top: 0;
}

.license-type p {
  font-weight: 500;
  color: var(--accent-orange);
  margin-bottom: 1rem;
}

.process-timeline {
  position: relative;
  padding-left: 2rem;
}

.process-timeline::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--accent-orange);
}

.timeline-item {
  position: relative;
  margin-bottom: 2rem;
  padding-left: 2rem;
}

.timeline-marker {
  position: absolute;
  left: -2rem;
  top: 0;
  width: 40px;
  height: 40px;
  background: var(--accent-orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  border: 4px solid var(--white);
  box-shadow: 0 0 0 2px var(--accent-orange);
}

.timeline-content h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  margin-top: 0;
}

.timeline-content p {
  margin: 0;
  color: var(--medium-gray);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.category-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(51, 92, 103, 0.1);
  position: relative;
  padding-top: 2.5rem;
}

.category-card h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  margin-top: 0;
}

.category-card p {
  color: var(--accent-orange);
  font-weight: 500;
  margin-bottom: 1rem;
}

.category-card ul {
  margin-bottom: 1.5rem;
}

.difficulty-level {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 500;
  z-index: 2;
  color: var(--white);
}

.difficulty-level.high {
  background: var(--accent-red);
}

.difficulty-level.medium {
  background: var(--accent-orange);
}

.difficulty-level.low {
  background: var(--primary-color);
}

.penalties-table {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.penalty-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid #f0f0f0;
}

.penalty-row:last-child {
  border-bottom: none;
}

.violation,
.penalty {
  padding: 1rem;
}

.violation {
  background: var(--light-gray);
  font-weight: 500;
  color: var(--primary-color);
}

.penalty {
  background: var(--white);
  color: var(--medium-gray);
}

.legal-disclaimer {
  margin: 4rem 0;
}

.disclaimer-card {
  background: #fff3cd;
  border: 2px solid var(--accent-orange);
  border-radius: var(--border-radius);
  padding: 2rem;
}

.disclaimer-card h3 {
  color: var(--accent-red);
  margin-bottom: 1rem;
}

.disclaimer-card p {
  color: #856404;
  margin-bottom: 1rem;
}

.disclaimer-card p:last-child {
  margin-bottom: 0;
  font-weight: 500;
}

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

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.blog-card {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(51, 92, 103, 0.1);
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
}

.blog-image {
  height: 180px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-orange) 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.blog-category {
  background: var(--white);
  color: var(--primary-color);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 500;
  font-size: 0.9rem;
}

.blog-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--medium-gray);
}

.blog-meta .author {
  font-weight: 500;
}

.blog-excerpt {
  margin-bottom: 1.5rem;
  line-height: 1.6;
  flex: 1;
}

.blog-full-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.blog-card.expanded .blog-full-content {
  max-height: 2000px;
  margin-bottom: 1.5rem;
}

.blog-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.tag {
  background: var(--secondary-color);
  color: var(--primary-color);
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

.blog-expand-btn {
  background: var(--primary-color);
  color: white;
  border: none;
  margin-top: 1.5rem;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  align-self: flex-start;
}

.blog-expand-btn:hover {
  background: var(--accent-orange);
}

.page-info {
  font-weight: 500;
  color: var(--medium-gray);
}

/* Mobile styles */
@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .blog-card {
    margin-bottom: 20px;
  }
  
  .blog-expand-btn {
    width: 100%;
    padding: 12px 0;
    font-size: 1rem;
  }
}
/* ===== FOOTER ===== */
.footer {
  background: var(--primary-color);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
}

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

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
}

.footer-section ul li a:hover {
  color: var(--secondary-color);
}

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

.footer-social a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
}

.footer-social a:hover {
  color: #f0f0f0;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* ===== ANIMATIONS ===== */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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