:root {
  /* Primary Colors */
  --primary-color: #ff6b35;
  --primary-dark: #e05a2b;
  --primary-light: #ff8a5e;
  
  /* Secondary Colors */
  --secondary-color: #5b86e5;
  --secondary-dark: #4a6fc0;
  --secondary-light: #7da1ff;
  
  /* Accent Colors */
  --accent-color: #36d1dc;
  --accent-dark: #25b6c0;
  --accent-light: #5ce7f0;
  
  /* Neutral Colors */
  --dark-color: #222222;
  --medium-color: #666666;
  --light-color: #f8f9fa;
  --white: #ffffff;
  
  /* Gradients */
  --primary-gradient: linear-gradient(135deg, var(--primary-color) 0%, #ff9f68 100%);
  --secondary-gradient: linear-gradient(135deg, var(--secondary-color) 0%, #36d1dc 100%);
  --dark-gradient: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 100%);
  --overlay-gradient: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.7) 100%);
  
  /* Typography */
  --heading-font: 'Oswald', sans-serif;
  --body-font: 'Nunito', sans-serif;
  
  /* Spacing */
  --section-spacing: 5rem;
  --element-spacing: 2rem;
  
  /* Border Radius */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  
  /* Transitions */
  --transition-fast: 0.3s ease;
  --transition-medium: 0.5s ease;
  --transition-slow: 0.8s ease;
  
  /* Shadows */
  --shadow-sm: 0 2px 5px rgba(0,0,0,0.1);
  --shadow-md: 0 5px 15px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
}

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

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

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

p {
  margin-bottom: 1.5rem;
}

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

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

img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

/* Button Styles */
.btn, 
button, 
input[type="submit"] {
  display: inline-block;
  font-family: var(--heading-font);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius-md);
  transition: var(--transition-fast);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: rgba(255, 255, 255, 0.2);
  transition: var(--transition-fast);
  z-index: -1;
}

.btn:hover::after {
  height: 100%;
}

.btn-primary {
  background: var(--primary-gradient);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #e88e56 100%);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
  color: var(--white);
}

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

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

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

/* Read More Links */
.read-more {
  position: relative;
  font-weight: 600;
  color: var(--secondary-color);
  padding-right: 1.5rem;
  display: inline-block;
}

.read-more::after {
  content: '→';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: var(--transition-fast);
}

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

.read-more:hover::after {
  right: -5px;
}

/* Section Styles */
section {
  padding: 4rem 0;
  position: relative;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
  position: relative;
}

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

.section-subtitle {
  font-size: 1.2rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  color: var(--medium-color);
}

/* Header & Navigation */
header {
  transition: var(--transition-medium);
}

.navbar {
  padding: 1rem 0;
  transition: var(--transition-fast);
  background: transparent;
}

.navbar.scrolled {
  background: var(--dark-color);
  box-shadow: var(--shadow-md);
  padding: 0.5rem 0;
}

.navbar-brand img {
  height: 50px;
  transition: var(--transition-fast);
}

.navbar-dark .navbar-nav .nav-link {
  color: var(--white);
  font-family: var(--heading-font);
  font-weight: 500;
  padding: 0.5rem 1rem;
  position: relative;
}

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

.navbar-dark .navbar-nav .nav-link:hover::after,
.navbar-dark .navbar-nav .nav-link.active::after {
  width: 70%;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
}

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

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

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
  animation: fadeInUp 1s ease;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease 0.2s forwards;
  opacity: 0;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.hero-text {
  color: var(--white);
  max-width: 600px;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease 0.4s forwards;
  opacity: 0;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

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

.phone-mockup {
  transform: perspective(1000px) rotateY(-15deg);
  box-shadow: var(--shadow-lg);
  border-radius: 20px;
  overflow: hidden;
  animation: float 6s ease-in-out infinite;
}

.phone-mockup img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

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

@keyframes float {
  0%, 100% {
    transform: perspective(1000px) rotateY(-15deg) translateY(0);
  }
  50% {
    transform: perspective(1000px) rotateY(-15deg) translateY(-15px);
  }
}

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

.about-image {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: rotate(-2deg);
  transition: var(--transition-medium);
}

.about-image:hover {
  transform: rotate(0deg) scale(1.02);
}

.about-image img {
  width: 100%;
  height: auto;
}

.about-content {
  padding: 2rem 0;
}

.stats-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.stat-item {
  text-align: center;
  flex: 1;
  min-width: 120px;
  margin-bottom: 1.5rem;
}

.stat-number {
  font-family: var(--heading-font);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  display: block;
}

.stat-label {
  color: var(--medium-color);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Methodology Section */
.methodology-section {
  background: #f9f9f9;
  position: relative;
}

.methodology-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('image/pattern-bg.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.05;
  z-index: 0;
}

.methodology-content {
  position: relative;
  z-index: 1;
}

.methodology-image {
  position: relative;
  z-index: 1;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-md);
  border-radius: var(--border-radius-md);
  overflow: hidden;
}

.methodology-cards .card {
  height: 100%;
  border: none;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

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

.methodology-cards .card-image {
  height: 150px;
  width: 100%;
  overflow: hidden;
}

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

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

.methodology-cards .card-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.methodology-cards .card-content h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

/* Process Section */
.process-section {
  background-color: var(--white);
}

.process-card {
  text-align: center;
  padding: 2rem;
  border-radius: var(--border-radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-medium);
  height: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.process-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--primary-gradient);
  z-index: -1;
}

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

.process-icon {
  margin: 0 auto 1.5rem;
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: rgba(255, 107, 53, 0.1);
  transition: var(--transition-fast);
}

.process-card:hover .process-icon {
  background: var(--primary-gradient);
}

.process-icon img {
  max-width: 60%;
  max-height: 60%;
}

.process-timeline {
  display: flex;
  justify-content: space-between;
  margin-top: 4rem;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 25px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.timeline-item {
  text-align: center;
  position: relative;
  flex: 1;
}

.timeline-marker {
  width: 50px;
  height: 50px;
  background: var(--secondary-gradient);
  border-radius: 50%;
  margin: 0 auto 1rem;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  font-weight: 700;
  box-shadow: 0 0 0 5px rgba(91, 134, 229, 0.2);
  transition: var(--transition-fast);
}

.timeline-item:hover .timeline-marker {
  transform: scale(1.1);
  box-shadow: 0 0 0 8px rgba(91, 134, 229, 0.3);
}

.timeline-content h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

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

/* Innovation Section */
.innovation-section {
  background: linear-gradient(135deg, #f6f9fc 0%, #edf1f7 100%);
  position: relative;
  overflow: hidden;
}

.innovation-image {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}

.innovation-image img {
  width: 100%;
  height: auto;
  transition: var(--transition-slow);
}

.innovation-image:hover img {
  transform: scale(1.03);
}

.innovation-content {
  padding: 2rem 0;
}

.innovation-features {
  margin-top: 2rem;
}

.feature-item {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  border-left: 3px solid var(--secondary-color);
  transition: var(--transition-fast);
}

.feature-item:hover {
  border-left-color: var(--primary-color);
  transform: translateX(5px);
}

.feature-item h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.feature-item p {
  color: var(--medium-color);
  margin-bottom: 0;
}

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

.resource-card {
  height: 100%;
  padding: 2rem;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-medium);
  background: #f8f9fa;
  display: flex;
  flex-direction: column;
}

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

.resource-title {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 1rem;
}

.resource-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--primary-gradient);
  border-radius: var(--border-radius-sm);
}

.resource-link {
  display: block;
  padding: 1rem;
  margin-bottom: 1.5rem;
  background: rgba(91, 134, 229, 0.1);
  border-radius: var(--border-radius-sm);
  transition: var(--transition-fast);
}

.resource-link:hover {
  background: rgba(91, 134, 229, 0.2);
  transform: translateX(5px);
}

.resource-link h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--secondary-color);
}

.resource-link p {
  color: var(--medium-color);
  margin-bottom: 0;
  font-size: 0.9rem;
}

.resource-desc {
  color: var(--medium-color);
  font-style: italic;
  margin-top: auto;
}

/* Stories Section */
.stories-section {
  background: #f8f9fa;
}

.story-card {
  height: 100%;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--white);
  transition: var(--transition-medium);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.story-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

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

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

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

.story-card .card-content {
  padding: 2rem;
  text-align: center;
}

.story-card .rating {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Media Section */
.media-section {
  background: var(--white);
}

.media-video {
  margin-bottom: 2rem;
}

.video-thumbnail {
  position: relative;
  height: 350px;
  border-radius: var(--border-radius-md);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  margin-bottom: 1.5rem;
  cursor: pointer;
  box-shadow: var(--shadow-md);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 107, 53, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition-fast);
}

.video-thumbnail:hover .play-button {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--primary-color);
}

.media-gallery .image-container {
  height: 220px;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.media-gallery .image-container:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-md);
}

.media-gallery .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-medium);
}

.media-gallery .image-container:hover img {
  transform: scale(1.05);
}

.media-slider {
  margin-top: 3rem;
}

.slider-container {
  position: relative;
  overflow: hidden;
}

.custom-slider {
  display: flex;
  gap: 20px;
  transition: transform var(--transition-medium);
}

.slider-item {
  flex: 0 0 calc(25% - 15px);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.slider-item:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-md);
}

.slider-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: var(--transition-medium);
}

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

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

.slider-controls button {
  background: var(--secondary-gradient);
  color: var(--white);
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: var(--border-radius-md);
  cursor: pointer;
  transition: var(--transition-fast);
}

.slider-controls button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Press Section */
.press-section {
  background: linear-gradient(135deg, #edf1f7 0%, #f6f9fc 100%);
}

.press-quote {
  position: relative;
  padding: 2rem;
  border-radius: var(--border-radius-md);
  background: var(--white);
  box-shadow: var(--shadow-md);
  height: 100%;
  transition: var(--transition-medium);
}

.press-quote:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.quote-mark {
  font-family: var(--heading-font);
  font-size: 5rem;
  line-height: 1;
  color: var(--primary-color);
  opacity: 0.2;
  position: absolute;
  top: 0;
  left: 1rem;
}

.quote-text {
  position: relative;
  z-index: 1;
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.quote-source {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.quote-source img {
  max-width: 120px;
  height: auto;
}

.quote-source span {
  font-weight: 700;
  color: var(--medium-color);
}

.award-item {
  text-align: center;
  margin-bottom: 2rem;
}

.award-item img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 1rem;
  transition: var(--transition-medium);
}

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

.award-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.award-item p {
  color: var(--medium-color);
  margin-bottom: 0;
}

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

.partner-logos {
  margin-bottom: 3rem;
}

.partner-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  padding: 1.5rem;
  transition: var(--transition-fast);
  filter: grayscale(100%);
  opacity: 0.7;
}

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

.partner-content {
  padding-right: 2rem;
}

.partner-testimonial {
  position: relative;
  padding: 2rem;
  background: #f8f9fa;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
}

.partner-testimonial blockquote {
  margin-bottom: 0;
}

.partner-testimonial cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-weight: 700;
  color: var(--primary-color);
}

/* Insights Section */
.insights-section {
  background: #f8f9fa;
}

.blog-card {
  height: 100%;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-medium);
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.blog-card .card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

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

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

.blog-card .card-content {
  padding: 1.5rem;
  text-align: left;
  width: 100%;
}

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

.post-meta .date, .post-meta .category {
  position: relative;
}

.post-meta .category {
  padding-left: 1rem;
}

.post-meta .category::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
}

/* Contact Section */
.contact-section {
  background: linear-gradient(135deg, #f6f9fc 0%, #edf1f7 100%);
  position: relative;
}

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

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

.info-item .icon {
  margin-right: 1rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 107, 53, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.info-item .text h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.social-links h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

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

.social-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.social-icon:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  background: var(--primary-gradient);
}

.social-icon:hover svg path {
  fill: var(--white);
}

.contact-form {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
}

.contact-form h3 {
  margin-bottom: 1.5rem;
  text-align: center;
}

.form-control, .form-select {
  border: 1px solid #e0e0e0;
  border-radius: var(--border-radius-sm);
  padding: 0.75rem 1rem;
  transition: var(--transition-fast);
}

.form-control:focus, .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
}

.form-label {
  color: var(--medium-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

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

.footer-about {
  margin-bottom: 2rem;
}

.footer-about img {
  margin-bottom: 1.5rem;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.footer-links h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-links h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--primary-gradient);
  border-radius: var(--border-radius-sm);
}

.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: var(--transition-fast);
}

.footer-links ul li a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-social h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-social h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--primary-gradient);
  border-radius: var(--border-radius-sm);
}

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

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

.social-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition-fast);
  display: inline-block;
}

.social-links a:hover {
  color: var(--primary-color);
  transform: translateX(5px);
}

.footer-bottom {
  margin-top: 3rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin-bottom: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom a {
  color: var(--primary-light);
}

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

/* Cookie Consent Popup */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(34, 34, 34, 0.95);
  color: var(--white);
  padding: 1rem;
  z-index: 9999;
  display: none;
  box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
}

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

.cookie-content p {
  margin-bottom: 0;
  flex: 1;
}

/* Success Page */
.success-page {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, #f6f9fc 0%, #edf1f7 100%);
}

.success-icon {
  width: 120px;
  height: 120px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  animation: pulse 2s infinite;
}

.success-message {
  max-width: 600px;
  margin-bottom: 2rem;
}

.success-message h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.4);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(255, 107, 53, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 107, 53, 0);
  }
}

/* Privacy & Terms Pages */
.page-content {
  padding-top: 100px;
  padding-bottom: 4rem;
}

.page-content h1 {
  margin-bottom: 2rem;
  text-align: center;
}

.page-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}

.page-content p, .page-content ul, .page-content ol {
  margin-bottom: 1.5rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .section-title {
    font-size: 2rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.5rem;
  }
  
  .process-timeline {
    flex-direction: column;
    gap: 2rem;
  }
  
  .process-timeline::before {
    display: none;
  }
  
  .timeline-item {
    display: flex;
    align-items: center;
    text-align: left;
    gap: 1.5rem;
  }
  
  .timeline-marker {
    margin: 0;
  }
  
  .slider-item {
    flex: 0 0 calc(50% - 10px);
  }
}

@media (max-width: 768px) {
  section {
    padding: 3rem 0;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-buttons .btn {
    width: 100%;
    margin-bottom: 1rem;
  }
  
  .phone-mockup {
    margin-top: 3rem;
    transform: none;
  }
  
  .about-image {
    margin-bottom: 2rem;
  }
  
  .methodology-image {
    margin-bottom: 2rem;
  }
  
  .innovation-image {
    margin-bottom: 2rem;
  }
  
  .contact-form {
    margin-top: 2rem;
  }
  
  .slider-item {
    flex: 0 0 100%;
  }
  
  .footer-links, .footer-social {
    margin-top: 2rem;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.8rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .footer-bottom {
    text-align: center;
  }
  
  .footer-bottom .text-md-end {
    text-align: center !important;
    margin-top: 1rem;
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: center;
  }
  
  .cookie-content p {
    text-align: center;
    margin-bottom: 1rem;
  }
  .navbar-nav{
    background-color: #222222;
  }
}

