:root {
  --primary: #f5b301;
  --dark: #0e061f;
  --glass: rgba(255,255,255,0.08);
  --text: #ffffff;
  --soft: #cfcfcf;

  --transition: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

html {
  scroll-behavior: smooth;
}
/* ===============================
RESET + BASE
=============================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  }

body {
font-family: 'Poppins', sans-serif;
  background: var(--dark);
  color: var(--text);
overflow-x: hidden;
 animation: pageFade 1s ease;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at top, rgba(245,179,1,0.08), transparent 60%);
  pointer-events: none;
  z-index: -1;
}

@keyframes pageFade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

a {
text-decoration: none;
color: inherit;
}

section {
  position: relative;
}

section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(245,179,1,0.05), transparent 70%);
  pointer-events: none;
}

button,
a,
.hamburger {
  cursor: pointer;
}

img {
  image-rendering: auto;
  filter: contrast(1.02) saturate(1.05);
}

/* ===============================
NAVIGATION (GLASS)
=============================== */
.nav-container {
position: fixed;
top: 20px;
left: 50%;
transform: translateX(-50%);
width: calc(100% - 40px);
max-width: 1200px;

padding: 14px 25px;

display: flex;
justify-content: space-between;
align-items: center;
 transition: var(--transition);
background: rgba(255, 255, 255, 0.08);
backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px); /* FIX */
border-radius: 50px;
border: 1px solid rgba(255,255,255,0.15);

z-index: 1000;
}

.brand-name {
font-size: 26px;
font-weight: 700;
color: #f5b301;
}

.nav-listing {
display: flex;
list-style: none;
gap: 30px;
}

.nav-listing a {
font-weight: 500;
transition: 0.3s;
}

.nav-listing a:hover {
color: #f5b301;
}


.nav-scrolled {
  background: rgba(14, 6, 31, 0.85);
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}
/* ===============================
HAMBURGER
=============================== */
.hamburger {
display: none;
flex-direction: column;
cursor: pointer;
}

.bar {
width: 25px;
height: 3px;
background: white;
margin: 4px 0;
transition: 0.3s;
}

/* ===============================
HERO SECTION
=============================== */
.hero {
  min-height: 100vh;
  height: auto;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 80px;
position: relative;
overflow: hidden;
}

/* Background slideshow */
.hero-bg {
position: absolute;
width: 100%;
height: 100%;
z-index: 0;
}

.bg-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 1.5s ease, transform 6s ease;
}

.bg-slide.active {
  opacity: 1;
  transform: scale(1);
}

/* Overlay */
.hero-overlay {
position: absolute;
width: 100%;
height: 100%;
background: rgba(10,5,40,0.7);
z-index: 1;
}

/* Content */
.hero-content {
position: relative;
z-index: 2;
max-width: 520px;
}

.hero-content h1 {
font-size: 48px;
line-height: 1.2;
}

.highlight {
color: #f5b301;
}

.hero-content p {
margin: 20px 0;
color: #ddd;
}

/* Buttons */
.hero-buttons {
display: flex;
gap: 20px;
}

.primary-btn {
  background: var(--primary);
  color: black;
  padding: 14px 28px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.primary-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 15px 40px rgba(245, 179, 1, 0.4);
}

/* ripple effect */
.primary-btn::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.3);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.6s;
}

.primary-btn:active::after {
  width: 200px;
  height: 200px;
}

/* Floating Image */
.hero-image {
position: relative;
z-index: 2;
}

.hero-image img {
width: 100%;
max-width: 420px;
border-radius: 20px;
border: 6px solid #f5b301;
}

/* Float animation */
.float {
  animation: floatSmooth 6s ease-in-out infinite;
}

@keyframes floatSmooth {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* ===============================
ANIMATIONS
=============================== */
.fade-up {
opacity: 0;
transform: translateY(30px);
animation: fadeUp 1s ease forwards;
}

.fade-up.delay {
animation-delay: 0.4s;
}

.fade-up.delay-2 {
animation-delay: 0.8s;
}

@keyframes fadeUp {
to {
opacity: 1;
transform: translateY(0);
}
}

/* ===============================
VIDEO SECTION
=============================== */
.video-section {
padding: 100px 20px;
text-align: center;
background: #140b2d;
}

.video-section h2 {
font-size: 32px;
margin-bottom: 30px;
}

.video-wrapper {
max-width: 800px;
margin: auto;
}

.video-wrapper video {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  transition: var(--transition);
}

.video-wrapper video:hover {
  transform: scale(1.02);
}

/* ===============================
CTA SECTION
=============================== */
.cta-section {
padding: 100px 20px;
text-align: center;
background: linear-gradient(135deg, #2b1c59, #1a1038);
}

.cta-section h2 {
margin-bottom: 20px;
}

/* ===============================
MOBILE
=============================== */
@media (max-width: 900px) {

.hamburger {
display: flex;
}

.nav-listing {
position: fixed;
top: 70px;
left: 0;
width: 100%;
flex-direction: column;
align-items: center;
gap: 25px;
background: rgba(20,10,60,0.95);
padding: 30px 0;
display: none;
}

.nav-listing.active {
display: flex;
}

.hero {
flex-direction: column;
padding: 140px 20px 60px;
text-align: center;
}

.hero-image {
margin-top: 30px;
}

.hero-content h1 {
font-size: 34px;
}
}


/* ===============================
GLOBAL SECTIONS
=============================== */
.section-title {
text-align: center;
font-size: 32px;
margin-bottom: 40px;
color: #f5b301;
}

/* ===============================
FEATURES
=============================== */
.features-section {
padding: 100px 20px;
background: #120c2f;
}

.features-grid {
display: flex;
gap: 30px;
max-width: 1000px;
margin: auto;
flex-wrap: wrap;
}

.feature-card {
  background: var(--glass);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 30px;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.1);
  transform: translateZ(0);
}

.feature-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 60px rgba(0,0,0,0.4);
}

/* ===============================
PREVIEW
=============================== */
.preview-section {
padding: 100px 20px;
text-align: center;
}

.preview-grid {
display: flex;
gap: 20px;
justify-content: center;
margin-bottom: 30px;
flex-wrap: wrap;
}

.preview-card {
width: 250px;
overflow: hidden;
border-radius: 15px;
}

.preview-card img {
width: 100%;
transition: 0.4s;
}

.preview-card:hover img {
transform: scale(1.1);
}

/* ===============================
PROCESS
=============================== */
.process-section {
padding: 100px 20px;
background: #140b2d;
text-align: center;
}

.process-steps {
display: flex;
justify-content: center;
gap: 30px;
flex-wrap: wrap;
}

.step {
width: 150px;
}

.step span {
display: block;
font-size: 30px;
color: #f5b301;
margin-bottom: 10px;
}

/* ===============================
TRUST
=============================== */
.trust-section {
padding: 100px 20px;
text-align: center;
}

.trust-text {
max-width: 600px;
margin: auto;
color: #ccc;
}

/* ===============================
SHOWROOM (SLIDER)
=============================== */
.showroom-section {
padding: 100px 0;
text-align: center;
overflow: hidden;
}

.showroom-container {
width: 100%;
overflow: hidden;
position: relative;
}

.showroom-track {
display: flex;
gap: 25px;
width: max-content;
animation: scrollShowroom 25s linear infinite;
}

.showroom-card {
width: 280px;
height: 380px;
border-radius: 20px;
overflow: hidden;
flex-shrink: 0;
position: relative;
transition: var(--transition);
}

.showroom-card img {
width: 100%;
height: 100%;
object-fit: cover;
transition: var(--transition);
}

/* Hover zoom */
.showroom-card:hover img {
transform: scale(1.1);
transition: var(--transition);
}

/* Pause on hover */
.showroom-container:hover .showroom-track {
animation-play-state: paused;
}

.showroom-card:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

@keyframes scrollShowroom {
from {
transform: translateX(0);
}
to {
transform: translateX(-50%);
}
}

/* ===============================
SCROLL REVEAL ANIMATIONS
=============================== */
.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal-left {
  transform: translateX(-60px);
}

.reveal-right {
  transform: translateX(60px);
}

.reveal.active,
.reveal-left.active,
.reveal-right.active {
  opacity: 1;
  transform: translate(0);
}

/* Delays */
.delay-1 {
transition-delay: 0.2s;
}

.delay-2 {
transition-delay: 0.4s;
}

.delay-3 {
transition-delay: 0.6s;
}

/* ===============================
REQUEST DOOR PAGE
=============================== */

.request-section {
  min-height: 100vh;
  padding: 160px 20px 80px;
  display: flex;
  justify-content: center;
  align-items: center;

  background: radial-gradient(circle at top, #1e1250, #0e061f);
}

/* Container */
.request-container {
  width: 100%;
  max-width: 900px;
  text-align: center;

  animation: fadeUp 1s ease;
}

/* Title */
.request-title {
  font-size: 42px;
  color: var(--primary);
  margin-bottom: 10px;
}

/* Subtitle */
.request-subtitle {
  color: var(--soft);
  margin-bottom: 40px;
  font-size: 16px;
}

/* Google Form Wrapper */
.google-form-wrapper {
  width: 100%;
  height: 80vh;

  border-radius: 20px;
  overflow: hidden;

  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(15px);

  border: 1px solid rgba(255,255,255,0.1);

  box-shadow: 0 30px 80px rgba(0,0,0,0.5);

  transition: var(--transition);
}

/* Hover lift */
.google-form-wrapper:hover {
  transform: translateY(-5px);
}

/* Iframe */
.google-form-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ===============================
ANIMATION
=============================== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.request-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: var(--primary);
  filter: blur(180px);
  opacity: 0.1;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
} 


/* ===== Gallery Page ===== */
/* ===============================
GALLERY SECTION
=============================== */

.gallery-section {
  min-height: 100vh;
  padding: 160px 20px 100px;
  background: radial-gradient(circle at top, #1e1250, #0e061f);
  text-align: center;
  position: relative;
}

/* Glow background */
.gallery-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: var(--primary);
  filter: blur(180px);
  opacity: 0.08;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
}

/* Header */
.gallery-header {
  margin-bottom: 60px;
}

.gallery-title {
  font-size: 40px;
  color: var(--primary);
  margin-bottom: 10px;
}

.gallery-subtitle {
  color: var(--soft);
  max-width: 600px;
  margin: auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.door-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;

  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(15px);

  border: 1px solid rgba(255,255,255,0.1);

  transition: var(--transition);
}

/* Hover lift */
.door-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 60px rgba(0,0,0,0.5);
}


.door-image {
  width: 100%;
  height: 300px;
  object-fit: cover;

  transition: transform 0.6s ease;
  cursor: pointer;
}

.door-card:hover .door-image {
  transform: scale(1.1);
}

.enquiry-btn {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);

  background: var(--primary);
  color: black;

  padding: 10px 20px;
  border-radius: 30px;

  font-weight: 600;
  font-size: 14px;

  opacity: 0;
  transition: var(--transition);
}

/* Show button on hover */
.door-card:hover .enquiry-btn {
  opacity: 1;
  bottom: 25px;
}

/* Hover feel */
.enquiry-btn:hover {
  transform: translateX(-50%) scale(1.05);
  box-shadow: 0 10px 30px rgba(245,179,1,0.4);
}


/* ===============================
IMAGE MODAL
=============================== */

.image-modal {
  position: fixed;
  inset: 0;
  background: rgba(10, 5, 40, 0.95);

  display: none;
  justify-content: center;
  align-items: center;

  z-index: 2000;

  animation: fadeIn 0.4s ease;
}

.image-modal img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: 15px;

  animation: zoomIn 0.4s ease;
}

/* Close button */
.close-btn {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

.close-btn:hover {
  color: var(--primary);
}


@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}


@media (max-width: 900px) {

  .gallery-title {
    font-size: 28px;
  }

  .door-image {
    height: 220px;
  }

}


/* ===============================
ABOUT PAGE — ELITE UI
=============================== */

.about-section {
  min-height: 100vh;
  padding: 160px 20px 120px;
  background:
    radial-gradient(circle at top, #24125e, #0b0618 70%);
  position: relative;
  overflow: hidden;
}

/* Animated background glow */

.about-section::before,
.about-section::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(160px);
  opacity: 0.15;
  animation: glowMove 12s infinite alternate ease-in-out;
}

.about-section::before {
  background: #f5b301;
  top: -100px;
  left: -100px;
}

.about-section::after {
  background: #6a5cff;
  bottom: -150px;
  right: -100px;
}

@keyframes glowMove {
  from {
    transform: translateY(0px) translateX(0px);
  }

  to {
    transform: translateY(40px) translateX(30px);
  }
}

.about-container {
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 2;
}

/* ===============================
HEADER
=============================== */

.about-header {
  text-align: center;
  margin-bottom: 70px;
}

.about-title {
  font-size: 60px;
  font-weight: 700;
  color: white;
  line-height: 1.1;
}

.about-title span {
  color: var(--primary);
}

.about-subtitle {
  max-width: 700px;
  margin: 20px auto;
  color: #d0d0d0;
  font-size: 18px;
  line-height: 1.8;
}

.gold-line {
  width: 90px;
  height: 4px;
  background: var(--primary);
  margin: 30px auto;
  border-radius: 20px;
}

/* ===============================
SLIDER
=============================== */

.about-slider {
  overflow: hidden;
  border-radius: 30px;
  margin-bottom: 90px;
  position: relative;
}

.slides {
  display: flex;
  gap: 25px;
  width: max-content;
  animation: slideMove 25s linear infinite;
}

.slides img {
  width: 340px;
  height: 240px;
  object-fit: cover;
  border-radius: 25px;
  transition: 0.5s ease;
}

.slides img:hover {
  transform: scale(1.05);
}

.about-slider:hover .slides {
  animation-play-state: paused;
}

@keyframes slideMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ===============================
INTRO
=============================== */

.about-intro {
  max-width: 900px;
  margin: auto;
  color: #d8d8d8;
  line-height: 2;
  font-size: 17px;
}

.about-intro p {
  margin-bottom: 30px;
}

.about-goal {
  color: var(--primary);
  font-weight: 600;
}

/* ===============================
STATS
=============================== */

.about-stats {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 100px 0;
  flex-wrap: wrap;
}

.stat-card {
  width: 240px;
  padding: 40px;
  text-align: center;

  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);

  border-radius: 25px;
  border: 1px solid rgba(255,255,255,0.1);

  transition: 0.4s ease;
}

.stat-card:hover {
  transform: translateY(-10px);
}

.stat-card h2 {
  font-size: 50px;
  color: var(--primary);
}

.stat-card p {
  color: #ccc;
}

/* ===============================
MISSION / VISION
=============================== */

.mission-vision-wrapper {
  display: flex;
  gap: 30px;
  margin-top: 80px;
  flex-wrap: wrap;
}

.mv-card {
  flex: 1;
  min-width: 280px;

  padding: 45px;

  border-radius: 30px;

  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(25px);

  border: 1px solid rgba(255,255,255,0.08);

  transition: 0.5s ease;
}

.mv-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 30px 70px rgba(0,0,0,0.4);
}

.mv-icon {
  font-size: 40px;
  margin-bottom: 20px;
}

.mv-card h2 {
  color: var(--primary);
  margin-bottom: 20px;
}

.mv-card p {
  line-height: 1.9;
  color: #ddd;
}

/* ===============================
TIMELINE
=============================== */

.timeline-section {
  margin-top: 120px;
  position: relative;
}

.timeline-section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  background: rgba(255,255,255,0.1);
}

.timeline-item {
  width: 50%;
  padding: 40px;
  position: relative;
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
}

.timeline-dot {
  width: 18px;
  height: 18px;
  background: var(--primary);
  border-radius: 50%;

  position: absolute;
  top: 50px;
  right: -9px;
}

.timeline-item:nth-child(even) .timeline-dot {
  left: -9px;
}

.timeline-content {
  background: rgba(255,255,255,0.05);
  padding: 30px;
  border-radius: 20px;
  backdrop-filter: blur(20px);
}

.timeline-content h3 {
  color: var(--primary);
  margin-bottom: 15px;
}

/* ===============================
ANIMATIONS
=============================== */

.animate {
  opacity: 0;
  transform: translateY(50px);
  transition: 1s ease;
}

.animate.show {
  opacity: 1;
  transform: translateY(0);
}

/* ===============================
RESPONSIVE
=============================== */

@media (max-width: 900px) {

  .about-title {
    font-size: 38px;
  }

  .slides img {
    width: 250px;
    height: 180px;
  }

  .timeline-section::before {
    left: 20px;
  }

  .timeline-item {
    width: 100%;
    left: 0 !important;
    padding-left: 60px;
    text-align: left !important;
  }

  .timeline-dot {
    left: 11px !important;
  }

}

/* ===============================
WHY DORZA SECTION
=============================== */

.why-dorza-section {
  margin-top: 130px;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.why-dorza-left h2 {
  font-size: 48px;
  line-height: 1.2;
  margin: 20px 0;
}

.why-dorza-left p {
  color: #ddd;
  line-height: 1.8;
}

.why-points {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.why-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;

  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);

  padding: 22px;
  border-radius: 20px;

  backdrop-filter: blur(18px);

  transition: var(--transition);
}

.why-item:hover {
  transform: translateX(10px);
}

.why-icon {
  min-width: 45px;
  height: 45px;
  border-radius: 50%;

  background: var(--primary);
  color: #000;

  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: bold;
}

.why-item h3 {
  margin-bottom: 6px;
  color: #fff;
}

.why-item p {
  color: #bbb;
}

.why-dorza-right {
  position: relative;
}

.why-dorza-right img {
  width: 100%;
  border-radius: 35px;

  box-shadow: 0 30px 80px rgba(0,0,0,0.45);

  transition: transform 1s ease;
}

.why-dorza-right:hover img {
  transform: scale(1.04);
}

/* ===============================
AUTO TESTIMONIALS
=============================== */

.testimonial-box {
  position: relative;

  max-width: 800px;

  margin: 60px auto 0;

  min-height: 220px;
}

.testimonial {
  position: absolute;

  width: 100%;

  opacity: 0;

  transform: translateY(30px) scale(0.95);

  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.testimonial.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.testimonial-card,
.testimonial {
  background: rgba(255,255,255,0.05);

  backdrop-filter: blur(20px);

  border: 1px solid rgba(255,255,255,0.08);

  border-radius: 25px;

  padding: 40px;
}

.testimonial p {
  font-size: 20px;
  line-height: 1.7;
  color: #f1f1f1;
}

.testimonial h4 {
  margin-top: 20px;
  color: var(--primary);
}

.testimonial-box {
  min-height: 260px;
}

@keyframes testimonialMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ===============================
FINAL CTA
=============================== */

.about-cta-section {
  margin-top: 140px;
}

.about-cta-box {
  padding: 90px 40px;

  text-align: center;

  border-radius: 40px;

  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,0.08),
      rgba(255,255,255,0.03)
    );

  border: 1px solid rgba(255,255,255,0.08);

  backdrop-filter: blur(20px);

  position: relative;
  overflow: hidden;
}

.about-cta-box::before {
  content: "";

  position: absolute;

  width: 500px;
  height: 500px;

  background: var(--primary);

  filter: blur(180px);

  opacity: 0.08;

  top: -200px;
  right: -200px;
}

.about-cta-box h2 {
  font-size: 52px;
  margin: 20px 0;
}

.about-cta-box p {
  max-width: 700px;
  margin: auto;

  color: #ddd;
  line-height: 1.8;
}

.about-cta-buttons {
  margin-top: 35px;

  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ===============================
RESPONSIVE
=============================== */

@media (max-width: 900px) {

  .why-dorza-section {
    grid-template-columns: 1fr;
  }

  .why-dorza-left h2,
  .testimonial-title,
  .about-cta-box h2 {
    font-size: 32px;
  }

  .testimonial-card {
    width: 300px;
  }

}


/* ===============================
CURSOR GLOW
=============================== */

.cursor-glow {
  position: fixed;
  width: 350px;
  height: 350px;

  background: radial-gradient(
    circle,
    rgba(245,179,1,0.16) 0%,
    rgba(245,179,1,0.08) 30%,
    transparent 70%
  );

  pointer-events: none;

  border-radius: 50%;

  transform: translate(-50%, -50%);

  z-index: 1;

  mix-blend-mode: screen;

  transition:
    transform 0.08s linear,
    opacity 0.3s ease;

  opacity: 0.8;
}

@media (max-width: 768px) {

  .cursor-glow {
    display: none;
  }

}

/* ===============================
IMAGE SPOTLIGHT
=============================== */

.showroom-card,
.mv-card,
.why-dorza-right img,
.slides img {
  position: relative;
  overflow: hidden;
}

.showroom-card::before,
.mv-card::before,
.why-dorza-right::before,
.slides img::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at var(--x) var(--y),
      rgba(255,255,255,0.18),
      transparent 40%
    );

  opacity: 0;

  transition: opacity 0.3s ease;

  z-index: 2;

  pointer-events: none;
}

.showroom-card:hover::before,
.mv-card:hover::before,
.why-dorza-right:hover::before,
.slides img:hover::before {
  opacity: 1;
}

/* ===============================
3D TILT EFFECT
=============================== */

.mv-card,
.feature-card,
.stat-card,
.testimonial-card {
  transform-style: preserve-3d;
  perspective: 1000px;
  will-change: transform;
}

/* ===== Contact Page ===== */
/* ===============================
CONTACT SECTION
=============================== */

.contact-section {
  min-height: 100vh;
  padding: 140px 20px 80px;
  background: linear-gradient(135deg, #0e061f, #1a1038);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-container {
  max-width: 1100px;
  width: 100%;
  display: flex;
  gap: 60px;
  align-items: center;
  flex-wrap: wrap;
}

/* LEFT SIDE */

.contact-info {
  flex: 1;
}

.contact-info h1 {
  font-size: 42px;
  color: var(--primary);
  margin-bottom: 15px;
}

.contact-info p {
  color: var(--soft);
  line-height: 1.7;
  margin-bottom: 25px;
}

.contact-details p {
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 15px;
}

/* RIGHT FORM */

.contact-form-card {
  flex: 1;
  background: var(--glass);
  backdrop-filter: blur(20px);
  border-radius: 25px;
  padding: 40px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition);
}

.contact-form-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.4);
}

/* FORM GROUP */

.form-group {
  position: relative;
  margin-bottom: 25px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 12px;
  border-radius: 10px;
  border: none;
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  color: rgb(255, 201, 5);
  font-size: 14px;
  font-weight: bold;
}

/* Floating label */

.form-group label {
  position: absolute;
  left: 12px;
  top: 14px;
  font-size: 13px;
  color: #aaa;
  pointer-events: none;
  transition: 0.3s;
}

/* Move label up */
.form-group input:focus + label,
.form-group input:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label,
.form-group select:focus + label,
.form-group select:valid + label {
  top: -10px;
  font-size: 11px;
  color: var(--primary);
}

/* BUTTON */

.submit-btn {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 40px;
  background: var(--primary);
  color: black;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(245, 179, 1, 0.4);
}

/* ===============================
ANIMATIONS
=============================== */

.animate {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease;
}

.animate.show {
  opacity: 1;
  transform: translateY(0);
}

/* ===============================
RESPONSIVE
=============================== */

@media (max-width: 900px) {

  .contact-container {
    flex-direction: column;
    gap: 40px;
  }

  .contact-info h1 {
    font-size: 32px;
  }
}


/* ===============================
FLOATING WHATSAPP BUTTON
=============================== */

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;

  box-shadow: 0 10px 30px rgba(0,0,0,0.35);

  animation: whatsappPulse 2s infinite;
  transition: 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.12);
}

.whatsapp-float img {
  width: 34px;
  height: 34px;
}

/* Pulse animation */

@keyframes whatsappPulse {

  0% {
    box-shadow: 0 0 0 0 rgba(37,211,102,0.7);
  }

  70% {
    box-shadow: 0 0 0 18px rgba(37,211,102,0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37,211,102,0);
  }
}

.timeline-content {
  transition: var(--transition);
}

.timeline-content:hover {
  transform: translateX(10px);
}

.primary-btn,
.secondary-btn {
  position: relative;
  overflow: hidden;
}

.primary-btn::before,
.secondary-btn::before {
  content: "";

  position: absolute;

  top: 0;
  left: -120%;

  width: 100%;
  height: 100%;

  background:
    linear-gradient(
      120deg,
      transparent,
      rgba(255,255,255,0.35),
      transparent
    );

  transition: 0.8s;
}

.primary-btn:hover::before,
.secondary-btn:hover::before {
  left: 120%;
}

/* Mobile Menu Smooth Animation */

@media (max-width: 900px) {

  .nav-listing {
    position: fixed;
    top: 90px;
    left: 50%;
    transform: translateX(-50%) translateY(-20px);

    width: calc(100% - 40px);
    max-width: 500px;

    flex-direction: column;
    align-items: center;
    gap: 25px;

    padding: 35px 20px;

    background: rgba(18, 12, 47, 0.92);
    backdrop-filter: blur(20px);

    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 28px;

    opacity: 0;
    visibility: hidden;

    transition: all 0.35s ease;

    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  }

  .nav-listing.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }

}
