
:root {
  --font-main: 'Outfit', 'Montserrat', sans-serif;
  --bg-dark: #000000;
  --bg-light: #F8F9FA;
  --bg-alt: #FFFFFF;
  --text-dark: #FFFFFF;
  --text-light: #1A1A1A;
  --primary: #1A1A1A;
  --border-light: #f3f4f6;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: var(--font-main);
  background-color: var(--bg-light);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: rgba(10, 10, 10, 0.4);
  backdrop-filter: blur(10px);
  border-bottom: none;
  z-index: 1000;
  transition: height 0.3s ease;
  display: flex;
  align-items: center;
}
header.scrolled {
  height: 70px;
}
.header-container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  display: flex;
  align-items: center;
  gap: 15px;
}
.logo img {
  height: 60px;
  transition: height 0.3s ease;
}
header.scrolled .logo img {
  height: 45px;
}
.logo-text {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
nav {
  display: flex;
  gap: 25px;
}
nav a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  transition: color 0.3s;
}
nav a:hover, nav a.active {
  color: #fff;
}
nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 1px;
  background-color: #fff;
  transition: width 0.3s;
}
nav a:hover::after, nav a.active::after {
  width: 100%;
}
.mobile-menu-toggle {
  display: none;
}

/* Sections */
section {
  padding: 120px 0;
  position: relative;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.dark {
  background-color: var(--bg-dark);
  color: var(--text-dark);
}
.light {
  background-color: var(--bg-alt);
  color: var(--text-light);
}
.light h2 {
  color: var(--text-light);
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.2));
  z-index: 1;
}

/* Home Hero Slideshow */
.home-hero {
  position: relative;
  min-height: 100vh;
  padding: 0;
  padding-top: 160px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background-color: #000;
}
.slideshow {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 0;
  opacity: 0.8;
}
.slide {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1);
  transition: opacity 1.5s ease-in-out;
}
.slide.active {
  opacity: 1;
  animation: zoom 15s infinite alternate ease-out;
}
@keyframes zoom {
  from { transform: scale(1); }
  to { transform: scale(1.15); }
}
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: #fff;
  padding: 0 20px;
  width: 100%;
}
.hero-content h1 {
  font-size: 60px;
  margin-bottom: 24px;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1;
}
.hero-content p {
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.9);
}

/* Page Hero */
.page-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-color: #000;
  color: #fff;
  margin-top: 0;
  padding-top: 200px;
  padding-bottom: 80px;
}
.page-hero .hero-overlay {
  background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.4));
}
.page-hero h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 15px;
  letter-spacing: -0.025em;
}
.page-hero p {
  font-size: 18px;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.9);
}

/* Img Background Section */
.img-bg-section {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-color: #000;
  color: #fff;
  padding: 140px 0;
}
.text-center {
  text-align: center;
}
.img-bg-section .hero-overlay {
  background: rgba(0,0,0,0.8);
}
.img-bg-section h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 30px;
  letter-spacing: -0.025em;
}
.img-bg-section p {
  font-size: 18px;
  font-weight: 300;
}

/* Text Img Section */
.text-img-section .container {
  display: flex;
  align-items: center;
  gap: 60px;
}
.text-img-section .container.row-reverse {
  flex-direction: row-reverse;
}
.text-img-section .content {
  flex: 1;
}
.text-img-section .content h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.025em;
}
.text-img-section .content p {
  margin-bottom: 15px;
  font-size: 16px;
  color: #4b5563;
  line-height: 1.8;
}
.text-img-section .image {
  flex: 1;
}
.text-img-section .image img {
  width: 100%;
  border-radius: 0;
  box-shadow: none;
}

/* Text Center Section */
.text-center-section .max-w {
  max-width: 800px;
  margin: 0 auto;
  font-size: 18px;
  color: #4b5563;
  line-height: 1.8;
}
.text-center-section h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 30px;
  letter-spacing: -0.025em;
}

/* Grid Section */
.grid-section h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 60px;
  letter-spacing: -0.025em;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 0;
  border-top: 1px solid var(--border-light);
  border-left: 1px solid var(--border-light);
  background: var(--bg-alt);
}
.card {
  background: #fff;
  border-radius: 0;
  border-right: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  transition: background-color 0.3s;
  display: flex;
  flex-direction: column;
}
.card:hover {
  background-color: #f9fafb;
  transform: none;
  box-shadow: none;
}
.card-img {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
}
.card h3 {
  padding: 30px 30px 10px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-light);
}
.card p {
  padding: 0 30px 30px;
  font-size: 12px;
  color: #6b7280;
  line-height: 1.8;
}

/* Contact Form */
.form-container {
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  padding: 50px;
  border-radius: 0;
  border: 1px solid var(--border-light);
  box-shadow: none;
}
.form-container h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 40px;
  text-align: center;
  letter-spacing: -0.025em;
}
.input-group {
  margin-bottom: 20px;
}
.input-group input, .input-group textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid var(--border-light);
  border-radius: 0;
  font-family: inherit;
  font-size: 14px;
  background: #f9fafb;
  transition: border-color 0.3s;
}
.input-group input:focus, .input-group textarea:focus {
  outline: none;
  border-color: var(--text-light);
}
.btn {
  width: 100%;
  padding: 16px;
  background: var(--text-light);
  color: #fff;
  border: 1px solid var(--text-light);
  border-radius: 0;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s;
}
.btn:hover {
  background: #fff;
  color: var(--text-light);
}
#success-message {
  margin-top: 25px;
  padding: 20px;
  background: var(--text-light);
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 0;
  animation: fadeIn 0.5s;
}
.hidden {
  display: none;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Footer */
footer {
  background: #000;
  color: rgba(255,255,255,0.5);
  padding: 60px 0 20px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.footer-container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col h3 {
  font-size: 14px;
  margin-bottom: 20px;
  font-weight: 700;
  color: #fff;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
.footer-logo img {
  height: 40px;
}
.footer-logo h3 {
  margin-bottom: 0;
}
.footer-col p {
  margin-bottom: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 10px;
}
.footer-bottom {
  text-align: left;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}

/* Motion Effects */
.motion-el {
  opacity: 0;
  transition: all 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}
.motion-el.fade-up {
  transform: translateY(50px);
}
.motion-el.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .header-container {
    padding: 15px 20px;
  }
  .mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1000;
  }
  .mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    transition: 0.3s;
  }
  .mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  #main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background: #000;
    flex-direction: column;
    padding-top: 80px;
    transition: right 0.3s ease;
  }
  #main-nav.active {
    right: 0;
  }
  #main-nav a {
    padding: 15px 30px;
    font-size: 16px;
  }
  .home-hero h1, .page-hero h1 {
    font-size: 40px;
  }
  section {
    padding: 60px 0;
  }
  .img-bg-section h2, .text-img-section .content h2, .text-center-section h2, .grid-section h2 {
    font-size: 28px;
  }
  .text-img-section .container,
  .text-img-section .container.row-reverse {
    flex-direction: column !important;
    gap: 30px;
  }
  .grid {
    grid-template-columns: 1fr;
  }
  .footer-container {
    flex-direction: column;
    gap: 30px;
  }
  .contact-info-section > div > div {
    flex-direction: column !important;
  }
  .contact-info-section > div > div > div {
    width: 100%;
    max-width: none !important;
  }
  .form-container {
    padding: 30px 20px;
  }
}
