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

html { scroll-behavior: smooth; }

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #11144a;
  background: transparent;
  line-height: 1.6;
}

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

.container {
  width: min(1120px, 92%);
  margin: auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  box-shadow: 0 2px 15px rgba(0,0,0,.08);
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 25px;
  font-weight: 900;
  letter-spacing: 1px;
}

.logo span { color: #263ee8; }

nav {
  display: flex;
  gap: 28px;
  font-weight: 700;
}

nav a:hover { color: #263ee8; }

.menu-btn {
  display: none;
  border: 0;
  background: none;
  font-size: 28px;
}

.hero {
  background: linear-gradient(135deg, #f7f8ff 0%, #e9ecff 100%);
  padding: 80px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 55px;
  align-items: center;
}

.eyebrow {
  color: #263ee8;
  font-weight: 900;
  letter-spacing: 2px;
  font-size: 13px;
  margin-bottom: 10px;
}

h1 {
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1;
  margin-bottom: 22px;
}

h1 span { color: #263ee8; }

.lead {
  font-size: 19px;
  max-width: 650px;
  color: #44476a;
  margin-bottom: 28px;
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 25px;
}

.btn {
  display: inline-block;
  border: 0;
  border-radius: 10px;
  padding: 13px 20px;
  font-weight: 800;
  cursor: pointer;
}

.primary {
  background: #263ee8;
  color: white;
}

.primary:hover { background: #172bb8; }

.outline {
  border: 2px solid #263ee8;
  color: #263ee8;
  background: white;
}

.location { font-size: 14px; color: #555; }

.hero-card {
  background: white;
  padding: 10px;
  border-radius: 24px;
  box-shadow: 0 20px 45px rgba(24,39,150,.18);
}

.hero-card img {
  width: 100%;
  display: block;
  border-radius: 17px;
}

.section { padding: 85px 0; }

.section-heading {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 45px;
}

.section-heading h2, .about-grid h2, .contact-grid h2 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  margin-bottom: 12px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  padding: 25px;
  border-radius: 16px;
  background: white;
  border: 1px solid #e5e7f7;
  box-shadow: 0 8px 25px rgba(20,25,80,.07);
  transition: transform .2s, box-shadow .2s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(20,25,80,.13);
}

.icon { font-size: 32px; margin-bottom: 12px; }

.service-card h3 { margin-bottom: 8px; }
.service-card p { color: #666; font-size: 14px; }

.dark {
  background: #11144a;
  color: white;
}

.dark .eyebrow { color: #9da9ff; }
.dark p { color: #d9dcf2; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: center;
}

.about-box {
  border: 1px solid #454b91;
  border-radius: 22px;
  padding: 45px 30px;
  text-align: center;
  background: #191d5c;
}

.about-box strong {
  display: block;
  font-size: 40px;
}

.about-box span {
  color: #9da9ff;
  font-size: 28px;
  font-weight: 800;
}

.about-box p { margin-top: 20px; }

.gallery {
  max-width: 600px;
  margin: auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,.12);
}

.gallery img { width: 100%; display: block; }


.gallery-toolbar {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.add-photo-btn,
.clear-gallery-btn {
  border-radius: 10px;
  padding: 12px 18px;
  font-weight: 800;
  cursor: pointer;
  font-family: inherit;
  transition: .2s;
}

.add-photo-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #263ee8;
  color: white;
}

.add-photo-btn:hover { background: #172bb8; transform: translateY(-2px); }

.camera-icon {
  display: inline-grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border: 2px solid rgba(255,255,255,.9);
  border-radius: 7px;
  font-size: 20px;
  line-height: 1;
}

.clear-gallery-btn {
  background: white;
  border: 1px solid #d8daf0;
  color: #333;
}

.clear-gallery-btn:hover {
  border-color: #263ee8;
  color: #263ee8;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery-item {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 16px;
  background: #eef0ff;
  box-shadow: 0 8px 25px rgba(20,25,80,.10);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .25s;
}

.gallery-item:hover img { transform: scale(1.04); }

.gallery-note {
  text-align: center;
  color: #777;
  font-size: 13px;
  margin-top: 16px;
}

@media (max-width: 650px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 430px) {
  .gallery-grid { grid-template-columns: 1fr; }
}


.official-section { background: #f6f7ff; }

.official-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 900px;
  margin: auto;
}

.official-card {
  display: grid;
  grid-template-columns: 50px 1fr 25px;
  gap: 14px;
  align-items: center;
  padding: 20px;
  border-radius: 15px;
  background: white;
  border: 1px solid #e0e2f2;
  box-shadow: 0 8px 25px rgba(20,25,80,.07);
  transition: .2s;
}

.official-card:hover {
  transform: translateY(-4px);
  border-color: #263ee8;
}

.official-icon { font-size: 28px; }

.official-card strong, .official-card small { display: block; }
.official-card small { color: #777; margin-top: 3px; }
.official-card > span:last-child { color: #263ee8; font-size: 20px; }

.official-note {
  max-width: 850px;
  margin: 25px auto 0;
  text-align: center;
  color: #777;
  font-size: 13px;
}

.account-section { background: #fff; }

.account-shell {
  width: min(560px, 100%);
  margin: auto;
  background: #f7f8ff;
  border: 1px solid #e1e3f3;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(20,25,80,.08);
}

.account-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #eceeff;
}

.account-tab {
  border: 0;
  padding: 14px 8px;
  font-weight: 800;
  cursor: pointer;
  color: #444;
  background: transparent;
}

.account-tab.active {
  color: white;
  background: #263ee8;
}

.account-panel { display: none; padding: 30px; }
.account-panel.active { display: block; }
.account-panel h3 { margin-bottom: 18px; font-size: 24px; }

.account-panel form {
  display: grid;
  gap: 12px;
}

.account-panel input {
  width: 100%;
  border: 1px solid #d5d8ed;
  border-radius: 9px;
  padding: 13px;
  font: inherit;
}

.account-message {
  margin-top: 15px;
  font-size: 14px;
  font-weight: 700;
}

.small-note { color: #777; font-size: 13px; margin-bottom: 15px; }

.dashboard-panel .profile-row {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
}

.admin-note {
  max-width: 760px;
  margin: 25px auto 0;
  padding: 16px 18px;
  background: #fff8df;
  border: 1px solid #f1df8c;
  border-radius: 10px;
  color: #5d4e00;
  font-size: 13px;
}

@media (max-width: 650px) {
  .official-grid { grid-template-columns: 1fr; }
  .account-tabs { grid-template-columns: 1fr; }
  .account-tab { border-bottom: 1px solid #d8daf0; }
}

.contact-section { background: #f6f7ff; }

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

.contact-list { margin-top: 25px; }
.contact-list p { margin-bottom: 14px; }
.contact-list a { color: #263ee8; font-weight: 700; }

.contact-form {
  background: white;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(20,25,80,.1);
}

.contact-form h3 { margin-bottom: 18px; font-size: 24px; }

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d8daf0;
  border-radius: 9px;
  padding: 13px;
  margin-bottom: 13px;
  font: inherit;
}

.contact-form textarea { resize: vertical; }

.contact-form button { width: 100%; }

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  background: #19b85a;
  color: white;
  border-radius: 50%;
  font-size: 28px;
  box-shadow: 0 8px 25px rgba(0,0,0,.2);
  z-index: 99;
}

footer {
  background: #090b35;
  color: #d9dcf2;
  padding: 22px 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 14px;
}

@media (max-width: 900px) {
  .hero-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { padding: 55px 0; }
}

@media (max-width: 650px) {
  nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: white;
    padding: 20px 5%;
    flex-direction: column;
    gap: 15px;
  }

  nav.open { display: flex; }
  .menu-btn { display: block; }
  .service-grid { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .footer-content { flex-direction: column; }
}

.admin-actions {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.dashboard-gate {
  min-height: 70vh;
  display: grid;
  place-items: center;
  padding: 70px 5%;
  background: #f6f7ff;
}

.dashboard-gate-card {
  width: min(620px, 100%);
  text-align: center;
  background: white;
  padding: 45px 30px;
  border-radius: 20px;
  box-shadow: 0 15px 45px rgba(20,25,80,.12);
}

.gate-icon { font-size: 50px; margin-bottom: 10px; }

.gate-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 25px;
}

.protected-dashboard {
  background: #f6f7ff;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.dashboard-card {
  background: white;
  border: 1px solid #e0e2f2;
  border-radius: 17px;
  padding: 28px;
  box-shadow: 0 8px 25px rgba(20,25,80,.07);
}

.dashboard-card-icon {
  display: block;
  font-size: 32px;
  margin-bottom: 10px;
}

.dashboard-card h3 { margin-bottom: 8px; }
.dashboard-card p { color: #666; margin-bottom: 16px; }

.admin-private-box {
  margin-top: 22px;
  background: #11144a;
  color: white;
  padding: 25px;
  border-radius: 17px;
}

.admin-private-box p { color: #d9dcf2; margin-top: 7px; }

@media (max-width: 650px) {
  .dashboard-grid { grid-template-columns: 1fr; }
}

/* Transparent background mode */
body {
  background-color: transparent;
  background-image: linear-gradient(rgba(255,255,255,.38), rgba(255,255,255,.38));
  background-attachment: fixed;
}

main, .section, .hero {
  background-color: transparent;
}

.hero {
  background-image: linear-gradient(rgba(233,236,255,.62), rgba(247,248,255,.48));
}

.section-heading,
.location,
.lead {
  text-shadow: 0 1px 2px rgba(255,255,255,.45);
}

/* Keep important content readable while allowing the page background to show through. */
.service-card,
.contact-form,
.account-shell,
.dashboard-card,
.official-card,
.gallery-item,
.hero-card {
  background-color: rgba(255,255,255,.88);
}

.official-section,
.contact-section,
.protected-dashboard,
.account-section {
  background-color: transparent;
}

.dashboard-gate {
  background: transparent;
}

.gallery-toolbar .clear-gallery-btn {
  background-color: rgba(255,255,255,.88);
}

.protected-dashboard { background: transparent; }
.dashboard-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:20px; }
.dashboard-card { background:rgba(255,255,255,.88); border:1px solid #e0e2f2; border-radius:17px; padding:28px; box-shadow:0 8px 25px rgba(20,25,80,.07); }
.dashboard-card-icon { display:block; font-size:32px; margin-bottom:10px; }
.dashboard-card h3 { margin-bottom:8px; }
.dashboard-card p { color:#666; margin-bottom:15px; }
.profile-row { display:flex; justify-content:space-between; gap:15px; border-bottom:1px solid #ddd; padding:10px 0; }
@media (max-width:650px){ .dashboard-grid{grid-template-columns:1fr;} }

/* LOGIN-FIRST DASHBOARD GATE */
.login-first-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(6, 25, 54, .93);
  backdrop-filter: blur(5px);
}

.login-window {
  width: min(610px, 100%);
  border-radius: 9px;
  overflow: hidden;
  background: rgba(255,255,255,.98);
  box-shadow: 0 22px 60px rgba(0,0,0,.4);
}

.window-bar {
  height: 56px;
  background: #086f97;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 20px;
}

.window-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.65);
}
.window-dot.red { background:#f43f55; }
.window-dot.yellow { background:#f5a623; }
.window-dot.green { background:#73bd28; }

.login-first-content {
  padding: 28px 42px 38px;
}

.login-top-links {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  font-weight: 800;
  font-size: 16px;
}

.login-top-link {
  border: 0;
  background: transparent;
  padding: 3px;
  font-weight: 800;
  cursor: pointer;
  color: #e3aa31;
}

.login-top-link.active { color: #1a5471; }

.login-avatar {
  width: 130px;
  height: 130px;
  margin: 0 auto 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 62px;
  background: #69b9cb;
  border: 7px solid #8ad1dd;
  color: white;
}

.login-first-content label {
  display: block;
  margin: 10px 0 5px;
  color: #7b7b7b;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .4px;
}

.login-input-wrap {
  display: grid;
  grid-template-columns: 55px 1fr;
  align-items: center;
  background: #a7d5e2;
  border-radius: 9px;
  overflow: hidden;
  margin-bottom: 10px;
}

.login-input-wrap span {
  display: grid;
  place-items: center;
  height: 50px;
  background: #76bfd1;
  font-size: 22px;
}

.login-input-wrap input {
  border: 0;
  outline: 0;
  background: transparent;
  padding: 14px;
  font-size: 18px;
  color: #244b5d;
}

.show-password {
  display: flex !important;
  justify-content: flex-end;
  align-items: center;
  gap: 5px;
  font-size: 12px !important;
  font-weight: 600 !important;
}

.show-password input { width: auto; }

.login-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}

.facebook-btn, .login-btn {
  border: 0;
  border-radius: 9px;
  padding: 14px 10px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.facebook-btn {
  background: #086f97;
  color: white;
}

.facebook-btn:disabled { opacity: .9; cursor: not-allowed; }

.login-btn {
  background: #f8bd43;
  color: #684c12;
}

.login-btn:hover { filter: brightness(.96); }
.login-btn.full { width: 100%; margin-top: 15px; }

.first-login-message {
  min-height: 20px;
  text-align: center;
  margin: 12px 0 0;
  font-weight: 700;
  font-size: 13px;
}

.forgot-link {
  display: block;
  margin: 12px auto 0;
  border: 0;
  background: transparent;
  color: #086f97;
  cursor: pointer;
  text-decoration: underline;
}

@media (max-width: 600px) {
  .login-first-content { padding: 22px 20px 28px; }
  .login-actions { grid-template-columns: 1fr; }
  .login-top-links { font-size: 14px; }
}

/* FIRST PAGE LOGIN: main website is hidden until authentication succeeds. */
body.auth-locked > header, body.auth-locked > main, body.auth-locked > footer { visibility:hidden; }
body.auth-locked { overflow:hidden; }
.first-page-login { position:fixed; inset:0; z-index:10000; display:grid; place-items:center; padding:20px; background:linear-gradient(135deg,#061d3d,#0a4264 55%,#10235c); }
.first-page-login[hidden] { display:none !important; }
.first-page-window { width:min(600px,100%); background:#fff; border-radius:10px; overflow:hidden; box-shadow:0 25px 70px rgba(0,0,0,.45); }
.window-bar { height:54px; background:#08789d; display:flex; align-items:center; gap:11px; padding:0 20px; }
.window-dot { width:21px; height:21px; border-radius:50%; border:2px solid rgba(255,255,255,.7); }.window-dot.red{background:#f34a5b}.window-dot.yellow{background:#f4a624}.window-dot.green{background:#70bd2d}
.first-login-content { padding:20px 44px 30px; }.brand-mini{text-align:center;font-weight:900;font-size:22px;color:#10174d;letter-spacing:1px}.brand-mini span{color:#d32f45}
.login-top-links{display:flex;justify-content:flex-end;align-items:center;gap:5px;font-weight:800;font-size:15px}.first-tab{border:0;background:none;cursor:pointer;font-weight:900;color:#e4ac32;padding:4px}.first-tab.active{color:#185c7b}
.login-avatar{width:120px;height:120px;border-radius:50%;margin:4px auto 20px;display:grid;place-items:center;background:#6cbaca;border:7px solid #8fd5df;font-size:57px;color:#fff}
.first-login-content label{display:block;margin:9px 0 5px;color:#777;font-size:12px;font-weight:900}.login-input-wrap{display:grid;grid-template-columns:54px 1fr;background:#a8d7e4;border-radius:8px;overflow:hidden}.login-input-wrap span{display:grid;place-items:center;background:#74bfd0;font-size:20px}.login-input-wrap input{border:0;outline:0;background:transparent;padding:13px;font-size:17px;color:#23495c;min-width:0}.show-password{display:flex!important;justify-content:flex-end;align-items:center;gap:5px;font-weight:700!important;font-size:11px!important}.show-password input{width:auto}
.first-login-button{width:100%;border:0;border-radius:8px;padding:14px;margin-top:14px;background:#f7bb42;color:#624b15;font-weight:900;font-size:16px;cursor:pointer}.first-login-button:hover{filter:brightness(.96)}.forgot-first{display:block;margin:12px auto 0;border:0;background:none;color:#08789d;text-decoration:underline;cursor:pointer}.first-message{min-height:20px;text-align:center;font-size:13px;font-weight:700}.secure-note{text-align:center;color:#777;font-size:11px;margin:18px 0 0}
@media(max-width:600px){.first-login-content{padding:18px 20px 25px}.first-page-window{max-height:96vh;overflow:auto}}

/* FINAL LOGIN-FIRST RULES */
body.auth-locked > header,
body.auth-locked > main,
body.auth-locked > footer,
body.auth-locked > .floating-whatsapp { visibility: hidden !important; }
body.auth-locked { overflow: hidden !important; }
.first-page-login { visibility: visible !important; display: grid !important; }
.first-page-login[hidden] { display: none !important; }


/* ===== QUICK TECH DASHBOARD REDESIGN ===== */
body.dashboard-active { background: #080808; color: #fff; }
body.dashboard-active .header, body.dashboard-active main > .hero, body.dashboard-active main > .section:not(#dashboard), body.dashboard-active footer, body.dashboard-active .floating-whatsapp { display:none !important; }
body.dashboard-active .protected-dashboard { display:block !important; min-height:100vh; padding:0; }
.dashboard-shell { min-height:100vh; display:grid; grid-template-columns:280px 1fr; background:#111; }
.dashboard-sidebar { position:sticky; top:0; height:100vh; background:rgba(10,10,10,.97); border-right:1px solid rgba(212,155,38,.45); padding:28px 20px; display:flex; flex-direction:column; z-index:3; }
.dashboard-brand { display:flex; align-items:center; gap:12px; color:#fff; padding:6px 8px 34px; }
.dashboard-brand strong { display:block; font-size:18px; letter-spacing:1px; }
.dashboard-brand span { display:block; color:#e6aa27; letter-spacing:3px; font-size:13px; margin-top:3px; }
.dashboard-logo-mark { width:50px; height:50px; border-radius:50%; border:2px solid #e6aa27; display:grid; place-items:center; color:#e6aa27; font-size:28px; font-weight:900; }
.dashboard-nav { display:flex; flex-direction:column; gap:9px; }
.dashboard-nav-link { border:0; background:transparent; color:#eee; padding:16px 15px; border-radius:10px; font:inherit; font-weight:700; text-align:left; display:flex; align-items:center; gap:14px; cursor:pointer; transition:.2s; }
.dashboard-nav-link span { width:24px; text-align:center; font-size:21px; color:#e6aa27; }
.dashboard-nav-link:hover, .dashboard-nav-link.active { background:linear-gradient(90deg,rgba(230,170,39,.32),rgba(230,170,39,.08)); color:#fff; }
.dashboard-nav-link.logout-link { margin-top:12px; border-top:1px solid rgba(230,170,39,.35); border-radius:0; padding-top:23px; }
.dashboard-sidebar-foot { margin-top:auto; color:#888; font-size:12px; text-align:center; padding-top:25px; }
.dashboard-main { position:relative; min-height:100vh; background-image:url('images/shop-background.jpg'); background-size:cover; background-position:center; background-attachment:fixed; overflow:hidden; }
.dashboard-overlay { position:absolute; inset:0; background:linear-gradient(90deg,rgba(0,0,0,.68),rgba(0,0,0,.46) 55%,rgba(0,0,0,.58)); }
.dashboard-topbar, .dashboard-content { position:relative; z-index:1; }
.dashboard-topbar { min-height:115px; padding:30px 42px; display:flex; justify-content:space-between; align-items:center; border-bottom:1px solid rgba(255,255,255,.14); background:rgba(0,0,0,.28); }
.dashboard-kicker { color:#e6aa27 !important; font-size:12px; font-weight:900; letter-spacing:2px; margin:0 0 5px; }
.dashboard-topbar h1 { color:#fff; font-size:36px; margin:0; }
.dashboard-topbar h1 span { color:#e6aa27; }
.dashboard-user-badge { display:flex; align-items:center; gap:10px; background:rgba(0,0,0,.5); padding:9px 14px; border-radius:30px; border:1px solid rgba(230,170,39,.45); }
.dashboard-user-badge strong { display:block; color:#fff; font-size:14px; max-width:210px; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.dashboard-user-badge small { color:#bbb; }
.user-avatar { width:42px; height:42px; display:grid; place-items:center; border:1px solid #e6aa27; border-radius:50%; color:#e6aa27; font-size:24px; }
.dashboard-content { padding:40px 42px 55px; }
.dashboard-welcome-card { max-width:720px; background:rgba(10,10,10,.55); border:1px solid rgba(230,170,39,.35); border-radius:18px; padding:26px 30px; backdrop-filter:blur(4px); }
.dashboard-welcome-card h2 { color:#fff; font-size:34px; margin:3px 0 8px; }
.dashboard-welcome-card p:not(.dashboard-kicker) { color:#ddd; }
.dashboard-cards { display:grid; grid-template-columns:repeat(5,minmax(150px,1fr)); gap:16px; margin-top:25px; }
.dashboard-card { min-height:185px; border:1px solid rgba(230,170,39,.35); border-radius:15px; padding:22px; background:rgba(8,8,8,.68); color:#fff; text-align:left; transition:transform .2s, background .2s, border-color .2s; text-decoration:none; }
.dashboard-card:hover, .dashboard-card-active { transform:translateY(-5px); background:rgba(230,170,39,.18); border-color:#e6aa27; }
.dashboard-card-button { font:inherit; cursor:pointer; }
.dashboard-card-icon { display:block; width:46px; height:46px; border-radius:50%; background:rgba(230,170,39,.2); border:1px solid #e6aa27; display:grid; place-items:center; color:#e6aa27; font-size:23px; margin-bottom:15px; }
.dashboard-card h3 { color:#fff; font-size:20px; margin-bottom:7px; }
.dashboard-card p { color:#c9c9c9; font-size:13px; line-height:1.45; }
.dashboard-profile-panel { margin-top:25px; padding:25px 28px; border-radius:16px; background:rgba(8,8,8,.7); border:1px solid rgba(230,170,39,.35); display:grid; grid-template-columns:1fr 1.4fr; gap:25px; }
.dashboard-profile-panel h2 { color:#fff; margin:2px 0 5px; font-size:28px; }
.dashboard-profile-panel p:not(.dashboard-kicker) { color:#ccc; }
.profile-details { display:grid; grid-template-columns:repeat(3,1fr); gap:12px; }
.profile-details div { background:rgba(255,255,255,.06); border-radius:10px; padding:15px; }
.profile-details span { display:block; color:#aaa; font-size:12px; margin-bottom:5px; }
.profile-details strong { color:#fff; font-size:14px; word-break:break-word; }
.dashboard-gallery-note { color:#ccc; font-size:12px; margin-top:14px; }
.gallery-note { text-align:center; color:#777; font-size:13px; margin-top:16px; }

@media (max-width:1100px){ .dashboard-cards{grid-template-columns:repeat(3,1fr);} .dashboard-profile-panel{grid-template-columns:1fr;} .profile-details{grid-template-columns:1fr 1fr;} }
@media (max-width:800px){ .dashboard-shell{grid-template-columns:1fr;} .dashboard-sidebar{position:relative;height:auto;padding:15px;}.dashboard-brand{padding-bottom:15px}.dashboard-nav{display:grid;grid-template-columns:repeat(5,1fr);gap:5px}.dashboard-nav-link{justify-content:center;flex-direction:column;gap:4px;padding:9px 4px;font-size:11px;text-align:center}.dashboard-nav-link.logout-link{margin-top:0;border-top:0;padding-top:9px}.dashboard-sidebar-foot{display:none}.dashboard-topbar{padding:25px 20px;align-items:flex-start;gap:15px}.dashboard-topbar h1{font-size:27px}.dashboard-user-badge{display:none}.dashboard-content{padding:25px 20px 40px}.dashboard-cards{grid-template-columns:1fr 1fr}.dashboard-card{min-height:155px;padding:17px;} }
@media (max-width:520px){ .dashboard-cards{grid-template-columns:1fr;}.profile-details{grid-template-columns:1fr;} .dashboard-topbar h1{font-size:23px;} .dashboard-welcome-card h2{font-size:27px;} }

/* Gallery is intentionally view-only. */
.gallery-toolbar, #galleryUpload, #clearGallery { display:none !important; }

/* Clickable service cards */
.service-link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.service-link .service-more {
  display: inline-block;
  margin-top: 12px;
  font-weight: 700;
  text-decoration: none;
}
.service-link:hover .service-more {
  text-decoration: underline;
}
.service-details-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #07111f, #101b2e);
}
.service-details-header {
  padding: 80px 0 40px;
}
.service-details-list {
  display: grid;
  gap: 22px;
  padding-bottom: 60px;
}
.service-detail-card {
  background: rgba(255,255,255,.96);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 12px 30px rgba(0,0,0,.15);
}
.service-detail-card h2 { margin-top: 0; }
.service-detail-card ul { padding-left: 22px; line-height: 1.8; }
.back-services {
  display: inline-block;
  margin-bottom: 20px;
  font-weight: 700;
}
