/* Base Styles */
:root {
  --primary-color: #2b6cb0;
  --primary-dark: #1a365d;
  --primary-light: #63b3ed;
  --text-dark: #1a202c;
  --text-medium: #4a5568;
  --text-light: #a0aec0;
  --background-light: #f8fafc;
  --white: #ffffff;
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 24px rgba(0, 0, 0, 0.12);
  --transition: all 0.3s ease;
}

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

body {
  margin: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #111;
  color: #fff;
  overflow-x: hidden;
  padding-top: 88px; /* Adjust to your header height */
}

html, body {
  box-sizing: border-box;
  overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: var(--transition);
}

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

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
  padding-bottom: 1rem;
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--primary-color);
}

.section-subtitle {
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 1rem;
}

/* Navbar */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  padding: 1rem 0;
}

.navbar.scrolled {
  padding: 0.5rem 0;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

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

.logo {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: #fff;
}

.logo-text {
  margin-left: 0.5rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links a {
  color: var(--text-medium);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav-links a:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s;
}

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

.nav-links a:hover:after {
  width: 100%;
}

.nav-cta {
  background: var(--primary-color);
  color: var(--white) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 30px;
  margin-left: 1rem;
}

.nav-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: relative;
  z-index: 1001;
}

.mobile-menu-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--primary-color);
  position: absolute;
  transition: var(--transition);
}

.mobile-menu-btn span:nth-child(1) {
  top: 0;
}

.mobile-menu-btn span:nth-child(2) {
  top: 9px;
}

.mobile-menu-btn span:nth-child(3) {
  top: 18px;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 9px;
}

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

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 9px;
}

/* Hero Section */
.hero-section {
  padding: 40px 0 0 0;
  text-align: center;
  background: #f8f6f2;
}

.hero-section header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto 30px auto;
  padding: 0 20px;
}

.hero-section h1 {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: 2px;
}

.hero-section nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #1a2236;
  font-weight: 600;
  font-size: 1.1rem;
}

.hero-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin: 30px 0 10px 0;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.2rem;
  color: #5a6170;
  margin-bottom: 30px;
}

.hero-images {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
}

.hero-img {
  width: 340px;
  height: 260px;
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.cta-btn {
  display: inline-block;
  background: #1a2236;
  color: #fff;
  padding: 18px 48px;
  border-radius: 10px;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 1px;
  transition: background 0.2s;
}

.cta-btn:hover {
  background: #2d3650;
}

@media (max-width: 900px) {
  .hero-images {
    flex-direction: column;
    gap: 20px;
  }
  .hero-img {
    width: 90vw;
    max-width: 400px;
    height: 200px;
    margin: 0 auto;
  }
  .hero-section header {
    flex-direction: column;
    gap: 10px;
  }
}

/* Services Section */
.services {
  padding: 6rem 0 6rem 0;
  background: #181818;
}

.services .section-title {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 3rem;
}

.services-grid {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.service-card {
  background: #222;
  color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
  padding: 2.5rem 2rem;
  min-width: 260px;
  max-width: 340px;
  flex: 1 1 260px;
  text-align: left;
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px rgba(0,0,0,0.28);
}

.service-card h3 {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.service-card p {
  color: #e0e0e0;
  font-size: 1rem;
  line-height: 1.6;
}

/* Stats Section */
.stats {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: var(--white);
  padding: 5rem 2rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* About Section */
.about {
  background: #111;
  color: #fff;
  padding: 6rem 0 6rem 0;
}

.about-container {
  display: flex;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  flex-wrap: wrap;
}

.about-image img {
  width: 320px;
  border-radius: 12px;
  filter: grayscale(1);
  border: 4px solid #fff;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.about-content {
  flex: 1 1 320px;
}

.about-content .section-title {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.about-content h3 {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.divider {
  width: 60px;
  height: 3px;
  background: #fff;
  margin-bottom: 1.5rem;
}

.about-content p {
  color: #e0e0e0;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.about-values {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.value-item {
  background: #181818;
  border-radius: 8px;
  padding: 1.5rem 1.2rem;
  min-width: 160px;
  flex: 1 1 160px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}

.value-item h4 {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.value-item p {
  color: #e0e0e0;
  font-size: 0.97rem;
  margin: 0;
}

/* Testimonials Section */
.testimonials {
  background: var(--background-light);
  padding: 5rem 2rem;
}

.testimonial-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.testimonial-content {
  margin-bottom: 1.5rem;
  position: relative;
}

.testimonial-content p {
  font-style: italic;
  color: var(--text-medium);
  line-height: 1.6;
}

.testimonial-content:before {
  content: '"';
  font-size: 4rem;
  color: var(--primary-color);
  opacity: 0.2;
  position: absolute;
  top: -2rem;
  left: -1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1rem;
}

.testimonial-author h4 {
  margin: 0;
  font-size: 1rem;
  color: var(--text-dark);
}

.testimonial-author p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-light);
}

/* Footer */
.footer {
  background: #181818;
  color: #fff;
  padding: 0;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem 2rem 2rem;
  flex-wrap: wrap;
}

.footer-brand .logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: #e0e0e0;
  font-size: 1rem;
  margin-bottom: 0;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links a {
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  letter-spacing: 1px;
  transition: color 0.2s;
}

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

.footer-contact p {
  color: #e0e0e0;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.footer-bottom {
  background: #111;
  text-align: center;
  padding: 1.2rem 0;
  color: #bdbdbd;
  font-size: 0.95rem;
  letter-spacing: 1px;
}

.main-header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #111;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.footer-bottom .built-by {
  font-size: 0.95em;
  color: #bdbdbd;
  margin-left: 1.5em;
}
.footer-bottom .built-by a {
  color: #bdbdbd;
  text-decoration: underline;
  transition: color 0.2s;
}
.footer-bottom .built-by a:hover {
  color: #fff;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero-images {
    flex-direction: column;
    gap: 20px;
  }
  .hero-img {
    width: 90vw;
    max-width: 400px;
    height: 200px;
    margin: 0 auto;
  }
  .hero-section header {
    flex-direction: column;
    gap: 10px;
  }
  
  .about-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 2.5rem;
  }
  
  .about-image img {
    width: 100%;
    max-width: 340px;
  }
  
  .services-grid {
    flex-direction: column;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .main-header {
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .hamburger {
    display: block;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: #111;
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links a {
    margin: 1rem 0;
    font-size: 1.2rem;
    color: #fff;
  }
  
  .about-container {
    padding: 2rem;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .about-image {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 2rem;
  }
  
  .about-image img {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  
  .about-content {
    text-align: center;
  }
  
  .about-values {
    justify-content: center;
  }
  
  .divider {
    margin: 1.5rem auto;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content p {
    font-size: 1.2rem;
  }
  
  .services-grid {
    gap: 1.5rem;
  }
  
  .service-card {
    padding: 1.5rem;
  }
  
  .contact-hero-content {
    flex-direction: column;
    padding: 2rem;
  }
  
  .contact-hero-left, 
  .contact-hero-right {
    width: 100%;
  }
  
  .contact-form {
    margin-top: 2rem;
  }

  .hero-bg {
    background: url('/images/glavinsport-mobile.png') center center no-repeat !important;
    background-size: 100% !important;
    filter: none !important;
  }

  .hero-content {
    display: none;
  }
}

@media (max-width: 480px) {
  .main-header {
    padding: 1rem;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .service-card {
    padding: 1.2rem;
  }
  
  .about-content h2 {
    font-size: 1.8rem;
  }
  
  .contact-hero-left h1 {
    font-size: 2rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .footer-container {
    padding: 2rem 1rem;
  }
}

/* Contact Page Styles */
.page-header {
  position: relative;
  height: 50vh;
  background-image: url('/images/contact-background.jpg');
  background-size: cover;
  background-position: center;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 0;
}

.page-header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

.page-header-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 2rem;
}

.page-header h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.25rem;
  opacity: 0.9;
}

.contact-section {
  background: #181818;
  color: #fff;
  padding: 6rem 0 6rem 0;
}

.contact-grid {
  display: flex;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
  flex-wrap: wrap;
}

.contact-info {
  background: #222;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
  padding: 2.5rem 2rem;
  min-width: 260px;
  max-width: 340px;
  flex: 1 1 260px;
  color: #fff;
}

.contact-info h2 {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  text-transform: uppercase;
  color: #fff;
}

.contact-info .divider {
  width: 60px;
  height: 3px;
  background: #fff;
  margin-bottom: 1.5rem;
}

.contact-info p, .contact-info h3 {
  color: #e0e0e0;
}

.contact-details {
  margin: 2rem 0 1rem 0;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-item i {
  font-size: 1.5rem;
  color: #fff;
  margin-right: 1rem;
  margin-top: 0.25rem;
}

.contact-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: #fff;
}

.contact-item p {
  margin: 0;
  color: #e0e0e0;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #181818;
  border-radius: 50%;
  color: #fff;
  font-size: 1.2rem;
  transition: background 0.2s, color 0.2s;
}

.social-links a:hover {
  background: #fff;
  color: #181818;
}

.contact-form-container, .contact-form {
  background: #222;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
  padding: 2.5rem 2rem;
  flex: 1 1 340px;
  color: #fff;
  max-width: 540px;
  margin: 0 auto;
}

.contact-form h2 {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  text-transform: uppercase;
  color: #fff;
}

.contact-form .divider {
  width: 60px;
  height: 3px;
  background: #fff;
  margin-bottom: 1.5rem;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #fff;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #444;
  border-radius: 5px;
  font-family: inherit;
  font-size: 1rem;
  background: #181818;
  color: #fff;
  transition: border-color 0.3s, background 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #fff;
  background: #222;
}

.submit-btn {
  background: #fff;
  color: #181818;
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  width: 100%;
  margin-top: 1rem;
  letter-spacing: 1px;
}

.submit-btn:hover {
  background: #181818;
  color: #fff;
  border: 1px solid #fff;
}

#submitMessage {
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: 5px;
  text-align: center;
}

.success-message {
  background-color: #222;
  color: #4fd1c5;
}

.error-message {
  background-color: #222;
  color: #fc8181;
}

@media (max-width: 900px) {
  .contact-grid {
    flex-direction: column;
    gap: 2.5rem;
  }
  .contact-info, .contact-form-container, .contact-form {
    max-width: 100%;
  }
}

.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #111;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}

.main-header nav {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: relative;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  position: absolute;
  transition: all 0.3s ease;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 9px; }
.hamburger span:nth-child(3) { top: 18px; }

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 9px;
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 9px;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: #111;
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    transition: right 0.3s ease;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    margin: 1rem 0;
    font-size: 1.2rem;
  }
}

.hero {
  position: relative;
  min-height: calc(100vh - 88px); /* header height is about 88px */
  width: 100%;
  display: flex;
  align-items: flex-end;
  padding: 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: url('https://images.unsplash.com/photo-1612534847738-b3af9bc31f0c?q=80&w=2940&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') center/cover no-repeat;
  filter: grayscale(1) brightness(0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 4vw 6vw 7vw 6vw;
  text-align: left;
  max-width: 700px;
  width: 100%;
  padding-bottom: 4rem;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.hero-content p {
  font-size: 1.4rem;
  margin-bottom: 2.5rem;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.btn-dark {
  display: inline-block;
  background: #111;
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: 2px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  transition: background 0.2s;
  letter-spacing: 1px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.btn-dark:hover {
  background: #222;
}

/* Remove unused features and feature-card styles */
.features, .feature-card, .feature-label {
  display: none !important;
}

/* --- Contact Hero Section --- */
.contact-hero {
  position: relative;
  min-height: 80vh;
  width: 100%;
  display: flex;
  align-items: stretch;
  justify-content: center;
  background: #111;
  overflow: hidden;
}
.contact-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: url('https://images.unsplash.com/photo-1713425787543-b3ccfd665733?q=80&w=2924&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') center/cover no-repeat;
  filter: grayscale(1) brightness(0.5);
  z-index: 1;
}
.contact-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5vw 2vw 5vw 2vw;
  gap: 4vw;
  align-items: center;
  justify-content: space-between;
}
.contact-hero-left {
  flex: 1 1 340px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 260px;
}
.contact-hero-left h1 {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  color: #fff;
}
.contact-hero-left p {
  font-size: 1.3rem;
  color: #e0e0e0;
  margin-bottom: 2.5rem;
}
.contact-details-block {
  margin-top: 2.5rem;
}
.contact-detail span {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 0.2rem;
}
.contact-detail div {
  font-size: 1.2rem;
  color: #e0e0e0;
  margin-bottom: 1.2rem;
}
.contact-hero-right {
  flex: 1 1 400px;
  max-width: 480px;
  min-width: 260px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.contact-form {
  width: 100%;
  background: rgba(17,17,17,0.85);
  border-radius: 10px;
  padding: 2.5rem 2rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
}
.contact-form label {
  color: #fff;
  font-weight: 600;
}
.contact-form input,
.contact-form textarea {
  background: #181818;
  color: #fff;
  border: 1px solid #444;
  border-radius: 5px;
  font-size: 1rem;
  padding: 0.75rem;
  margin-bottom: 1.2rem;
  width: 100%;
  transition: border-color 0.2s, background 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #fff;
  background: #222;
}
.contact-form .submit-btn {
  background: #fff;
  color: #181818;
  font-weight: 700;
  border-radius: 2px;
  font-size: 1.1rem;
  padding: 1rem 0;
  width: 100%;
  margin-top: 0.5rem;
  letter-spacing: 2px;
  transition: background 0.2s, color 0.2s;
}
.contact-form .submit-btn:hover {
  background: #181818;
  color: #fff;
  border: 1px solid #fff;
}
@media (max-width: 900px) {
  .contact-hero-content {
    flex-direction: column;
    gap: 2.5rem;
    padding: 8vw 4vw 8vw 4vw;
  }
  .contact-hero-left, .contact-hero-right {
    min-width: 0;
    max-width: 100%;
    width: 100%;
  }
  .contact-form {
    padding: 2rem 1rem;
  }
  .contact-hero-left h1 {
    font-size: 2.2rem;
  }
}