/* 
   Australian Sky - Main Stylesheet
   Theme: Glassmorphism with Biomorphic Design elements
   Color Scheme: Gradient-based cosmic palette
   Framework: Bootstrap 5 extension
*/

:root {
  /* Primary Colors */
  --color-primary: #4527a0;
  --color-primary-dark: #311b92;
  --color-primary-light: #7e57c2;
  
  /* Secondary Colors */
  --color-secondary: #2e7d32;
  --color-secondary-dark: #1b5e20;
  --color-secondary-light: #4caf50;
  
  /* Accent Colors */
  --color-accent: #ff4081;
  --color-accent-dark: #f50057;
  --color-accent-light: #ff80ab;
  
  /* Neutral Colors */
  --color-dark: #1a1a2e;
  --color-darker: #0f0f1a;
  --color-darkest: #06060c;
  --color-light: #f5f5f7;
  --color-lighter: #ffffff;
  
  /* Gradient Backgrounds */
  --gradient-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-dark) 100%);
  --gradient-accent: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
  --gradient-dark: linear-gradient(135deg, var(--color-dark) 0%, var(--color-darker) 100%);
  --gradient-cosmic: linear-gradient(135deg, #0d1b30 0%, #1f295a 50%, #422c70 100%);
  
  /* Glassmorphism */
  --glass-background: rgba(255, 255, 255, 0.1);
  --glass-border: 1px solid rgba(255, 255, 255, 0.15);
  --glass-blur: blur(12px);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  
  /* Typography */
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 8rem;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 999px;
  
  /* Animation */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* Base Styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-dark);
  background-color: var(--color-light);
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--color-dark);
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-primary-dark);
  text-decoration: none;
}

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

.read-more {
  position: relative;
  font-weight: 500;
  color: var(--color-primary);
  padding-bottom: 2px;
  transition: all var(--transition-fast);
  display: inline-block;
  margin-top: 0.5rem;
}

.read-more:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--color-primary);
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform var(--transition-medium);
}

.read-more:hover {
  color: var(--color-primary-dark);
}

.read-more:hover:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

/* Section Styles */
section {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.section-title {
  margin-bottom: 1rem;
  text-align: center;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.section-divider {
  height: 4px;
  width: 60px;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  margin: 0 auto 2rem;
}

.section-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  color: rgba(26, 26, 46, 0.8);
}

/* Button Styles */
.btn {
  font-family: var(--font-heading);
  font-weight: 500;
  border-radius: var(--radius-md);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.75rem 1.5rem;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: transform var(--transition-fast);
  transform: scaleX(0);
  transform-origin: right;
  z-index: -1;
}

.btn:hover:before {
  transform: scaleX(1);
  transform-origin: left;
}

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

.btn-primary:hover {
  background: var(--gradient-primary);
  box-shadow: 0 6px 12px rgba(69, 39, 160, 0.2);
}

.btn-secondary {
  background: var(--gradient-secondary);
  border: none;
  color: white;
}

.btn-secondary:hover {
  background: var(--gradient-secondary);
  box-shadow: 0 6px 12px rgba(46, 125, 50, 0.2);
}

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

.btn-accent:hover {
  background: var(--gradient-accent);
  box-shadow: 0 6px 12px rgba(255, 64, 129, 0.2);
}

.btn-outline-light {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  box-shadow: 0 6px 12px rgba(255, 255, 255, 0.1);
}

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

.btn-outline-primary:hover {
  background: rgba(69, 39, 160, 0.05);
  color: var(--color-primary);
  box-shadow: 0 6px 12px rgba(69, 39, 160, 0.1);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

/* Card Styles */
.card {
  border: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-lighter);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.card-image {
  overflow: hidden;
  width: 100%;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.card-content {
  padding: 2rem;
  flex-grow: 1;
  width: 100%;
  text-align: center;
}

/* Glassmorphic Element */
.glass-card {
  background: var(--glass-background);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

/* Header Section */
.header-section {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
    background: rgba(10, 10, 20, 0.9);
  transition: background var(--transition-medium);
  padding: 1rem 0;
}

.header-section.scrolled {
  background: rgba(10, 10, 20, 0.9);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 0.5rem 0;
}



.navbar-brand img {
  transition: transform var(--transition-fast);
}

.navbar-brand:hover img {
  transform: scale(1.05);
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-heading);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color var(--transition-fast);
  position: relative;
}

.navbar-dark .navbar-nav .nav-link:before {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background: var(--color-accent);
  transition: all var(--transition-medium);
  transform: translateX(-50%);
}

.navbar-dark .navbar-nav .nav-link:hover {
  color: white;
}

.navbar-dark .navbar-nav .nav-link:hover:before {
  width: 80%;
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-light);
  z-index: 1;
}

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

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  color: white;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* About Section */
.about-section {
  background-color: var(--color-light);
  position: relative;
}

.about-section:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 90% 10%, rgba(126, 87, 194, 0.1), transparent 400px);
  pointer-events: none;
}

.image-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.content-box {
  padding: 2rem;
  height: 100%;
}

.content-box h3 {
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.content-box h3:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 40px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
}

/* Featured Section */
.featured-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 6rem 0;
  color: white;
  z-index: 1;
}

.featured-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8));
  z-index: -1;
}

.featured-description {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Methodology Section */
.methodology-section {
  background-color: var(--color-light);
  position: relative;
  overflow: hidden;
}

.methodology-section:after {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(76, 175, 80, 0.05), transparent 70%);
  z-index: -1;
}

.methodology-card {
  height: 100%;
  transition: transform var(--transition-medium);
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.methodology-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Gallery Section */
.gallery-section {
  background-color: var(--color-light);
  position: relative;
}

.gallery-section:before {
  content: '';
  position: absolute;
  left: -200px;
  bottom: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 64, 129, 0.05), transparent 70%);
  z-index: -1;
}

.carousel-container {
  display: flex;
  overflow-x: hidden;
  position: relative;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.carousel-slide {
  min-width: 100%;
  transition: transform var(--transition-medium);
}

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

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

.carousel-controls button {
  background: var(--color-primary);
  color: white;
  border: none;
  border-radius: var(--radius-full);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.carousel-controls button:hover {
  background: var(--color-primary-dark);
  transform: scale(1.1);
}

.carousel-controls button span {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Resources Section */
.resources-section {
  background-color: var(--color-lighter);
  position: relative;
}

.resources-section:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.05), transparent);
  z-index: -1;
}

.resource-card {
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: white;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.resource-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.resource-card .card-image {
  height: 250px;
  overflow: hidden;
  width: 100%;
}

.resource-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.resource-card:hover .card-image img {
  transform: scale(1.05);
}

.resource-card .card-content {
  padding: 1.5rem;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

/* Instructors Section */
.instructors-section {
  background-color: var(--color-light);
  position: relative;
}

.instructors-section:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 90%, rgba(69, 39, 160, 0.05), transparent 400px);
  z-index: -1;
}

.instructor-card {
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: white;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.instructor-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.instructor-card .card-image {
  height: 300px;
  width: 100%;
  overflow: hidden;
}

.instructor-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.instructor-card:hover .card-image img {
  transform: scale(1.05);
}

.instructor-card .card-content {
  padding: 1.5rem;
  text-align: center;
}

.instructor-title {
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

/* Awards Section */
.awards-section {
  background-color: var(--color-lighter);
}

.award-item {
  transition: transform var(--transition-medium);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.award-item:hover {
  transform: scale(1.05);
}

.award-item img {
  margin: 0 auto 1rem;
  transition: transform var(--transition-medium);
}

.award-item:hover img {
  transform: rotate(5deg);
}

.award-item h4 {
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.award-item p {
  font-size: 1.1rem;
  color: var(--color-primary);
  margin-bottom: 0;
}

/* Partners Section */
.partners-section {
  background-color: var(--color-light);
}

.partner-logo {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-medium);
}

.partner-logo:hover {
  transform: scale(1.1);
}

.partner-logo img {
  max-height: 80px;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: filter var(--transition-medium), opacity var(--transition-medium);
}

.partner-logo:hover img {
  filter: grayscale(0);
  opacity: 1;
}

/* Community Section */
.community-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 6rem 0;
  color: white;
  z-index: 1;
}

.community-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8));
  z-index: -1;
}

.community-description {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* News Section */
.news-section {
  background-color: var(--color-light);
  position: relative;
}

.news-section:after {
  content: '';
  position: absolute;
  bottom: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(69, 39, 160, 0.05), transparent 70%);
  z-index: -1;
}

.news-card {
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: white;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.news-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.news-card .card-image {
  height: 250px;
  width: 100%;
  overflow: hidden;
}

.news-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.news-card:hover .card-image img {
  transform: scale(1.05);
}

.news-card .card-content {
  padding: 1.5rem;
  flex-grow: 1;
  text-align: left;
}

.news-date {
  color: var(--color-primary);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

/* Press Section */
.press-section {
  background-color: var(--color-lighter);
}

.press-item {
  display: flex;
  align-items: flex-start;
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  transition: transform var(--transition-medium);
}

.press-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.press-logo {
  flex-shrink: 0;
  width: 120px;
  margin-right: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.press-logo img {
  width: 100%;
  object-fit: contain;
}

.press-content {
  flex-grow: 1;
}

.press-content h3 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 600;
}

.press-date {
  color: var(--color-primary);
  font-weight: 500;
  font-size: 0.9rem;
  margin-top: 1rem;
}

/* FAQ Section */
.faq-section {
  background-color: var(--color-light);
  position: relative;
}

.faq-section:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 90% 10%, rgba(255, 64, 129, 0.05), transparent 400px);
  z-index: -1;
}

.accordion-item {
  border: none;
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 1rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
  transition: box-shadow var(--transition-fast);
}

.accordion-item:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.07);
}

.accordion-button {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  padding: 1.5rem;
  background-color: white;
  color: var(--color-dark);
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  color: var(--color-primary);
  background-color: rgba(69, 39, 160, 0.03);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%234527a0'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
  padding: 1.5rem;
  background-color: white;
}

/* Contact Section */
.contact-section {
  background-color: var(--color-lighter);
  position: relative;
}

.contact-section:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.05), transparent);
  z-index: -1;
}

.contact-info {
  padding: 2rem;
  height: 100%;
}

.info-item {
  margin-bottom: 2rem;
}

.info-item h3 {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 600;
}

.info-item h3 i {
  margin-right: 0.75rem;
  color: var(--color-primary);
  font-size: 1.5rem;
}

.contact-form {
  padding: 2rem;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

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

.form-control {
  padding: 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-control:focus {
  border-color: var(--color-primary-light);
  box-shadow: 0 0 0 3px rgba(69, 39, 160, 0.1);
  outline: none;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-links a {
  padding: 0.5rem 1rem;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all var(--transition-fast);
  color: var(--color-dark);
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-links a:hover {
  background: var(--color-primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(69, 39, 160, 0.15);
}

/* Map Section */
.map-section {
  padding: 0;
}

.map-container {
  height: 400px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.map-container img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* Footer Section */
.footer-section {
  background: var(--gradient-dark);
  color: white;
  padding: 5rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.footer-section:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('image/stars-pattern.jpg') repeat;
  opacity: 0.05;
  pointer-events: none;
}

.footer-about p {
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

.footer-links h3, .footer-contact h3 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  position: relative;
  display: inline-block;
}

.footer-links h3:after, .footer-contact h3:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 2px;
  background: var(--color-accent);
  border-radius: var(--radius-full);
}

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

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

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--transition-fast);
  position: relative;
  padding-left: 15px;
  display: inline-block;
}

.footer-links ul li a:before {
  content: '›';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-accent);
}

.footer-links ul li a:hover {
  color: white;
  transform: translateX(5px);
}

.footer-contact p {
  margin-bottom: 0.75rem;
  opacity: 0.8;
}

.footer-contact strong {
  color: white;
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3rem;
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.copyright {
  opacity: 0.7;
}

.legal-links {
  display: flex;
  gap: 1.5rem;
}

.legal-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
}

.legal-links a:hover {
  color: white;
}

/* Success Page */
.success-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
  padding: 2rem;
  background: var(--gradient-cosmic);
  color: white;
}

.success-content {
  max-width: 600px;
  padding: 3rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.success-icon {
  font-size: 5rem;
  color: var(--color-accent);
  margin-bottom: 2rem;
}

.success-title {
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
  color: white;
}

.success-message {
  margin-bottom: 2rem;
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Terms & Privacy Pages */
.content-page {
  padding-top: 100px;
  min-height: 100vh;
}

.content-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.content-title {
  margin-bottom: 2rem;
}

.content-section {
  margin-bottom: 3rem;
}

.content-section h3 {
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.content-section h3:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: var(--color-primary);
  border-radius: var(--radius-full);
}

/* Responsive Styles */
@media (max-width: 1199.98px) {
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.2rem;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 991.98px) {
  section {
    padding: 4rem 0;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero-section {
    height: auto;
    min-height: 80vh;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .content-box {
    padding: 1.5rem 0;
  }
  
  .press-item {
    flex-direction: column;
    align-items: center;
  }
  
  .press-logo {
    margin-right: 0;
    margin-bottom: 1.5rem;
  }
  
  .press-content {
    text-align: center;
  }
}

@media (max-width: 767.98px) {
  section {
    padding: 3rem 0;
  }
  
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .section-description {
    font-size: 1rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .legal-links {
    justify-content: center;
  }
  
  .content-container {
    padding: 2rem;
  }
}

@media (max-width: 575.98px) {
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn {
    width: 100%;
    margin-bottom: 1rem;
  }
  
  .card-content {
    padding: 1.5rem;
  }
}

/* Animation Classes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fadeInUp {
  animation: fadeInUp 1s ease forwards;
}

@keyframes floatAnimation {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

.animate-float {
  animation: floatAnimation 4s ease infinite;
}

/* Utilities */
.text-primary {
  color: var(--color-primary) !important;
}

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

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

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

.bg-secondary {
  background-color: var(--color-secondary) !important;
}

.bg-accent {
  background-color: var(--color-accent) !important;
}

.bg-light {
  background-color: var(--color-light) !important;
}

.bg-dark {
  background-color: var(--color-dark) !important;
}

.bg-gradient-primary {
  background: var(--gradient-primary) !important;
}

.bg-gradient-dark {
  background: var(--gradient-dark) !important;
}

.shadow-sm {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05) !important;
}

.shadow-md {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.shadow-lg {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}

.rounded-lg {
  border-radius: var(--radius-lg) !important;
}

.glass-effect {
  background: var(--glass-background);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: var(--glass-border);
  box-shadow: var(--glass-shadow);
}

/* Dark Mode Styles (to be implemented with JavaScript toggle) */
.dark-mode {
  --color-light: #121212;
  --color-lighter: #1e1e1e;
  --color-dark: #f5f5f7;
  --color-darker: #ffffff;
}

/* Initialize AOS Library */
[data-aos] {
  pointer-events: none;
}

[data-aos].aos-animate {
  pointer-events: auto;
}