@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.025em;
  overflow-x: hidden;
}

/* Luxury Black Gradient Background */
.luxury-background {
  min-height: 100vh;
  background: 
    radial-gradient(ellipse at top left, rgba(176, 212, 232, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at top right, rgba(245, 245, 247, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(176, 212, 232, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(20, 20, 22, 0.4) 0%, transparent 50%),
    linear-gradient(135deg, 
      #000000 0%, 
      #0a0a0a 12%, 
      #050505 25%, 
      #000000 37%, 
      #080808 50%, 
      #000000 62%, 
      #0a0a0a 75%, 
      #030303 87%, 
      #000000 100%
    );
  background-attachment: fixed;
  background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%;
  position: relative;
}

.luxury-background::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(45deg, transparent 30%, rgba(176, 212, 232, 0.04) 50%, transparent 70%),
    linear-gradient(-45deg, transparent 30%, rgba(245, 245, 247, 0.03) 50%, transparent 70%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.3) 0%, transparent 20%, transparent 80%, rgba(0, 0, 0, 0.3) 100%);
  pointer-events: none;
  z-index: 0;
}

.luxury-background::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(176, 212, 232, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(176, 212, 232, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(15, 15, 15, 0.4) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
  animation: luxuryPulse 25s ease-in-out infinite;
}

@keyframes luxuryPulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}

.metallic-text-silver {
  color: #f5f5f7;
  text-shadow: 0px 1px 2px rgba(0,0,0,0.3);
}

.metallic-text-blue {
  color: #B0D4E8;
  text-shadow: 0px 1px 2px rgba(0,0,0,0.3);
}

/* Custom metallic border effect */
.metallic-border {
  border: 1px solid;
  border-image: linear-gradient(135deg, rgba(245,245,247,0.5), rgba(176,212,232,0.5)) 1;
}

/* Sharp corners override */
.rounded-none {
  border-radius: 0 !important;
}

/* High contrast links */
a {
  transition: all 0.3s ease;
}

a:hover {
  opacity: 0.9;
}

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

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

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 4rem 1rem;
  overflow: hidden;
}

.hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.2;
}

.hero > div {
  position: relative;
  z-index: 10;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 4.5rem;
  }
}

.hero-description {
  font-size: 1.25rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 1.5rem;
  }
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: 0;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: #B0D4E8;
  color: #1a1a1c;
  padding: 1rem 2rem;
}

.btn-primary:hover {
  background: #9bc4d8;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(176, 212, 232, 0.5);
}

.btn-secondary {
  background: transparent;
  color: #B0D4E8;
  border: 2px solid #B0D4E8;
}

.btn-secondary:hover {
  background: #B0D4E8;
  color: #1a1a1c;
}

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

/* Services Section */
.services-preview {
  padding: 5rem 1rem;
  margin-bottom: 8rem;
}

.services-preview h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
  font-weight: 700;
  color: #f5f5f7;
}

@media (min-width: 768px) {
  .services-preview h2 {
    font-size: 2.5rem;
  }
}

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

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  padding: 1.5rem 0;
  border-top: 2px solid #B0D4E8;
  text-align: left;
  transition: all 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #f5f5f7;
  font-weight: 700;
}

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

/* Services Detail Page */
.services-detail {
  padding: 3rem 1rem;
}

.service-detail-card {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 3rem 0;
  border-bottom: 1px solid rgba(176, 212, 232, 0.3);
  min-height: 200px;
}

.service-detail-card:last-child {
  border-bottom: none;
}

.service-icon-large {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-detail-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 200px;
}

.service-detail-content h2 {
  margin-bottom: 1rem;
  font-size: 2rem;
  color: #f5f5f7;
  font-weight: 700;
  line-height: 1.2;
}

.service-detail-content p {
  color: #d1d5db;
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  line-height: 1.6;
  flex-grow: 1;
}

.service-button-wrapper {
  margin-top: auto;
  padding-top: 1rem;
}

/* CTA Section */
.cta-section {
  background: transparent;
  color: white;
  text-align: center;
  padding: 5rem 1rem;
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #f5f5f7;
  font-weight: 700;
}

@media (min-width: 768px) {
  .cta-section h2 {
    font-size: 2.5rem;
  }
}

.cta-section p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #d1d5db;
}

/* Page Header */
.page-header {
  background: transparent;
  color: white;
  text-align: center;
  padding: 8rem 1rem 4rem;
}

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #f5f5f7;
  font-weight: 700;
}

@media (min-width: 768px) {
  .page-header h1 {
    font-size: 3rem;
  }
}

.page-header p {
  font-size: 1.25rem;
  color: #d1d5db;
}

/* Divider */
.divider {
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, transparent, #B0D4E8, transparent);
  margin: 5rem 0;
}

/* About Page */
.about-content {
  padding: 4rem 1rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #f5f5f7;
  font-weight: 700;
}

.about-text p {
  color: #d1d5db;
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.placeholder-image {
  background: rgba(176, 212, 232, 0.1);
  border: 1px solid rgba(176, 212, 232, 0.3);
  border-radius: 0;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

/* Video Background Styles */
.video-background-container {
  position: relative;
  height: 300px;
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(176, 212, 232, 0.3);
  border-radius: 0;
}

.video-background {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  opacity: 0.3;
  z-index: 0;
}

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

/* Page Header with Video */
.page-header-with-video {
  position: relative;
  overflow: hidden;
}

.page-header-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  opacity: 0.15;
  z-index: 0;
}

.page-header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 26, 28, 0.3);
  z-index: 1;
}

.page-header-with-video .container {
  position: relative;
  z-index: 2;
}

/* Contact Form Video Background */
.contact-form-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  border-radius: 0;
}

.contact-form-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  opacity: 0.2;
}

.contact-form-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 26, 28, 0.5);
  z-index: 1;
}

.contact-form-container {
  position: relative;
  padding: 2rem;
  background: rgba(176, 212, 232, 0.05);
  border: 1px solid rgba(176, 212, 232, 0.2);
  border-radius: 0;
}

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

.values-section {
  padding: 3rem 0;
}

.values-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
  color: #f5f5f7;
  font-weight: 700;
}

@media (min-width: 768px) {
  .values-section h2 {
    font-size: 2.5rem;
  }
}

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

.value-card {
  padding: 2rem;
  background: rgba(176, 212, 232, 0.1);
  border: 1px solid rgba(176, 212, 232, 0.3);
  border-radius: 0;
  text-align: center;
}

.value-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #f5f5f7;
  font-weight: 700;
}

.value-card p {
  color: #d1d5db;
}

/* Contact Page */
.contact-content {
  padding: 4rem 1rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #f5f5f7;
  font-weight: 700;
}

.contact-info p {
  color: #d1d5db;
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #f5f5f7;
  font-weight: 700;
}

.contact-item p {
  color: #d1d5db;
}

.contact-item a {
  color: #B0D4E8;
  text-decoration: none;
}

.contact-item a:hover {
  color: #f5f5f7;
  text-decoration: underline;
}

/* Contact Form */
.contact-form-container h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #f5f5f7;
  font-weight: 700;
}

.form-note {
  color: #d1d5db;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(93, 138, 168, 0.1);
  border-left: 4px solid #B0D4E8;
  border-radius: 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 600;
  color: #f5f5f7;
}

.form-group input,
.form-group textarea {
  padding: 0.75rem;
  border: 1px solid rgba(176, 212, 232, 0.3);
  border-radius: 0;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s;
  background: rgba(176, 212, 232, 0.1);
  color: white;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(209, 213, 219, 0.5);
}

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

/* Footer transition blend */
.footer-transition {
  position: relative;
  z-index: 1;
  margin-top: 4rem;
}

/* FAQ accordion transitions */
.faq-content {
  transition: all 0.3s ease-out;
}

.faq-toggle.active i {
  transform: rotate(180deg);
}

/* Responsive */
@media (max-width: 768px) {
  .service-detail-card {
    flex-direction: column;
    text-align: center;
  }

  .hero h1 {
    font-size: 2rem !important;
    padding: 0 1rem;
  }

  .hero-description {
    font-size: 1rem !important;
    padding: 0 1rem;
  }

  .services-preview {
    padding: 3rem 0.5rem !important;
  }

  .services-preview h2 {
    font-size: 1.75rem !important;
  }

  .services-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  .page-header {
    padding: 6rem 1rem 3rem !important;
  }

  .page-header h1 {
    font-size: 2rem !important;
  }

  .container {
    padding: 0 1rem !important;
  }

  .footer-transition {
    height: 100px !important;
  }

  .nav-container {
    padding: 0.6rem 1rem !important;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.75rem !important;
  }

  .services-preview h2,
  .page-header h1,
  .cta-section h2 {
    font-size: 1.5rem !important;
  }

  .btn {
    padding: 0.75rem 1.5rem !important;
    font-size: 0.9rem !important;
  }
}
