/* Opulent Metallic - Premium Design System */

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

:root {
  --primary-dark: #f8f9fa;
  --primary-medium: #e9ecef;
  --primary-light: #dee2e6;
  --accent-primary: #3f4257;
  --accent-primary-light: #5a5d73;
  --accent-primary-dark: #2d2f3e;
  --accent-secondary: #bb871c;
  --accent-secondary-light: #d4a342;
  --accent-secondary-dark: #8b6415;
  --accent-dark: #2b2a29;
  --text-primary: #212529;
  --text-secondary: #6c757d;
  --text-muted: #adb5bd;
  --text-dark: #212529;
  --text-light: #ffffff;
  --border-light: rgba(0, 0, 0, 0.1);
  --border-medium: rgba(0, 0, 0, 0.2);
  --border-primary: rgba(63, 66, 87, 0.3);
  --border-secondary: rgba(187, 135, 28, 0.3);
  --gradient-primary: linear-gradient(
    135deg,
    #3f4257 0%,
    #5a5d73 50%,
    #2d2f3e 100%
  );
  --gradient-secondary: linear-gradient(
    135deg,
    #bb871c 0%,
    #d4a342 50%,
    #8b6415 100%
  );
  --gradient-hero: linear-gradient(
    135deg,
    rgba(248, 249, 250, 0.9) 0%,
    rgba(233, 236, 239, 0.8) 100%
  );
  --shadow-primary: 0 0 30px rgba(63, 66, 87, 0.4);
  --shadow-secondary: 0 0 30px rgba(187, 135, 28, 0.4);
  --shadow-dark: 0 0 30px rgba(43, 42, 41, 0.3);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.04);
  --border-purple: rgba(63, 66, 87, 0.25);
  --accent-purple: #6f4ec8;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background: var(--primary-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Animated Background */
.bg-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(212, 175, 55, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(108, 117, 125, 0.04) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(37, 99, 235, 0.03) 0%,
      transparent 60%
    );
}

.floating-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.6;
  animation: float 20s ease-in-out infinite;
}

.orb-1 {
  width: 300px;
  height: 300px;
  background: var(--gradient-primary);
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.orb-2 {
  width: 200px;
  height: 200px;
  background: var(--gradient-secondary);
  top: 60%;
  left: 70%;
  animation-delay: 5s;
}

.orb-3 {
  width: 250px;
  height: 250px;
  background: var(--gradient-secondary);
  top: 30%;
  right: 15%;
  animation-delay: 10s;
}

.orb-4 {
  width: 180px;
  height: 180px;
  background: var(--gradient-primary);
  bottom: 20%;
  left: 30%;
  animation-delay: 15s;
}

.orb-5 {
  width: 220px;
  height: 220px;
  background: var(--gradient-secondary);
  top: 50%;
  left: 50%;
  animation-delay: 7s;
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-purple);
  transition: all 0.3s ease;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
  padding: 1rem 2rem;
}

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

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.brand-text {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.brand-accent {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: #bb871c;
  letter-spacing: -0.02em;
}

.brand-logo {
  height: 60px;
  width: auto;
  transition: all 0.3s ease;
}

.brand-logo:hover {
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  color: #3f4257;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-link::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #bb871c;
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: #bb871c;
}

.nav-link:hover::before {
  width: 100%;
}

.cta-button {
  background: #bb871c;
  color: #ffffff;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(187, 135, 28, 0.3);
}

.cta-button:hover {
  background: #d4a342;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(187, 135, 28, 0.5);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.75rem;
  z-index: 1001;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.hamburger:hover {
  background: rgba(63, 66, 87, 0.15);
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background: var(--accent-primary);
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

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

.hamburger.active .hamburger-line:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8rem 2rem 4rem;
  position: relative;
  z-index: 10;
  overflow: hidden;
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--gradient-primary);
  backdrop-filter: blur(10px);
  border: 2px solid var(--border-primary);
  padding: 0.75rem 1.5rem;
  border-radius: 100px;
  margin-bottom: 2rem;
  animation: glow 3s ease-in-out infinite;
  box-shadow: var(--shadow-primary);
}

.badge-icon {
  color: #ffffff;
  font-size: 1rem;
}

.badge-text {
  color: #ffffff;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 900;
  line-height: 0.9;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
}

.title-line {
  color: var(--text-primary);
  animation: slideInFromLeft 0.8s ease forwards;
  opacity: 0;
}

.title-line:nth-child(1) {
  animation-delay: 0.1s;
}
.title-line:nth-child(2) {
  animation-delay: 0.3s;
}
.title-line:nth-child(3) {
  animation-delay: 0.5s;
}

.title-accent {
  background: linear-gradient(135deg, #bb871c 0%, #d4a342 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0.5rem 0;
}

.hero-description {
  color: #3f4257;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 3rem;
  font-weight: 500;
  animation: fadeInUp 1s ease 0.7s forwards;
  opacity: 0;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 4rem;
  animation: fadeInUp 1s ease 0.9s forwards;
  opacity: 0;
}

.primary-btn {
  background: var(--gradient-primary);
  color: var(--text-light);
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-primary);
}

.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(139, 92, 246, 0.6);
}

.secondary-btn {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--border-primary);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.secondary-btn:hover {
  background: var(--gradient-primary);
  color: var(--text-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-primary);
}

.hero-visual {
  flex: 1;
  width: 100%;
  min-width: 280px;
  max-width: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.metallic-sphere {
  width: 300px;
  height: 300px;
  background: var(--gradient-primary);
  border-radius: 50%;
  position: relative;
  box-shadow: var(--shadow-xl), var(--shadow-primary);
  animation: rotate 20s linear infinite;
}

.ring-animation {
  position: absolute;
  border: 2px solid var(--border-primary);
  border-radius: 50%;
  animation: pulse 4s ease-in-out infinite;
}

.ring-1 {
  width: 350px;
  height: 350px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 0s;
}

.ring-2 {
  width: 400px;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 1s;
}

.ring-3 {
  width: 450px;
  height: 450px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 2s;
}

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

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 1rem;
  color: #3f4257;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.2rem;
  font-weight: 400;
}

/* About Section */
.about {
  padding: 8rem 0;
  background: var(--gradient-hero);
  position: relative;
}

.about-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.about-card {
  flex: 1 1 300px;
  min-width: 280px;
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
}

.about-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg,
    var(--accent-primary),
    var(--accent-secondary),
    var(--accent-primary),
    var(--accent-primary)
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: rotate 10s linear infinite;
  z-index: -1;
}

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

.about-card:hover::before {
  opacity: 0.1;
}

.card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: 20px;
  color: var(--text-light);
  font-size: 2rem;
  transition: all 0.3s ease;
}

.about-card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
}

.about-card h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--accent-secondary);
}

.about-card p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 1rem;
}

/* Services Section */
.services {
  padding: 8rem 0;
  background: var(--primary-dark);
}

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

.service-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 0;
  display: flex;
  transition: all 0.4s ease;
  overflow: hidden;
  position: relative;
}

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

.service-number {
  background: var(--gradient-primary);
  color: var(--text-light);
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  font-weight: 900;
  padding: 2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
}

.service-content {
  padding: 2.5rem;
  flex: 1;
}

.service-content h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--accent-secondary);
}

.service-content p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.service-features {
  list-style: none;
  margin-top: 0.5rem;
}

.service-features li {
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.service-features i {
  color: #bb871c;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Contact Section */
.contact {
  padding: 8rem 0 4rem;
  background: var(--gradient-hero);
  position: relative;
}

.contact-header {
  text-align: center;
  margin-bottom: 4rem;
}

.contact-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: #3f4257;
  margin-bottom: 1rem;
}

.contact-subtitle {
  color: var(--text-secondary);
  font-size: 1.3rem;
  margin-bottom: 2rem;
  font-weight: 500;
}

.title-decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.decoration-line {
  width: 60px;
  height: 2px;
  background: #bb871c;
  opacity: 0.8;
}

.decoration-dot {
  width: 8px;
  height: 8px;
  background: #bb871c;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(187, 135, 28, 0.6);
}

.contact-wrapper {
  margin-bottom: 4rem;
}

.contact-box {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  min-height: 500px;
  padding: 2rem;
}

/* Tablet and Large Mobile */
@media (min-width: 769px) and (max-width: 1024px) {
  .contact-box {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
    min-height: 400px;
  }

  .contact-left {
    padding: 2rem !important;
    order: 2;
  }

  .contact-right {
    padding: 1.5rem !important;
    min-height: 300px;
    order: 1;
  }
}

/* Mobile Landscape and Small Tablet */
@media (min-width: 576px) and (max-width: 768px) {
  .contact-box {
    grid-template-columns: 1fr;
    padding: 1.25rem;
    gap: 1rem;
    min-height: 350px;
  }

  .contact-left {
    padding: 1.5rem !important;
    order: 2;
  }

  .contact-right {
    padding: 1rem !important;
    min-height: 250px;
    order: 1;
  }

  .contact-info-vertical {
    gap: 1.5rem;
  }

  .contact-item {
    padding: 1.25rem;
  }
}

/* Small Mobile and Phablet */
@media (min-width: 481px) and (max-width: 575px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(248, 249, 250, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-primary);
  }

  .navbar {
    padding: 0.5rem 1rem;
  }

  .nav-container {
    justify-content: space-between;
    align-items: center;
  }

  .nav-brand {
    order: 1;
    justify-content: flex-start;
    margin-bottom: 0;
  }

  .hamburger {
    display: flex;
    order: 2;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 280px;
    height: 100vh;
    background: rgba(248, 249, 250, 0.98);
    backdrop-filter: blur(20px);
    border-left: 1px solid var(--border-purple);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 4rem 1.5rem 2rem;
    gap: 1.5rem;
    transition: right 0.3s ease;
    z-index: 999;
  }

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

  .nav-link {
    font-size: 0.9rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-light);
    width: 100%;
    text-align: left;
  }

  .nav-link:last-child {
    border-bottom: none;
  }

  .brand-text,
  .brand-accent {
    font-size: 1.1rem;
  }

  .contact-box {
    grid-template-columns: 1fr;
    padding: 1rem;
    gap: 1rem;
    min-height: auto;
  }

  .contact-map {
    min-height: 220px;
  }

  .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5rem 1rem 3rem;
    margin-top: 0;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .hero-content {
    max-width: 100%;
    order: 2;
    z-index: 10;
  }

  .hero-visual {
    order: 1;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 360px;
    height: 280px;
  }

  .hero-title {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
    line-height: 1.05;
  }

  .hero-description {
    font-size: 0.95rem;
    margin-bottom: 1.75rem;
  }

  .hero-badge {
    background: #3f4257;
    border: 1px solid #5a5d73;
  }

  .hero-visual {
    width: 100%;
    max-width: 320px;
    height: 260px;
  }

  .metallic-sphere {
    width: 220px;
    height: 220px;
  }

  .ring-1,
  .ring-2,
  .ring-3 {
    display: none;
  }

  .container {
    padding: 0 1rem;
  }

  .about,
  .services,
  .contact {
    padding: 5rem 0;
  }

  .about-grid,
  .services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .about-card {
    flex: 1 1 100%;
    padding: 2rem 1.5rem;
  }

  .service-card {
    flex-direction: column;
    text-align: center;
    padding: 0;
    position: relative;
  }

  .service-number {
    width: 55px;
    height: 55px;
    font-size: 1.25rem;
    padding: 0.9rem;
    margin: 1rem auto;
    border-radius: 50%;
    min-width: 55px;
  }

  .service-content {
    padding: 1.75rem 1.25rem;
    text-align: center;
  }

  .service-content h3 {
    font-size: 1.15rem;
    margin-bottom: 0.9rem;
  }

  .service-content p {
    font-size: 0.95rem;
    margin-bottom: 0.9rem;
  }

  .service-features {
    max-width: 220px;
    margin: 0 auto;
  }

  .service-features li {
    font-size: 0.9rem;
    margin-bottom: 0.55rem;
  }

  .contact-title {
    font-size: 2rem;
  }

  .contact-description {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .contact-card {
    padding: 1.5rem 1rem;
    text-align: center;
  }

  .card-icon-wrapper {
    margin-bottom: 1rem;
  }

  .icon-bg {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .card-content h3 {
    font-size: 1.1rem;
  }

  .card-content p {
    font-size: 0.95rem;
  }

  .contact-subtitle {
    font-size: 0.8rem;
  }

  .social-connection {
    padding: 1.25rem;
  }

  .social-connection h4 {
    font-size: 1.3rem;
  }

  .social-connection p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .social-icons {
    gap: 0.75rem;
  }

  .social-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .section-title {
    font-size: clamp(1.8rem, 10vw, 2.5rem);
  }

  .section-subtitle {
    font-size: 0.95rem;
  }

  .title-decoration {
    margin-top: 0.5rem;
  }

  .decoration-line {
    width: 40px;
  }

  .copyright {
    padding: 1.5rem 0;
  }

  .copyright p {
    font-size: 0.8rem;
  }

  .contact-box {
    grid-template-columns: 1fr;
    padding: 1rem;
    gap: 1rem;
    min-height: auto;
    border-radius: 16px;
  }

  .contact-left {
    padding: 1rem !important;
    order: 2;
  }

  .contact-right {
    padding: 0.75rem !important;
    min-height: 200px;
    order: 1;
  }

  .contact-map {
    min-height: 220px;
  }

  .contact-info-vertical {
    gap: 1rem;
  }

  .contact-item {
    padding: 1rem;
    border-radius: 12px;
  }

  .contact-icon {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }

  .contact-text h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }

  .contact-link {
    font-size: 0.9rem;
  }

  .address-text {
    font-size: 0.8rem;
    line-height: 1.5;
  }
}

/* Mobile Portrait */
@media (max-width: 480px) {
  .contact-box {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem;
    gap: 0.75rem;
    min-height: auto;
    border-radius: 12px;
  }

  .contact-left,
  .contact-right,
  .contact-item {
    width: 100%;
  }

  .contact-left {
    padding: 0.5rem !important;
    order: 2;
  }

  .contact-right {
    padding: 0.4rem !important;
    min-height: 160px;
    order: 1;
  }

  .contact-map {
    min-height: 180px;
  }

  .contact-info-vertical {
    gap: 0.5rem;
  }

  .contact-item {
    display: flex;
    flex-direction: column;
    align-items: stretch !important;
    padding: 1rem !important;
    border-radius: 10px !important;
    text-align: center;
    gap: 0.75rem !important;
    min-width: 0;
  }

  .contact-text {
    min-width: 0;
  }

  .contact-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    margin: 0 auto;
  }

  .contact-text h4 {
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
  }

  .contact-link {
    font-size: 1rem !important;
  }

  .address-text {
    font-size: 0.75rem;
    line-height: 1.4;
  }
}

.contact-left {
  padding: 3rem;
  display: flex;
  align-items: center;
}

.contact-right {
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  border-radius: 20px;
}

.contact-map {
  width: 100%;
  height: 100%;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.contact-map iframe {
  min-height: 320px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}

.contact-info-vertical {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  width: 100%;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  border: 1px solid var(--border-light);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.contact-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(63, 66, 87, 0.03) 50%,
    transparent 100%
  );
  transition: left 0.6s ease;
  z-index: 1;
}

.contact-item:hover::before {
  left: 100%;
}

.contact-item::after {
  content: "";
  position: absolute;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(187, 135, 28, 0.03) 50%,
    transparent 100%
  );
  transition: right 0.6s ease;
  z-index: 1;
}

.contact-item:hover::after {
  right: 100%;
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.4rem;
  flex-shrink: 0;
  box-shadow: 0 8px 25px rgba(63, 66, 87, 0.4);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
}

.contact-item:hover .contact-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 35px rgba(63, 66, 87, 0.6);
}

.contact-text {
  flex: 1;
  text-align: left;
}

.contact-text h4 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 2;
}

.contact-text h4::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gradient-secondary);
  border-radius: 2px;
  transition: width 0.4s ease;
}

.contact-item:hover .contact-text h4::after {
  width: 50px;
}

.contact-link {
  color: #3f4257;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  display: inline-block;
  margin: 0.5rem 0;
  transition: all 0.3s ease;
  position: relative;
}

.contact-link::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #bb871c;
  transition: width 0.3s ease;
}

.contact-link:hover::before {
  width: 100%;
}

.contact-link:hover {
  color: #bb871c;
  transform: translateY(-2px);
}

.phone-numbers {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.phone-numbers .contact-link {
  margin: 0;
}

.address-text {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 1rem;
  margin: 0.75rem 0;
}

/* Social Section */
.social-section {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
}

.social-content h4 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-secondary);
  margin-bottom: 1rem;
}

.social-content p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.social-icons-modern {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-icon-modern {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid var(--border-primary);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-primary);
  text-decoration: none;
  font-size: 1.3rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-icon-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  transition: left 0.3s ease;
  z-index: -1;
}

.social-icon-modern:hover {
  transform: translateY(-5px) rotate(5deg);
  color: white;
  box-shadow: var(--shadow-primary);
}

.social-icon-modern:hover::before {
  left: 100%;
}

.social-connection {
  text-align: center;
  padding: 3rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-light);
  border-radius: 24px;
}

.social-connection h4 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-secondary);
  margin-bottom: 1rem;
}

.social-connection p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.social-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid var(--border-primary);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-primary);
  text-decoration: none;
  font-size: 1.3rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  transition: left 0.3s ease;
  z-index: -1;
}

.social-icon:hover {
  transform: translateY(-5px) rotate(5deg);
  color: var(--text-primary);
  box-shadow: var(--shadow-primary);
}

.social-icon:hover::before {
  left: 100%;
}

.contact-form {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 3rem;
}

.contact-form h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--accent-secondary);
}

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

.form-group {
  position: relative;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  color: var(--text-primary);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #bb871c;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 0 15px rgba(187, 135, 28, 0.25);
}

.form-group select {
  cursor: pointer;
}

.submit-btn {
  background: #bb871c;
  color: #ffffff;
  border: none;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 1rem;
  box-shadow: 0 4px 15px rgba(187, 135, 28, 0.3);
}

.submit-btn:hover {
  background: #d4a342;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(187, 135, 28, 0.5);
}

/* Copyright Section */
.copyright {
  background: var(--primary-medium);
  padding: 2rem 0;
  border-top: 1px solid var(--border-light);
  text-align: center;
}

.copyright p {
  color: #3f4257;
  font-size: 0.9rem;
  font-weight: 500;
  margin: 0;
}

/* Animations */
@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(30px, -30px) scale(1.1);
  }
  50% {
    transform: translate(-20px, 20px) scale(0.9);
  }
  75% {
    transform: translate(20px, -10px) scale(1.05);
  }
}

@keyframes glow {
  0%,
  100% {
    box-shadow: var(--shadow-primary);
  }
  50% {
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.6);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

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

@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

/* Responsive Design */

/* Tablet and Large Mobile */
@media (min-width: 769px) and (max-width: 1024px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(248, 249, 250, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-primary);
  }

  .navbar {
    padding: 0.75rem 1.5rem;
  }

  .nav-container {
    justify-content: center;
    text-align: center;
  }

  .nav-brand {
    order: 1;
    width: 100%;
    justify-content: center;
    margin-bottom: 0.5rem;
  }

  .nav-menu {
    order: 2;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
  }

  .nav-link {
    font-size: 0.9rem;
    padding: 0.3rem 0.6rem;
  }

  .hero {
    min-height: 100vh;
    flex-direction: column;
    text-align: center;
    gap: 3rem;
    padding: 4rem 1rem 3rem;
    margin-top: 0;
  }

  .hero-visual {
    order: -1;
    max-width: 400px;
    margin-bottom: 2rem;
  }

  .metallic-sphere {
    width: 250px;
    height: 250px;
  }

  .ring-1,
  .ring-2,
  .ring-3 {
    display: none;
  }

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

  .social-icons {
    gap: 1rem;
  }

  .social-icon {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
}

/* Mobile Landscape and Small Tablet */
@media (min-width: 576px) and (max-width: 768px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(248, 249, 250, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-primary);
  }

  .navbar {
    padding: 0.5rem 1rem;
  }

  .nav-container {
    justify-content: space-between;
    align-items: center;
  }

  .nav-brand {
    order: 1;
    justify-content: flex-start;
    margin-bottom: 0;
  }

  .hamburger {
    display: flex;
    order: 2;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: rgba(248, 249, 250, 0.98);
    backdrop-filter: blur(20px);
    border-left: 1px solid var(--border-purple);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 2rem;
    transition: right 0.3s ease;
    z-index: 999;
  }

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

  .nav-link {
    font-size: 0.95rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-light);
    width: 100%;
    text-align: left;
  }

  .nav-link:last-child {
    border-bottom: none;
  }

  .brand-text,
  .brand-accent {
    font-size: 1.2rem;
  }

  .hero {
    padding: 6rem 1rem 3rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }

  .hero-visual {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 400px;
    height: 300px;
    z-index: 1;
    order: -1;
    margin-bottom: 2rem;
  }

  .hero-content {
    max-width: 100%;
    order: 2;
    z-index: 10;
  }

  .hero-title {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .about,
  .services,
  .contact {
    padding: 6rem 0;
  }

  .about-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

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

  .service-card {
    flex-direction: column;
    text-align: center;
    padding: 0;
    position: relative;
  }

  .service-number {
    background: var(--gradient-primary);
    color: var(--text-light);
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: auto;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 1rem auto;
    position: relative;
    z-index: 2;
    min-width: 60px;
  }

  .service-content {
    padding: 2rem 1.5rem;
    flex: 1;
    text-align: center;
  }

  .service-content h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }

  .service-content p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }

  .service-features {
    list-style: none;
    text-align: left;
    max-width: 200px;
    margin: 0 auto;
  }

  .service-features li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
  }

  .service-features i {
    color: var(--accent-primary);
    font-size: 0.7rem;
  }

  .contact-title {
    font-size: 2.2rem;
  }

  .contact-description {
    font-size: 1.1rem;
    margin-bottom: 3rem;
  }

  .contact-card {
    padding: 1.25rem;
  }

  .icon-bg {
    width: 60px;
    height: 60px;
    font-size: 1.3rem;
  }

  .social-connection {
    padding: 2.5rem;
  }

  .section-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

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

/* Mobile Portrait */
@media (min-width: 320px) and (max-width: 480px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(248, 249, 250, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-primary);
  }

  .navbar {
    padding: 0.5rem 0.75rem;
  }

  .nav-container {
    justify-content: space-between;
    align-items: center;
  }

  .nav-brand {
    order: 1;
    justify-content: flex-start;
    margin-bottom: 0;
  }

  .hamburger {
    display: flex;
    order: 2;
    padding: 0.5rem;
    min-width: 36px;
    min-height: 36px;
  }

  .hamburger-line {
    width: 20px;
    height: 2px;
    margin: 2px 0;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 280px;
    height: 100vh;
    background: rgba(248, 249, 250, 0.98);
    backdrop-filter: blur(20px);
    border-left: 1px solid var(--border-purple);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 4rem 1.5rem 2rem;
    gap: 1.5rem;
    transition: right 0.3s ease;
    z-index: 999;
  }

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

  .nav-link {
    font-size: 0.85rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-light);
    width: 100%;
    text-align: left;
  }

  .nav-link:last-child {
    border-bottom: none;
  }

  .brand-text,
  .brand-accent {
    font-size: 1.1rem;
  }

  .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 1rem 2rem;
    margin-top: 0;
    text-align: center;
    position: relative;
  }

  .hero-content {
    max-width: 100%;
    order: 2;
    z-index: 10;
  }

  .hero-visual {
    order: 1;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 300px;
    height: 240px;
  }

  .hero-badge {
    background: #3f4257;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
    border: 1px solid #5a5d73;
  }

  .ring-1,
  .ring-2,
  .ring-3 {
    display: none;
  }

  .hero-title {
    font-size: clamp(2rem, 10vw, 3rem);
    line-height: 1;
    margin-bottom: 1rem;
  }

  .hero-description {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

  .hero-visual {
    order: -1;
    margin-bottom: 2rem;
  }

  .metallic-sphere {
    width: 200px;
    height: 200px;
  }

  .ring-1,
  .ring-2,
  .ring-3 {
    display: none;
  }

  .container {
    padding: 0 1rem;
  }

  .about,
  .services,
  .contact {
    padding: 4rem 0;
  }

  .about-card {
    padding: 2rem 1.5rem;
  }

  .service-card {
    flex-direction: column;
    text-align: center;
    padding: 0;
    position: relative;
  }

  .service-number {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    padding: 0.8rem;
    margin: 1rem auto;
    border-radius: 50%;
    min-width: 50px;
  }

  .service-content {
    padding: 1.5rem 1rem;
    text-align: center;
  }

  .service-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
  }

  .service-content p {
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
  }

  .service-features {
    max-width: 180px;
  }

  .service-features li {
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
  }

  .service-features i {
    font-size: 0.6rem;
  }

  .card-icon {
    width: 60px;
    height: 60px;
    font-size: 1.3rem;
  }

  .about-card h3 {
    font-size: 1.2rem;
  }

  .about-card p {
    font-size: 0.95rem;
  }

  .contact-title {
    font-size: 2rem;
  }

  .contact-description {
    font-size: 0.85rem;
    margin-bottom: 2rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .contact-card {
    padding: 1.5rem 1rem;
    text-align: center;
  }

  .card-icon-wrapper {
    margin-bottom: 1rem;
  }

  .icon-bg {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .card-content h3 {
    font-size: 1.1rem;
  }

  .card-content p {
    font-size: 0.95rem;
  }

  .contact-subtitle {
    font-size: 0.8rem;
  }

  .social-connection {
    padding: 1.25rem;
  }

  .social-connection h4 {
    font-size: 1.3rem;
  }

  .social-connection p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .social-icons {
    gap: 0.75rem;
  }

  .social-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .section-title {
    font-size: clamp(1.8rem, 10vw, 2.5rem);
  }

  .section-subtitle {
    font-size: 0.95rem;
  }

  .title-decoration {
    margin-top: 0.5rem;
  }

  .decoration-line {
    width: 40px;
  }

  .copyright {
    padding: 1.5rem 0;
  }

  .copyright p {
    font-size: 0.8rem;
  }
}
