:root {
  --primary-color: #1a1a1a;
  --secondary-color: #ff6b35;
  --accent-color: #00d4ff;
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --dark-gray: #333333;
  --transition: all 0.3s ease;
  --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-secondary: linear-gradient(135deg, #ff6b35 0%, #f7971e 100%);
  --gradient-accent: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
  --shadow-light: 0 5px 15px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 10px 30px rgba(0, 0, 0, 0.15);
  --shadow-heavy: 0 20px 40px rgba(0, 0, 0, 0.2);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: var(--primary-color);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Loading Screen */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: fadeOut 2s ease-in-out 3s forwards;
}

.loading-spinner {
  text-align: center;
}

.spinner-ring {
  display: inline-block;
  width: 80px;
  height: 80px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: var(--white);
  animation: spin 1s ease-in-out infinite;
  margin: 0 10px;
}

.spinner-ring:nth-child(2) {
  animation-delay: 0.1s;
}

.spinner-ring:nth-child(3) {
  animation-delay: 0.2s;
}

.loading-text {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 20px;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

@keyframes fadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

/* Animated Background */
.animated-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  overflow: hidden;
}

.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
}

.shape {
  position: absolute;
  opacity: 0.1;
  animation: float 20s ease-in-out infinite;
}

.shape-1 {
  width: 100px;
  height: 100px;
  background: var(--white);
  border-radius: 50%;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 150px;
  height: 150px;
  background: var(--secondary-color);
  border-radius: 30%;
  top: 20%;
  right: 20%;
  animation-delay: 2s;
}

.shape-3 {
  width: 80px;
  height: 80px;
  background: var(--accent-color);
  border-radius: 20%;
  bottom: 30%;
  left: 30%;
  animation-delay: 4s;
}

.shape-4 {
  width: 120px;
  height: 120px;
  background: var(--white);
  border-radius: 40%;
  bottom: 20%;
  right: 10%;
  animation-delay: 6s;
}

.shape-5 {
  width: 90px;
  height: 90px;
  background: var(--secondary-color);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  animation-delay: 8s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-30px) rotate(120deg);
  }
  66% {
    transform: translateY(30px) rotate(240deg);
  }
}

.particles {
  position: absolute;
  width: 100%;
  height: 100%;
}

.particles::before,
.particles::after {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--white);
  border-radius: 50%;
  animation: particle 15s linear infinite;
}

.particles::before {
  top: 20%;
  left: 20%;
  animation-delay: 0s;
}

.particles::after {
  top: 60%;
  right: 30%;
  animation-delay: 5s;
}


@keyframes particle {
  0% {
    transform: translateY(0) scale(0);
    opacity: 1;
  }
  50% {
    transform: translateY(-100px) scale(1);
    opacity: 0.8;
  }
  100% {
    transform: translateY(-200px) scale(0);
    opacity: 0;
  }
}

/* Header Styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 1000;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

header.scrolled {
  padding: 10px 0;
  box-shadow: var(--shadow-medium);
}

.logo {
  display: flex;
  align-items: center;
}

.logo h1 {
  font-size: 1.8rem;
  margin-bottom: 0;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: "Montserrat", sans-serif;
  color: var(--primary-color);
  animation: logoGlow 3s ease-in-out infinite alternate;
}

.logo h1 span {
  color: var(--secondary-color);
}
/*.logo img{*/
/*width: 40px;*/
/*}*/

@keyframes logoGlow {
  from {
    text-shadow: 0 0 5px rgba(102, 126, 234, 0.3);
  }
  to {
    text-shadow: 0 0 20px rgba(102, 126, 234, 0.6);
  }
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links{
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 30px;
}

.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  text-transform: capitalize;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 1px;
  position: relative;
  color: #000;
  transition: var(--transition);
}

.nav-links .contact-btn {
  background: var(--gradient-secondary);
  padding: 12px 24px;
  border-radius: 25px;
  color: #fff;
  font-weight: 600;
  transform: translateY(0);
  transition: all 0.3s ease;
}

.nav-links .contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.nav-links a:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--gradient-secondary);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-links a:hover:after {
  width: 100%;
}

.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary-color);
  z-index: 2000;
  transition: var(--transition);
}

.hamburger:hover {
  transform: rotate(90deg);
}

.hamburger .open-icon { display: inline-block; }
.hamburger .close-icon { display: none; }

/* When menu open */
.hamburger.active .open-icon { display: none; }
.hamburger.active .close-icon { display: inline-block; }

/* Hero Section */
.hero-section {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  z-index: 1;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  overflow: hidden;
}

.title-line {
  display: block;
  transform: translateY(100%);
  animation: slideUp 1s ease-out forwards;
}

.title-line:nth-child(1) {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  /* -webkit-text-fill-color: transparent; */
    -webkit-text-fill-color: #fff;
  background-clip: text;
  animation-delay: 0.5s;
}

.title-line:nth-child(2) {
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation-delay: 0.7s;
}

@keyframes slideUp {
  to {
    transform: translateY(0);
  }
}

.hero-subtitle {
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeInUp 1s ease-out 1.2s forwards;
}


@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  animation: fadeIn 1s ease-out 2s forwards;
}

.scroll-arrow {
  width: 30px;
  height: 30px;
  border: 2px solid var(--white);
  border-radius: 50%;
  position: relative;
  animation: bounce 2s infinite;
}

.scroll-arrow::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-bottom: 2px solid var(--white);
  border-right: 2px solid var(--white);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* Contact Section */
.contact {
  padding: 120px 0;
  background: var(--white);
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
  z-index: 0;
}

.section-title {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}

.section-title h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  /* -webkit-text-fill-color: transparent; */
    /* -webkit-text-fill-color: blue; */
  color: blue;
  background-clip: text;
  position: relative;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-secondary);
  border-radius: 2px;
}

.section-title p {
  font-size: 1.2rem;
  /* color: #fff; */
  max-width: 600px;
  margin: 0 auto;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 1;
}

#contact .container .section-title p{
  color: #000;
 }


.faq-section .container .section-title h2, p{
  color: white;
}

/* Form Group Wrapper */
.form-group {
  position: relative;
  margin-bottom: 25px;
}

/* Custom Select Styling */
.form-group select {
  width: 100%;
  padding: 18px 16px 10px 16px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--primary-color);
  background-color: var(--white);
  border: 1px solid #ccc;
  border-radius: 12px;
  box-shadow: var(--shadow-light);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg fill='%23666' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
}

/* Focus and Active Styling */
.form-group select:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
}

/* Floating Label Styling */
.form-group label {
  position: absolute;
  top: 16px;
  left: 16px;
  color: #888;
  font-size: 1rem;
  background-color: var(--white);
  padding: 0 6px;
  pointer-events: none;
  transition: 0.2s ease all;
}

/* Move label when select is focused or has value */
.form-group select:focus + label,
.form-group select:not(:placeholder-shown) + label,
.form-group select:valid + label {
  top: -8px;
  left: 12px;
  font-size: 0.75rem;
  color: var(--secondary-color);
}

/* Error message */
.error-message {
  color: red;
  font-size: 0.9rem;
  margin-top: 5px;
}


/* Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.reveal.reveal-left {
  transform: translateX(-50px) translateY(50px);
}

.reveal.reveal-right {
  transform: translateX(50px) translateY(50px);
}

.reveal.revealed {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.info-card,
.social-card {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.info-card::before,
.social-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-secondary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.info-card:hover::before,
.social-card:hover::before {
  transform: scaleX(1);
}

.info-card:hover,
.social-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-heavy);
}

.info-card h3,
.social-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 30px;
  color: var(--primary-color);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.detail-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 15px;
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.detail-item:hover {
  background: var(--light-gray);
  transform: translateX(10px);
}

.icon-wrapper {
  width: 50px;
  height: 50px;
  background: var(--gradient-secondary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.4);
  }
  50% {
    box-shadow: 0 0 0 20px rgba(255, 107, 53, 0);
  }
}

.detail-content h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.detail-content p {
  color: var(--dark-gray);
  font-size: 0.95rem;
}

/* Social Links */
.social-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  background: var(--light-gray);
  border-radius: 12px;
  text-decoration: none;
  color: var(--primary-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-accent);
  transition: left 0.3s ease;
  z-index: 0;
}

.social-link:hover::before {
  left: 0;
}

.social-link:hover {
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

.social-link i,
.social-link span {
  position: relative;
  z-index: 1;
}

.social-link i {
  font-size: 1.2rem;
}

.social-link span {
  font-weight: 500;
}

/* Contact Form */
.form-container {
  background: var(--white);
  padding: 50px;
  border-radius: 20px;
  box-shadow: var(--shadow-medium);
  position: relative;
  overflow: hidden;
}

.form-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--gradient-primary);
}

.form-container h3 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 40px;
  color: var(--primary-color);
  text-align: center;
}

.form-group {
  margin-bottom: 30px;
  position: relative;
}

.input-wrapper {
  position: relative;
  overflow: hidden;
}

.form-control {
  width: 100%;
  padding: 20px 15px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  background: var(--white);
  transition: all 0.3s ease;
  outline: none;
}

.form-control:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-control:focus + .floating-label,
.form-control:not(:placeholder-shown) + .floating-label {
  transform: translateY(-25px) scale(0.8);
  color: var(--secondary-color);
}

.floating-label {
  position: absolute;
  top: 20px;
  left: 15px;
  color: #999;
  font-size: 1rem;
  pointer-events: none;
  transition: all 0.3s ease;
  transform-origin: left top;
}

.input-border {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-secondary);
  transition: width 0.3s ease;
}

.form-control:focus ~ .input-border {
  width: 100%;
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.error-message {
  color: #e74c3c;
  font-size: 0.85rem;
  margin-top: 8px;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.error-message.show {
  opacity: 1;
  transform: translateY(0);
}

/* Submit Button */
.submit-btn {
  width: 100%;
  padding: 18px;
  background: var(--gradient-secondary);
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-heavy);
}

.submit-btn:active {
  transform: translateY(0);
}

.submit-btn.loading {
  pointer-events: none;
}

.btn-text {
  transition: opacity 0.3s ease;
}

.btn-loader {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid var(--white);
  border-radius: 50%;
  opacity: 0;
  animation: spin 1s linear infinite;
  transition: opacity 0.3s ease;
}

.btn-icon {
  transition: transform 0.3s ease;
}

.submit-btn:hover .btn-icon {
  transform: translateX(5px);
}

.submit-btn.loading .btn-text,
.submit-btn.loading .btn-icon {
  opacity: 0;
}

.submit-btn.loading .btn-loader {
  opacity: 1;
}

/* Form Success */
.form-success {
  text-align: center;
  padding: 40px;
  background: #d4edda;
  border-radius: 12px;
  color: #155724;
  display: none;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s ease;
}

.form-success.show {
  display: block;
  opacity: 1;
  transform: scale(1);
  animation: successPulse 0.6s ease-out;
}

@keyframes successPulse {
  0% {
    transform: scale(0.8);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.form-success i {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

.form-success h4 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

/* FAQ Section */
.faq-section {
  padding: 120px 0;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: 15px;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease-out forwards;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }
.faq-item:nth-child(6) { animation-delay: 0.6s; }

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.faq-question {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--white);
  transition: all 0.3s ease;
  position: relative;
}

.faq-question::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 151, 30, 0.1) 100%);
  transition: width 0.3s ease;
}

.faq-item.active .faq-question::before {
  width: 100%;
}

.faq-question h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin: 0;
  position: relative;
  z-index: 1;
}

.faq-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.faq-icon i {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  background: var(--gradient-accent);
  transform: rotate(180deg);
}

.faq-item.active .faq-icon i {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  background: var(--light-gray);
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-content {
  padding: 25px 30px;
  transform: translateY(-20px);
  opacity: 0;
  transition: all 0.3s ease 0.1s;
}

.faq-item.active .faq-content {
  transform: translateY(0);
  opacity: 1;
}

.faq-content p {
  color: var(--dark-gray);
  line-height: 1.7;
  margin: 0;
}

/* Floating Action Button */
.floating-action-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
}

.fab-btn {
  width: 60px;
  height: 60px;
  background: var(--gradient-secondary);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: var(--shadow-heavy);
  transition: all 0.3s ease;
  animation: fabPulse 3s ease-in-out infinite;
}

@keyframes fabPulse {
  0%, 100% {
    box-shadow: var(--shadow-heavy);
  }
  50% {
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
  }
}

.fab-btn:hover {
  transform: scale(1.1);
  background: var(--gradient-accent);
}

.fab-menu {
  position: absolute;
  bottom: 80px;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.fab-btn.active + .fab-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.fab-menu-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 20px;
  background: var(--white);
  border-radius: 25px;
  text-decoration: none;
  color: var(--primary-color);
  box-shadow: var(--shadow-medium);
  transition: all 0.3s ease;
  transform: translateX(20px);
}

.fab-menu-item:hover {
  background: var(--secondary-color);
  color: var(--white);
  transform: translateX(0);
}

.fab-menu-item i {
  font-size: 1.1rem;
}

.fab-menu-item span {
  font-weight: 500;
  white-space: nowrap;
}

/* Footer */
footer {
  background: var(--primary-color);
  color: var(--white);
  padding: 50px 0 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-section h3 {
  position: relative;
  display: inline-block;
  margin-bottom: 25px;
}

.footer-section h3:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--accent-color);
}

.footer-links li {
  margin-bottom: 10px;
  list-style: none;
}

.footer-links a {
  color: #bbbbbb;
  transition: var(--transition);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 5px;
}
.btn {
    padding: 12px 20px;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 12px;
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #444444;
  color: #999999;
  font-size: 0.9rem;
}

/*.hamburger .close-icon {*/
/*  display: none;*/
/*}*/

/*.hamburger .open-icon {*/
/*  display: inline-block;*/
/*}*/

/* When menu is active: swap icons */
/*.hamburger.active .open-icon {*/
/*  display: none;*/
/*}*/

/*.hamburger.active .close-icon {*/
/*  display: inline-block;*/
/*}*/


/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .form-container {
    padding: 30px;
  }
  
  .social-links {
    grid-template-columns: 1fr;
  }
  
  .floating-action-btn {
    bottom: 20px;
    right: 20px;
  }
  
  .fab-btn {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  /*.hamburger {*/
  /*  display: block;*/
  /*}*/
  
    .hamburger {
    display: block;
    position: fixed;   /* was static -> z-index didn’t apply */
    top: 18px;
    right: 18px;
    z-index: 3000;     /* above .nav-links (1500) */
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.3s ease;
    box-shadow: var(--shadow-heavy);
  }
  
/*  .nav-links.active {*/
/*  display: block;*/
/*   optional styling for mobile menu */
/*  position: absolute;*/
/*  top: 100%;*/
/*  left: 0;*/
/*  right: 0;*/
/*  background: white;*/
/*  padding: 1rem;*/
/*  text-align: center;*/
/*}*/
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links li {
    margin: 20px 0;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .contact {
    padding: 80px 0;
  }
  
  .faq-section {
    padding: 80px 0;
  }
  
  .form-container {
    padding: 20px;
  }
  
  .info-card,
  .social-card {
    padding: 25px;
  }
  
  .faq-question {
    padding: 20px;
  }
  
  .faq-content {
    padding: 20px;
  }
}
