@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

/* ---- CSS VARIABLES ---- */
:root {
  --orange: #FF6B00;
  --orange-dark: #CC5500;
  --orange-light: #FF8C33;
  --orange-glow: rgba(255, 107, 0, 0.15);
  --black: #0A0A0A;
  --black-soft: #141414;
  --black-card: #1A1A1A;
  --black-border: #2A2A2A;
  --white: #FFFFFF;
  --white-soft: #FFF8F3;
  --white-muted: #C8BDB5;
  --grey: #888888;
  --grey-light: #F5F0EC;
  --success: #22C55E;
  --error: #EF4444;
  --info: #3B82F6;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 12px;
  --radius-sm: 6px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.3);
  --shadow-orange: 0 4px 24px rgba(255, 107, 0, 0.3);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--black);
  color: var(--white-soft);
  line-height: 1.6;
  padding-top: 80px;
  padding-bottom: 80px;
  overflow-x: hidden;
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--black);
}
::-webkit-scrollbar-thumb {
  background: var(--orange);
  border-radius: 3px;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.2;
  color: var(--white);
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

p {
  font-size: 1rem;
  color: var(--white-muted);
  line-height: 1.7;
}

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

a:hover {
  color: var(--orange-light);
}

ul { list-style: none; }

/* ---- HEADER & NAVIGATION ---- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--black-border);
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 80px;
  display: flex;
  align-items: center;
}



.logo img {
  height: 45px;
  width: auto;
  transition: var(--transition);
}

.logo img:hover {
  opacity: 0.85;
  transform: scale(1.03);
}

.logo-item {
  margin-right: 0;
}

nav ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  width: 100%;
  justify-content: space-around;
}


nav ul li a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  color: var(--white-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: var(--transition);
  position: relative;
  white-space: nowrap;
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: var(--transition);
}
nav ul li a:hover {
  color: var(--white);
}

nav ul li a:hover::after {
  width: 100%;
}

/* ---- FOOTER ---- */
footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.97);
  border-top: 1px solid var(--black-border);
  padding: 14px 2rem;
  text-align: center;
}

footer p {
  font-size: 0.8rem;
  color: var(--grey);
  margin: 0;
  line-height: 1.6;
}

footer p:first-child {
  color: var(--white-muted);
  font-weight: 500;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  background: var(--orange);
  color: var(--white) !important;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-orange);
  text-align: center;
}

.btn:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 107, 0, 0.4);
  color: var(--white) !important;
}

.btn:active {
  transform: translateY(0);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--orange) !important;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--orange);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn-outline:hover {
  background: var(--orange);
  color: var(--white) !important;
  transform: translateY(-2px);
}

button {
  cursor: pointer;
  font-family: var(--font-body);
}

/* ---- SECTIONS ---- */
section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

/* ---- HERO SECTION ---- */
#hero {
  min-height: calc(100vh - 160px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding: 6rem 2rem;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

#hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

#hero h1 {
  max-width: 800px;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s ease forwards;
}

#hero h1 span {
  color: var(--orange);
}

#hero p {
  font-size: 1.2rem;
  max-width: 560px;
  margin-bottom: 2.5rem;
  color: var(--white-muted);
  animation: fadeUp 0.8s 0.15s ease forwards;
  opacity: 0;
}

#hero .btn {
  animation: fadeUp 0.8s 0.3s ease forwards;
  opacity: 0;
  align-self: flex-start;
}

/* ---- ABOUT SECTION ---- */
#about {
  border-top: 1px solid var(--black-border);
}

#about h2 {
  margin-bottom: 1.5rem;
}

#about h2 span {
  color: var(--orange);
}

#about p {
  max-width: 700px;
  font-size: 1.1rem;
  line-height: 1.8;
}

/* ---- SERVICES SECTION ---- */
#services {
  border-top: 1px solid var(--black-border);
}

#services h2 {
  margin-bottom: 0.5rem;
}

#services > p {
  margin-bottom: 2rem;
}

#services ul {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 2.5rem;
}

#services ul li {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
  font-weight: 500;
  color: var(--white-muted);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

#services ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background: var(--orange);
  transform: scaleY(0);
  transition: var(--transition);
}

#services ul li:hover {
  border-color: var(--orange);
  color: var(--white);
  transform: translateX(4px);
}

#services ul li:hover::before {
  transform: scaleY(1);
}

/* ---- PORTFOLIO SECTION ---- */
#portfolio {
  border-top: 1px solid var(--black-border);
}

#portfolio h2 {
  margin-bottom: 1rem;
}

#portfolio p {
  margin-bottom: 2rem;
}

/* ---- CONTACT SECTION ---- */
#contact {
  border-top: 1px solid var(--black-border);
}

#contact h2 {
  margin-bottom: 1rem;
}

#contact p {
  margin-bottom: 2rem;
}

/* ---- AUTH PAGES (Login & Signup) ---- */
#auth {
  min-height: calc(100vh - 160px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-container {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  width: 100%;
  max-width: 480px;
  box-shadow: var(--shadow);
  animation: fadeUp 0.6s ease forwards;
}

.auth-container h2 {
  margin-bottom: 0.5rem;
}

.auth-container > p {
  margin-bottom: 2rem;
  color: var(--grey);
}

.auth-container > p:last-child {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
}

#auth-message {
  margin-bottom: 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  min-height: 20px;
}

/* ---- FORMS (shared) ---- */
.auth-form,
.order-form,
.rfq-form,
.account-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white-muted);
  margin-bottom: -0.5rem;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="number"],
input[type="date"],
input[type="file"],
select,
textarea {
  background: var(--black-soft);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 14px 16px;
  width: 100%;
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-glow);
}

input:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

input::placeholder,
textarea::placeholder {
  color: var(--grey);
}

select option {
  background: var(--black-soft);
  color: var(--white);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

input[type="file"] {
  padding: 12px;
  cursor: pointer;
}

.auth-form .btn,
.order-form .btn,
.rfq-form .btn,
.account-form .btn,
.auth-form button#signup-btn,
.auth-form button#login-btn,
.order-form button#order-btn,
.rfq-form button#rfq-btn,
.account-form button#update-btn,
.account-form button#password-btn {
  display: block;
  width: 100%;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 16px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-orange);
  margin-top: 0.5rem;
}

.auth-form button#signup-btn:hover,
.auth-form button#login-btn:hover,
.order-form button#order-btn:hover,
.rfq-form button#rfq-btn:hover,
.account-form button#update-btn:hover,
.account-form button#password-btn:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 107, 0, 0.4);
}

.file-hint {
  font-size: 0.78rem !important;
  color: var(--grey) !important;
  margin-top: -0.5rem;
}

hr {
  border: none;
  border-top: 1px solid var(--black-border);
  margin: 1rem 0;
}

.account-form h3 {
  font-size: 1.2rem;
  margin-bottom: -0.5rem;
}

/* ---- DASHBOARD ---- */
#dashboard {
  min-height: calc(100vh - 160px);
}

.dashboard-container {
  max-width: 1000px;
  margin: 0 auto;
}

.dashboard-welcome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--black-border);
}

.dashboard-welcome h2 {
  font-size: 2rem;
}

.dashboard-welcome h2 span {
  color: var(--orange);
}

.dashboard-welcome p {
  font-size: 1rem;
  margin-top: 0.25rem;
}

.dashboard-welcome button#logout-btn {
  background: transparent;
  border: 1px solid var(--black-border);
  color: var(--grey);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.dashboard-welcome button#logout-btn:hover {
  border-color: var(--error);
  color: var(--error);
}

.dashboard-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.dashboard-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.dashboard-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transition: var(--transition);
}

.dashboard-card:hover {
  border-color: var(--black-border);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

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

.dashboard-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.dashboard-card p {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  color: var(--grey);
}

/* ---- ORDER & RFQ PAGES ---- */
#order,
#rfq,
#account,
#quotes,
#orders {
  max-width: 800px;
  margin: 0 auto;
}

.order-container,
.rfq-container,
.account-container,
.quotes-container,
.orders-container {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  animation: fadeUp 0.6s ease forwards;
}

.order-container h2,
.rfq-container h2,
.account-container h2,
.quotes-container h2,
.orders-container h2 {
  margin-bottom: 0.5rem;
}

.order-container > p,
.rfq-container > p,
.account-container > p,
.quotes-container > p,
.orders-container > p {
  margin-bottom: 2rem;
  color: var(--grey);
}

#order-message,
#rfq-message,
#account-message {
  margin-bottom: 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  min-height: 20px;
  padding: 0 4px;
}

/* ---- ORDER CARDS (My Orders page) ---- */
#orders-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.order-card {
  background: var(--black-soft);
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.order-card:hover {
  border-color: var(--orange);
  box-shadow: 0 4px 20px rgba(255, 107, 0, 0.1);
}

.order-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.5rem;
  background: var(--black-card);
  border-bottom: 1px solid var(--black-border);
}

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

.order-card-body {
  padding: 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.75rem;
}

.order-card-body p {
  font-size: 0.9rem;
  color: var(--white-muted);
}

.order-card-body p strong {
  color: var(--white);
  font-weight: 600;
}

/* ---- STATUS BADGES ---- */
.order-status {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 100px;
}

.status-pending {
  background: rgba(255, 193, 7, 0.15);
  color: #FFC107;
}

.status-quoted {
  background: rgba(59, 130, 246, 0.15);
  color: #3B82F6;
}

.status-accepted {
  background: rgba(34, 197, 94, 0.15);
  color: #22C55E;
}

.status-declined {
  background: rgba(239, 68, 68, 0.15);
  color: #EF4444;
}

.status-in-production,
.status-in\ production {
  background: rgba(168, 85, 247, 0.15);
  color: #A855F7;
}

.status-ready {
  background: rgba(34, 197, 94, 0.15);
  color: #22C55E;
}

.status-delivered {
  background: rgba(255, 107, 0, 0.15);
  color: var(--orange);
}

.status-cancelled {
  background: rgba(239, 68, 68, 0.15);
  color: #EF4444;
}

/* ---- QUOTES PAGE ---- */
#quotes-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.quote-response {
  margin-top: 1rem;
  padding: 1.5rem;
  background: var(--black-card);
  border: 1px solid var(--orange);
  border-radius: var(--radius);
}

.quote-response h4 {
  font-size: 1rem;
  color: var(--orange);
  margin-bottom: 1rem;
  font-family: var(--font-display);
}

.quote-response p {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  color: var(--white-muted);
}

.quote-response p strong {
  color: var(--white);
}

.quote-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.quote-actions .btn,
.quote-actions .btn-outline {
  flex: 1;
  min-width: 160px;
  text-align: center;
}

/* ---- ADMIN DASHBOARD ---- */
#admin {
  max-width: 1100px;
  margin: 0 auto;
}

.admin-container {
  animation: fadeUp 0.6s ease forwards;
}

.admin-header {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--black-border);
}

.admin-header h2 {
  margin-bottom: 0.25rem;
}

/* ---- ADMIN TABS ---- */
.admin-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  padding: 6px;
  width: fit-content;
}

.tab-btn {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  border: none;
  background: transparent;
  color: var(--grey);
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn:hover {
  color: var(--white);
}

.tab-btn.active {
  background: var(--orange);
  color: var(--white);
  box-shadow: var(--shadow-orange);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeUp 0.4s ease forwards;
}

.tab-content h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--white-muted);
  font-weight: 600;
}

/* ---- ADMIN CARDS ---- */
#rfq-list,
#orders-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.admin-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.admin-card:hover {
  border-color: var(--orange);
  box-shadow: 0 4px 20px rgba(255, 107, 0, 0.08);
}

.admin-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.5rem;
  background: var(--black-soft);
  border-bottom: 1px solid var(--black-border);
}

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

.admin-card-body {
  padding: 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.75rem;
}

.admin-card-body p {
  font-size: 0.9rem;
  color: var(--white-muted);
}

.admin-card-body p strong {
  color: var(--white);
  font-weight: 600;
}

.admin-card-body a {
  color: var(--orange);
  font-weight: 600;
  font-size: 0.9rem;
}

.admin-card-body a:hover {
  color: var(--orange-light);
  text-decoration: underline;
}

.admin-card-actions {
  padding: 1.5rem;
  border-top: 1px solid var(--black-border);
  background: var(--black-soft);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.admin-card-actions label {
  margin-bottom: -0.5rem;
}

.admin-card-actions input,
.admin-card-actions textarea,
.admin-card-actions select {
  width: 100%;
}

.admin-card-actions .btn,
.admin-card-actions button.btn {
  align-self: flex-start;
  margin-top: 0.5rem;
}

.send-quote-btn,
.update-status-btn {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-orange);
}

.send-quote-btn:hover,
.update-status-btn:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  body {
    padding-top: 70px;
    padding-bottom: 100px;
  }

  nav {
  padding: 0.5rem 1rem;
  height: auto;
  min-height: 70px;
}

  nav ul {
    gap: 1rem;
  }

  nav ul li a {
    font-size: 0.8rem;
  }

  section {
    padding: 3rem 1.2rem;
  }

  .auth-container,
  .order-container,
  .rfq-container,
  .account-container,
  .quotes-container,
  .orders-container {
    padding: 2rem 1.5rem;
  }

  .dashboard-welcome {
    flex-direction: column;
    align-items: flex-start;
  }

  .order-card-body,
  .admin-card-body {
    grid-template-columns: 1fr;
  }

  .quote-actions {
    flex-direction: column;
  }

  .admin-tabs {
    width: 100%;
  }

  .tab-btn {
    flex: 1;
    text-align: center;
  }

  footer {
    padding: 10px 1rem;
  }

  footer p {
    font-size: 0.72rem;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.6rem; }

  nav ul {
    gap: 0.75rem;
  }

  nav ul li a {
    font-size: 0.75rem;
  }
}


/* ---- PAGE HERO ---- */
.page-hero {
  padding: 4rem 0 2rem;
  max-width: 750px;
}

.page-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange);
  margin-bottom: 1rem;
}

.page-hero h1 {
  margin-bottom: 1.5rem;
}

.page-hero h1 span {
  color: var(--orange);
}

.page-subtitle {
  font-size: 1.15rem;
  max-width: 600px;
  color: var(--white-muted);
  line-height: 1.8;
}

/* ---- SECTION LABEL ---- */
.section-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange);
  margin-bottom: 0.75rem;
}

/* ---- TWO COLUMN LAYOUT ---- */
#about-story {
  border-top: 1px solid var(--black-border);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.two-col-text h2 {
  margin-bottom: 1.5rem;
}

.two-col-text p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.8;
}

.two-col-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.visual-block {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: var(--transition);
}

.visual-block:hover {
  border-color: var(--orange);
  box-shadow: 0 4px 20px rgba(255, 107, 0, 0.1);
}

.visual-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.visual-label {
  font-size: 0.8rem;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

/* ---- VALUES ---- */
#about-values {
  border-top: 1px solid var(--black-border);
}

#about-values h2 {
  margin-bottom: 2.5rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}

.value-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--transition);
}

.value-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(255, 107, 0, 0.1);
}

.value-icon {
  color: var(--orange);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.value-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 1.7;
}

/* ---- CTA BLOCK ---- */
#about-cta {
  border-top: 1px solid var(--black-border);
}

.cta-block {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-block::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-block h2 {
  margin-bottom: 1rem;
}

.cta-block p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

/* ---- RESPONSIVE ABOUT ---- */
@media (max-width: 768px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cta-block {
    padding: 2.5rem 1.5rem;
  }
}

/* ---- SERVICES PAGE ---- */
#services-grid {
  border-top: 1px solid var(--black-border);
}

#services-grid h2 {
  margin-bottom: 2.5rem;
}

.services-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 0;
}

.service-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: var(--transition);
}

.service-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(255, 107, 0, 0.1);
}

.service-icon {
  font-size: 2rem;
}

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

.service-card > p {
  font-size: 0.9rem;
  color: var(--grey);
  flex: 1;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.service-list li {
  font-size: 0.85rem;
  color: var(--white-muted);
  padding-left: 1rem;
  position: relative;
}

.service-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-size: 0.75rem;
}

#services-process {
  border-top: 1px solid var(--black-border);
}

#services-process h2 {
  margin-bottom: 2.5rem;
}

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
}

.process-step {
  flex: 1;
  min-width: 180px;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  transition: var(--transition);
}

.process-step:hover {
  border-color: var(--orange);
}

.step-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  color: var(--orange);
  opacity: 0.5;
  margin-bottom: 1rem;
  line-height: 1;
}

.process-step h3 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.process-step p {
  font-size: 0.85rem;
  color: var(--grey);
}

.process-arrow {
  font-size: 1.5rem;
  color: var(--orange);
  opacity: 0.4;
  padding-top: 2.5rem;
  flex-shrink: 0;
}

#services-cta,
#portfolio-cta {
  border-top: 1px solid var(--black-border);
}

/* ---- PORTFOLIO PAGE ---- */
#portfolio-grid {
  border-top: 1px solid var(--black-border);
}

#portfolio-grid h2 {
  margin-bottom: 2rem;
}

.portfolio-filter {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.filter-btn {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 8px 18px;
  border-radius: 100px;
  border: 1px solid var(--black-border);
  background: transparent;
  color: var(--grey);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.filter-btn.active {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.portfolio-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.portfolio-item {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.portfolio-item:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(255, 107, 0, 0.1);
}

.portfolio-placeholder {
  height: 200px;
  background: var(--black-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border-bottom: 1px solid var(--black-border);
}

.portfolio-placeholder span {
  font-size: 3rem;
}

.portfolio-placeholder p {
  font-size: 0.85rem;
  color: var(--grey);
}

.portfolio-info {
  padding: 1.5rem;
}

.portfolio-info h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.portfolio-info p {
  font-size: 0.85rem;
  color: var(--grey);
  margin-bottom: 1rem;
}

.portfolio-tag {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--orange-glow);
  color: var(--orange);
}

/* ---- CONTACT PAGE ---- */
#contact-main {
  border-top: 1px solid var(--black-border);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 2rem;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-item h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--orange);
  font-family: var(--font-display);
  margin-bottom: 0.3rem;
}

.contact-item p {
  font-size: 0.95rem;
  color: var(--white-muted);
  line-height: 1.6;
}

.contact-form-wrapper h2 {
  margin-bottom: 0.5rem;
}

.contact-form-wrapper > p {
  margin-bottom: 1.5rem;
  color: var(--grey);
  font-size: 0.9rem;
}

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

.contact-form button#contact-btn {
  display: block;
  width: 100%;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 16px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-orange);
  margin-top: 0.5rem;
}

.contact-form button#contact-btn:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}

#contact-message {
  margin-bottom: 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  min-height: 20px;
}

/* ---- RESPONSIVE SERVICES, PORTFOLIO, CONTACT ---- */
@media (max-width: 768px) {
  .process-steps {
    flex-direction: column;
  }

  .process-arrow {
    transform: rotate(90deg);
    padding-top: 0;
    align-self: center;
  }

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

/* ---- HOME PAGE ---- */

/* Hero buttons */
.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
  animation: fadeUp 0.8s 0.3s ease forwards;
  opacity: 0;
}

/* Hero stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.45s ease forwards;
  opacity: 0;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hero-stat-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  color: var(--orange);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--black-border);
}

/* Home Services */
#home-services {
  border-top: 1px solid var(--black-border);
}

#home-services h2 {
  margin-bottom: 0.5rem;
}

#home-services h2 span {
  color: var(--orange);
}

.home-section-subtitle {
  font-size: 1.05rem;
  color: var(--grey);
  margin-bottom: 2.5rem;
}

.home-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.home-service-item {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--transition);
}

.home-service-item:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(255, 107, 0, 0.1);
}

.home-service-item .service-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.home-service-item h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.home-service-item p {
  font-size: 0.875rem;
  color: var(--grey);
  line-height: 1.6;
}

.home-services-cta {
  text-align: center;
}

/* Home Process */
#home-process {
  border-top: 1px solid var(--black-border);
}

#home-process h2 {
  margin-bottom: 2.5rem;
}

#home-process h2 span {
  color: var(--orange);
}

/* Home Portfolio */
#home-portfolio {
  border-top: 1px solid var(--black-border);
}

#home-portfolio h2 {
  margin-bottom: 0.5rem;
}

#home-portfolio h2 span {
  color: var(--orange);
}

/* Home CTA */
#home-cta {
  border-top: 1px solid var(--black-border);
}

.cta-block h2 span {
  color: var(--orange);
}

.cta-block .hero-btns {
  justify-content: center;
  animation: none;
  opacity: 1;
}

/* ---- RESPONSIVE HOME ---- */
@media (max-width: 768px) {
  .hero-stats {
    gap: 1.5rem;
  }

  .hero-stat-number {
    font-size: 1.5rem;
  }

  .hero-btns {
    flex-direction: column;
  }

  .hero-btns .btn,
  .hero-btns .btn-outline {
    text-align: center;
  }
}

/* ---- PAYMENT PAGE ---- */
#payment {
  max-width: 700px;
  margin: 0 auto;
}

.payment-container {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  animation: fadeUp 0.6s ease forwards;
}

.payment-header h2 {
  margin-bottom: 0.5rem;
}

.payment-header h2 span {
  color: var(--orange);
}

.payment-header p {
  color: var(--grey);
}

.payment-summary,
.payment-details,
.payment-policy {
  background: var(--black-soft);
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.payment-summary h3,
.payment-details h3,
.payment-policy h3 {
  font-size: 1rem;
  margin-bottom: 1.25rem;
  color: var(--white-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: var(--font-display);
}

.payment-summary-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.payment-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  color: var(--white-muted);
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--black-border);
}

.payment-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.payment-row.highlight {
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
}

.payment-row.highlight span:last-child {
  color: var(--orange);
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.bank-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.bank-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--black-border);
}

.bank-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.bank-label {
  font-size: 0.85rem;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: var(--font-display);
  font-weight: 600;
}

.bank-value {
  font-size: 0.95rem;
  color: var(--white-muted);
  font-weight: 500;
}

.account-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--orange) !important;
  letter-spacing: 0.1em;
}

.policy-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.policy-list li {
  font-size: 0.9rem;
  color: var(--white-muted);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.6;
}

.policy-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-size: 0.8rem;
}

.policy-list li strong {
  color: var(--white);
}

.policy-list li a {
  color: var(--orange);
  font-weight: 600;
}

.payment-acknowledge {
  background: var(--orange-glow);
  border: 1px solid var(--orange);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.checkbox-label {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  cursor: pointer;
  text-transform: none;
  letter-spacing: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--white-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  accent-color: var(--orange);
  margin-top: 2px;
}

#payment-message {
  font-size: 0.9rem;
  font-weight: 500;
  min-height: 20px;
}

#proceed-btn {
  width: 100%;
  padding: 18px;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .payment-container {
    padding: 2rem 1.5rem;
  }

  .payment-row,
  .bank-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
}

/* ---- DATE PICKER STYLING ---- */
input[type="date"] {
  color-scheme: dark;
  background: var(--black-soft);
  color: var(--white);
  border: 1px solid var(--orange);
}

input[type="date"]::-webkit-calendar-picker-indicator {
  background-color: var(--orange);
  border-radius: 3px;
  padding: 4px;
  cursor: pointer;
  transition: var(--transition);
}

input[type="date"]::-webkit-calendar-picker-indicator:hover {
  background-color: var(--orange-dark);
}

.rfq-container,
.order-container {
  margin-bottom: 2rem;
}

/* ---- PORTFOLIO IMAGES ---- */
.portfolio-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-bottom: 1px solid var(--black-border);
}

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

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

/* ---- SERVICE CARD IMAGES ---- */
.service-img {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  margin: -2rem -2rem 1rem -2rem;
  width: calc(100% + 4rem);
}

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

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

/* ---- HOME SERVICE ITEM IMAGES ---- */
.home-service-item .service-img {
  width: calc(100% + 4rem);
  margin: -2rem -2rem 1.5rem -2rem;
  height: 180px;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
}

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

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

