/* ===== CSS RESET & BASE STYLES ===== */
* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}

html {
   scroll-behavior: smooth;
}

body {
   font-family: "Inter", sans-serif;
   line-height: 1.6;
   color: #1e293b;
   background: #fafbfc;
   overflow-x: hidden;
}

.container {
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 20px;
}

/* ===== SCROLL MARGIN FOR FIXED HEADER ===== */
/* Add scroll margin to all sections to prevent content from being hidden behind fixed header */
section[id] {
   scroll-margin-top: 100px;
}

/* Specific sections that need scroll margin */
#about,
#services,
#booking,
#contact,
#faq,
#portfolio,
#testimonials,
#newsletter {
   scroll-margin-top: 100px;
}

/* ===== UTILITY CLASSES ===== */
.btn {
   display: inline-block;
   padding: 12px 24px;
   text-decoration: none;
   border: none;
   border-radius: 5px;
   font-weight: 600;
   text-align: center;
   cursor: pointer;
   transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
   font-size: 14px;
   position: relative;
   overflow: hidden;
}

.btn::before {
   content: "";
   position: absolute;
   top: 0;
   left: -100%;
   width: 100%;
   height: 100%;
   background: linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.3),
      transparent
   );
   transition: left 0.6s ease;
}

.btn:hover {
   transform: translateY(-3px);
   box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

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

.btn-primary {
   background: rgba(255, 255, 255, 0.95);
   color: #2563eb;
   border: 2px solid rgba(255, 255, 255, 0.3);
   border-radius: 25px;
   backdrop-filter: blur(10px);
   box-shadow: 0 8px 32px rgba(37, 99, 235, 0.2);
}

.btn-primary:hover {
   background: white;
   color: #1d4ed8;
   transform: translateY(-2px);
   box-shadow: 0 12px 40px rgba(37, 99, 235, 0.3);
}

.btn-outline {
   background: rgba(255, 255, 255, 0.1);
   color: white;
   border: 2px solid rgba(255, 255, 255, 0.5);
   border-radius: 25px;
   backdrop-filter: blur(10px);
   box-shadow: 0 8px 32px rgba(255, 255, 255, 0.1);
}

.btn-outline:hover {
   background: rgba(255, 255, 255, 0.2);
   color: white;
   border-color: rgba(255, 255, 255, 0.8);
   transform: translateY(-2px);
   box-shadow: 0 12px 40px rgba(255, 255, 255, 0.2);
}

.btn-block {
   width: 100%;
}

.section-header {
   text-align: center;
   margin-bottom: 60px;
}

.section-header h2 {
   font-size: 2.5rem;
   font-weight: 700;
   color: #1e293b;
   margin-bottom: 16px;
}

.section-header p {
   font-size: 1.1rem;
   color: #64748b;
   max-width: 600px;
   margin: 0 auto;
}

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

.pulse {
   animation: pulse 2s infinite;
}

/* ===== TOP BAR ===== */
.top-bar {
   background: #1e293b;
   color: white;
   padding: 10px 0;
   font-size: 14px;
}

.top-bar-content {
   display: flex;
   justify-content: space-between;
   align-items: center;
}

.contact-info span {
   margin-right: 30px;
}

.contact-info i {
   margin-right: 8px;
   color: #0095c7;
}

.social-media a {
   color: white;
   font-size: 16px;
   margin-left: 15px;
   transition: color 0.3s ease;
}

.social-media a:hover {
   color: #0095c7;
}

/* ===== HEADER ===== */
.header {
   background: rgba(255, 255, 255, 0.95);
   backdrop-filter: blur(10px);
   box-shadow: 0 1px 20px rgba(71, 85, 105, 0.08);
   border-bottom: 1px solid rgba(203, 213, 225, 0.2);
   position: relative;
   z-index: 1000;
   transition: all 0.3s ease;
}

.header.sticky {
   position: fixed;
   top: 0;
   left: 0;
   right: 0;
   background: rgba(255, 255, 255, 0.95);
   backdrop-filter: blur(10px);
}

.navbar {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 15px 0;
}

.logo h2 {
   color: #1e40af;
   font-size: 1.8rem;
   font-weight: 700;
}

.logo i {
   margin-right: 8px;
   color: #0095c7;
}

/* Logo link styling */
.logo-link {
   text-decoration: none;
   color: inherit;
   transition: all 0.3s ease;
   display: inline-block;
   cursor: pointer;
   pointer-events: auto;
   z-index: 1000;
   position: relative;
}

.logo-link:hover {
   text-decoration: none;
   color: inherit;
   transform: scale(1.05);
}

.logo-link:hover h2 {
   color: #2563eb;
}

.logo-link:hover i {
   color: #0095c7;
}

.logo-link:focus {
   outline: 2px solid #2563eb;
   outline-offset: 2px;
}

.nav-menu {
   display: flex;
   list-style: none;
   align-items: center;
}

.nav-menu li {
   margin: 0 20px;
   position: relative;
}

.nav-menu a {
   text-decoration: none;
   color: #475569;
   font-weight: 500;
   transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
   display: flex;
   align-items: center;
   position: relative;
   padding: 8px 16px;
   border-radius: 8px;
}

.nav-menu a::before {
   content: "";
   position: absolute;
   bottom: 0;
   left: 50%;
   width: 0;
   height: 2px;
   background: linear-gradient(135deg, #2563eb, #1d4ed8);
   transition: all 0.3s ease;
   transform: translateX(-50%);
}

.nav-menu a:hover {
   color: #2563eb;
   background: rgba(37, 99, 235, 0.05);
   transform: translateY(-2px);
}

.nav-menu a:hover::before {
   width: 80%;
}

.nav-menu i {
   margin-left: 5px;
   font-size: 12px;
}

.dropdown-menu {
   position: absolute;
   top: 100%;
   left: 0;
   background: white;
   border-radius: 8px;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
   opacity: 0;
   visibility: hidden;
   transform: translateY(10px);
   transition: all 0.3s ease;
   min-width: 200px;
   max-height: 300px;
   overflow-y: auto;
   z-index: 100;
   scrollbar-width: thin;
   scrollbar-color: #cbd5e1 #f1f5f9;
   pointer-events: none;
   will-change: opacity, visibility, transform;
}

/* Desktop hover states - more specific to override mobile styles */
@media (min-width: 769px) {
   .dropdown.active .dropdown-menu,
   .dropdown:hover .dropdown-menu {
      opacity: 1 !important;
      visibility: visible !important;
      transform: translateY(0) !important;
      pointer-events: auto !important;
      display: block !important;
      position: absolute !important;
      top: 100% !important;
      left: 0 !important;
      background: white !important;
      border-radius: 8px !important;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
      min-width: 200px !important;
      max-height: 300px !important;
      overflow-y: auto !important;
      z-index: 100 !important;
      margin-top: 0 !important;
      width: auto !important;
      padding: 0 !important;
      border: none !important;
   }
}

/* Fallback for all screen sizes */
.dropdown.active .dropdown-menu,
.dropdown:hover .dropdown-menu {
   opacity: 1 !important;
   visibility: visible !important;
   transform: translateY(0) !important;
   pointer-events: auto !important;
}

/* Ensure dropdown stays visible when hovering over the menu itself */
@media (min-width: 769px) {
   .dropdown .dropdown-menu:hover {
      opacity: 1 !important;
      visibility: visible !important;
      transform: translateY(0) !important;
      display: block !important;
   }
}

/* Custom scrollbar for webkit browsers */
.dropdown-menu::-webkit-scrollbar {
   width: 6px;
}

.dropdown-menu::-webkit-scrollbar-track {
   background: #f1f5f9;
   border-radius: 3px;
}

.dropdown-menu::-webkit-scrollbar-thumb {
   background: #cbd5e1;
   border-radius: 3px;
}

.dropdown-menu::-webkit-scrollbar-thumb:hover {
   background: #94a3b8;
}

.dropdown-menu li {
   margin: 0;
}

.dropdown > a {
   cursor: pointer;
   position: relative;
   padding-right: 30px;
}

/* Dropdown arrow indicator (works on all screen sizes) */
.dropdown > a::after {
   content: "\f078";
   font-family: "Font Awesome 6 Free";
   font-weight: 900;
   position: absolute;
   right: 10px;
   top: 50%;
   transform: translateY(-50%);
   transition: transform 0.3s ease;
   color: #64748b;
}

.dropdown.active > a::after,
.dropdown:hover > a::after {
   transform: translateY(-50%) rotate(180deg);
   color: #2563eb;
}

/* Mobile dropdown indicator */
@media (max-width: 768px) {
   .dropdown > a {
      background: #f8fafc;
      border-radius: 5px;
      transition: background 0.3s ease;
   }

   .dropdown.active > a {
      background: #e2e8f0;
   }
}

.dropdown-menu a {
   padding: 12px 20px;
   display: block;
   border-bottom: 1px solid #f1f5f9;
}

.dropdown-menu a:hover {
   background: #f8fafc;
}

.header-actions {
   display: flex;
   align-items: center;
   gap: 20px;
}

.phone-number {
   display: flex;
   align-items: center;
   color: #2563eb;
   font-weight: 600;
   font-size: 1.1rem;
}

.phone-number i {
   margin-right: 8px;
   color: #0095c7;
}

.mobile-menu-toggle {
   display: none;
   flex-direction: column;
   cursor: pointer;
}

.mobile-menu-toggle span {
   width: 25px;
   height: 3px;
   background: #374151;
   margin: 3px 0;
   transition: 0.3s;
}

/* Mobile menu toggle active state */
.mobile-menu-toggle.active span:nth-child(1) {
   transform: rotate(45deg) translate(5px, 5px);
}

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

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

/* ===== HERO SECTION ===== */
.hero {
   position: relative;
   height: 100dvh;
   min-height: 600px;
   overflow: hidden;
}

.hero-slider {
   height: 100%;
   width: 100%;
}

.swiper-slide {
   position: relative;
   height: 100%;
}

.slide-bg {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background-size: cover;
   background-position: center;
   background-repeat: no-repeat;
}

.slide-bg::before {
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(30, 41, 59, 0.6);
   z-index: 1;
}

.slide-content {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   text-align: center;
   color: white;
   z-index: 2;
   max-width: 800px;
   padding: 0 20px;
   opacity: 0;
   pointer-events: none;
}

.slide-content h1 {
   font-size: 3.5rem;
   font-weight: 700;
   margin-bottom: 20px;
   line-height: 1.2;
}

.slide-content p {
   font-size: 1.3rem;
   margin-bottom: 30px;
   opacity: 0.9;
}

.hero-overlay {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   z-index: 4;
   display: flex;
   align-items: center;
}

.hero-content {
   display: flex;
   justify-content: flex-start;
   align-items: center;
   width: 100%;
   padding: 0 40px;
   text-align: left;
}

.hero-overlay .container {
   margin: 0;
   max-width: none;
   padding: 0;
}

.hero-text {
   z-index: 5;
   max-width: 800px;
   animation: slideInFromLeft 1.2s ease-out;
}

@keyframes slideInFromLeft {
   0% {
      opacity: 0;
      transform: translateX(-100px);
   }
   100% {
      opacity: 1;
      transform: translateX(0);
   }
}

.hero-text h1 {
   font-size: 3.8rem;
   font-weight: 700;
   color: white;
   margin-bottom: 20px;
   line-height: 1.2;
   text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-text p {
   font-size: 1.4rem;
   color: rgba(255, 255, 255, 0.95);
   margin-bottom: 40px;
   line-height: 1.6;
   text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
   display: flex;
   gap: 20px;
   justify-content: flex-start;
   flex-wrap: wrap;
   animation: slideInFromBottom 1s ease-out 0.3s both;
}

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

.hero-buttons .btn:nth-child(1) {
   animation: bounceIn 0.8s ease-out 0.6s both;
}

.hero-buttons .btn:nth-child(2) {
   animation: bounceIn 0.8s ease-out 0.8s both;
}

@keyframes bounceIn {
   0% {
      opacity: 0;
      transform: scale(0.5);
   }
   60% {
      opacity: 1;
      transform: scale(1.1);
   }
   100% {
      opacity: 1;
      transform: scale(1);
   }
}

.btn-lg {
   padding: 15px 30px;
   font-size: 16px;
   font-weight: 600;
}

/* ===== SERVICES TICKER SECTION ===== */
.services-ticker {
   background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 50%, #f8fafc 100%);
   padding: 20px 0;
   overflow: hidden;
   position: relative;
   border-top: 1px solid #cbd5e1;
   border-bottom: 1px solid #cbd5e1;
}

.services-ticker::before {
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   height: 2px;
   background: linear-gradient(
      90deg,
      transparent 0%,
      #64748b 20%,
      #475569 50%,
      #64748b 80%,
      transparent 100%
   );
}

.services-ticker::after {
   content: "";
   position: absolute;
   bottom: 0;
   left: 0;
   right: 0;
   height: 2px;
   background: linear-gradient(
      90deg,
      transparent 0%,
      #64748b 20%,
      #475569 50%,
      #64748b 80%,
      transparent 100%
   );
}

.ticker-container {
   width: 100%;
   overflow: hidden;
}

.ticker-content {
   display: flex;
   animation: tickerMove 25s linear infinite;
   width: calc(200%);
}

@keyframes tickerMove {
   0% {
      transform: translateX(0);
   }
   100% {
      transform: translateX(-50%);
   }
}

.ticker-item {
   display: flex;
   align-items: center;
   gap: 12px;
   margin: 0 60px;
   white-space: nowrap;
   transition: all 0.3s ease;
}

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

.service-bullet {
   font-size: 24px;
   color: #2563eb;
   font-weight: bold;
   line-height: 1;
}

.service-text {
   font-weight: 700;
   font-size: 18px;
   color: #1e293b;
   letter-spacing: 0.5px;
   line-height: 1.2;
}

/* ===== BOOKING SECTION ===== */
.booking-section {
   padding: 100px 0 80px;
   background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
   position: relative;
   overflow: hidden;
}

.booking-section::before {
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

.booking-wrapper {
   max-width: 900px;
   margin: 0 auto;
   text-align: center;
   position: relative;
   z-index: 2;
}

.booking-header h2 {
   font-size: 2.5rem;
   font-weight: 700;
   color: white;
   margin-bottom: 15px;
   line-height: 1.2;
}

.booking-header p {
   font-size: 1.1rem;
   color: rgba(255, 255, 255, 0.8);
   margin-bottom: 50px;
}

.booking-form {
   background: white;
   padding: 40px;
   border-radius: 20px;
   box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
   backdrop-filter: blur(10px);
   border: 1px solid rgba(255, 255, 255, 0.1);
   animation: floatUpDown 6s ease-in-out infinite;
}

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

.form-grid {
   display: grid;
   grid-template-columns: 1fr 1fr 1fr 1fr;
   gap: 20px;
   align-items: end;
   margin-bottom: 30px;
}

.form-button-center {
   display: flex;
   justify-content: center;
   margin-bottom: 30px;
}

.form-button-center .btn-book {
   width: auto;
   min-width: 200px;
   padding: 18px 40px;
}

.form-group {
   position: relative;
}

.form-group input,
.form-group select {
   width: 100%;
   padding: 18px 20px;
   border: 2px solid #e2e8f0;
   border-radius: 12px;
   font-size: 16px;
   transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
   background: #f8fafc;
   color: #1e293b;
   font-weight: 500;
}

.form-group input:focus,
.form-group select:focus {
   outline: none;
   border-color: #2563eb;
   background: white;
   transform: translateY(-2px);
   box-shadow: 0 8px 25px rgba(37, 99, 235, 0.15);
}

.form-group input::placeholder {
   color: #64748b;
   font-weight: 400;
}

.service-select select {
   cursor: pointer;
   background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23374151" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6,9 12,15 18,9"></polyline></svg>');
   background-repeat: no-repeat;
   background-position: right 16px center;
   background-size: 16px;
   appearance: none;
   -webkit-appearance: none;
   -moz-appearance: none;
}

.btn-book {
   width: 100%;
   padding: 18px 30px;
   font-size: 16px;
   font-weight: 700;
   background: linear-gradient(135deg, #0095c7, #0095c7);
   border: none;
   border-radius: 12px;
   color: white;
   cursor: pointer;
   transition: all 0.3s ease;
   text-transform: uppercase;
   letter-spacing: 0.5px;
   position: relative;
   overflow: hidden;
}

.btn-book::before {
   content: "";
   position: absolute;
   top: 0;
   left: -100%;
   width: 100%;
   height: 100%;
   background: linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent
   );
   transition: left 0.5s ease;
}

.btn-book:hover::before {
   left: 100%;
}

.btn-book:hover {
   transform: translateY(-3px);
   box-shadow: 0 15px 35px rgba(135, 206, 235, 0.4);
   background: linear-gradient(135deg, #0095c7, #0095c7);
}

.btn-book i {
   margin-right: 8px;
}

.booking-trust {
   display: flex;
   justify-content: center;
   gap: 40px;
   padding-top: 25px;
   border-top: 1px solid #e2e8f0;
}

.trust-item {
   display: flex;
   align-items: center;
   gap: 10px;
   color: #64748b;
   font-size: 14px;
   font-weight: 500;
}

.trust-item i {
   color: #2563eb;
   font-size: 16px;
}

.trust-item:last-child {
   color: #2563eb;
   font-weight: 600;
}

.swiper-pagination-bullet {
   background: white;
   opacity: 0.5;
}

.swiper-pagination-bullet-active {
   opacity: 1;
   background: #0095c7;
}
/* Eligibility Checker */
/* Wrapper */
.eligibility-checker {
   max-width: 600px;
   margin: 40px auto;
   padding: 20px;
   background: #ffffff;
   border-radius: 12px;
   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
   font-family: Arial, sans-serif;
}

/* Header */
.eligibility-header {
   text-align: center;
   margin-bottom: 20px;
}

.eligibility-header h2 {
   font-size: 1.8rem;
   color: #2c3e50;
   margin-bottom: 8px;
}

.eligibility-header p {
   font-size: 1rem;
   color: #555;
}

/* Form */
.eligibility-form {
   display: flex;
   flex-direction: column;
   gap: 15px;
}

.eligibility-question label {
   font-weight: bold;
   color: #333;
   display: block;
   margin-bottom: 6px;
}

.eligibility-question select,
.eligibility-question input {
   width: 100%;
   padding: 10px;
   border: 1px solid #ccc;
   border-radius: 6px;
   font-size: 1rem;
}

.eligibility-question select:focus,
.eligibility-question input:focus {
   border-color: #007bff;
   outline: none;
}

/* Result */
.eligibility-result {
   text-align: center;
}

.eligibility-result h3 {
   margin-bottom: 10px;
   color: #2c3e50;
}

#resultMessage {
   margin-top: 15px;
   font-weight: bold;
}

/* Buttons */
.eligibility-nav {
   margin-top: 20px;
   display: flex;
   justify-content: space-between;
}

.eligibility-nav button,
.eligibility-submit {
   background: #007bff;
   color: #fff;
   padding: 10px 18px;
   border: none;
   border-radius: 6px;
   cursor: pointer;
   transition: background 0.3s;
}

.eligibility-nav button:hover,
.eligibility-submit:hover {
   background: #0056b3;
}

/* ===== SERVICES SECTION ===== */
.services {
   padding: 120px 0 100px;
   background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f8fafc 100%);
   position: relative;
}

.services::before {
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   height: 1px;
   background: linear-gradient(90deg, transparent, #bae6fd, transparent);
}

.services-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
   gap: 40px;
   max-width: 1400px;
   margin: 0 auto;
}

.service-card {
   background: rgba(255, 255, 255, 0.8);
   border-radius: 20px;
   overflow: hidden;
   box-shadow: 0 8px 32px rgba(14, 165, 233, 0.1);
   transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
   border: 1px solid rgba(14, 165, 233, 0.1);
   backdrop-filter: blur(10px);
   position: relative;
}

.service-card::before {
   content: "";
   position: absolute;
   top: 0;
   left: -100%;
   width: 100%;
   height: 100%;
   background: linear-gradient(
      90deg,
      transparent,
      rgba(59, 130, 246, 0.1),
      transparent
   );
   transition: left 0.6s ease;
}

.service-card:hover {
   transform: translateY(-15px) scale(1.02) rotateX(5deg);
   box-shadow: 0 20px 50px rgba(14, 165, 233, 0.2);
   border-color: rgba(14, 165, 233, 0.3);
}

.service-card:hover::before {
   left: 100%;
}

.service-image {
   width: 100%;
   height: 200px;
   overflow: hidden;
   position: relative;
}

.service-image img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: all 0.4s ease;
   border-radius: 15px 15px 0 0;
}

.service-card:hover .service-image img {
   transform: scale(1.15) rotate(2deg);
}

/* Service card link styling */
.service-card-link {
   text-decoration: none;
   color: inherit;
   display: block;
   transition: all 0.3s ease;
}

.service-card-link:hover {
   text-decoration: none;
   color: inherit;
}

.service-card-link:hover .service-card {
   transform: translateY(-15px) scale(1.02) rotateX(5deg);
   box-shadow: 0 20px 50px rgba(14, 165, 233, 0.2);
}

.service-content {
   padding: 25px;
}

.service-title {
   display: flex;
   align-items: center;
   gap: 12px;
   justify-content: center;
}

.service-title i {
   font-size: 24px;
   color: #0ea5e9;
   background: linear-gradient(135deg, #e0f2fe, #bae6fd);
   width: 45px;
   height: 45px;
   border-radius: 12px;
   display: flex;
   align-items: center;
   justify-content: center;
   border: 2px solid rgba(14, 165, 233, 0.2);
}

.service-title h3 {
   font-size: 1.3rem;
   font-weight: 700;
   color: #0f172a;
   margin: 0;
   text-align: center;
   line-height: 1.3;
}

/* ===== ABOUT SECTION ===== */
.about {
   padding: 120px 0 100px;
   background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
   position: relative;
}

.about::before {
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots-about" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="0.8" fill="rgba(71,85,105,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots-about)"/></svg>');
   pointer-events: none;
}

.about-content {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 60px;
   align-items: center;
   margin-bottom: 80px;
   position: relative;
   z-index: 1;
}

.about-text h2 {
   font-size: 2.5rem;
   font-weight: 700;
   color: #1e293b;
   margin-bottom: 25px;
}

.about-text p {
   font-size: 1.1rem;
   color: #64748b;
   margin-bottom: 30px;
   line-height: 1.7;
}

.about-features {
   display: flex;
   flex-direction: column;
   gap: 20px;
}

.feature {
   display: flex;
   align-items: flex-start;
   gap: 15px;
}

.feature i {
   color: #0095c7;
   font-size: 1.5rem;
   margin-top: 5px;
}

.feature h4 {
   font-size: 1.2rem;
   font-weight: 600;
   color: #1e293b;
   margin-bottom: 5px;
}

.feature p {
   color: #64748b;
   margin: 0;
}

.about-image img {
   width: 100%;
   max-width: 500px;
   height: 400px;
   object-fit: cover;
   border-radius: 15px;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ===== STATISTICS BANNER ===== */
.statistics-banner {
   background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
   padding: 30px;
   border-radius: 20px;
   height: 130px;
   display: flex;
   align-items: center;
   border: 1px solid rgba(14, 165, 233, 0.1);
   box-shadow: 0 8px 32px rgba(14, 165, 233, 0.08);
   position: relative;
   overflow: hidden;
}

.statistics-banner::before {
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="lightdots" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1" fill="rgba(14,165,233,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23lightdots)"/></svg>');
   pointer-events: none;
}

.stats-container {
   display: flex;
   justify-content: space-between;
   align-items: center;
   width: 100%;
   position: relative;
   z-index: 2;
}

.statistics-banner .stat-item {
   text-align: center;
   flex: 1;
   position: relative;
}

.statistics-banner .stat-item:not(:last-child)::after {
   content: "";
   position: absolute;
   right: 0;
   top: 50%;
   transform: translateY(-50%);
   width: 1px;
   height: 60px;
   background: linear-gradient(
      to bottom,
      transparent,
      rgba(14, 165, 233, 0.3),
      transparent
   );
}

.stat-content {
   display: flex;
   align-items: baseline;
   justify-content: center;
   gap: 2px;
   margin-bottom: 8px;
}

.statistics-banner .stat-number {
   font-size: 2.2rem;
   font-weight: 800;
   color: #0ea5e9;
   line-height: 1;
   text-shadow: 0 2px 4px rgba(14, 165, 233, 0.2);
   animation: pulse 2s ease-in-out infinite;
}

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

.stat-plus {
   font-size: 1.4rem;
   font-weight: 700;
   color: #0ea5e9;
   line-height: 1;
}

.statistics-banner .stat-label {
   font-size: 0.9rem;
   font-weight: 600;
   color: #334155;
   text-transform: capitalize;
   letter-spacing: 0.5px;
   line-height: 1;
}

/* Mobile Responsive */
@media (max-width: 767px) {
   .newsletter-content {
      flex-direction: column;
      text-align: center;
      gap: 1.5rem;
   }

   .newsletter-form form {
      flex-direction: column;
      width: 100%;
   }

   .newsletter-form input[type="email"] {
      width: 100%;
      margin: 0 0 0.8rem 0;
   }

   .newsletter-form button {
      width: 100%;
   }

   .privacy-text {
      text-align: center;
   }
}

/* ===== PORTFOLIO SECTION ===== */
.portfolio {
   padding: 120px 0 100px;
   background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
   position: relative;
}

.portfolio::before {
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   height: 2px;
   background: linear-gradient(90deg, transparent, #cbd5e1, transparent);
}

.portfolio-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap: 40px;
   margin-bottom: 60px;
}

.portfolio-item {
   position: relative;
   border-radius: 20px;
   overflow: hidden;
   height: 300px;
   background: white;
   box-shadow: 0 8px 32px rgba(71, 85, 105, 0.08);
   transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
   border: 1px solid rgba(203, 213, 225, 0.3);
}

.portfolio-item:hover {
   transform: translateY(-15px) scale(1.02);
   box-shadow: 0 25px 50px rgba(71, 85, 105, 0.15);
   border-color: rgba(14, 165, 233, 0.3);
}

.portfolio-image {
   position: relative;
   height: 100%;
   overflow: hidden;
}

.portfolio-image img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: all 0.4s ease;
   filter: brightness(0.9);
}

.portfolio-item:hover .portfolio-image img {
   transform: scale(1.1);
   filter: brightness(1);
}

.portfolio-overlay {
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background: linear-gradient(
      135deg,
      rgba(14, 165, 233, 0.9) 0%,
      rgba(37, 99, 235, 0.8) 100%
   );
   display: flex;
   align-items: center;
   justify-content: center;
   opacity: 0;
   transition: all 0.4s ease;
   transform: translateY(20px);
}

.portfolio-item:hover .portfolio-overlay {
   opacity: 1;
   transform: translateY(0);
}

.portfolio-content {
   text-align: center;
   color: white;
   padding: 25px 20px;
   transform: translateY(20px);
   transition: transform 0.4s ease 0.1s;
}

.portfolio-item:hover .portfolio-content {
   transform: translateY(0);
}

.portfolio-icon {
   width: 60px;
   height: 60px;
   background: rgba(255, 255, 255, 0.2);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   margin: 0 auto 15px;
   font-size: 1.6rem;
   backdrop-filter: blur(10px);
   border: 2px solid rgba(255, 255, 255, 0.3);
}

.portfolio-content h3 {
   font-size: 1.4rem;
   font-weight: 700;
   margin-bottom: 8px;
   line-height: 1.3;
}

.portfolio-content p {
   font-size: 0.95rem;
   margin-bottom: 15px;
   opacity: 0.9;
   line-height: 1.4;
}

.portfolio-link {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   background: white;
   color: #0ea5e9;
   padding: 12px 24px;
   border-radius: 25px;
   text-decoration: none;
   font-weight: 600;
   transition: all 0.3s ease;
   box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.portfolio-link:hover {
   background: #f8fafc;
   transform: translateY(-2px);
   box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.portfolio-link i {
   transition: transform 0.3s ease;
}

.portfolio-link:hover i {
   transform: translateX(5px);
}

.portfolio-actions {
   text-align: center;
   display: flex;
   justify-content: center;
   gap: 20px;
   flex-wrap: wrap;
}

/* ===== AVAILABILITY & AWARDS SECTION ===== */
.availability-awards {
   padding: 120px 0 100px;
   background: white;
}

.availability-content {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 60px;
}

.availability h3,
.awards h3 {
   font-size: 1.8rem;
   font-weight: 600;
   color: #1e293b;
   margin-bottom: 30px;
}

.hours {
   background: #f8fafc;
   border-radius: 10px;
   padding: 30px;
   margin-bottom: 30px;
}

.hour-item {
   display: flex;
   justify-content: space-between;
   padding: 12px 0;
   border-bottom: 1px solid #e2e8f0;
}

.hour-item:last-child {
   border-bottom: none;
}

.hour-item span:first-child {
   font-weight: 500;
   color: #374151;
}

.hour-item span:last-child {
   color: #2563eb;
   font-weight: 600;
}

.awards-grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 25px;
}

.award-item {
   text-align: center;
   padding: 25px;
   background: #f8fafc;
   border-radius: 10px;
   transition: transform 0.3s ease;
}

.award-item:hover {
   transform: translateY(-5px);
}

.award-item i {
   font-size: 2.5rem;
   color: #0095c7;
   margin-bottom: 15px;
}

.award-item h4 {
   font-size: 1.1rem;
   font-weight: 600;
   color: #1e293b;
   margin-bottom: 8px;
}

.award-item p {
   color: #64748b;
   font-size: 0.9rem;
}

/* ===== BLOG SECTION ===== */
.blog {
   padding: 120px 0 100px;
   background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f8fafc 100%);
   position: relative;
}

.blog::before {
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots-light" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="0.8" fill="rgba(59,130,246,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots-light)"/></svg>');
   pointer-events: none;
}

.blog-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap: 40px;
}

.blog-card {
   background: white;
   border-radius: 20px;
   overflow: hidden;
   box-shadow: 0 8px 32px rgba(71, 85, 105, 0.08);
   transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
   border: 1px solid rgba(203, 213, 225, 0.2);
   position: relative;
   z-index: 1;
}

.blog-card:hover {
   transform: translateY(-15px) scale(1.02) rotateY(5deg);
   box-shadow: 0 25px 50px rgba(71, 85, 105, 0.15);
}

.blog-image {
   height: 200px;
   overflow: hidden;
}

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

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

.blog-content {
   padding: 30px;
}

.blog-meta {
   display: flex;
   gap: 15px;
   margin-bottom: 15px;
   font-size: 0.9rem;
}

.blog-meta .date {
   color: #64748b;
}

.blog-meta .category {
   color: #2563eb;
   font-weight: 500;
}

.blog-content h3 {
   font-size: 1.3rem;
   font-weight: 600;
   color: #1e293b;
   margin-bottom: 15px;
   line-height: 1.4;
}

.blog-content p {
   color: #64748b;
   line-height: 1.6;
   margin-bottom: 20px;
}

.read-more {
   color: #2563eb;
   text-decoration: none;
   font-weight: 500;
   display: inline-flex;
   align-items: center;
   gap: 8px;
   transition: color 0.3s ease;
}

.read-more:hover {
   color: #1d4ed8;
}

.read-more i {
   transition: transform 0.3s ease;
}

.read-more:hover i {
   transform: translateX(5px);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
   padding: 120px 0 100px;
   background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
   position: relative;
}

.testimonials::before {
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots-testimonials" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="0.5" fill="rgba(71,85,105,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots-testimonials)"/></svg>');
   pointer-events: none;
}

.testimonials-slider {
   max-width: 800px;
   margin: 0 auto;
   position: relative;
   z-index: 1;
}

.testimonial-card {
   background: rgba(255, 255, 255, 0.8);
   backdrop-filter: blur(10px);
   padding: 40px;
   border-radius: 20px;
   text-align: center;
   margin: 20px;
   transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
   border: 1px solid rgba(203, 213, 225, 0.3);
   box-shadow: 0 8px 32px rgba(71, 85, 105, 0.08);
}

.testimonial-card:hover {
   transform: translateY(-10px) scale(1.02);
   box-shadow: 0 20px 40px rgba(71, 85, 105, 0.1);
   background: white;
}

.stars {
   color: #fbbf24;
   font-size: 1.2rem;
   margin-bottom: 20px;
}

.testimonial-content p {
   font-size: 1.1rem;
   color: #374151;
   line-height: 1.7;
   margin-bottom: 25px;
   font-style: italic;
}

.testimonial-author h4 {
   font-size: 1.2rem;
   font-weight: 600;
   color: #1e293b;
   margin-bottom: 5px;
}

.testimonial-author span {
   color: #64748b;
   font-size: 0.9rem;
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter {
   padding: 120px 0 100px;
   background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #dbeafe 100%);
   position: relative;
   overflow: hidden;
}

.newsletter::before {
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots-newsletter" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="12.5" cy="12.5" r="0.8" fill="rgba(59,130,246,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots-newsletter)"/></svg>');
   pointer-events: none;
}

.newsletter-content {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 60px;
   align-items: center;
   position: relative;
   z-index: 2;
   background: white;
   padding: 60px;
   border-radius: 25px;
   box-shadow: 0 20px 60px rgba(71, 85, 105, 0.08);
   border: 1px solid rgba(203, 213, 225, 0.3);
   backdrop-filter: blur(10px);
}

.newsletter-text h3 {
   font-size: 2.2rem;
   font-weight: 700;
   margin-bottom: 20px;
   color: #1e293b;
   line-height: 1.2;
}

.newsletter-text p {
   font-size: 1.1rem;
   color: #64748b;
   line-height: 1.6;
   margin-bottom: 0;
}

.newsletter-form form {
   display: flex;
   gap: 15px;
   margin-bottom: 20px;
}

.newsletter-form input {
   flex: 1;
   padding: 18px 25px;
   border: 2px solid #e2e8f0;
   border-radius: 12px;
   font-size: 16px;
   transition: all 0.3s ease;
   background: #f8fafc;
}

.newsletter-form input:focus {
   outline: none;
   border-color: #2563eb;
   background: white;
   box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.newsletter-form .btn {
   padding: 18px 35px;
   background: linear-gradient(135deg, #2563eb, #1d4ed8);
   border: none;
   border-radius: 12px;
   color: white;
   font-weight: 600;
   transition: all 0.3s ease;
   box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.newsletter-form .btn:hover {
   background: linear-gradient(135deg, #1d4ed8, #1e40af);
   transform: translateY(-2px);
   box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.privacy-text {
   font-size: 0.95rem;
   color: #64748b;
   display: flex;
   align-items: center;
   gap: 10px;
   margin: 0;
}

.privacy-text i {
   color: #22c55e;
   font-size: 0.9rem;
}

/* ===== FOOTER ===== */
.footer {
   background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
   color: #475569;
   padding: 60px 0 0;
   border-top: 1px solid rgba(203, 213, 225, 0.3);
}

.footer-content {
   display: grid;
   grid-template-columns: 2fr 1fr 1fr 1fr;
   gap: 40px;
   margin-bottom: 40px;
}

.footer-logo h3 {
   font-size: 1.8rem;
   font-weight: 700;
   color: #1e40af;
   margin-bottom: 15px;
}

.footer-logo i {
   color: #0095c7;
}

.footer-logo p {
   color: #94a3b8;
   line-height: 1.6;
   margin-bottom: 25px;
}

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

.social-links a {
   width: 40px;
   height: 40px;
   background: #334155;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   color: white;
   text-decoration: none;
   transition: all 0.3s ease;
}

.social-links a:hover {
   background: #2563eb;
   transform: translateY(-3px);
}

.footer-section h4 {
   font-size: 1.2rem;
   font-weight: 600;
   margin-bottom: 20px;
   color: #1e293b;
}

.footer-section ul {
   list-style: none;
}

.footer-section ul li {
   margin-bottom: 10px;
}

.footer-section ul li a {
   color: #64748b;
   text-decoration: none;
   transition: color 0.3s ease;
}

.footer-section ul li a:hover {
   color: #1e40af;
}

.contact-item {
   display: flex;
   align-items: center;
   gap: 12px;
   margin-bottom: 15px;
   color: #94a3b8;
}

.contact-item i {
   color: #0095c7;
   width: 20px;
}

.footer-bottom {
   border-top: 1px solid rgba(203, 213, 225, 0.3);
   padding: 25px 0;
}

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

.footer-bottom p {
   color: #64748b;
}

.footer-links {
   display: flex;
   gap: 25px;
}

.footer-links a {
   color: #94a3b8;
   text-decoration: none;
   transition: color 0.3s ease;
}

.footer-links a:hover {
   color: #2563eb;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
   .container {
      padding: 0 30px;
   }

   .hero-content {
      gap: 40px;
   }

   .hero-text h1 {
      font-size: 2.5rem;
   }

   .slide-content h1 {
      font-size: 3rem;
   }

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

   .footer-content {
      grid-template-columns: 2fr 1fr 1fr;
      gap: 30px;
   }
}

@media (max-width: 768px) {
   .top-bar {
      display: none;
   }

   .navbar {
      padding: 10px 0;
   }

   .nav-menu {
      position: fixed;
      top: 70px;
      left: -100%;
      width: 100%;
      height: calc(100vh - 70px);
      background: white;
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
      padding-top: 30px;
      transition: left 0.3s ease;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
   }

   .nav-menu.active {
      left: 0;
   }

   .nav-menu li {
      margin: 8px 0;
   }

   .dropdown-menu {
      position: static !important;
      opacity: 0 !important;
      visibility: hidden !important;
      transform: none !important;
      box-shadow: none !important;
      background: #f8fafc !important;
      margin-top: 10px !important;
      max-height: none !important;
      overflow-y: visible !important;
      display: none !important;
      width: 100% !important;
      padding: 10px 0 !important;
      border-radius: 8px !important;
      border: 1px solid #e2e8f0 !important;
      transition: all 0.3s ease !important;
      z-index: 1000 !important;
      pointer-events: none !important;
   }

   .dropdown.active .dropdown-menu {
      display: block !important;
      opacity: 1 !important;
      visibility: visible !important;
      pointer-events: auto !important;
   }

   .dropdown-menu li {
      margin: 3px 0;
   }

   .dropdown-menu a {
      padding: 6px 20px;
      font-size: 0.9rem;
      border-bottom: 1px solid #e2e8f0;
   }

   .dropdown-menu a:last-child {
      border-bottom: none;
   }

   .header-actions {
      gap: 15px;
   }

   .phone-number {
      display: none;
   }

   .mobile-menu-toggle {
      display: flex;
   }

   .hero {
      height: 100vh;
      min-height: 700px;
   }

   .hero-text h1 {
      font-size: 2.8rem;
   }

   .hero-text p {
      font-size: 1.2rem;
   }

   .hero-buttons {
      flex-direction: column;
      align-items: flex-start;
   }

   .btn-lg {
      width: 100%;
      max-width: 300px;
   }

   .booking-header h2 {
      font-size: 2rem;
   }

   .form-grid {
      grid-template-columns: 1fr 1fr;
      gap: 15px;
   }

   .booking-form {
      padding: 35px 25px;
   }

   .booking-trust {
      flex-direction: column;
      gap: 20px;
      text-align: center;
   }

   .slide-content {
      left: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
      max-width: 90%;
      opacity: 0;
      pointer-events: none;
   }

   .hero-content {
      padding: 0 20px;
   }

   .slide-content h1 {
      font-size: 2.5rem;
   }

   .booking-form {
      padding: 30px 25px;
   }

   .checkbox-group {
      grid-template-columns: 1fr;
   }

   .section-header h2 {
      font-size: 2rem;
   }

   .services-grid {
      grid-template-columns: 1fr;
      gap: 30px;
   }

   .service-image {
      height: 180px;
   }

   .service-title h3 {
      font-size: 1.1rem;
   }

   .service-title i {
      width: 40px;
      height: 40px;
      font-size: 20px;
   }

   .about-content {
      grid-template-columns: 1fr;
      gap: 40px;
   }

   .about-text h2 {
      font-size: 2rem;
   }

   /* Statistics Banner Responsive */
   .statistics-banner {
      height: auto;
      padding: 25px 20px;
   }

   .stats-container {
      flex-wrap: wrap;
      gap: 20px;
   }

   .statistics-banner .stat-item {
      flex: 1;
      min-width: calc(50% - 10px);
   }

   .statistics-banner .stat-item:not(:last-child)::after {
      display: none;
   }

   .statistics-banner .stat-number {
      font-size: 1.6rem;
   }

   .stat-plus {
      font-size: 1.2rem;
   }

   .statistics-banner .stat-label {
      font-size: 0.8rem;
   }

   .portfolio-grid {
      grid-template-columns: 1fr;
      gap: 30px;
   }

   .portfolio-item {
      height: 280px;
   }

   .portfolio-content {
      padding: 25px;
   }

   .portfolio-content h3 {
      font-size: 1.3rem;
   }

   .portfolio-icon {
      width: 60px;
      height: 60px;
      font-size: 1.5rem;
   }

   .portfolio-actions {
      flex-direction: column;
      align-items: center;
   }

   .availability-content {
      grid-template-columns: 1fr;
      gap: 40px;
   }

   .awards-grid {
      grid-template-columns: 1fr;
   }

   .blog-grid {
      grid-template-columns: 1fr;
      gap: 30px;
   }

   .newsletter-content {
      grid-template-columns: 1fr;
      gap: 40px;
      text-align: center;
   }

   .newsletter-form form {
      flex-direction: column;
   }

   .footer-content {
      grid-template-columns: 1fr;
      gap: 40px;
      text-align: center;
   }

   .footer-bottom-content {
      flex-direction: column;
      gap: 20px;
      text-align: center;
   }
}

@media (max-width: 480px) {
   .container {
      padding: 0 20px;
   }

   .hero-text h1 {
      font-size: 2.2rem;
   }

   .booking-form {
      padding: 25px 15px;
   }

   .booking-header h2 {
      font-size: 1.8rem;
   }

   .form-grid {
      grid-template-columns: 1fr;
      gap: 15px;
   }

   .booking-trust {
      gap: 15px;
   }

   .trust-item {
      font-size: 13px;
   }

   /* Services Ticker Responsive */
   .services-ticker {
      padding: 15px 0;
   }

   .ticker-item {
      margin: 0 40px;
   }

   .service-text {
      font-size: 16px;
   }

   .service-bullet {
      font-size: 20px;
   }

   .slide-content h1 {
      font-size: 2rem;
   }

   .slide-content p {
      font-size: 1.1rem;
   }

   .booking-form {
      padding: 25px 20px;
   }

   .btn {
      padding: 10px 20px;
      font-size: 13px;
   }

   .service-card {
      padding: 30px 20px;
   }

   .section-header h2 {
      font-size: 1.8rem;
   }

   .portfolio-item {
      height: 250px;
   }

   .portfolio-content {
      padding: 20px;
   }

   .portfolio-content h3 {
      font-size: 1.2rem;
   }

   /* Statistics Banner Mobile */
   .statistics-banner {
      padding: 20px 15px;
   }

   .stats-container {
      flex-direction: column;
      gap: 15px;
   }

   .statistics-banner .stat-item {
      min-width: 100%;
   }

   .statistics-banner .stat-number {
      font-size: 1.6rem;
   }
}

/* ===== SERVICES PAGE STYLES ===== */
.services-hero {
   background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
   padding: 140px 0 80px;
   text-align: center;
   color: white;
}

.services-hero-content h1 {
   font-size: 3.5rem;
   font-weight: 700;
   margin-bottom: 20px;
   background: linear-gradient(135deg, #60a5fa, #3b82f6);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
}

.services-hero-content p {
   font-size: 1.2rem;
   max-width: 800px;
   margin: 0 auto;
   opacity: 0.9;
}

.services-page-content {
   padding: 100px 0;
   background: #f8fafc;
}

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

.service-card {
   background: white;
   border-radius: 20px;
   padding: 40px 30px;
   box-shadow: 0 8px 32px rgba(71, 85, 105, 0.08);
   transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
   border: 1px solid rgba(203, 213, 225, 0.3);
   position: relative;
   overflow: hidden;
}

.service-card::before {
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   height: 4px;
   background: linear-gradient(90deg, #3b82f6, #1d4ed8);
   transform: scaleX(0);
   transition: transform 0.3s ease;
}

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

.service-card:hover {
   transform: translateY(-10px);
   box-shadow: 0 25px 50px rgba(71, 85, 105, 0.15);
   border-color: rgba(59, 130, 246, 0.3);
}

.service-card.featured {
   background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
   color: white;
   border-color: rgba(59, 130, 246, 0.5);
}

.service-card.featured .service-icon {
   background: rgba(59, 130, 246, 0.2);
   color: #60a5fa;
}

.service-icon {
   width: 80px;
   height: 80px;
   background: linear-gradient(135deg, #dbeafe, #bfdbfe);
   border-radius: 20px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 2rem;
   color: #2563eb;
   margin-bottom: 25px;
   transition: all 0.3s ease;
}

.service-card:hover .service-icon {
   transform: scale(1.1);
   background: linear-gradient(135deg, #bfdbfe, #93c5fd);
}

.service-card h3 {
   font-size: 1.5rem;
   font-weight: 600;
   margin-bottom: 15px;
   color: #1e293b;
}

.service-card.featured h3 {
   color: white;
}

.service-card p {
   color: #64748b;
   line-height: 1.6;
   margin-bottom: 25px;
}

.service-card.featured p {
   color: rgba(255, 255, 255, 0.8);
}

.service-features {
   list-style: none;
   margin-bottom: 30px;
}

.service-features li {
   display: flex;
   align-items: center;
   margin-bottom: 12px;
   color: #475569;
   font-size: 0.95rem;
}

.service-features li i {
   color: #10b981;
   margin-right: 10px;
   font-size: 0.9rem;
}

.service-card.featured .service-features li {
   color: rgba(255, 255, 255, 0.9);
}

.service-card.featured .service-features li i {
   color: #34d399;
}

.service-card .btn {
   width: 100%;
   margin-top: auto;
}

/* Services page responsive */
@media (max-width: 768px) {
   .services-hero-content h1 {
      font-size: 2.5rem;
   }

   .services-grid {
      grid-template-columns: 1fr;
      gap: 20px;
   }

   .service-card {
      padding: 30px 20px;
   }

   .service-icon {
      width: 60px;
      height: 60px;
      font-size: 1.5rem;
   }
}

/* ===== SCROLL TO TOP BUTTON ===== */
.scroll-to-top {
   position: fixed;
   bottom: 30px;
   right: 30px;
   width: 50px;
   height: 50px;
   background: linear-gradient(135deg, #2563eb, #1d4ed8);
   color: white;
   border: none;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 20px;
   cursor: pointer;
   opacity: 0;
   visibility: hidden;
   transform: translateY(20px);
   transition: all 0.3s ease;
   z-index: 1000;
}

.scroll-to-top.visible {
   opacity: 1;
   visibility: visible;
   transform: translateY(0);
}

.scroll-to-top:hover {
   background: linear-gradient(135deg, #1d4ed8, #1e40af);
   transform: translateY(-3px);
}

/* ===== LOADING ANIMATION ===== */
.loading {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: white;
   display: flex;
   align-items: center;
   justify-content: center;
   z-index: 9999;
   transition: opacity 0.5s ease;
}

.loading.hidden {
   opacity: 0;
   pointer-events: none;
}

.loading-spinner {
   width: 50px;
   height: 50px;
   border: 4px solid #e2e8f0;
   border-top: 4px solid #2563eb;
   border-radius: 50%;
   animation: spin 1s linear infinite;
}

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