/* Google Fonts - Outfit for a Modern/Elite feel */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;700&display=swap');

:root {
  /* Color Palette - Elite Dark & Gold */
  --primary-color: #C9A050;
  /* Luxury Gold */
  --primary-dark: #A08040;
  --secondary-color: #1a1a1a;
  /* Deep Charcoal */
  --accent-color: #f5f5f5;
  /* Off-white for text on dark */
  --text-dark: #333333;
  /* Dark text for light backgrounds */
  --text-light: #e0e0e0;
  /* Light text for dark backgrounds */
  --background-dark: #121212;
  --background-light: #ffffff;
  --border-color: #333333;
  --glass-bg: rgba(26, 26, 26, 0.85);

  --transition: all 0.3s ease;
  --container-width: 1200px;
}

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

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

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* Utilities */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--primary-color);
  color: var(--background-dark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  /* Slight roundness for modern feel */
  border: 1px solid var(--primary-color);
  cursor: pointer;
}

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

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

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

.section-padding {
  padding: 80px 0;
}

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

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #888;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(10, 10, 10, 0.95);
  /* Deeper black for elite feel */
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(201, 160, 80, 0.2);
  /* Subtle Gold Border */
  padding: 15px 0;
  transition: var(--transition);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 25px;
  flex: 1;
  /* Take equal space to center the logo */
}

/* Right align the right menu */
.nav-right {
  justify-content: flex-end;
}

.logo-center {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  /* Let it adapt */
  min-width: 200px;
}

.logo-center img {
  height: 50px;
  /* Standard navbar height fit */
  width: auto;
  position: static;
  /* Reset absolute positioning */
  transform: none;
  /* Reset transform */
  z-index: auto;
  filter: none;
}

.logo-center:hover img {
  transform: scale(1.05);
  /* Slight scale on hover only */
}

.nav-right li {
  list-style: none;
}

.nav-right a {
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-light);
  position: relative;
  padding: 5px 0;
}

.nav-right a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: 0;
  left: 50%;
  /* Center the underline animation */
  transform: translateX(-50%);
  background-color: var(--primary-color);
  transition: var(--transition);
}

.nav-right a:hover::after,
.nav-right a.active::after {
  width: 100%;
}

.nav-right a.active {
  color: var(--primary-color);
}

/* Nav Left Socials & Buttons */
.nav-social {
  color: #fff;
  font-size: 1.2rem;
  transition: var(--transition);
}

.nav-social:hover {
  color: var(--primary-color);
  transform: translateY(-2px);
}

.btn-sm-instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff;
  padding: 8px 15px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 2px;
  font-weight: 600;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
  border: none;
}

.btn-sm-instagram:hover {
  background: linear-gradient(45deg, #bc1888 0%, #cc2366 25%, #dc2743 50%, #e6683c 75%, #f09433 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(220, 39, 67, 0.4);
}

.btn-sm-gold {
  background-color: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  padding: 8px 15px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 2px;
  font-weight: 600;
  transition: var(--transition);
}

.btn-sm-gold:hover {
  background-color: var(--primary-color);
  color: #000;
  box-shadow: 0 0 15px rgba(201, 160, 80, 0.4);
}

.btn-sm-call {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 8px 15px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 2px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-sm-call i {
  color: var(--primary-color);
  font-size: 1rem;
  animation: pulse 2s infinite;
}

.btn-sm-call:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

.hamburger {
  display: none;
  cursor: pointer;
  color: var(--primary-color);
  font-size: 1.5rem;
}

/* Mobile Responsiveness for New Navbar */
@media (max-width: 1024px) {

  /* Increased breakpoint for nav items */
  .nav-left {
    display: none;
  }

  .nav-right {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    padding: 30px;
    gap: 25px;
    text-align: center;
    border-top: 1px solid rgba(201, 160, 80, 0.2);
    display: none;
  }

  .nav-right.active {
    display: flex;
  }

  /* Reset logo for mobile to fit */
  .logo-center {
    width: auto;
  }

  .logo-center img {
    height: 50px;
    position: static;
    transform: none;
    filter: none;
  }

  .logo-center:hover img {
    transform: none;
  }

  .hamburger {
    display: block;
  }

  .navbar {
    justify-content: space-between;
  }
}

/* Mobile visibility utility */
.mobile-only {
  display: none;
}

@media (max-width: 1024px) {
  .mobile-only {
    display: block;
    width: 100%;
    margin-top: 10px;
    /* Spacing between items */
    text-align: center;
  }

  .mobile-only a {
    display: flex !important;
    /* Force flex to align icon/text and override inline-block */
    justify-content: center;
    align-items: center;
    width: 80% !important;
    /* Uniform width relative to menu */
    max-width: 300px;
    /* Cap width for larger mobile screens */
    height: 45px;
    /* Uniform height */
    margin: 0 auto;
    /* Ensure padding and border from button classes are respected */
    box-sizing: border-box;
    font-size: 0.85rem;
    /* Ensure consistent text size */
  }

  /* Specific fix to remove underline from these buttons in the menu */
  .nav-right li.mobile-only a::after {
    display: none !important;
  }

  /* Reset padding from generic nav rule if needed, but button class should handle it if specific enough */
}

/* Hero Section */
.hero {
  height: 100vh;
  /* Darker, more sophisticated overlay */
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.8)), url('../img/hero-bg.jpg') no-repeat center center/cover;
  /* Updated path */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.hero-content {
  max-width: 800px;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 4.5rem;
  /* Larger for desktop */
  font-weight: 300;
  /* Lighter weight for elegance */
  color: #fff;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 5px;
  /* Increased letter-spacing for premium feel */
  line-height: 1.1;
  text-shadow: none;
  /* Removed cheap shadow */
}

.hero-content h1 span {
  color: var(--primary-color);
  font-weight: 700;
  /* Contrast weight */
}

.hero-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  /* Slightly transparent white */
  margin-bottom: 50px;
  font-weight: 300;
  letter-spacing: 1px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Hero Mobile Responsiveness */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.8rem;
    /* Adjusted for mobile */
    letter-spacing: 2px;
  }

  .hero-content p {
    font-size: 1rem;
    padding: 0 10px;
    margin-bottom: 30px;
    /* Reduced margin */
  }

  .hero-content img {
    width: 60px !important;
    /* Smaller logo on mobile hero */
    margin-bottom: 15px !important;
  }

  .hero-btns {
    flex-direction: row;
    /* Keep side-by-side */
    display: flex;
    justify-content: center;
    gap: 10px;
  }

  .hero-btns .btn,
  .hero-btns .btn-outline {
    padding: 10px 15px;
    /* Compact padding */
    font-size: 0.85rem;
    /* Compact font */
    white-space: nowrap;
    /* Prevent breaking */
    min-width: 120px;
    /* Ensure touch target size */
  }
}

/* About Preview */
.about-preview {
  background-color: var(--background-dark);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #fff;
}

.about-content p {
  color: #aaa;
  margin-bottom: 20px;
}

.about-image img {
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--primary-color);
}

/* Services / Info */
.services {
  background-color: #1f1f1f;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--background-dark);
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  transition: var(--transition);
  text-align: center;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
}

.service-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  display: inline-block;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #fff;
}

.service-card p {
  color: #aaa;
}

/* Contact Strip Premium Redesign */
.contact-strip {
  background: var(--primary-color);
  color: #1a1a1a;
  padding: 80px 0;
  text-align: center;
}

.section-title-dark {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #121212;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-desc-dark {
  font-size: 1.1rem;
  color: #000;
  /* Black color */
  font-weight: 600;
  /* Bolder */
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  border: 2px solid #000;
  /* Border added */
  padding: 15px;
  /* Spacing inside border */
  border-radius: 4px;
  /* Slight rounded corners */
  background-color: rgba(255, 255, 255, 0.1);
  /* Subtle background to pop */
}

/* Corporate Identity Section - Dark Premium */
.corporate-section {
  background-color: #121212;
  /* Dark background */
  padding: 80px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.corporate-box {
  background: linear-gradient(145deg, #1f1f1f, #1a1a1a);
  /* Dark gradient box */
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 40px;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(201, 160, 80, 0.3);
  /* Gold border */
  position: relative;
}

.corporate-box .icon-circle {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  width: 80px;
  height: 80px;
  font-size: 2rem;
  margin: 0 auto 25px;
}

.corporate-box .icon-circle i {
  color: var(--primary-color) !important;
  /* Ensure icon is gold */
}

.corporate-box h2 {
  font-size: 2.2rem;
  color: #fff;
  /* White text */
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.corporate-box p {
  color: #aaa;
  /* Soft grey text */
  margin-bottom: 40px;
  font-size: 1.1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background-color: transparent;
  color: var(--primary-color);
  padding: 15px 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid var(--primary-color);
  border-radius: 4px;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.btn-download:hover {
  background-color: var(--primary-color);
  color: #000;
  box-shadow: 0 0 25px rgba(201, 160, 80, 0.4);
  transform: translateY(-5px);
}

.btn-download i {
  font-size: 1.4rem;
}

.contact-cards-wrapper {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.contact-card {
  background: linear-gradient(145deg, #1f1f1f, #121212);
  padding: 40px 30px;
  border-radius: 8px;
  width: 100%;
  max-width: 350px;
  text-align: center;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(201, 160, 80, 0.3);
  /* Subtle gold border on hover */
}

/* Decorative top line */
.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary-color);
  /* Gold line on top */
}

.icon-circle {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--primary-color);
  font-size: 1.8rem;
  border: 1px solid rgba(201, 160, 80, 0.2);
}

.contact-card h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 5px;
  font-weight: 600;
}

.contact-role {
  color: #888;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 25px;
}

.btn-premium-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 25px;
  background: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-premium-dark:hover {
  background: var(--primary-color);
  color: #000;
  box-shadow: 0 0 20px rgba(201, 160, 80, 0.3);
}

/* Mobile adjust */
@media (max-width: 768px) {
  .section-title-dark {
    font-size: 1.8rem;
  }
}

/* Footer */
footer {
  background-color: #0d0d0d;
  color: #777;
  padding: 80px 0 20px;
  border-top: 1px solid #222;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col h4 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-logo {
  height: 100px;
  margin-bottom: 20px;
  opacity: 0.8;
}

.footer-links li {
  margin-bottom: 10px;
}

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

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary-color);
  color: #000;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #222;
  font-size: 0.9rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .hamburger {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--background-dark);
    flex-direction: column;
    padding: 20px;
    gap: 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .contact-flex {
    flex-direction: column;
    gap: 20px;
  }
}