/* Bursalazer Elektrik - Custom Styles */

/* CSS Custom Properties */
:root {
  --primary-color: #c93029;
  --secondary-color: #131313;
  --text-color: #333;
  --text-light: #666;
  --bg-color: #fff;
  --bg-light: #f8f9fa;
  --border-color: #dee2e6;
  --border-radius: 8px;
  --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

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

/* Cross-browser compatibility fixes */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--bg-color);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
}

/* Custom Button Styles */
.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  border-radius: var(--border-radius);
  padding: 12px 30px;
  font-weight: 500;
  transition: var(--transition);
}

.btn-primary:hover {
  background-color: #a82621;
  border-color: #a82621;
  transform: translateY(-2px);
  box-shadow: var(--box-shadow);
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
  border-radius: var(--border-radius);
  padding: 12px 30px;
  font-weight: 500;
  transition: var(--transition);
}

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

/* Utility Classes */
.text-primary {
  color: var(--primary-color) !important;
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

.bg-secondary {
  background-color: var(--secondary-color) !important;
}

/* Section Spacing */
.section {
  padding: 80px 0;
}

.section-sm {
  padding: 60px 0;
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

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

/* Loading Animation */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, .3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
}

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

/* Header & Navigation Styles */
.main-header {
  position: relative;
  z-index: 1000;
}

.navbar {
  padding: 1rem 0;
  transition: var(--transition);
  background-color: var(--secondary-color) !important;
}

.navbar.navbar-scrolled {
  padding: 0.5rem 0;
  background-color: rgba(19, 19, 19, 0.95) !important;
  backdrop-filter: blur(10px);
  box-shadow: var(--box-shadow);
}

.navbar-brand img {
  height: 40px;
  transition: var(--transition);
}

.navbar.navbar-scrolled .navbar-brand img {
  height: 35px;
}

.navbar-nav .nav-link {
  color: #fff !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  margin: 0 0.25rem;
  border-radius: var(--border-radius);
  transition: var(--transition);
  position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-color) !important;
  background-color: rgba(201, 48, 41, 0.1);
}

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

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 80%;
}

/* Mobile Navigation */
.navbar-toggler {
  border: none;
  padding: 0.25rem 0.5rem;
  font-size: 1.25rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-toggler.active .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m6 6l18 18M6 24L24 6'/%3e%3c/svg%3e");
}

/* Mobile Menu Styles */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background-color: var(--secondary-color);
    margin-top: 1rem;
    padding: 1rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
  }

  .navbar-nav .nav-link {
    padding: 0.75rem 1rem !important;
    margin: 0.25rem 0;
    border-radius: var(--border-radius);
  }

  .navbar-nav .nav-link::after {
    display: none;
  }
}

/* Hero Section Styles */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #2c2c2c 100%);
  overflow: hidden;
}

/* Hero Video Background */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.hero-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(201,48,41,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
  z-index: 1;
}

.hero-background {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content {
  position: relative;
  z-index: 3;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 2rem;
}

.hero-buttons {
  margin-top: 2rem;
}

.hero-buttons .btn {
  margin-right: 1rem;
  margin-bottom: 1rem;
  padding: 15px 35px;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.hero-buttons .btn::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;
}

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

.hero-buttons .btn-primary {
  background: linear-gradient(45deg, var(--primary-color), #e63946);
  border: none;
  box-shadow: 0 4px 15px rgba(201, 48, 41, 0.4);
}

.hero-buttons .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(201, 48, 41, 0.6);
}

.hero-buttons .btn-outline-light {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
}

.hero-buttons .btn-outline-light:hover {
  background: #fff;
  color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.hero-image {
  position: relative;
  z-index: 3;
}

.hero-image img {
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

/* Hero Section Responsive */
@media (max-width: 991.98px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }

  .hero-buttons .btn {
    padding: 12px 25px;
    font-size: 1rem;
  }
}

@media (max-width: 767.98px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-buttons {
    text-align: center;
  }

  .hero-buttons .btn {
    display: block;
    width: 100%;
    margin-right: 0;
    margin-bottom: 1rem;
  }
}

/* Hero Features */
.hero-features {
  margin-top: 2rem;
}

.feature-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
}

.feature-badge:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(10px);
}

.hero-stats .stat-item h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.hero-logo {
  max-height: 300px;
  width: auto;
}

@media (max-width: 767.98px) {
  .hero-stats .stat-item h3 {
    font-size: 1.8rem;
  }

  .hero-logo {
    max-height: 200px;
  }

  .feature-badge {
    font-size: 0.9rem;
    padding: 0.5rem 0.75rem;
  }
}

/* Services Section Styles */
.services-section {
  position: relative;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, #f8f9fa 25%, transparent 25%),
    linear-gradient(-45deg, #f8f9fa 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, #f8f9fa 75%),
    linear-gradient(-45deg, transparent 75%, #f8f9fa 75%);
  background-size: 20px 20px;
  background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
  opacity: 0.03;
  z-index: 1;
}

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

.service-card {
  border: none;
  border-radius: 15px;
  transition: var(--transition);
  height: 100%;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), #e63946);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}

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

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(201, 48, 41, 0.15);
}

.service-card .card-body {
  padding: 2rem;
  text-align: center;
  position: relative;
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--primary-color), #e63946);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.service-icon::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: rotate(45deg);
  transition: var(--transition);
  opacity: 0;
}

.service-card:hover .service-icon::before {
  opacity: 1;
  animation: shine 0.6s ease-in-out;
}

@keyframes shine {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }

  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

.service-icon i {
  color: #fff;
  font-size: 2rem;
  z-index: 2;
  position: relative;
}

.service-card .card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  line-height: 1.4;
  min-height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card .card-text {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  min-height: 4rem;
}

.service-details-btn {
  border-radius: 25px;
  padding: 0.75rem 2rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-details-btn::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;
}

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

.service-details-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(201, 48, 41, 0.3);
}

/* Services Grid Animation */
.service-card {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease forwards;
}

.service-card:nth-child(1) {
  animation-delay: 0.1s;
}

.service-card:nth-child(2) {
  animation-delay: 0.2s;
}

.service-card:nth-child(3) {
  animation-delay: 0.3s;
}

.service-card:nth-child(4) {
  animation-delay: 0.4s;
}

.service-card:nth-child(5) {
  animation-delay: 0.5s;
}

.service-card:nth-child(6) {
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Services Section Responsive */
@media (max-width: 767.98px) {
  .service-card .card-body {
    padding: 1.5rem;
  }

  .service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
  }

  .service-icon i {
    font-size: 1.5rem;
  }

  .service-card .card-title {
    font-size: 1.1rem;
    min-height: auto;
  }

  .service-card .card-text {
    font-size: 0.9rem;
    min-height: auto;
  }
}

/* Service Modal Styles */
.service-modal-content {
  padding: 1rem 0;
}

.service-modal-icon {
  margin-bottom: 1rem;
}

.modal-icon-wrapper {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--primary-color), #e63946);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(201, 48, 41, 0.3);
}

.service-category-badge {
  text-align: center;
  margin-top: 1rem;
}

.service-category-badge .badge {
  font-size: 0.8rem;
  padding: 0.5rem 1rem;
  border-radius: 20px;
}

.service-modal-actions {
  border-top: 1px solid #dee2e6;
  padding-top: 1rem;
}

.modal-header.bg-primary {
  background: linear-gradient(135deg, var(--primary-color), #e63946) !important;
}

.modal-content {
  border-radius: 15px;
  overflow: hidden;
}

.service-features ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #f8f9fa;
}

.service-features ul li:last-child {
  border-bottom: none;
}

/* Loading Animation for Modal */
.modal-loading {
  text-align: center;
  padding: 3rem 0;
}

.modal-loading .loading {
  width: 40px;
  height: 40px;
  border-width: 4px;
  border-color: var(--primary-color);
  border-top-color: transparent;
}

/* About Section Styles */
.about-section {
  position: relative;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.about-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"><circle cx="50" cy="50" r="2" fill="rgba(201,48,41,0.05)"/></svg>');
  background-size: 50px 50px;
  opacity: 0.5;
  z-index: 1;
}

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

.about-content {
  background: #fff;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.about-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary-color), #e63946);
  z-index: 1;
}

.about-content h3 {
  color: var(--secondary-color);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 1rem;
}

.about-content h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 20px;
  background: var(--primary-color);
  border-radius: 2px;
}

.about-content p {
  color: var(--text-color);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.about-content blockquote {
  background: linear-gradient(135deg, var(--primary-color), #e63946);
  color: #fff;
  padding: 2rem;
  border-radius: 10px;
  margin: 2rem 0;
  position: relative;
  font-style: italic;
}

.about-content blockquote::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.3);
  font-family: serif;
}

.about-stats {
  background: #fff;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-top: 2rem;
}

.stat-box {
  text-align: center;
  padding: 1.5rem;
  border-radius: 10px;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  margin-bottom: 1rem;
  transition: var(--transition);
}

.stat-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  display: block;
}

.stat-label {
  color: var(--text-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--primary-color), #e63946);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  width: 50%;
}

.timeline-item:nth-child(odd) {
  left: 0;
  padding-right: 3rem;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
  padding-left: 3rem;
  text-align: left;
}

.timeline-content {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
}

.timeline-item:nth-child(odd) .timeline-content::after {
  content: '';
  position: absolute;
  right: -10px;
  top: 20px;
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-left-color: #fff;
}

.timeline-item:nth-child(even) .timeline-content::after {
  content: '';
  position: absolute;
  left: -10px;
  top: 20px;
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-right-color: #fff;
}

.timeline-date {
  position: absolute;
  top: 20px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), #e63946);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 5px 15px rgba(201, 48, 41, 0.3);
}

.timeline-item:nth-child(odd) .timeline-date {
  right: -30px;
}

.timeline-item:nth-child(even) .timeline-date {
  left: -30px;
}

.timeline-title {
  color: var(--primary-color);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.timeline-text {
  color: var(--text-color);
  line-height: 1.6;
}

/* About Section Responsive */
@media (max-width: 991.98px) {
  .about-content {
    padding: 2rem;
  }

  .timeline::before {
    left: 30px;
  }

  .timeline-item {
    width: 100%;
    left: 0 !important;
    padding-left: 4rem !important;
    padding-right: 0 !important;
    text-align: left !important;
  }

  .timeline-content::after {
    left: -10px !important;
    right: auto !important;
    border-left-color: transparent !important;
    border-right-color: #fff !important;
  }

  .timeline-date {
    left: 0 !important;
    right: auto !important;
  }
}

@media (max-width: 767.98px) {
  .about-content {
    padding: 1.5rem;
  }

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

  .stat-number {
    font-size: 2.5rem;
  }

  .timeline-item {
    padding-left: 3rem !important;
  }

  .timeline-date {
    width: 50px;
    height: 50px;
    font-size: 0.8rem;
  }
}

/* Contact Section Styles */
.contact-section {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #2c2c2c 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.contact-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="contactGrid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(201,48,41,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23contactGrid)"/></svg>');
  opacity: 0.3;
  z-index: 1;
}

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

.contact-form-container {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.contact-form-container h4 {
  color: #fff;
  margin-bottom: 2rem;
  text-align: center;
  font-size: 1.8rem;
}

.contact-form .form-label {
  color: #fff;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.contact-form .form-control,
.contact-form .form-select {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  color: #fff;
  padding: 0.75rem 1rem;
  transition: var(--transition);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(201, 48, 41, 0.25);
  color: #fff;
}

.contact-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.contact-form .form-control.is-invalid {
  border-color: #dc3545;
  background: rgba(220, 53, 69, 0.1);
}

.contact-form .invalid-feedback {
  color: #ff6b6b;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.contact-form .btn-primary {
  background: linear-gradient(45deg, var(--primary-color), #e63946);
  border: none;
  padding: 1rem 3rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.contact-form .btn-primary::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;
}

.contact-form .btn-primary:hover::before {
  left: 100%;
}

.contact-form .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(201, 48, 41, 0.4);
}

.contact-info {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  height: 100%;
}

.contact-info h4 {
  color: #fff;
  margin-bottom: 2rem;
  text-align: center;
  font-size: 1.8rem;
}

.contact-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--primary-color);
  transition: var(--transition);
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(10px);
}

.contact-item h6 {
  color: var(--primary-color);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.contact-item h6::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--primary-color);
  border-radius: 50%;
  margin-right: 0.5rem;
}

.contact-item p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.contact-item a {
  color: #fff;
  text-decoration: none;
  transition: var(--transition);
}

.contact-item a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

/* Form Validation Styles */
.form-group {
  position: relative;
  margin-bottom: 1.5rem;
}

.form-floating .form-control {
  height: calc(3.5rem + 2px);
  padding: 1rem 0.75rem;
}

.form-floating .form-label {
  padding: 1rem 0.75rem;
}

.required-field::after {
  content: ' *';
  color: var(--primary-color);
}

/* Contact Section Responsive */
@media (max-width: 991.98px) {

  .contact-form-container,
  .contact-info {
    padding: 2rem;
    margin-bottom: 2rem;
  }
}

@media (max-width: 767.98px) {

  .contact-form-container,
  .contact-info {
    padding: 1.5rem;
  }

  .contact-form-container h4,
  .contact-info h4 {
    font-size: 1.5rem;
  }

  .contact-form .btn-primary {
    width: 100%;
    padding: 1rem 2rem;
  }
}

/* Gallery Section Styles */
.gallery-filter {
  margin-bottom: 2rem;
}

.gallery-filter .btn {
  margin: 0.25rem;
  border-radius: 25px;
  padding: 0.5rem 1.5rem;
  font-weight: 500;
  transition: var(--transition);
}

.gallery-filter .btn.active {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: 2rem;
}

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

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(201, 48, 41, 0.9), rgba(19, 19, 19, 0.9));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-info {
  text-align: center;
  color: #fff;
}

.gallery-info h6 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.gallery-info p {
  font-size: 0.9rem;
  opacity: 0.8;
}

.gallery-view-btn {
  margin-top: 1rem;
  border-radius: 25px;
  padding: 0.5rem 1.5rem;
  transition: var(--transition);
}

.gallery-view-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Gallery Modal Styles */
.gallery-modal .modal-dialog {
  max-width: 90vw;
}

.gallery-modal .modal-body {
  padding: 0;
}

.gallery-modal img {
  width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: contain;
}

.gallery-navigation {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.gallery-navigation .btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: #fff;
  transition: var(--transition);
}

.gallery-navigation .btn:hover {
  background: rgba(201, 48, 41, 0.8);
}

.gallery-navigation .btn:first-child {
  left: 20px;
}

.gallery-navigation .btn:last-child {
  right: 20px;
}

/* Gallery Animation */
.gallery-item {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease forwards;
}

.gallery-item:nth-child(1) {
  animation-delay: 0.1s;
}

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

.gallery-item:nth-child(3) {
  animation-delay: 0.3s;
}

.gallery-item:nth-child(4) {
  animation-delay: 0.4s;
}

.gallery-item:nth-child(5) {
  animation-delay: 0.5s;
}

.gallery-item:nth-child(6) {
  animation-delay: 0.6s;
}

/* Gallery Responsive */
@media (max-width: 767.98px) {
  .gallery-item img {
    height: 200px;
  }

  .gallery-filter .btn {
    font-size: 0.9rem;
    padding: 0.4rem 1rem;
  }
}

/* Modern Map Section Styles */
.modern-map-container {
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  /*border-radius: 20px;*/
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.map-wrapper {
  position: relative;
}

.map-header {
  background: rgba(0, 0, 0, 0.8);
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.map-title h5 {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.map-actions .btn {
  border-radius: 25px;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: var(--transition);
}

.map-actions .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(201, 48, 41, 0.3);
}

.map-frame {
  position: relative;
  overflow: hidden;
}

.map-frame iframe {
  display: block;
  transition: var(--transition);
}

.map-frame:hover iframe {
  transform: scale(1.02);
}

.map-footer {
  background: rgba(0, 0, 0, 0.8);
  padding: 1.5rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.location-info h6 {
  font-weight: 600;
  display: flex;
  align-items: center;
}

.location-info p {
  line-height: 1.5;
}

/* Map Section Responsive */
@media (max-width: 991.98px) {
  .map-header {
    padding: 1rem 1.5rem;
  }

  .map-footer {
    padding: 1rem 1.5rem;
  }

  .map-title h5 {
    font-size: 1.1rem;
  }
}

@media (max-width: 767.98px) {
  .map-header {
    padding: 1rem;
  }

  .map-footer {
    padding: 1rem;
  }

  .map-header .d-flex {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 1rem;
  }

  .map-actions {
    width: 100%;
  }

  .map-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .map-frame iframe {
    height: 300px !important;
  }
}

/* Developer Credit Styles */
.developer-credit {
  position: absolute;

  right: 108px;
  opacity: 0.4;
  transition: opacity 0.3s ease;
  z-index: 10;
}

.developer-credit a {
  text-decoration: none;
  color: #666;
  opacity: 0.4;
}

.developer-credit:hover {
  opacity: 1;
}

.developer-logo {
  height: 20px;
  width: auto;
  filter: brightness(0.8);
  transition: all 0.3s ease;
}

.developer-credit:hover .developer-logo {
  filter: brightness(1);
  transform: scale(1.05);
}

/* Responsive adjustments for developer credit */
@media (max-width: 767.98px) {
  .developer-credit {
    bottom: 8px;
    right: 10px;
  }

  .developer-logo {
    height: 16px;
  }
}



/* 
Simple Footer Link Styles */
.footer-links a:hover,
.footer-legal a:hover {
  color: var(--primary-color) !important;
  transition: color 0.3s ease;
}

.footer-links a,
.footer-legal a {
  font-size: 0.9rem;
}

@media (max-width: 767.98px) {

  .footer-links,
  .footer-legal {
    text-align: center;
    margin-top: 1rem;
  }

  .footer-links a,
  .footer-legal a {
    display: block;
    margin: 0.5rem 0;
  }
}