/* Global Styles */
:root {
  --primary-color: #edd979;
  --secondary-color: #333;
  --text-color: #333;
  --light-text: #f9f9f9;
  --dark-bg: #222;
  --light-bg: #f9f9f9;
  --shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  --border-radius: 6px;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--light-bg);
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

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

ul {
  list-style: none;
}

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

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

section {
  padding: 80px 0;
}

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

.section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -15px;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

.btn-primary {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  padding: 12px 25px;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

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

/* Top Contact Bar */
.top-bar {
  background-color: var(--dark-bg);
  color: var(--light-text);
  padding: 6px 0;
  font-size: 0.85rem;
}

.top-bar .container {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-bar-item i {
  font-size: 0.9rem;
  color: var(--primary-color);
}

.top-bar-item a {
  transition: var(--transition);
}

.top-bar-item a:hover {
  color: var(--primary-color);
}

/* Header */
header {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  margin: 0;
  padding: 0;
}

header.sticky {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 0;
  margin: 0;
}

header.sticky .top-bar {
  display: none;
}

header .main-header {
  padding: 10px 0;
  transition: all 0.3s ease;
}

header .main-header .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
}

header.sticky .main-header {
  padding: 5px 0;
}

header.sticky .logos-container {
  display: none;
}

.logos-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 15px;
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
}

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

header.sticky .header-logo {
  height: 40px;
}

nav {
  display: flex;
  align-items: center;
  width: 100%;
}

nav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

nav a {
  font-weight: 500;
  transition: var(--transition);
}

nav a:not(.btn-primary):hover {
  color: var(--primary-color);
}

nav a.active {
  color: var(--primary-color);
  font-weight: 600;
}

nav .btn-primary.active {
  background-color: var(--secondary-color);
  color: var(--light-text);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.mobile-menu-btn span {
  width: 30px;
  height: 3px;
  background-color: var(--secondary-color);
  transition: var(--transition);
}

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

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

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

/* Hero Section */
.hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('banner.png');
  background-size: cover;
  background-position: center;
  color: var(--light-text);
  text-align: center;
  padding: 220px 0 120px;
  margin-top: 0;
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
}

/* Mobile logos container - hidden by default */
.mobile-logos-container {
  display: none;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.5) 100%);
  z-index: 1;
}

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

.hero-logo {
  margin-bottom: 40px;
  animation: floatLogo 5s ease-in-out infinite;
}

.banner-logo {
  max-width: 550px;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.5));
}

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

.hero h1 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 35px;
  opacity: 0.9;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.coming-soon {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  font-weight: 600;
  font-size: 1.2rem;
  padding: 10px 25px;
  border-radius: var(--border-radius);
  margin-bottom: 25px;
  animation: pulse 2s infinite;
}

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

/* Scroll Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-left.active, .slide-in-right.active {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Delay classes */
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }
.delay-500 { transition-delay: 500ms; }

/* About Section */
.about-content {
  display: flex;
  gap: 30px;
  align-items: center;
}

.about-text {
  flex: 1;
}

.about-text p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.about-image {
  flex: 1;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* Services Section */
.services {
  background-color: var(--light-bg);
}

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

.service-card {
  background-color: #fff;
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.service-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.service-card h3 {
  margin-bottom: 15px;
  font-size: 1.5rem;
}

/* Contact Section */
.contact {
  background-color: #fff;
}

.contact-content {
  display: flex;
  gap: 40px;
}

.contact-info, .contact-form {
  flex: 1;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.contact-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-right: 15px;
  margin-top: 5px;
}

.contact-item h3 {
  margin-bottom: 5px;
  font-size: 1.2rem;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  font-family: inherit;
  font-size: 1rem;
}

.form-group textarea {
  resize: vertical;
}

/* Footer */
footer {
  background-color: var(--dark-bg);
  color: var(--light-text);
  padding: 40px 0;
}

footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.social-media a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: var(--transition);
}

.social-media a:hover {
  background-color: var(--primary-color);
  color: var(--dark-bg);
}

/* Page Header */
.page-header {
  background-color: var(--secondary-color);
  color: var(--light-text);
  text-align: center;
  padding: 180px 0 80px;
  position: relative;
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.page-header p {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
}

/* Careers Page */
.job-listing {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.job-card {
  background-color: #fff;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.job-header {
  background-color: var(--secondary-color);
  color: var(--light-text);
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.job-header h2 {
  font-size: 1.6rem;
}

.job-type {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  padding: 5px 10px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
}

.job-details {
  padding: 25px;
}

.job-description {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.job-requirements h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.job-requirements ul {
  padding-left: 20px;
  margin-bottom: 25px;
}

.job-requirements li {
  list-style-type: disc;
  margin-bottom: 8px;
}

.apply-btn {
  margin-top: 10px;
}

/* Position Filled Styles */
.position-filled .job-header {
  background-color: #777;
}

.position-filled .job-type {
  background-color: #999;
  color: #fff;
}

.position-filled .job-card {
  position: relative;
  opacity: 0.85;
}

.position-filled .job-details::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  pointer-events: none;
}

.position-filled .apply-btn {
  background-color: #999;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

.position-filled .apply-btn:hover {
  background-color: #999;
  transform: none !important;
}

.position-filled-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #e74c3c;
  color: white;
  padding: 5px 12px;
  border-radius: 4px;
  font-weight: bold;
  font-size: 0.85rem;
  z-index: 5;
  transform: rotate(5deg);
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  overflow-y: auto;
  padding: 50px 0;
}

.modal-content {
  background-color: #fff;
  border-radius: var(--border-radius);
  max-width: 600px;
  margin: 0 auto;
  padding: 30px;
  position: relative;
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.5rem;
  cursor: pointer;
}

.modal h2 {
  margin-bottom: 25px;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 992px) {
  .section-title {
    font-size: 2rem;
  }
  
  .about-content {
    flex-direction: column;
  }
  
  .about-text, .about-image {
    width: 100%;
  }
  
  .contact-content {
    flex-direction: column;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .banner-logo {
    max-width: 450px;
  }
  
  .hero {
    padding: 180px 0 100px;
    min-height: 600px;
  }
  
  .coming-soon {
    font-size: 1.1rem;
  }
  
  .logos-container {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  
  .header-logo {
    height: 60px;
  }
}

@media (max-width: 768px) {
  body {
    margin-top: 0;
  }
  
  .top-bar .container {
    justify-content: center;
  }
  
  .top-bar {
    margin: 0;
    padding: 6px 0;
    height: 32px;
  }
  
  header .main-header {
    padding: 10px 15px;
  }

  header .main-header .container {
    position: relative;
    padding: 0;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  
  .logos-container {
    margin-right: auto;
    margin-bottom: 0;
    width: auto;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  
  .logo-item {
    padding: 5px;
  }

  nav {
    width: auto;
    justify-content: flex-end;
  }
  
  .header-logo {
    height: 50px;
  }
  
  header.sticky .header-logo {
    height: 35px;
  }
  
  nav ul {
    position: fixed;
    top: 0;
    left: -100%;
    background-color: white;
    width: 100%;
    height: 100vh;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    transition: var(--transition);
    gap: 40px;
    z-index: 1001;
    box-sizing: border-box;
    overflow-y: auto;
  }
  
  header.sticky nav ul {
    top: 0;
    height: 100vh;
  }
  
  nav ul.active {
    left: 0;
  }
  
  nav ul li {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    transition-delay: 0s;
  }
  
  nav ul.active li {
    opacity: 1;
    transform: translateY(0);
  }
  
  nav ul.active li:nth-child(1) { transition-delay: 0.1s; }
  nav ul.active li:nth-child(2) { transition-delay: 0.2s; }
  nav ul.active li:nth-child(3) { transition-delay: 0.3s; }
  nav ul.active li:nth-child(4) { transition-delay: 0.4s; }
  nav ul.active li:nth-child(5) { transition-delay: 0.5s; }
  
  /* Mobile menu logo styles */
  nav ul.active .mobile-logos-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    width: 100%;
    margin-top: 40px;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.3s ease, transform 0.3s ease;
    transition-delay: 0.6s;
  }
  
  .mobile-logos-container .logo-item {
    padding: 5px;
  }
  
  .mobile-logos-container .header-logo {
    height: 40px;
  }
  
  /* Close button for mobile menu */
  .mobile-menu-btn {
    display: flex;
    position: relative;
    z-index: 1002;
    width: 30px;
    height: 30px;
    cursor: pointer;
  }
  
  .mobile-menu-btn span {
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: var(--secondary-color);
    transition: var(--transition);
    left: 0;
  }
  
  .mobile-menu-btn span:nth-child(1) {
    top: 5px;
  }
  
  .mobile-menu-btn span:nth-child(2) {
    top: 14px;
  }
  
  .mobile-menu-btn span:nth-child(3) {
    top: 23px;
  }
  
  .mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 14px;
  }
  
  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 14px;
  }
  
  .hero {
    padding: 150px 0 80px;
    min-height: 500px;
  }
  
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  section {
    padding: 60px 0;
  }
  
  footer .container {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .job-header {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
  
  .banner-logo {
    max-width: 360px;
  }
  
  .coming-soon {
    font-size: 1rem;
    padding: 8px 20px;
  }
  
  .page-header {
    padding: 150px 0 80px;
  }
  
  /* Mobile Dropdown */
  nav ul li.dropdown {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    position: relative;
  }

  nav ul li.dropdown > a.dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 0;
    padding: 12px 0;
    font-weight: normal;
    font-size: 1.1rem;
    gap: 8px;
    position: relative;
    z-index: 1;
    cursor: pointer;
  }

  /* Show the chevron for toggle functionality */
  nav ul li.dropdown > a.dropdown-toggle i {
    display: inline-block;
    transition: transform 0.3s ease;
    font-size: 0.8rem;
  }

  /* Rotate chevron when dropdown is active */
  nav ul li.dropdown.active > a.dropdown-toggle i {
    transform: rotate(180deg);
  }

  /* Mobile dropdown menu specific styles - override desktop */
  nav ul li.dropdown .dropdown-menu {
    position: static !important;
    width: 90%;
    max-width: 300px;
    box-shadow: none;
    background-color: rgba(237, 217, 121, 0.1);
    border-radius: var(--border-radius);
    padding: 0;
    margin: 0;
    display: none;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transform: none !important;
    border-top: none;
    left: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  /* Show dropdown menu when parent is active */
  nav ul li.dropdown.active .dropdown-menu {
    padding: 10px;
    margin: 5px 0 15px 0;
    max-height: 150px;
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  
  .dropdown-menu::before {
    display: none;
  }
  
  .dropdown-menu li {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    padding: 0 !important;
    margin: 0 0 8px 0 !important;
    width: 100%;
    text-align: center;
  }
  
  .dropdown-menu li:last-child {
    margin-bottom: 0 !important;
  }
  
  /* Animation for technology menu items in mobile */
  nav ul.active .dropdown-menu li:nth-child(1) { 
    transition-delay: 0.1s;
  }
  
  nav ul.active .dropdown-menu li:nth-child(2) {
    transition-delay: 0.2s;
  }
  
  nav ul.active .dropdown-menu li {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Show dropdown items when parent dropdown is active */
  nav ul li.dropdown.active .dropdown-menu li {
    opacity: 1;
    transform: translateY(0);
  }
  
  .dropdown-menu li a {
    padding: 12px 15px !important;
    border-left: 3px solid transparent;
    border-radius: var(--border-radius);
    background-color: rgba(237, 217, 121, 0.2);
    color: var(--secondary-color) !important;
    font-weight: 500;
    margin: 0;
    display: block;
    width: auto;
    position: relative;
    padding-left: 35px !important;
    transition: all 0.3s ease;
  }
  
  .dropdown-menu li a::before {
    content: '\f061'; /* Font Awesome arrow right icon */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
  }
  
  .dropdown-menu li a:hover {
    padding: 12px 15px !important;
    padding-left: 35px !important;
    background-color: rgba(237, 217, 121, 0.4);
    border-left: 3px solid var(--primary-color);
    transform: translateX(3px);
    box-shadow: var(--shadow);
  }
}

@media (max-width: 576px) {
  .top-bar {
    font-size: 0.75rem;
  }
  
  .top-bar .container {
    gap: 10px;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .service-card {
    padding: 20px;
  }
  
  .modal-content {
    padding: 20px;
    margin: 0 15px;
  }
  
  .modal {
    padding: 30px 0;
  }
  

  
  .about-text {
    text-align: center;
  }
  
  .banner-logo {
    max-width: 320px;
  }
  
  .hero h1 {
    font-size: 1.5rem;
  }
  
  .header-logo {
    height: 40px;
  }
  
  header.sticky .header-logo {
    height: 25px;
  }
  
  .hero {
    min-height: 450px;
  }
  
  .coming-soon {
    font-size: 0.9rem;
    padding: 8px 15px;
  }
  
  .logos-container {
    justify-content: center;
    gap: 10px;
  }
  
  .logo-item {
    padding: 2px;
  }
  
  .page-header {
    padding: 130px 0 60px;
  }
  
  .page-header h1 {
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  .logos-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
  }
  
  .logo-item {
    flex: 0 0 auto;
    margin: 2px;
  }
  
  .header-logo {
    height: 30px;
  }
  
  header.sticky .header-logo {
    height: 20px;
  }
  
  .banner-logo {
    max-width: 280px;
  }
  
  .hero h1 {
    font-size: 1.4rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
}

/* Products Section Styles */
.products-section {
  padding: 60px 0;
  background: #f9f9f9;
}

.product-list-title {
  text-align: center;
  font-size: 1.8rem;
  margin-top: 40px;
  margin-bottom: 25px;
  color: var(--secondary-color);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 25px;
}

.product-card {
  background-color: #fff;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.product-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.product-image {
  padding: 15px;
  text-align: center;
  background-color: #fff;
  border-bottom: 1px solid #eee;
}

.product-image img {
  max-width: 100%;
  height: 180px;
  object-fit: contain;
}

.product-details {
  padding: 15px;
  text-align: center;
}

.product-title {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  color: var(--text-color);
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
  }
  
  .product-image img {
    height: 150px;
  }
  
  .product-title {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 15px;
    margin-top: 25px;
  }
  
  .product-image {
    height: 140px;
  }
  
  .product-title {
    font-size: 0.9rem;
  }
  
  .load-more-btn {
    padding: 10px 20px;
    font-size: 1rem;
  }
}

/* Dropdown Menu */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.dropdown-toggle i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background-color: white;
  width: 220px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border-radius: var(--border-radius);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1001;
  border-top: 3px solid var(--primary-color);
  display: block;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  display: block;
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 0 10px 10px 10px;
  border-style: solid;
  border-color: transparent transparent var(--primary-color) transparent;
}

.dropdown-menu li {
  padding: 0;
  margin: 0;
  width: 100%;
}

.dropdown-menu li a {
  padding: 12px 20px;
  display: block;
  color: var(--text-color);
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.dropdown-menu li a:hover {
  background-color: #f5f5f5;
  color: var(--primary-color);
  border-left: 3px solid var(--primary-color);
}

/* Category Tabs */
.category-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  position: relative;
}

.category-tabs::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 1.5px;
}

.category-tab {
  flex: 1;
  min-width: 200px;
  max-width: 300px;
  background-color: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  text-align: center;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.category-tab:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.category-tab.active {
  border-color: var(--primary-color);
}

.category-tab img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: var(--transition);
  aspect-ratio: 16/9;
}

.category-tab:hover img {
  transform: scale(1.05);
}

.category-tab h3 {
  padding: 15px 10px;
  font-size: 1.1rem;
  margin: 0;
  color: var(--secondary-color);
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Product Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.modal-content {
  background-color: #fff;
  border-radius: var(--border-radius);
  max-width: 900px;
  width: 90%;
  position: relative;
  padding: 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 2rem;
  color: var(--secondary-color);
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
}

.close-modal:hover {
  color: var(--primary-color);
  transform: rotate(90deg);
}

.modal-image-container {
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}

.modal-image-container img {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: var(--border-radius);
}

.modal h2 {
  text-align: center;
  font-size: 1.8rem;
  margin-top: 15px;
  color: var(--secondary-color);
}

/* Load More Button */
.load-more-container {
  text-align: center;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  width: 100%;
}

.load-more-btn {
  padding: 12px 30px;
  font-size: 1.1rem;
  display: none;
  margin: 0 auto;
}

/* Loading Spinner */
.loading-spinner {
  text-align: center;
  padding: 30px;
  font-size: 2rem;
  color: var(--primary-color);
}

.loading-spinner i {
  animation: spin 1s infinite linear;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.no-products {
  text-align: center;
  padding: 30px;
  font-size: 1.2rem;
  color: var(--secondary-color);
}

/* Update Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 25px;
}

.product-card {
  background-color: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
}

.product-card.active {
  opacity: 1;
  transform: translateY(0);
}

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

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

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

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

.product-details {
  padding: 15px;
  text-align: center;
}

.product-title {
  font-size: 1.1rem;
  margin: 0;
  color: var(--secondary-color);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .category-tab {
    min-width: 180px;
    max-width: 250px;
  }
  
  .category-tab img {
    height: 150px;
  }
  
  .product-image {
    height: 220px;
  }
}

@media (max-width: 768px) {
  .category-tabs {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
  }
  
  .category-tab {
    min-width: calc(50% - 15px);
    max-width: none;
    flex: 0 0 calc(50% - 15px);
  }
  
  .category-tab img {
    height: 140px;
  }
  
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
  }
  
  .product-image {
    height: 180px;
  }
  
  .modal-content {
    width: 95%;
    padding: 15px;
  }
}

@media (max-width: 576px) {
  .category-tabs {
    gap: 12px;
    margin-bottom: 25px;
  }
  
  .category-tab {
    min-width: 100%;
    flex: 0 0 100%;
    margin-bottom: 5px;
    display: flex;
    flex-direction: row;
    align-items: center;
    height: auto;
    padding: 0;
    transition: all 0.25s ease;
    border-width: 1px;
    border-left-width: 4px;
  }
  
  .category-tab.active {
    border-color: var(--primary-color);
    background-color: rgba(237, 217, 121, 0.1);
    transform: translateX(3px);
  }

  .category-tab:hover {
    transform: translateX(3px);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  }
  
  .category-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--primary-color);
    opacity: 0;
    transition: opacity 0.25s ease;
  }
  
  .category-tab:hover::before {
    opacity: 1;
  }
  
  .category-tab.active::before {
    opacity: 1;
  }
  
  .category-tab img {
    width: 120px;
    height: 90px;
    flex: 0 0 120px;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    object-position: center;
  }
  
  .category-tab h3 {
    text-align: left;
    padding: 10px 15px;
    font-size: 1rem;
  }
  
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 15px;
  }
  
  .product-image {
    height: 140px;
  }
  
  .product-title {
    font-size: 0.9rem;
  }
  
  .load-more-btn {
    padding: 10px 20px;
    font-size: 1rem;
  }
  
  .modal-content {
    padding: 10px;
  }
  
  .close-modal {
    top: 10px;
    right: 10px;
    font-size: 1.5rem;
  }
  
  .modal h2 {
    font-size: 1.5rem;
  }
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  max-width: 350px;
  width: 100%;
}

.toast {
  display: flex;
  align-items: center;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  margin-bottom: 10px;
  overflow: hidden;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.3s ease;
  position: relative;
}

.toast.visible {
  opacity: 1;
  transform: translateX(0);
}

.toast-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  min-width: 50px;
  height: 50px;
  font-size: 20px;
  color: white;
}

.toast-success .toast-icon {
  background-color: #4CAF50;
}

.toast-error .toast-icon {
  background-color: #F44336;
}

.toast-content {
  padding: 15px;
  flex: 1;
}

.toast-title {
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--text-color);
}

.toast-message {
  font-size: 14px;
  color: #666;
}

.toast-close {
  padding: 10px;
  cursor: pointer;
  color: #999;
  transition: color 0.2s ease;
  font-size: 16px;
}

.toast-close:hover {
  color: #333;
}

.toast-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;
  transform-origin: left;
}

.toast-success .toast-progress {
  background-color: #4CAF50;
}

.toast-error .toast-progress {
  background-color: #F44336;
}

@media (max-width: 576px) {
  .toast-container {
    top: 10px;
    right: 10px;
    left: 10px;
    max-width: calc(100% - 20px);
  }
}

@keyframes progressShrink {
  0% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}

/* Image Not Found Placeholder */
.product-image img[alt="Resim Bulunamadı"] {
  object-fit: contain;
  padding: 20px;
  background-color: #f8f8f8;
  border: 1px dashed #ddd;
}

.modal-image-container img[alt="Resim Bulunamadı"] {
  object-fit: contain;
  padding: 30px;
  background-color: #f8f8f8;
  border: 1px dashed #ddd;
}

/* Technology Pages */
.technology-section {
  background-color: #f9f9f9;
  padding: 80px 0;
}

.technology-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  align-items: center;
}

.technology-image {
  flex: 1;
  min-width: 320px;
  max-width: 600px;
  margin: 0 auto;
}

.tech-feature-image {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.tech-feature-image:hover {
  transform: scale(1.02);
}

.technology-text {
  flex: 1;
  min-width: 320px;
}

.technology-text h2 {
  font-size: 2.2rem;
  margin-bottom: 25px;
  color: var(--secondary-color);
}

.technology-text p {
  margin-bottom: 20px;
  line-height: 1.7;
  color: var(--text-color);
}

.technology-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin: 40px 0;
}

.feature-item {
  padding: 20px;
  background-color: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

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

.feature-item i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.feature-item h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--secondary-color);
}

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

.tech-details {
  padding: 80px 0;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.detail-card {
  padding: 30px;
  background-color: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  text-align: center;
  border-bottom: 3px solid transparent;
}

.detail-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-bottom: 3px solid var(--primary-color);
}

.detail-icon {
  width: 70px;
  height: 70px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.detail-icon i {
  font-size: 1.8rem;
  color: var(--secondary-color);
}

.detail-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.detail-card p {
  color: var(--text-color);
  line-height: 1.6;
}

.app-download {
  margin: 30px 0;
  padding: 20px;
  background-color: #f5f5f5;
  border-radius: var(--border-radius);
  border-left: 4px solid var(--primary-color);
}

.app-download h3 {
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.app-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.app-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background-color: var(--secondary-color);
  color: #fff;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
}

.app-button:hover {
  background-color: #444;
  transform: translateY(-3px);
}

.app-button i {
  font-size: 1.5rem;
}

.tech-quote {
  padding: 60px 0;
  background-color: #f5f5f5;
}

blockquote {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 30px 40px;
  background-color: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  text-align: center;
  border-left: 5px solid var(--primary-color);
}

blockquote p {
  font-size: 1.3rem;
  line-height: 1.6;
  color: var(--text-color);
  font-style: italic;
  margin-bottom: 15px;
}

blockquote cite {
  font-size: 1rem;
  color: var(--secondary-color);
  font-weight: 600;
}

blockquote::before {
  content: '\201C';
  position: absolute;
  top: 15px;
  left: 20px;
  font-size: 4rem;
  color: var(--primary-color);
  opacity: 0.3;
  font-family: Georgia, serif;
}

@media (max-width: 992px) {
  .technology-content {
    flex-direction: column;
  }
  
  .technology-image {
    order: 1;
    max-width: 100%;
  }
  
  .technology-text {
    order: 2;
  }
  
  .technology-features {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
  
  .tech-feature-image {
    max-width: 100%;
  }
  
  .details-grid {
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  }
}

@media (max-width: 768px) {
  .technology-features {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }
  
  .app-buttons {
    flex-direction: column;
  }
  
  .detail-card {
    padding: 20px;
  }
  
  blockquote {
    padding: 25px 30px;
  }
  
  blockquote p {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .technology-content {
    gap: 30px;
  }
  
  .technology-text h2 {
    font-size: 1.8rem;
  }
  
  .detail-icon {
    width: 60px;
    height: 60px;
  }
  
  .detail-icon i {
    font-size: 1.5rem;
  }
  
  .detail-card h3 {
    font-size: 1.2rem;
  }
  
  blockquote {
    padding: 20px 25px;
  }
  
  blockquote p {
    font-size: 1rem;
  }
}

/* Boom360 Banner */
.boom360-banner {
  width: 100%;
  overflow: hidden;
  margin-top: 120px;
}

.boom360-banner img {
  width: 100%;
  height: auto;
  display: block;
}

.desktop-banner {
  display: block;
}

.mobile-banner {
  display: none;
}

@media (max-width: 768px) {
  .boom360-banner {
    margin-top: 100px;
  }
  
  .desktop-banner {
    display: none;
  }
  
  .mobile-banner {
    display: block;
  }
}

@media (max-width: 576px) {
  .boom360-banner {
    margin-top: 80px;
  }
}

/* Boom360 specific styles */
.boom360-page .technology-text {
  max-width: 100%;
  width: 100%;
}

.boom360-page .technology-features {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin: 50px 0;
}

.boom360-page .feature-item {
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.boom360-page .feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.boom360-page .feature-item i {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.boom360-page .feature-item h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.boom360-page .feature-item p {
  font-size: 1rem;
  line-height: 1.6;
}

.boom360-page .technology-text h2 {
  font-size: 2.2rem;
  margin-bottom: 25px;
  text-align: center;
  position: relative;
}

.boom360-page .technology-text h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 1.5px;
}

@media (max-width: 992px) {
  .boom360-page .technology-features {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
}

@media (max-width: 768px) {
  .boom360-page .intro-text {
    font-size: 1rem;
    line-height: 1.7;
  }
  
  .boom360-page .technology-text h2 {
    font-size: 1.8rem;
  }
  
  .boom360-page .technology-features {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
  }
  
  .boom360-page .feature-item {
    padding: 20px;
  }
}

@media (max-width: 576px) {
  .boom360-page .technology-features {
    grid-template-columns: 1fr;
  }
  
  .boom360-page .intro-text {
    font-size: 0.95rem;
  }
  
  .boom360-page .feature-item {
    padding: 25px 15px;
  }
  
  .boom360-page .feature-item i {
    font-size: 2rem;
  }
}

/* Download Button Styles */
.button-container {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 40px auto;
  text-align: center;
}

.download-btn {
  padding: 14px 30px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  margin: 0 auto;
  border-radius: 12px;
}

.download-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  background-color: #e5ca58;
}

.download-btn i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.download-btn:hover i {
  transform: translateY(-2px);
}

@media (max-width: 576px) {
  .download-btn {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
  }
}

/* Müneccim Banner */
.muneccim-banner {
  width: 100%;
  overflow: hidden;
  margin-top: 120px;
}

.muneccim-banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* Müneccim Page Styles */
.muneccim-page .technology-text {
  max-width: 100%;
  width: 100%;
}

.muneccim-page .feature-item {
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.muneccim-page .feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.muneccim-page .feature-item i {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.muneccim-page .feature-item h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.muneccim-page .feature-item p {
  font-size: 1rem;
  line-height: 1.6;
}

.muneccim-page .technology-features {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin: 50px 0;
}

.muneccim-page .technology-text h2 {
  font-size: 2.2rem;
  margin-bottom: 25px;
  text-align: center;
  position: relative;
}

.muneccim-page .technology-text h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 1.5px;
}

@media (max-width: 992px) {
  .muneccim-page .technology-features {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
}

@media (max-width: 768px) {
  .muneccim-page .intro-text {
    font-size: 1rem;
    line-height: 1.7;
  }
  
  .muneccim-page .technology-text h2 {
    font-size: 1.8rem;
  }
  
  .muneccim-page .technology-features {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
  }
  
  .muneccim-page .feature-item {
    padding: 20px;
  }
}

@media (max-width: 576px) {
  .muneccim-page .technology-features {
    grid-template-columns: 1fr;
  }
  
  .muneccim-page .intro-text {
    font-size: 0.95rem;
  }
  
  .muneccim-page .feature-item {
    padding: 25px 15px;
  }
  
  .muneccim-page .feature-item i {
    font-size: 2rem;
  }
}

/* App Store Button Styles */
.app-store-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.app-store-button {
  display: flex;
  align-items: center;
  background: linear-gradient(145deg, #2a2a2a, #3a3a3a);
  color: #fff;
  padding: 15px 25px;
  border-radius: 12px;
  transition: all 0.3s ease;
  min-width: 200px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.app-store-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #444, #222);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s ease;
}

.app-store-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.app-store-button:hover::before {
  opacity: 1;
}

.app-store-icon {
  font-size: 28px;
  margin-right: 15px;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.app-store-button:hover .app-store-icon {
  transform: scale(1.1);
}

.app-store-text {
  display: flex;
  flex-direction: column;
}

.app-store-tagline {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

.app-store-name {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.app-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 15px;
  color: var(--secondary-color);
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.app-title::after {
  content: '';
  position: absolute;
  width: 50px;
  height: 3px;
  background-color: var(--primary-color);
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.app-description {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 30px;
  color: #555;
  line-height: 1.7;
}

.app-download {
  background-color: rgba(249, 249, 249, 0.7);
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  margin: 40px 0;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

@media (max-width: 576px) {
  .app-store-container {
    flex-direction: column;
    align-items: center;
  }
  
  .app-store-button {
    width: 100%;
    max-width: 250px;
  }
  
  .app-download {
    padding: 30px 20px;
  }
}

.text-center {
  text-align: center;
  display: flex;
  justify-content: center;
  margin: 40px auto;
} 