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

:root {
  --bg-primary: #1a1025;
  --bg-secondary: #241634;
  --bg-card: #2a1a3c;
  --accent: #ff7e5f;
  --accent-glow: rgba(255, 126, 95, 0.33);
  --accent-2: #feb47b;
  --text-primary: #fcfcfc;
  --text-muted: #bda8d9;
  --border: #3a2453;
  
  --card-bg-glass: rgba(255, 255, 255, 0.04);
  --card-border-glass: rgba(255, 255, 255, 0.08);
  --font-main: 'Inter', sans-serif;
  
  --border-radius-card: 12px;
  --border-radius-btn: 8px;
  --spacing-base: 8px;
}

[data-theme="light"] {
  --bg-primary: #fffdfa;
  --bg-secondary: #ffffff;
  --bg-card: #ffffff;
  --accent: #e65c00;
  --accent-glow: rgba(230, 92, 0, 0.33);
  --accent-2: #ff9933;
  --text-primary: #2a1c17;
  --text-muted: #6b5a54;
  --border: #fadcd9;
  
  --card-bg-glass: rgba(0, 0, 0, 0.02);
  --card-border-glass: rgba(0, 0, 0, 0.08);
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-main);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
}

body {
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 4px;
}

/* Selection */
::selection {
  background: var(--accent);
  color: #fff;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 2rem;}
h3 { font-size: 1.5rem; margin-bottom: 1rem; }
p { color: var(--text-muted); margin-bottom: 1rem; }

a {
  text-decoration: none;
  color: inherit;
}

.contact-link {
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: var(--accent);
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 80px 0;
}
@media (min-width: 768px) {
  .section-padding {
    padding: 120px 0;
  }
}

/* Utilities */
.gradient-text {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.glass-card {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: var(--card-bg-glass);
  border: 1px solid var(--card-border-glass);
  border-radius: var(--border-radius-card);
  padding: 32px;
}

.pill-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: var(--border-radius-btn);
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: var(--font-main);
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 14px var(--accent-glow);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border: 1px solid var(--border);
}

[data-theme="light"] .btn-secondary {
  background: rgba(0, 0, 0, 0.05);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 15px 0;
}

[data-theme="light"] .navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.theme-switch {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
}

.switch-track {
  position: relative;
  width: 56px;
  height: 28px;
  background: var(--card-bg-glass);
  border: 1px solid var(--border);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6px;
  transition: all 0.3s ease;
}

.switch-track i {
  font-size: 12px;
  color: var(--text-muted);
  z-index: 1;
}

.switch-thumb {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 22px;
  height: 22px;
  background: var(--accent);
  border-radius: 50%;
  transition: transform 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
  z-index: 0;
}

[data-theme="light"] .switch-thumb {
  transform: translateX(28px);
}

:root:not([data-theme="light"]) .switch-track .fa-moon {
  color: #fff;
}

[data-theme="light"] .switch-track .fa-sun {
  color: #fff;
}

.nav-links a:not(.btn) {
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  transition: color 0.3s ease;
  padding: 5px 0;
}

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

.nav-links a:not(.btn).active {
  color: var(--accent);
}

.nav-links a:not(.btn).active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Footer */
.footer {
  margin-top: auto;
  border-top: 1px solid var(--border);
  background: var(--bg-secondary);
  padding: 60px 0 20px;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.5;
}

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

.footer-col h4 {
  color: var(--text-primary);
  margin-bottom: 20px;
}

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

.footer-col a {
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: var(--accent);
}

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

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* Page Transitions Wrapper */
.page-wrapper {
  opacity: 1;
  transition: opacity 0.3s ease;
}
.page-wrapper.fade-out {
  opacity: 0;
}

/* Grid System */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

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

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 30px 20px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-150%);
    opacity: 0;
    transition: all 0.4s ease;
    visibility: hidden;
  }
  
  [data-theme="light"] .nav-links {
    background: rgba(255, 255, 255, 0.98);
  }
  
  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nav-links a {
    font-size: 1.125rem;
  }
  
  .mobile-menu-btn {
    display: block;
  }

  .nav-links .btn {
    width: 100%;
  }
}

/* Hide Google Translate Banner and tooltip completely */
.goog-te-banner-frame.skiptranslate, 
.goog-te-gadget-icon, 
.goog-te-banner-frame, 
#goog-te-banner-frame,
.skiptranslate > iframe.skiptranslate,
body > .skiptranslate {
  display: none !important;
  visibility: hidden !important;
}
html {
  top: 0px !important;
  height: 100% !important;
}
body {
  top: 0px !important;
  position: static !important;
}
.goog-tooltip {
  display: none !important;
}
.goog-tooltip:hover {
  display: none !important;
}
.goog-text-highlight {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
}
