/* Import Google Fonts
-------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/* Modern CSS with responsive design
-------------------------------------------------- */
:root {
  /* Primary Colors */
  --primary: #4F6F8F;
  --primary-dark: #385670;
  --primary-light: #7A97B5;
  
  /* Secondary Colors */
  --secondary: #8195AA;
  --secondary-light: #B7C5D3;
  
  /* Neutral Colors */
  --dark: #2C3E50;
  --light: #F5F7FA;
  --gray-100: #EEF2F6;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-400: #94A3B8;
  
  /* Accent Colors */
  --accent: #5B9BD5;
  --accent-light: #81B8E4;
  
  /* Status Colors */
  --success: #3C8C7C;
  --warning: #D4A968;
  --danger: #C25450;

  /* Typography */
  --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'DM Serif Display', Georgia, serif;
  --line-height-normal: 1.7;
  --line-height-heading: 1.3;
}

/* Base Styles & Typography
-------------------------------------------------- */
body {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--dark);
  background-color: var(--light);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: 76px; /* Height of navbar */
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  color: var(--dark);
  letter-spacing: -0.02em;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.75rem;
  margin-bottom: 1.25rem;
}

h3 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

h4 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

h5 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

h6 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1.5rem;
  font-size: 1.0625rem;
}

.lead {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.8;

}

.text-small {
  font-size: 0.9375rem;
}

/* Buttons & Interactive Elements
-------------------------------------------------- */
.btn {
  padding: 0.875rem 1.75rem;
  font-weight: 600;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

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

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

.btn-outline-light {
  border-width: 2px;
}

.btn-lg {
  padding: 1.125rem 2.25rem;
  font-size: 1.1rem;
}

/* Navigation
-------------------------------------------------- */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(44, 62, 80, 0.1);
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark) !important;
  font-family: 'Montserrat', sans-serif;
}

.nav-link {
  font-weight: 500;
  color: var(--dark) !important;
  padding: 0.5rem 1rem !important;
  position: relative;
  transition: color 0.3s ease;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 1rem;
  background: var(--primary);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: calc(100% - 2rem);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary) !important;
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .navbar-collapse {
    background: white;
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    margin-top: 1rem;
  }

  .nav-link {
    font-size: 1rem;
  }

  .nav-link::after {
    left: 0;
  }

  .nav-link:hover::after,
  .nav-link.active::after {
    width: 50px;
  }
}

/* Hero Section
-------------------------------------------------- */
.hero-section {
  background: url('../images/h1_hero.png') no-repeat center center;
  background-size: cover;
  position: relative;
  padding: 4rem 0 8rem;
  color: white;
  min-height: 70vh;
  display: flex;
  align-items: center;
  margin-top: 0;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(44, 62, 80, 0.85) 0%, rgba(44, 62, 80, 0.65) 100%);
  z-index: 1;
}

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

.hero-section h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-section p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 600px;
}

@media (max-width: 768px) {
  .hero-section {
    padding: 3rem 0 6rem;
    background-position: 70% center;
    min-height: 60vh;
    margin-top: 0;
  }
  
  .hero-section h1 {
    font-size: 2.5rem;
  }
  
  .hero-section p {
    font-size: 1.1rem;
  }
  
  .hero-section::before {
    background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 100%);
  }

  body {
    padding-top: 60px; /* Adjusted for mobile navbar height */
  }
}

/* Hero Section Animation */
.hero-section .hero-animate {
  opacity: 0;
  transform: translateX(-60px);
  animation: none; /* Анимацията ще се стартира чрез JavaScript след лоадера */
}
.hero-section .hero-animate.animate {
  animation: heroFadeInLeft 1s cubic-bezier(.4,0,.2,1) forwards;
}
.hero-section .hero-animate.delay-1.animate {
  animation-delay: 0.2s;
}
.hero-section .hero-animate.delay-2.animate {
  animation-delay: 0.4s;
}
.hero-section .hero-animate.delay-3.animate {
  animation-delay: 0.6s;
}

@keyframes heroFadeInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Cards & Content Boxes
-------------------------------------------------- */
.card {
  border: none;
  border-radius: 1rem;

}

.card-body {
  padding: 2rem;
}

/* Features & Services
-------------------------------------------------- */
.features-section i {
  color: var(--primary);
}

.features-section .card {
  border: 1px solid var(--gray-200);
  background: white;
}

/* Features Section Styles */
.feature-card {
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.badge {
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* Forms & Input
-------------------------------------------------- */
.form-control {
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: 2px solid var(--gray-200);
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.form-label {
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-select {
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: 2px solid var(--gray-200);
}

.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

/* Contact form specific styles */
.contact-form .btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
  padding: 0.875rem 2.25rem;
  font-weight: 600;
  border-radius: 0.5rem;
}

.contact-form .form-group {
  margin-bottom: 1.5rem;
}

/* Badges & Tags
-------------------------------------------------- */
.badge {
  padding: 0.5rem 1rem;
  font-weight: 600;
  border-radius: 2rem;
}

/* Images & Media
-------------------------------------------------- */
.img-fluid {
  border-radius: 1rem;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Footer
-------------------------------------------------- */
footer {
  background-color: var(--dark);
  color: var(--gray-300);
  padding: 4rem 0;
}

footer a {
  color: var(--gray-300);
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: white;
}

/* Responsive Design
-------------------------------------------------- */
@media (max-width: 992px) {
  .navbar-collapse {
    background: white;
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }
  
  .card {
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 0.95rem;
  }
  
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  
  .hero-section {
    padding: 4rem 0;
  }
  
  .btn-lg {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
  }
}

/* Animations & Transitions
-------------------------------------------------- */
.fade-in {
  animation: fadeIn 0.5s ease-in;
}

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

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

::-webkit-scrollbar-track {
  background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
  background: var(--gray-300);
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gray-400);
}

/* Utility Classes
-------------------------------------------------- */
.shadow-sm {
  box-shadow: 0 2px 4px rgba(0,0,0,0.05) !important;
}

.shadow-lg {
  box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

.rounded-xl {
  border-radius: 1rem !important;
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  -webkit-background-clip: text;
  background-clip: text; 
  -webkit-text-fill-color: transparent;
}

/* Footer Styles
-------------------------------------------------- */
.footer {
  background-color: var(--primary-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 4rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

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

.social-links {
  position: relative;
  z-index: 1;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.social-links a:hover {
  color: white;
  transform: translateY(-3px);
  background-color: rgba(255, 255, 255, 0.1);
}

.social-links a i {
  font-size: 1.5rem;
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
}

.footer-links a:hover {
  color: white;
  padding-left: 10px;
}

.footer-links a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 0;
  height: 2px;
  background: var(--accent);
  transform: translateY(-50%);
  transition: all 0.3s ease;
  opacity: 0;
}

.footer-links a:hover::before {
  width: 5px;
  opacity: 1;
}

.footer-bottom {
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.9rem;
  position: relative;
}

.footer-logo {
  margin-bottom: 2rem;
}

/* Back to Top Button
-------------------------------------------------- */
#btn-back-to-top {
    position: fixed;
    bottom: 100px;
    right: 25px;
    display: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary);
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    z-index: 9999;
    transition: all 0.3s ease;
    padding: 0;
    opacity: 0;
    transform: translateY(20px);
}

#btn-back-to-top.show {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transform: translateY(0);
}

#btn-back-to-top:hover {
    background-color: var(--primary-dark);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    transform: translateY(-3px);
}

#btn-back-to-top i {
    color: white;
    font-size: 1.2rem;
    line-height: 1;
    transition: transform 0.3s ease;
}

#btn-back-to-top:hover i {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    #btn-back-to-top {
        bottom: 90px;
        right: 15px;
        width: 40px;
        height: 40px;
    }

    #btn-back-to-top i {
        font-size: 1rem;
    }
}

/* Philosophy & Team Sections
-------------------------------------------------- */
.philosophy-section, .team-section {
  position: relative;
  overflow: hidden;
}

.philosophy-section img, .team-section img {
  transition: transform 0.5s ease;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.philosophy-section img:hover, .team-section img:hover {
  transform: scale(1.02);
}

.philosophy-section ul li, .team-section ul li {
  opacity: 0.9;
  transition: all 0.3s ease;
}

.philosophy-section ul li:hover, .team-section ul li:hover {
  opacity: 1;
  transform: translateX(5px);
}

.philosophy-section .fas, .team-section .fas {
  color: var(--primary);
  font-size: 1.2rem;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.1);
}

/* Testimonials Section
-------------------------------------------------- */
.testimonials-section .card {
  transition: all 0.3s ease;
  border: none;
  background: white;
}

.testimonials-section .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
}

.testimonials-section .card-body {
  position: relative;
  z-index: 1;
}

.testimonials-section .card-body::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 5rem;
  color: rgba(37, 99, 235, 0.1);
  font-family: serif;
  line-height: 1;
  z-index: -1;
}

.testimonials-section .fas.fa-star {
  color: #ffc107;
  font-size: 0.9rem;
}

.testimonials-section .btn-outline-primary {
  border-width: 2px;
  font-weight: 600;
  padding: 0.875rem 2.25rem;
  transition: all 0.3s ease;
}

.testimonials-section .btn-outline-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(37, 99, 235, 0.2);
}

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

.philosophy-section, .team-section, .testimonials-section {
  animation: fadeInUp 0.6s ease-out;
}

/* Responsive Adjustments
-------------------------------------------------- */
@media (max-width: 992px) {
  .philosophy-section .row, .team-section .row {
    text-align: center;
  }
  
  .philosophy-section ul li, .team-section ul li {
    justify-content: center;
  }
  
  .testimonials-section .card {
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .philosophy-section img, .team-section img {
    margin-bottom: 2rem;
  }
  
  .testimonials-section .card-body::before {
    font-size: 4rem;
  }
}

/* Image Styles
-------------------------------------------------- */
.img-fluid {
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* List Style Enhancements
-------------------------------------------------- */
.list-unstyled li {
  padding: 0.5rem 0;
}

.list-unstyled li i {
  transition: transform 0.3s ease;
}

.list-unstyled li:hover i {
  transform: scale(1.2);
}

/* Text cursor styles */
p, h1, h2, h3, h4, h5, h6, span, div:not(.btn):not(a), li {
    cursor: pointer;
    user-select: text; /* Prevents text selection for better UX */
}

/* Keep pointer cursor for interactive elements */
a, button, .btn, [role="button"], input, select, textarea {
    cursor: pointer;
    user-select: text; /* Allows text selection (default) */
}

/* Modern Navigation Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    flex-direction: column;
    width: 30px;
    cursor: pointer;
    gap: 6px;
}

.nav-toggle-label span {
    background: #333;
    border-radius: 2px;
    height: 3px;
    transition: 0.25s ease-in-out;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: #f5f5f5;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-toggle-label {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        padding: 1rem;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        gap: 1rem;
    }

    .nav-toggle:checked ~ .nav-menu {
        display: flex;
    }

    /* Hamburger Animation */
    .nav-toggle:checked ~ .nav-toggle-label span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .nav-toggle:checked ~ .nav-toggle-label span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
}

/* Add margin to main content to account for fixed header */
main {
    margin-top: 80px;
}

/* Stats Section
-------------------------------------------------- */
.stats-wrapper {
    position: relative;
    padding: 5rem 0;
    margin: 4rem 0;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.stats-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.stats-background::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 50%);
    animation: rotate 30s linear infinite;
}

.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0) 100%);
}

.stats-content {
    position: relative;
    z-index: 2;
}

.stats-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.75rem;
    transition: all 0.5s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(30px);
    opacity: 0;
}

.stats-card.animate {
    transform: translateY(0);
    opacity: 1;
}

.stats-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.stats-icon {
    font-size: 2rem;
    color: #00B6DE;
    margin-bottom: 1rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.stats-card:hover .stats-icon {
    transform: scale(1.1) rotate(5deg);
}

.counter-wrapper {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text; 
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.75rem;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.1;
}

.stats-title {
    font-size: 1.1rem;
    color: white;
    margin: 0;
    font-weight: 400;
    opacity: 0.9;
    letter-spacing: 0.5px;
    font-family: 'Roboto', sans-serif;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 768px) {
    .stats-wrapper {
        padding: 4rem 0;
        margin: 2rem 0;
    }
    
    .stats-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .counter-wrapper {
        font-size: 2.75rem;
    }
    
    .stats-title {
        font-size: 1rem;
    }
    
    .stats-icon {
        font-size: 1.75rem;
    }
}

/* Responsive Typography
-------------------------------------------------- */
@media (max-width: 768px) {
    body {
        font-size: 0.95rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.75rem;
    }

    h4 {
        font-size: 1.5rem;
    }

    h5 {
        font-size: 1.25rem;
    }

    h6 {
        font-size: 1.125rem;
    }

    .lead {
        font-size: 1.125rem;
    }

    .counter-wrapper {
        font-size: 2.75rem;
    }

    .stats-title {
        font-size: 1rem;
    }
}

/* About Section
-------------------------------------------------- */
.about-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--gray-100) 0%, white 100%);
}

.about-content {
    position: relative;
    z-index: 2;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(44, 62, 80, 0.1);
    border: 1px solid var(--primary-light);
}

.about-image img {
    width: 100%;
    height: auto;
    transform: scale(1.01);
    transition: transform 0.6s ease;
}

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

.about-text {
    padding: 2rem;
}

.about-text h2 {
    color: var(--dark);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
    border-radius: 2px;
}

/* Services Section
-------------------------------------------------- */
.services-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
}

.services-section h2,
.services-section .service-title {
    color: white;
}

.service-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-title {
    color: var(--dark);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

/* Contact Section
-------------------------------------------------- */
.contact-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    position: relative;
}

.contact-section h2 {
    color: white;
}

.contact-info {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.form-control {
    border: 2px solid var(--gray-200);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: white;
}

.form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(91, 155, 213, 0.1);
}

.contact-btn {
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
    color: white;
    padding: 0.875rem 2.25rem;
    border-radius: 8px;
    border: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Team Section
-------------------------------------------------- */
.team-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--gray-100) 0%, white 100%);
    position: relative;
    overflow: hidden;
}

.team-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle at top right, rgba(79, 111, 143, 0.1) 0%, transparent 70%);
}

.team-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.team-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-light);
    box-shadow: 0 15px 30px rgba(44, 62, 80, 0.1);
}

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

.team-image img {
    width: 100%;
    height: auto;
    transition: transform 0.6s ease;
}

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

.team-info {
    padding: 1.5rem;
    text-align: center;
}

.team-name {
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.team-position {
    color: var(--secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Footer
-------------------------------------------------- */
.footer {
    background: var(--primary-dark);
    padding: 4rem 0 2rem;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.footer-logo {
    margin-bottom: 2rem;
}

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

.social-links {
    position: relative;
    z-index: 1;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.social-links a:hover {
    color: white;
    transform: translateY(-3px);
    background-color: rgba(255, 255, 255, 0.1);
}

.social-links a i {
    font-size: 1.5rem;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-links a:hover {
    color: white;
    padding-left: 10px;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 2px;
    background: var(--accent);
    transform: translateY(-50%);
    transition: all 0.3s ease;
    opacity: 0;
}

.footer-links a:hover::before {
    width: 5px;
    opacity: 1;
}

.footer-bottom {
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
    position: relative;
}

/* Responsive Adjustments
-------------------------------------------------- */
@media (max-width: 768px) {
    .about-section,
    .services-section,
    .contact-section,
    .team-section {
        padding: 4rem 0;
    }

    .about-text {
        padding: 1rem 0;
        margin-top: 2rem;
    }

    .service-card,
    .contact-form,
    .contact-info {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }

    .team-card {
        margin-bottom: 2rem;
    }

    .footer {
        padding: 3rem 0 1.5rem;
    }
}

/* Modal Fixes - Laravel Style (no darkening)
--------------------------------------------------- */
body.modal-open {
  overflow: auto !important;
  padding-right: 0 !important;
}

.modal {
  z-index: 1055;
}

.modal-dialog {
  max-height: 90vh;
  margin: 1.75rem auto;
}

.modal-content {
  max-height: 90vh;
  overflow-y: auto;
  border: none;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.modal-backdrop {
  z-index: 1050;
  opacity: 0 !important;
  background-color: transparent !important;
  pointer-events: none !important;
}

.modal-backdrop.show {
  opacity: 0 !important;
  background-color: transparent !important;
  pointer-events: none !important;
}

/* Cookie Banner
--------------------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  padding: 1.5rem 2rem;
  z-index: 9998;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 3px solid var(--primary);
}

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

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-banner-text {
  flex: 1;
  min-width: 300px;
}

.cookie-banner-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cookie-banner-title i {
  color: var(--primary);
  font-size: 1.25rem;
}

.cookie-banner-description {
  font-size: 0.9375rem;
  color: var(--gray-400);
  line-height: 1.6;
  margin: 0;
}

.cookie-banner-description a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.cookie-banner-description a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 0.625rem 1.5rem;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  box-shadow: 0 2px 8px rgba(79, 111, 143, 0.3);
}

.cookie-btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(79, 111, 143, 0.4);
}

.cookie-btn-reject {
  background: white;
  color: var(--dark);
  border: 2px solid var(--gray-300);
}

.cookie-btn-reject:hover {
  background: var(--gray-100);
  border-color: var(--primary);
  color: var(--primary);
}

.cookie-btn-settings {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.cookie-btn-settings:hover {
  background: var(--primary);
  color: white;
}

/* Cookie Settings Modal */
.cookie-settings-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.cookie-settings-modal.show {
  display: flex;
}

.cookie-settings-content {
  background: white;
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-settings-header {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-settings-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark);
  margin: 0;
}

.cookie-settings-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--gray-400);
  cursor: pointer;
  padding: 0.5rem;
  line-height: 1;
  transition: color 0.3s ease;
}

.cookie-settings-close:hover {
  color: var(--dark);
}

.cookie-settings-body {
  padding: 2rem;
}

.cookie-settings-description {
  color: var(--gray-400);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.cookie-category {
  padding: 1.25rem;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.cookie-category:hover {
  border-color: var(--primary);
  box-shadow: 0 2px 8px rgba(79, 111, 143, 0.1);
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.cookie-category-title {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--dark);
  margin: 0;
}

.cookie-toggle {
  position: relative;
  width: 48px;
  height: 26px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--gray-300);
  transition: 0.3s;
  border-radius: 26px;
}

.cookie-toggle-slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  background-color: var(--primary);
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
  transform: translateX(22px);
}

.cookie-category-description {
  font-size: 0.875rem;
  color: var(--gray-400);
  line-height: 1.6;
  margin: 0;
}

.cookie-settings-footer {
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--gray-200);
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

.cookie-btn-save {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn-save:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(79, 111, 143, 0.3);
}

/* Responsive Cookie Banner */
@media (max-width: 768px) {
  .cookie-banner {
    padding: 1.25rem 1.5rem;
  }
  
  .cookie-banner-content {
    flex-direction: column;
    align-items: stretch;
    gap: 1.25rem;
  }
  
  .cookie-banner-actions {
    width: 100%;
  }
  
  .cookie-btn {
    flex: 1;
    min-width: 120px;
  }
  
  .cookie-settings-content {
    max-width: 100%;
  }
  
  .cookie-settings-header,
  .cookie-settings-body,
  .cookie-settings-footer {
    padding: 1.25rem;
  }
}

/* Preloader
--------------------------------------------------- */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-content {
  text-align: center;
}

.preloader-logo {
  margin-bottom: 2rem;
  animation: logoFadeIn 0.8s ease-in-out;
}

.preloader-logo img {
  max-width: 200px;
  height: auto;
  filter: brightness(0) invert(1);
}

.logo-animation {
  animation: logoPulse 2s ease-in-out infinite;
}

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

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

.preloader-spinner {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.spinner-ring {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: white;
  animation: spinnerBounce 1.4s ease-in-out infinite both;
}

.spinner-ring:nth-child(1) {
  animation-delay: -0.32s;
}

.spinner-ring:nth-child(2) {
  animation-delay: -0.16s;
}

.spinner-ring:nth-child(3) {
  animation-delay: 0;
}

@keyframes spinnerBounce {
  0%, 80%, 100% {
    transform: scale(0);
    opacity: 0.5;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Page Headers
-------------------------------------------------- */
.page-header {
  position: relative;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 5rem 0;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/wave-bg.svg') no-repeat bottom;
  background-size: cover;
  opacity: 0.1;
}

.page-header .container {
  position: relative;
  z-index: 1;
}

/* Glass Cards
-------------------------------------------------- */
.glass-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border: none;
  box-shadow: 0 4px 24px rgba(79, 111, 143, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 32px rgba(79, 111, 143, 0.15);
}

.glass-card .card-body {
  padding: 2rem;
}

.glass-card .icon-primary {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.glass-card h3 {
  color: var(--primary-dark);
  font-weight: 700;
  margin-bottom: 1rem;
}

.glass-card .check-list li {
  margin-bottom: 0.75rem;
}

.glass-card .check-list i {
  color: var(--accent);
  margin-right: 0.5rem;
}

/* Call to Action Sections
-------------------------------------------------- */
.cta-section {
  position: relative;
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
  padding: 5rem 0;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/wave-bg.svg') no-repeat bottom;
  background-size: cover;
  opacity: 0.1;
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  color: white;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.cta-section .btn-light {
  padding: 1.125rem 2.25rem;
  font-weight: 600;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

/* Contact Form Styling
-------------------------------------------------- */
.contact-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: none;
  box-shadow: 0 4px 24px rgba(79, 111, 143, 0.1);
  border-radius: 1rem;
  padding: 2rem;
}

.contact-info-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  border-radius: 1rem;
  padding: 2rem;
}

.contact-info-card h4 {
  color: white;
  margin-bottom: 1.5rem;
}

.contact-info-card .icon-box {
  color: var(--accent-light);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact-info-card p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

.contact-info-card a {
  color: white;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.contact-info-card a:hover {
  opacity: 0.8;
}

/* Form Elements
-------------------------------------------------- */
.form-control, .form-select {
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-200);
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(79, 111, 143, 0.15);
}

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

/* Map Container
-------------------------------------------------- */
.map-container {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(79, 111, 143, 0.1);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Responsive Adjustments
-------------------------------------------------- */
@media (max-width: 768px) {
  .page-header {
    padding: 4rem 0;
  }
  
  .glass-card .card-body {
    padding: 1.5rem;
  }
  
  .contact-card {
    padding: 1.5rem;
  }
  
  .contact-info-card {
    margin-bottom: 2rem;
  }
}

/* ============================================
   REVIEWS SYSTEM - MOVED FROM PHP FILES
   ============================================ */

/* Reviews Section */
.reviews-section {
    padding: 60px 0;
}

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

.reviews-header {
    text-align: center;
    margin-bottom: 50px;
}

.reviews-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.review-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.review-card.featured {
    border: 2px solid #fbbf24;
}

.review-author {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: #111827;
}

.review-text {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 15px;
}

.review-stars {
    display: flex;
    gap: 2px;
}

.review-stars i {
    color: #fbbf24;
    font-size: 1rem;
}

.write-review-link {
    text-align: center;
    margin-top: 30px;
}

.write-review-link a {
    color: #4F6F8F;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.write-review-link a:hover {
    color: #385670;
}

/* No Reviews Message */
.no-reviews-message {
    text-align: center;
    padding: 60px 20px;
    background: #f8f9fa;
    border-radius: 12px;
    margin: 40px 0;
}

.no-reviews-icon {
    font-size: 4rem;
    color: #dee2e6;
    margin-bottom: 20px;
}

.no-reviews-message h3 {
    color: #6c757d;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.no-reviews-message p {
    color: #6c757d;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.no-reviews-message .btn {
    padding: 14px 35px;
    font-size: 1rem;
    border-radius: 25px;
    color: white !important;
}

/* Laravel-style Notifications */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    max-width: 400px;
    padding: 16px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateX(100%);
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.notification.show {
    transform: translateX(0);
}

.notification-success {
    background: #10b981;
    color: white;
    border-left: 4px solid #059669;
}

.notification-error {
    background: #ef4444;
    color: white;
    border-left: 4px solid #dc2626;
}

.notification-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.notification-content {
    flex: 1;
}

.notification-title {
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 14px;
}

.notification-message {
    font-size: 13px;
    opacity: 0.9;
    line-height: 1.4;
}

.notification-close {
    background: none;
    border: none;
    color: inherit;
    font-size: 18px;
    cursor: pointer;
    padding: 0;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.notification-close:hover {
    opacity: 1;
}

/* Modal Styles - Laravel Style */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
}

.modal-content {
    background-color: #ffffff;
    margin: 3% auto;
    padding: 0;
    border-radius: 8px;
    width: 90%;
    max-width: 550px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    animation: modalSlideIn 0.3s ease-out;
}

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

.modal-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    padding: 20px 24px;
    border-radius: 8px 8px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
}

.close {
    color: #6b7280;
    font-size: 24px;
    font-weight: 400;
    cursor: pointer;
    padding: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.2s ease;
    border: none;
    background: none;
}

.close:hover {
    background-color: #f3f4f6;
    color: #111827;
}

.modal-body {
    padding: 24px;
}

.modal-footer {
    padding: 16px 24px;
    border-top: 1px solid #e5e7eb;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    background-color: #f9fafb;
}

.star-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.star-rating .star {
    font-size: 1.75rem;
    color: #d1d5db;
    cursor: pointer;
    transition: color 0.15s ease;
}

.star-rating .star:hover,
.star-rating .star.active {
    color: #fbbf24;
}

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

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    font-size: 0.875rem;
    color: #374151;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 0.875rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background-color: #ffffff;
    color: #111827;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4F6F8F;
    box-shadow: 0 0 0 3px rgba(79, 111, 143, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.btn {
    padding: 10px 20px;
    border: 1px solid transparent;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-primary {
    background-color: #4F6F8F;
    color: white;
    border-color: #4F6F8F;
}

.btn-primary:hover {
    background-color: #385670;
    border-color: #385670;
}

.btn-secondary {
    background-color: #ffffff;
    color: #1f2937 !important;
    border-color: #d1d5db;
}

.btn-secondary:hover {
    background-color: #f9fafb;
    border-color: #9ca3af;
    color: #111827 !important;
}

/* Hero Section Buttons */
.hero-primary-btn {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
}

.hero-primary-btn:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white;
}

.hero-outline-btn {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
    backdrop-filter: blur(10px);
}

.hero-outline-btn:hover {
    background-color: white;
    color: var(--primary);
}

/* Admin Reviews Styles */
.avatar-lg {
    width: 3.5rem;
    height: 3.5rem;
}

.table td {
    vertical-align: middle;
    padding: 1rem 0.75rem;
}

.card {
    border-radius: 0.75rem;
}

.dropdown-toggle::after {
    margin-left: 0.5em;
}

.badge {
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
}

.stars {
    display: inline-flex;
    gap: 1px;
}

.stars i {
    font-size: 0.875rem;
}

/* Admin Edit Review Styles */
.star-rating-edit {
    font-size: 1.25rem;
    cursor: pointer;
}

.star-rating-edit .star-edit {
    color: #ddd;
    transition: color 0.2s;
    margin-right: 2px;
}

.star-rating-edit .star-edit.active,
.star-rating-edit .star-edit:hover {
    color: #ffc107;
}

.review-preview {
    background: white;
    border-radius: 6px;
    padding: 12px;
    border: 1px solid #e9ecef;
}

/* Responsive */
@media (max-width: 1024px) {
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .reviews-header h2 {
        font-size: 2rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .modal-header,
    .modal-body,
    .modal-footer {
        padding: 20px;
    }
    
    .star-rating .star {
        font-size: 1.5rem;
    }
}

/* Write Review Link */
.write-review-link {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e9ecef;
}

.write-review-link .btn {
    padding: 14px 35px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.2);
    color: white !important;
}

.write-review-link .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

@media (max-width: 768px) {
    .write-review-link {
        margin-top: 30px;
        padding-top: 20px;
    }
    
    .write-review-link .btn {
        padding: 12px 28px;
        font-size: 0.95rem;
        width: 100%;
        max-width: 300px;
    }
}