/* ADKYTECH REDESIGN SYSTEM - "BAKERSTREET" MINIMAL DARK AESTHETIC */
:root {
  /* Colors */
  --bg-main: #030303;
  --bg-card: #0A0A0A;
  --bg-surface: #121212;
  
  --primary-royal: #6C3BFF;
  --primary-violet: #8B5CF6;
  
  --text-white: #FFFFFF;
  --text-gray: #A1A1AA;
  --text-muted: #71717A;
  
  --border-color: #27272A;
  
  /* Gradients */
  --grad-primary: linear-gradient(135deg, #6C3BFF, #8B5CF6);
  --grad-hero: radial-gradient(circle at center, rgba(108, 59, 255, 0.15) 0%, #030303 70%);

  /* Typography */
  --font-sans: 'Inter', sans-serif;
  --font-serif: 'Playfair Display', serif;

  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* RESET & BASE STYLES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--bg-main);
  color: var(--text-gray);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-white);
  line-height: 1.2;
  font-weight: 500;
}

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

ul {
  list-style: none;
}

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

.section {
  padding: 8rem 0;
}

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

.section-header h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--text-gray);
  max-width: 600px;
  margin: 0 auto;
}

/* UTILITIES */
.font-serif {
  font-family: var(--font-serif);
  font-weight: 400;
}

.italic {
  font-style: italic;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  font-family: var(--font-sans);
  transition: var(--transition-smooth);
  gap: 0.5rem;
}

.btn-primary {
  background: var(--text-white);
  color: var(--bg-main);
}

.btn-primary:hover {
  background: #E4E4E7;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--text-white);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  border-color: var(--text-white);
  background: rgba(255, 255, 255, 0.05);
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: var(--transition-smooth);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(3, 3, 3, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 0;
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-white);
}

.brand-logo {
  height: 32px;
  width: auto;
  display: block;
}

.brand-text {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-gray);
}

.nav-links a:hover {
  color: var(--text-white);
}

/* HERO SECTION */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  padding-top: 80px;
  background: var(--grad-hero);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://images.unsplash.com/photo-1550751827-4bd374c3f58b?auto=format&fit=crop&q=80&w=2000');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
  mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 400;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-title .font-serif {
  font-size: 1.1em;
  display: block;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--text-gray);
  margin-bottom: 2rem;
  max-width: 650px;
}

.hero-cta {
  display: flex;
  gap: 1rem;
}

/* SERVICES SECTION */
.services {
  background: var(--bg-main);
  border-top: 1px solid var(--border-color);
}

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

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  border-color: rgba(108, 59, 255, 0.4);
  transform: translateY(-5px);
}

.service-img {
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background-color: var(--bg-card);
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.service-img img.contain-mobile {
  object-fit: cover;
}

@media (max-width: 768px) {
  .service-img img.contain-mobile {
    object-fit: contain;
  }
}

.service-card:hover .service-img img {
  transform: scale(1.05);
}

.service-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.service-content p {
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-white);
  font-weight: 500;
}

.service-link i {
  width: 16px;
  height: 16px;
  transition: transform 0.3s;
}

.service-link:hover i {
  transform: translateX(5px);
}

/* WHY CHOOSE US SECTION */
.why-us {
  border-top: 1px solid var(--border-color);
  background: var(--bg-main);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  text-align: center;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-item i {
  width: 48px;
  height: 48px;
  color: var(--text-white);
  margin-bottom: 1.5rem;
}

.feature-item h4 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.feature-item p {
  font-size: 0.875rem;
}

/* FOOTER SECTION */
.footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border-color);
  padding: 5rem 0 2rem;
}

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

.footer-brand .brand {
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.875rem;
  max-width: 300px;
}

.footer-contact h4,
.footer-locations h4 {
  color: var(--text-white);
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
}

.footer-contact ul li,
.footer-locations ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

.footer-contact ul li i,
.footer-locations ul li i {
  width: 18px;
  height: 18px;
  color: var(--text-white);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact a:hover {
  color: var(--text-white);
}

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

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .hero-cta {
    flex-direction: column;
    width: 100%;
    padding: 0 2rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .section {
    padding: 5rem 0;
  }
  
  .section-header h2 {
    font-size: 2.25rem;
  }
}

/* MODAL STYLES */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.modal-content {
  background-color: var(--bg-card);
  margin: 15% auto;
  padding: 2rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  width: 90%;
  max-width: 500px;
  text-align: center;
  position: relative;
}

.close {
  position: absolute;
  top: 10px;
  right: 15px;
  color: var(--text-gray);
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover {
  color: var(--text-white);
}

.modal-content h2 {
  margin-bottom: 1rem;
  color: var(--text-white);
}

.modal-content p {
  margin-bottom: 2rem;
  color: var(--text-gray);
}

.modal-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.btn-whatsapp {
  background: #25D366;
  color: white;
}

.btn-telegram {
  background: #0088cc;
  color: white;
}

.dont-show-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-gray);
}

.dont-show-label input {
  margin: 0;
}

/* RESPONSIVE MODAL */
@media (max-width: 768px) {
  .modal-content {
    margin: 20% auto;
    padding: 1.5rem;
  }
  
  .modal-buttons {
    flex-direction: column;
  }
}
