/* Global Styles */
:root {
  --primary-color: #4361ee;
  --secondary-color: #3a0ca3;
  --accent-color: #4cc9f0;
  --danger-color: #f72585;
  --success-color: #4ade80;
  --dark-color: #0f172a;
  --light-color: #f8fafc;
  --text-color: #f8fafc;
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
  --card-bg: rgba(15, 23, 42, 0.7);
}

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

html {
  scroll-behavior: smooth;
  scroll-snap-type: y proximity;
  height: 100%;
}

body {
  font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  overflow-x: hidden;
  min-height: 100%;
  position: relative;
  padding-bottom: 60px; /* Reduced padding for footer */
}

section {
  min-height: calc(100vh - 70px - 60px); /* Adjusted for smaller header and footer */
  width: 100%;
  position: relative;
  overflow: visible; /* Changed from hidden to visible */
  padding: 80px 0 40px; /* Added bottom padding to prevent content from being hidden by footer */
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
  z-index: 2;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: #fff;
}

a {
  text-decoration: none;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

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

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  z-index: -1;
}

.btn:hover::before {
  width: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  box-shadow: 0 4px 15px rgba(67, 97, 238, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(67, 97, 238, 0.4);
}

.btn-danger {
  background: linear-gradient(135deg, var(--danger-color), #b5179e);
  color: white;
  box-shadow: 0 4px 15px rgba(247, 37, 133, 0.3);
}

.btn-danger:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(247, 37, 133, 0.4);
}

.btn:disabled {
  background: #64748b;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.section-title {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2.5rem;
  position: relative;
  padding-bottom: 15px;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

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

/* Glassmorphism Styles */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: 15px;
}

/* Header Styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 15px 0;
  transition: all 0.3s ease;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

header h1 {
  font-size: 1.8rem;
  margin-bottom: 0;
  color: var(--accent-color);
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: 0 2px 10px rgba(76, 201, 240, 0.3);
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  color: #fff;
  font-weight: 500;
  position: relative;
  padding: 5px 0;
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  transition: width 0.3s ease;
}

nav ul li a:hover::after,
nav ul li a.active::after {
  width: 100%;
}

nav ul li a.active {
  color: var(--accent-color);
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #fff;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: white;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://assets.codepen.io/1462889/pat.svg') repeat;
  opacity: 0.05;
  animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 100px 100px;
  }
}

.hero-content {
  max-width: 600px;
  animation: fadeInUp 1s ease-out;
}

.hero-content h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  background: linear-gradient(90deg, #fff, var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-images {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
}

.floating-image {
  position: absolute;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  animation: float 6s ease-in-out infinite;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

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

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

.floating-image:nth-child(1) {
  width: 220px;
  height: 160px;
  top: 20%;
  right: 20%;
  animation-delay: 0s;
  transform: rotate(5deg);
}

.floating-image:nth-child(2) {
  width: 200px;
  height: 260px;
  top: 40%;
  right: 40%;
  animation-delay: 1s;
  transform: rotate(-5deg);
}

.floating-image:nth-child(3) {
  width: 240px;
  height: 180px;
  top: 60%;
  right: 10%;
  animation-delay: 2s;
  transform: rotate(8deg);
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}

/* About Section */
.about {
  background-color: #1e293b;
  padding: 80px 0;
  display: flex;
  align-items: center;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.profile-image {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid rgba(76, 201, 240, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3),
              0 0 0 15px rgba(76, 201, 240, 0.1);
  transition: all 0.5s ease;
  animation: pulse 3s infinite;
}

.profile-image:hover {
  transform: scale(1.05);
  border-color: rgba(76, 201, 240, 0.5);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(76, 201, 240, 0.4),
                0 0 0 15px rgba(76, 201, 240, 0.1);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(76, 201, 240, 0),
                0 0 0 30px rgba(76, 201, 240, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(76, 201, 240, 0),
                0 0 0 15px rgba(76, 201, 240, 0.1);
  }
}

.profile-icon {
  font-size: 8rem;
  color: var(--accent-color);
  background-color: rgba(15, 23, 42, 0.8);
  width: 300px;
  height: 300px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.about-text {
  flex: 1;
}

.about-text h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--accent-color);
  text-shadow: 0 2px 10px rgba(76, 201, 240, 0.3);
}

.about-text h4 {
  font-size: 1.2rem;
  color: #4cc9f0;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.about-text p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

.about-skills {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.skill {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: linear-gradient(135deg, rgba(67, 97, 238, 0.1), rgba(76, 201, 240, 0.1));
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.skill:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  background: linear-gradient(135deg, rgba(67, 97, 238, 0.2), rgba(76, 201, 240, 0.2));
  border-color: rgba(76, 201, 240, 0.3);
}

.skill i {
  color: var(--accent-color);
  font-size: 1.5rem;
  background: rgba(76, 201, 240, 0.1);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

/* Services Section */
.services {
  background-color: #0f172a;
  padding: 80px 0 100px; /* Increased bottom padding */
}

.service-category {
  margin-bottom: 50px;
  position: relative;
}

.service-category h3 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(76, 201, 240, 0.2);
}

.service-category h3 i {
  color: var(--accent-color);
  background: rgba(76, 201, 240, 0.1);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.7), rgba(30, 41, 59, 0.7));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  padding: 30px;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(76, 201, 240, 0.3);
}

.service-icon {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: rgba(76, 201, 240, 0.1);
  border-radius: 50%;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
  background: rgba(76, 201, 240, 0.2);
}

.service-card h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  text-align: center;
  color: #fff;
}

.service-card p {
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Booking Section */
.booking {
  background-color: #1e293b;
  padding: 80px 0 100px; /* Increased bottom padding */
}

.booking-container {
  max-width: 800px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.7), rgba(30, 41, 59, 0.7));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  padding: 30px;
}

.booking-steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  flex: 1;
}

.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 20px;
  right: -50%;
  width: 100%;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.2);
  z-index: 1;
}

.step.active:not(:last-child)::after {
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.step.active .step-number {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  transform: scale(1.2);
  box-shadow: 0 0 15px rgba(76, 201, 240, 0.5);
}

.step-title {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.step.active .step-title {
  color: var(--accent-color);
  font-weight: 600;
}

.booking-form {
  margin-top: 30px;
}

.booking-form h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s ease;
  background-color: rgba(15, 23, 42, 0.5);
  color: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(76, 201, 240, 0.2);
}

.form-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

.confirmation-details {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.5), rgba(30, 41, 59, 0.5));
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.confirmation-details h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: var(--accent-color);
}

.confirmation-details p {
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
}

.confirmation-details p strong {
  min-width: 100px;
  display: inline-block;
  color: rgba(255, 255, 255, 0.7);
}

.booking-notice {
  background: linear-gradient(135deg, rgba(247, 37, 133, 0.1), rgba(181, 23, 158, 0.1));
  padding: 20px;
  border-radius: 10px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(247, 37, 133, 0.2);
}

.booking-notice p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.9);
}

.booking-notice i {
  color: var(--danger-color);
}

.booking-notice ul {
  padding-left: 35px;
}

.booking-notice li {
  margin-bottom: 8px;
  position: relative;
}

.booking-notice li::before {
  content: '•';
  color: var(--danger-color);
  position: absolute;
  left: -15px;
}

.booking-success {
  text-align: center;
  padding: 40px 30px;
}

.success-icon {
  font-size: 5rem;
  color: var(--success-color);
  margin-bottom: 20px;
  animation: scaleIn 0.5s ease;
  text-shadow: 0 0 20px rgba(74, 222, 128, 0.5);
}

@keyframes scaleIn {
  0% {
    transform: scale(0);
  }
  70% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

.booking-success h3 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: var(--success-color);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.booking-success p {
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
}

.booking-reference {
  font-weight: 700;
  color: var(--accent-color);
  background: rgba(76, 201, 240, 0.1);
  padding: 5px 10px;
  border-radius: 5px;
  letter-spacing: 1px;
}

/* Manage Booking Section */
.manage-booking {
  background-color: #0f172a;
  padding: 80px 0 100px; /* Increased bottom padding */
}

.manage-container {
  max-width: 600px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.7), rgba(30, 41, 59, 0.7));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  padding: 30px;
}

.cancel-booking {
  margin-bottom: 30px;
}

.cancel-booking h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cancel-booking p {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.9);
}

.cancellation-result {
  text-align: center;
  padding: 30px 20px;
}

.result-icon {
  font-size: 4rem;
  margin-bottom: 20px;
}

.success-icon {
  color: var(--success-color);
  text-shadow: 0 0 20px rgba(74, 222, 128, 0.5);
}

.error-icon {
  color: var(--danger-color);
  text-shadow: 0 0 20px rgba(247, 37, 133, 0.5);
}

/* Contact Section */
.contact {
  background-color: #1e293b;
  padding: 80px 0 100px; /* Increased bottom padding */
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.contact-info {
  padding: 30px;
}

.contact-info h3 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  animation: fadeInUp 0.5s ease;
  animation-fill-mode: both;
}

.contact-item:nth-child(2) {
  animation-delay: 0.2s;
}

.contact-item:nth-child(3) {
  animation-delay: 0.4s;
}

.contact-item:nth-child(4) {
  animation-delay: 0.6s;
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(67, 97, 238, 0.1), rgba(76, 201, 240, 0.1));
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item:hover .contact-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, rgba(67, 97, 238, 0.2), rgba(76, 201, 240, 0.2));
  border-color: rgba(76, 201, 240, 0.3);
}

.contact-icon i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.contact-text h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: #fff;
}

.contact-text p {
  color: rgba(255, 255, 255, 0.9);
}

.contact-text p a {
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.contact-text p a:hover {
  color: #fff;
}

.map-container {
  border-radius: 15px;
  overflow: hidden;
  height: 100%;
  min-height: 300px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
}

.map-container iframe {
  border-radius: 15px;
}

/* Footer Styles - REDUCED SIZE */
footer {
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px 0; /* Reduced padding */
  position: fixed; /* Changed to fixed */
  bottom: 0;
  width: 100%;
  z-index: 100;
  height: 60px; /* Explicitly set height */
}

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

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

.footer-info {
  flex: 1;
}

.footer-info h3 {
  font-size: 1.2rem; /* Reduced size */
  margin-bottom: 0; /* Removed margin */
  color: var(--accent-color);
}

.footer-info p {
  font-size: 0.8rem; /* Reduced size */
  color: rgba(255, 255, 255, 0.7);
  margin: 0; /* Removed margin */
}

.footer-contact {
  text-align: right;
}

.footer-contact h4 {
  font-size: 0.9rem; /* Reduced size */
  margin-bottom: 0; /* Removed margin */
  color: #fff;
}

.footer-contact p {
  font-size: 0.8rem; /* Reduced size */
  color: rgba(255, 255, 255, 0.7);
  margin: 0; /* Removed margin */
  display: inline-block;
  margin-left: 15px;
}

.footer-contact p i {
  color: var(--accent-color);
  margin-right: 5px;
}

.copyright {
  display: none; /* Hidden copyright section */
}

/* Quick Contact Section */
.quick-contact {
  position: fixed;
  right: 20px;
  bottom: 80px;
  z-index: 99;
}

.quick-contact-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  box-shadow: 0 5px 15px rgba(67, 97, 238, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.quick-contact-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgba(67, 97, 238, 0.5);
}

/* Section Navigation */
.section-nav {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.section-nav-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.section-nav-dot:hover,
.section-nav-dot.active {
  background-color: var(--accent-color);
  transform: scale(1.2);
  box-shadow: 0 0 10px rgba(76, 201, 240, 0.5);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 15px;
  display: flex;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
}

.scroll-indicator::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.7);
  margin-top: 10px;
  animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(20px);
    opacity: 0;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

.animate-delay-1 {
  transition-delay: 0.2s;
}

.animate-delay-2 {
  transition-delay: 0.4s;
}

.animate-delay-3 {
  transition-delay: 0.6s;
}

/* Micro-animations */
.micro-hover {
  transition: all 0.3s ease;
}

.micro-hover.pulse {
  animation: microPulse 0.5s ease;
}

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

/* Responsive Styles */
@media (max-width: 992px) {
  .hero-content h2 {
    font-size: 2.5rem;
  }
  
  .hero-images {
    opacity: 0.3;
    width: 100%;
  }
  
  .about-content {
    flex-direction: column;
    gap: 30px;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
  }
  
  .map-container {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  
  nav {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(15, 23, 42, 0.95);
    transition: all 0.4s ease;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  nav.active {
    left: 0;
  }
  
  nav ul {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  nav ul li {
    margin: 0;
  }
  
  nav ul li a {
    font-size: 1.2rem;
    padding: 10px 20px;
    display: block;
  }
  
  .hero-content h2 {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .booking-steps {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  
  .step {
    flex-direction: row;
    width: 100%;
    gap: 15px;
  }
  
  .step:not(:last-child)::after {
    display: none;
  }
  
  .step-number {
    margin-bottom: 0;
  }
  
  .form-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .form-buttons button {
    width: 100%;
  }
  
  .about-skills {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  
  .footer-contact {
    text-align: center;
  }
  
  .footer-contact p {
    display: block;
    margin: 5px 0;
    margin-left: 0;
  }
}

@media (max-width: 576px) {
  .hero-content h2 {
    font-size: 1.8rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .service-grid {
    grid-template-columns: 1fr;
  }
  
  .confirmation-details p {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
  
  .confirmation-details p strong {
    min-width: auto;
  }
}

/* Additional styles for multi-page layout */

/* Home page specific styles */
.home-services {
  background-color: #0f172a;
  padding: 80px 0;
}

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

.home-service-card {
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s ease;
}

.home-service-card .service-icon {
  margin: 0 auto 25px;
}

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

.home-service-card p {
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.8);
}

.home-service-card .btn {
  margin-top: 10px;
}

.home-cta {
  background: linear-gradient(135deg, #1e293b, #0f172a);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.home-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://assets.codepen.io/1462889/pat.svg') repeat;
  opacity: 0.05;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 40px;
  text-align: center;
  border-radius: 20px;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #fff, var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Logo styling */
.logo {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--accent-color);
  text-shadow: 0 2px 10px rgba(76, 201, 240, 0.3);
  transition: all 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
  color: #fff;
}

/* Page transitions */
body {
  animation: fadeIn 0.5s ease-in-out;
}

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

/* Services page specific styles */
.cta-container {
  text-align: center;
  margin-top: 50px;
}

/* Responsive adjustments for multi-page layout */
@media (max-width: 768px) {
  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
  
  .home-services-grid {
    grid-template-columns: 1fr;
  }
}

/* Enhanced menu toggle for mobile */
.menu-toggle {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  display: none;
  transition: all 0.3s ease;
  padding: 5px;
  border-radius: 5px;
}

.menu-toggle:hover {
  color: var(--accent-color);
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  
  nav {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(15, 23, 42, 0.95);
    transition: all 0.4s ease;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  nav.active {
    left: 0;
  }
  
  nav ul {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  nav ul li {
    margin: 0;
  }
  
  nav ul li a {
    font-size: 1.2rem;
    padding: 10px 20px;
    display: block;
  }
}

/* Enhanced accessibility focus styles */
a:focus, button:focus, input:focus, select:focus, textarea:focus {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

/* Skip to content link for accessibility */
.skip-to-content {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--primary-color);
  color: white;
  padding: 10px 20px;
  z-index: 9999;
  transition: transform 0.3s;
}

.skip-to-content:focus {
  left: 0;
  transform: translateY(0);
}

/* Hero buttons styling */
.hero-buttons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

@media (max-width: 576px) {
  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }
  
  .hero-buttons .btn {
    width: 100%;
    text-align: center;
  }
}
