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

:root {
  --fire: #ff4500;
  --fire-bright: #ff7b00;
  --ember: #ff2200;
  --gold: #c9a84c;
  --dark: #080808;
  --dark2: #0f0f0f;
  --dark3: #181818;
  --dark4: #222;
  --scale: #1a1a2e;
  --scale2: #16213e;
  --text: #e8e0d0;
  --text-dim: #8a7f72;
  --border: rgba(201,168,76,0.25);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--dark);
  color: var(--text);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  cursor: none;
}

@media (hover: none) {
  body {
    cursor: auto !important;
  }
  .cursor, .cursor-trail {
    display: none !important;
  }
}

.cursor {
  position: fixed;
  width: 12px;
  height: 12px;
  background: var(--fire);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, background 0.2s;
  mix-blend-mode: screen;
}

.cursor-trail {
  position: fixed;
  width: 30px;
  height: 30px;
  border: 1px solid var(--fire-bright);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all 0.15s ease;
  opacity: 0.5;
}

canvas#dragonCanvas {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.35;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 3rem;
  background: linear-gradient(180deg, rgba(8,8,8,0.98) 0%, rgba(8,8,8,0) 100%);
  border-bottom: 1px solid rgba(201,168,76,0.1);
}

.nav-logo {
  font-family: 'Cinzel Decorative', cursive;
  font-size: 1.4rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-shadow: 0 0 20px rgba(201,168,76,0.5);
  text-decoration: none;
}

.nav-logo span {
  color: var(--fire);
  text-shadow: 0 0 20px rgba(255,69,0,0.8);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 0.2s, text-shadow 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--fire);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--fire-bright);
  text-shadow: 0 0 12px rgba(255,123,0,0.6);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  padding: 0.5rem 1.4rem;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: none;
  transition: all 0.3s ease !important;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--dark) !important;
  text-shadow: none !important;
  box-shadow: 0 0 30px rgba(201,168,76,0.4) !important;
}

#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 1;
  padding: 0 2rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 60%, rgba(255,69,0,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 80% 80% at 50% 100%, rgba(26,26,46,0.6) 0%, transparent 60%);
  z-index: 0;
}

.hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--fire);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.3s forwards;
  position: relative;
  z-index: 2;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '—';
  margin: 0 0.8rem;
  opacity: 0.5;
}

.hero-title {
  font-family: 'Cinzel Decorative', cursive;
  font-size: clamp(3.5rem, 10vw, 8rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: fadeUp 1s ease 0.5s forwards;
}

.hero-title .web {
  color: var(--text);
  display: block;
}

.hero-title .dragon {
  color: var(--fire);
  text-shadow:
    0 0 30px rgba(255,69,0,0.6),
    0 0 60px rgba(255,69,0,0.3),
    0 0 120px rgba(255,69,0,0.1);
  display: block;
}

.hero-subtitle {
  font-size: 1.1rem;
  font-weight: 300;
  color: white;
  max-width: 520px;
  line-height: 1.7;
  margin: 2rem 0 3rem;
  letter-spacing: 0.04em;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.8s forwards;
  position: relative;
  z-index: 2;
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  opacity: 0;
  animation: fadeUp 0.8s ease 1s forwards;
  position: relative;
  z-index: 2;
}

.btn-primary {
  background: var(--fire);
  color: #fff;
  border: none;
  padding: 0.9rem 2.2rem;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: none;
  position: relative;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: all 0.3s ease;
  box-shadow: 0 0 30px rgba(255,69,0,0.3);
}

.btn-primary:hover {
  background: var(--fire-bright);
  box-shadow: 0 0 50px rgba(255,69,0,0.6);
  transform: translateY(-2px);
}

.btn-secondary {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-secondary:hover {
  color: var(--text);
}

.btn-secondary .arrow {
  transition: transform 0.3s;
}

.btn-secondary:hover .arrow {
  transform: translateX(5px);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeIn 1s ease 1.5s forwards;
}

.scroll-indicator span {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--fire), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 0;
}

#services {
  position: relative;
  z-index: 1;
  padding: 8rem 3rem;
}

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

.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--fire);
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-family: 'Cinzel Decorative', cursive;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--text);
  font-weight: 700;
  line-height: 1.2;
}

.section-title em {
  font-style: normal;
  color: var(--gold);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  max-width: 1200px;
  margin: 0 auto;
  background: var(--border);
}

.service-card {
  background: var(--dark2);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: background 0.4s ease;
  cursor: none;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--fire), transparent);
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

.service-card:hover {
  background: var(--dark3);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  display: block;
  filter: drop-shadow(0 0 8px rgba(255,69,0,0.4));
  transition: transform 0.3s;
}

.service-card:hover .service-icon {
  transform: scale(1.15);
}

.service-number {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-family: 'Cinzel Decorative', cursive;
  font-size: 3.5rem;
  color: rgba(255,255,255,0.03);
  font-weight: 900;
  line-height: 1;
}

.service-title {
  font-family: 'Cinzel Decorative', cursive;
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.service-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: white;
  font-weight: 300;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.service-tag {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fire-bright);
  border: 1px solid rgba(255,123,0,0.3);
  padding: 0.2rem 0.6rem;
  clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
}

#process {
  position: relative;
  z-index: 1;
  padding: 8rem 3rem;
  background: var(--dark2);
}

.process-steps {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.process-line {
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, var(--fire), var(--gold), var(--fire));
  opacity: 0.3;
}

.process-step {
  display: flex;
  gap: 3rem;
  padding: 2.5rem 0 2.5rem 5rem;
  position: relative;
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.6s ease;
}

.process-step.visible {
  opacity: 1;
  transform: translateX(0);
}

.step-dot {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border: 2px solid var(--fire);
  border-radius: 50%;
  background: var(--dark2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-dot::after {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--fire);
  border-radius: 50%;
}

.step-num {
  font-family: 'Cinzel Decorative', cursive;
  font-size: 0.75rem;
  color: var(--fire);
  letter-spacing: 0.2em;
  margin-bottom: 0.5rem;
  display: block;
}

.step-title {
  font-family: 'Cinzel Decorative', cursive;
  font-size: 1.3rem;
  color: var(--text);
  margin-bottom: 0.8rem;
}

.step-desc {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
  font-weight: 300;
}

#portfolio {
  position: relative;
  z-index: 1;
  padding: 8rem 3rem;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.5px;
  max-width: 1200px;
  margin: 0 auto;
  background: var(--border);
}

.portfolio-item {
  background: var(--dark3);
  overflow: hidden;
  position: relative;
  cursor: none;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
}

.portfolio-item.large {
  grid-row: span 2;
}

.portfolio-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.6s ease;
}

.portfolio-item:hover .portfolio-bg {
  transform: scale(1.05);
}

.p1 .portfolio-bg { background: linear-gradient(135deg, #1a0a00 0%, #3d1500 50%, #1a0a00 100%); }
.p2 .portfolio-bg { background: linear-gradient(135deg, #000a1a 0%, #002040 50%, #000a1a 100%); }
.p3 .portfolio-bg { background: linear-gradient(135deg, #0a0a00 0%, #2a2000 50%, #0a0a00 100%); }
.p4 .portfolio-bg { background: linear-gradient(135deg, #0a001a 0%, #200040 50%, #0a001a 100%); }
.p5 .portfolio-bg { background: linear-gradient(135deg, #001a0a 0%, #003020 50%, #001a0a 100%); }

.portfolio-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(255,255,255,0.03) 20px,
    rgba(255,255,255,0.03) 21px
  );
}

.portfolio-info {
  position: relative;
  z-index: 2;
  padding: 2rem;
  background: linear-gradient(0deg, rgba(8,8,8,0.95) 0%, transparent 100%);
  width: 100%;
  transform: translateY(10px);
  transition: transform 0.4s ease;
}

.portfolio-item:hover .portfolio-info {
  transform: translateY(0);
}

.portfolio-category {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--fire);
  margin-bottom: 0.4rem;
  display: block;
}

.portfolio-title {
  font-family: 'Cinzel Decorative', cursive;
  font-size: 1rem;
  color: var(--text);
}

.portfolio-hover-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--fire);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.portfolio-item:hover .portfolio-hover-line {
  transform: scaleX(1);
}

#contact {
  position: relative;
  z-index: 1;
  padding: 8rem 3rem;
  background: var(--dark2);
}

.contact-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.contact-dragon {
  font-size: 4rem;
  margin-bottom: 2rem;
  display: block;
  animation: float 3s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(255,69,0,0.5));
}

.contact-title {
  font-family: 'Cinzel Decorative', cursive;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.contact-title span {
  color: var(--fire);
  text-shadow: 0 0 20px rgba(255,69,0,0.5);
}

.contact-sub {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 3rem;
  font-weight: 300;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

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

.form-group label {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark3);
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--text);
  padding: 0.9rem 1.2rem;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  outline: none;
  transition: border-color 0.3s;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
  cursor: none;
}

.form-group select option {
  background: var(--dark3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--fire);
  box-shadow: 0 0 20px rgba(255,69,0,0.1);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
  clip-path: none;
}

.form-submit {
  background: linear-gradient(135deg, var(--fire), var(--fire-bright));
  color: #fff;
  border: none;
  padding: 1.1rem 3rem;
  font-family: 'Cinzel Decorative', cursive;
  font-size: 1rem;
  letter-spacing: 0.1em;
  cursor: none;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: all 0.3s ease;
  align-self: center;
  margin-top: 1rem;
  box-shadow: 0 0 30px rgba(255,69,0,0.3);
}

.form-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(255,69,0,0.5);
}

footer {
  position: relative;
  z-index: 1;
  padding: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--dark);
}

.footer-logo {
  font-size: 1.8rem;
  color: var(--dark);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-logo:hover { color: var(--fire); }

.footer-logo span { color: var(--fire); }

.footer-copy {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  
  font-size: 0.8rem;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  text-align: center;
  white-space: nowrap;
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-links a {
  font-size: 0.8rem;
  color: var(--text-dim);
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}

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

.stats-bar {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--dark3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat-item {
  padding: 2.5rem;
  text-align: center;
  border-right: 1px solid var(--border);
}

.stat-item:last-child { border-right: none; }

.stat-num {
  font-family: 'Cinzel Decorative', cursive;
  font-size: 2.5rem;
  color: var(--fire);
  text-shadow: 0 0 20px rgba(255,69,0,0.4);
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 0.5rem;
  display: block;
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 768px) {
  nav { 
    padding: 1rem 1.5rem; 
    position: static !important;
    background: var(--dark) !important;
  }
  
  .nav-links { display: none; }
  
  #hero {
    position: relative !important;
    padding: 3rem 1.5rem 2rem !important;
    min-height: auto !important;
    margin-top: 0 !important;
    z-index: 1 !important;
  }
  
  .hero-bg {
    display: none !important;
  }
  
  .hero-eyebrow {
    font-size: 0.65rem;
    margin-bottom: 1rem;
  }
  
  .hero-title {
    font-size: clamp(2rem, 7vw, 3.5rem);
    margin-bottom: 1rem;
    line-height: 1.1;
  }
  
  .hero-subtitle {
    font-size: 0.9rem;
    max-width: 100%;
    margin: 1.5rem 0 2rem;
    line-height: 1.5;
    padding: 0 0.5rem;
  }
  
  .hero-logo {
    margin: 1.5rem 0 !important;
  }
  
  .hero-logo img {
    width: 100px !important;
    height: 100px !important;
  }
  
  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 0.8rem;
  }
  
  .btn-primary {
    width: 100%;
    padding: 0.85rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .scroll-indicator {
    display: none;
  }
  
  #services, #process, #portfolio, #contact { padding: 5rem 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-item.large { grid-row: span 1; }
  .stats-bar { grid-template-columns: repeat(1, 1fr) !important; }
  .stat-item {
    padding: 1.5rem;
    border-right: none;
  }
  .stat-item:nth-child(2n) {
    border-right: none;
  }
  .stat-num {
    font-size: 2rem;
  }
  .stat-label {
    font-size: 0.7rem;
  }
  .form-row { grid-template-columns: 1fr; }
  footer { flex-direction: column; gap: 1.5rem; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}


.hero-logo {
  
  margin-top: 2rem;
  animation: float 3s ease-in-out infinite;
}



.cookie-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #1e1e1e;
  color: white;
  padding: 20px;
  z-index: 9999;
  display: none;
}

.cookie-box {
  max-width: 900px;
  margin: auto;
}

.cookie-options {
  margin: 15px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cookie-buttons {
  margin-top: 10px;
}

.cookie-buttons button {
  margin-right: 10px;
  padding: 8px 14px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

#accept-all {
  background: #4caf50;
  color: white;
}

#reject-all {
  background: #f44336;
  color: white;
}

#save-preferences {
  background: #2196f3;
  color: white;
}


.fa {
  padding: 20px;
  font-size: 30px;
  height: auto;
  width: 50px;
  text-align: center;
  text-decoration: none;
}


.fa:hover {
  opacity: 0.7;
}


.fa-facebook {
  background: (var(--dark));
  color: rgb(251, 251, 251);
}
