/* Sarsor - Custom CSS Styles */

/* Root Variables */
:root {
  --primary-color: #0056b3;
  --secondary-color: #17a2b8;
  --accent-color: #ffc107;
  --dark-color: #1a1a1a;
  --light-color: #f8f9fa;
  --gradient-primary: linear-gradient(135deg, #0056b3 0%, #17a2b8 100%);
  --gradient-secondary: linear-gradient(135deg, #17a2b8 0%, #20c997 100%);
  --gradient-accent: linear-gradient(135deg, #ffc107 0%, #fd7e14 100%);
  --shadow-light: 0 2px 10px rgba(0,0,0,0.1);
  --shadow-medium: 0 5px 25px rgba(0,0,0,0.15);
  --shadow-heavy: 0 10px 40px rgba(0,0,0,0.2);
  --border-radius: 15px;
  --transition: all 0.3s ease;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Quicksand', sans-serif;
  line-height: 1.6;
  color: var(--dark-color);
  overflow-x: hidden;
}

.container-fluid {
  padding-left: 15px;
  padding-right: 15px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(0, 86, 179, 0.95) 100%);
  color: white;
  padding: 1rem 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  transform: translateY(100%);
  transition: var(--transition);
}

.cookie-banner.show {
  transform: translateY(0);
}

/* Navigation */
.navbar {
  background: rgba(26, 26, 26, 0.9);
  backdrop-filter: blur(20px);
  transition: var(--transition);
  padding: 1rem 0;
}

.navbar.scrolled {
  background: rgba(26, 26, 26, 0.95);
  padding: 0.5rem 0;
}

.navbar-brand {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: white !important;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.brand-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.brand-wave {
  color: var(--secondary-color);
  font-size: 2.5rem;
  animation: wave 2s ease-in-out infinite;
}

@keyframes wave {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-5deg); }
  75% { transform: rotate(5deg); }
}

.nav-link {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8) !important;
  transition: var(--transition);
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: white !important;
}

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

.nav-link:hover::before, .nav-link.active::before {
  width: 100%;
}

.btn-cta {
  background: var(--gradient-primary);
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  transition: var(--transition);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

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

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 86, 179, 0.7) 0%, rgba(23, 162, 184, 0.5) 100%);
  z-index: 1;
}

.hero-section .container{
  position: relative;
  z-index: 6;
}

.hero-content {
  position: relative;
  z-index: 1;
  color: white;
  text-align: center;
}

.hero-title {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 2rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 3rem;
  opacity: 0.9;
}

.hero-cta {
  margin-bottom: 4rem;
}

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

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

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  color: var(--accent-color);
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
  font-weight: 500;
}

.hero-waves {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 120px;
  z-index: 1;
}

.hero-waves svg {
  width: 100%;
  height: 100%;
}

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

.section-header {
  margin-bottom: 4rem;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #6c757d;
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto;
}

/* Featured Service */
.featured-service {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 6rem 0;
  position: relative;
}

.featured-service::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(0,86,179,0.1)"/><circle cx="80" cy="80" r="2" fill="rgba(23,162,184,0.1)"/></svg>');
  opacity: 0.5;
}

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

.service-badge {
  display: inline-block;
  background: var(--gradient-primary);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.service-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--dark-color);
}

.service-description {
  font-size: 1.1rem;
  color: #6c757d;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.service-features {
  margin-bottom: 2rem;
}

.feature {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-weight: 500;
}

.feature i {
  color: var(--primary-color);
  margin-right: 1rem;
  font-size: 1.2rem;
  width: 20px;
}

.service-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.price-from {
  font-size: 1rem;
  color: #6c757d;
}

.price-amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  font-family: 'Outfit', sans-serif;
}

.price-period {
  font-size: 1.2rem;
  color: #6c757d;
}

.service-image {
  position: relative;
}

.service-image img {
  transition: var(--transition);
}

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

.floating-card {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: white;
  padding: 1rem 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-medium);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  animation: float 3s ease-in-out infinite;
}

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

/* Gallery Section */
.gallery-section {
  background: var(--light-color);
  position: relative;
  overflow: hidden;
}

.section-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
}

.wave-decoration {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, var(--secondary-color) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: rotate 60s linear infinite;
  transform: translate(-50%, -50%);
}

@keyframes rotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.gallery-filters {
  margin-bottom: 3rem;
}

.filter-btn {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 0.7rem 1.5rem;
  border-radius: 25px;
  margin: 0 0.5rem;
  transition: var(--transition);
  font-weight: 600;
  cursor: pointer;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--gradient-primary);
  color: white;
  border-color: transparent;
  transform: translateY(-2px);
}

.yacht-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  background: white;
}

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

.yacht-image {
  position: relative;
  overflow: hidden;
}

.yacht-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition);
}

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

.yacht-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 86, 179, 0.9) 0%, rgba(23, 162, 184, 0.9) 100%);
  color: white;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  opacity: 0;
  transition: var(--transition);
}

.yacht-card:hover .yacht-overlay {
  opacity: 1;
}

.yacht-overlay h4 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.yacht-overlay p {
  margin-bottom: 1rem;
  opacity: 0.9;
}

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

.timeline-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M0,50 Q25,20 50,50 T100,50" stroke="rgba(23,162,184,0.1)" stroke-width="2" fill="none"/></svg>');
  opacity: 0.3;
}

.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 4px;
  background: var(--gradient-primary);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
  border-radius: 2px;
}

.timeline-item {
  padding: 2rem 0;
  position: relative;
  width: 50%;
}

.timeline-item::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  right: -10px;
  background: var(--accent-color);
  border: 4px solid white;
  top: 3rem;
  border-radius: 50%;
  z-index: 1;
}

.timeline-item.left {
  left: 0;
}

.timeline-item.right {
  left: 50%;
}

.timeline-item.right::after {
  left: -10px;
}

.timeline-content {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
}

.timeline-item.left .timeline-content {
  margin-right: 2rem;
}

.timeline-item.right .timeline-content {
  margin-left: 2rem;
}

.timeline-time {
  display: inline-block;
  background: var(--gradient-accent);
  color: var(--dark-color);
  padding: 0.5rem 1rem;
  border-radius: 15px;
  font-weight: 600;
  margin-bottom: 1rem;
}

.timeline-content h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: white;
}

.timeline-content p {
  margin-bottom: 1rem;
  opacity: 0.9;
  line-height: 1.6;
}

.timeline-img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: var(--border-radius);
  margin-top: 1rem;
}

/* Calculator Section */
.calculator-section {
  background: linear-gradient(135deg, var(--light-color) 0%, white 100%);
  padding: 6rem 0;
}

.calculator-card {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-heavy);
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.calculator-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 86, 179, 0.05) 0%, rgba(23, 162, 184, 0.05) 100%);
  z-index: 0;
}

.calculator-header {
  position: relative;
  z-index: 1;
  margin-bottom: 2rem;
}

.calculator-header h2 {
  font-size: 2.5rem;
  color: var(--dark-color);
  margin-bottom: 1rem;
}

.calculator-form {
  position: relative;
  z-index: 1;
}

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

.form-control,
.form-select {
  border: 2px solid #e9ecef;
  border-radius: var(--border-radius);
  padding: 0.8rem 1rem;
  font-size: 1rem;
  transition: var(--transition);
}

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

.extras-section {
  background: rgba(248, 249, 250, 0.5);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  margin-top: 2rem;
}

.extras-section h5 {
  color: var(--dark-color);
  margin-bottom: 1rem;
  font-weight: 600;
}

.form-check-label {
  font-weight: 500;
  cursor: pointer;
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.calculator-result {
  background: var(--gradient-primary);
  color: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  margin-top: 2rem;
}

.price-display {
  margin-bottom: 2rem;
}

.price-label {
  font-size: 1.2rem;
  font-weight: 500;
  margin-right: 1rem;
}

.price-amount {
  font-size: 3rem;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  color: var(--accent-color);
}

/* Testimonials Section */
.testimonials-section {
  background: var(--light-color);
  position: relative;
  overflow: hidden;
}

.section-bg-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,60 Q300,120 600,60 T1200,60 L1200,0 L0,0 Z" fill="rgba(0,86,179,0.05)"/></svg>') no-repeat top center;
  background-size: 100% 120px;
}

.testimonials-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  min-height: 300px;
}

.testimonial-card {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-medium);
  padding: 3rem;
  text-align: center;
  position: absolute;
  width: 100%;
  opacity: 0;
  transform: translateX(100px);
  transition: all 0.5s ease;
}

.testimonial-card.active {
  opacity: 1;
  transform: translateX(0);
}

.stars {
  margin-bottom: 1.5rem;
}

.stars i {
  color: var(--accent-color);
  font-size: 1.2rem;
  margin-right: 0.2rem;
}

.testimonial-content p {
  font-size: 1.2rem;
  font-style: italic;
  color: #495057;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.author-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-color);
}

.author-info h5 {
  margin-bottom: 0.2rem;
  color: var(--dark-color);
  font-weight: 600;
}

.author-info span {
  color: #6c757d;
  font-size: 0.9rem;
}

.testimonials-navigation {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.nav-btn {
  background: var(--gradient-primary);
  border: none;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.nav-btn:hover {
  transform: scale(1.1);
}

.testimonials-dots {
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #dee2e6;
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--primary-color);
  transform: scale(1.2);
}

/* FAQ Section */
.faq-section {
  padding: 6rem 0;
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
  box-shadow: var(--shadow-light);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow-medium);
}

.faq-header {
  padding: 1.5rem 2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: between;
  background: linear-gradient(135deg, #f8f9fa 0%, white 100%);
  transition: var(--transition);
}

.faq-header:hover {
  background: var(--gradient-primary);
  color: white;
}

.faq-header h5 {
  margin-bottom: 0;
  font-weight: 600;
  flex: 1;
}

.faq-header i {
  margin-left: 1rem;
  transition: var(--transition);
  color: var(--primary-color);
}

.faq-header:hover i {
  color: white;
}

.faq-item.active .faq-header i {
  transform: rotate(45deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-content {
  max-height: 200px;
}

.faq-content p {
  padding: 1.5rem 2rem;
  margin-bottom: 0;
  color: #6c757d;
  line-height: 1.6;
}

/* Footer */
.footer {
  background: var(--dark-color);
  color: white;
  position: relative;
  overflow: hidden;
}

.footer-waves {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 120px;
}

.footer-waves svg {
  width: 100%;
  height: 100%;
}

.footer-content {
  position: relative;
  z-index: 1;
  padding: 4rem 0 2rem;
}

.footer-brand h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: #adb5bd;
  line-height: 1.6;
  margin-bottom: 2rem;
}

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

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 50%;
  text-decoration: none;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--gradient-primary);
  color: white;
  transform: translateY(-3px);
}

.footer h5 {
  color: white;
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

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

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: #adb5bd;
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: white;
  padding-left: 0.5rem;
}

.footer-contact p {
  color: #adb5bd;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-contact i {
  color: var(--secondary-color);
  width: 20px;
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 2rem 0;
}

.footer-bottom {
  padding-top: 1rem;
}

.footer-bottom p {
  color: #adb5bd;
  font-size: 0.9rem;
}

.footer-bottom .fas.fa-heart {
  animation: heartbeat 1.5s ease-in-out infinite;
}

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

/* Buttons */
.btn {
  border-radius: 25px;
  font-weight: 600;
  padding: 0.8rem 2rem;
  transition: var(--transition);
  border: none;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  cursor: pointer;
}

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

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
  color: white;
}

.btn-success {
  background: var(--gradient-secondary);
  color: white;
}

.btn-success:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
  color: white;
}

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

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-stats {
    gap: 2rem;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
  
  .timeline::after {
    left: 20px;
  }
  
  .timeline-item {
    width: 100%;
    left: 0;
  }
  
  .timeline-item::after {
    left: 10px;
  }
  
  .timeline-item.right::after {
    left: 10px;
  }
  
  .timeline-content {
    margin-left: 3rem !important;
    margin-right: 0 !important;
  }
}

@media (max-width: 767.98px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-cta {
    flex-direction: column;
    gap: 1rem;
  }
  
  .service-price {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  
  .price-amount {
    font-size: 2.5rem;
  }
  
  .floating-card {
    position: static;
    margin-top: 1rem;
  }
  
  .calculator-card {
    padding: 2rem;
  }
  
  .testimonials-navigation {
    gap: 1rem;
  }
  
  .faq-header {
    padding: 1rem 1.5rem;
  }
  
  .faq-content p {
    padding: 1rem 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .btn {
    width: 100%;
    margin-bottom: 1rem;
  }
  
  .btn.ms-2 {
    margin-left: 0 !important;
  }
  
  .calculator-result .btn {
    width: auto;
    margin: 0.5rem;
  }

  .hero-section{
    padding: 100px 10px 60px;
    height: auto;
  }
}

/* Animation Enhancements */
.aos-init.aos-animate {
  transition-duration: 1s;
}

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

.fadeInUp {
  animation: fadeInUp 0.8s ease-out forwards;
}

/* Scroll Effects */
.parallax {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Interactive Elements */
.interactive-element {
  transition: var(--transition);
}

.interactive-element:hover {
  transform: scale(1.05);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--light-color);
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-primary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

/* Print Styles */
@media print {
  .navbar,
  .cookie-banner,
  .hero-section,
  .btn,
  .footer {
    display: none !important;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
    color: black;
  }
  
  .section-title {
    color: black !important;
    font-size: 18pt;
  }
}



.navbar-brand img{
    max-width: 200px;
    width: 200px;
    object-fit: contain;
}

html{
    overflow-x: hidden;
}

.footer .navbar-brand{
    margin-bottom: 20px;
}