:root {
    --sidebar-width: 300px;
    --sidebar-min: 200px;
    --sidebar-max: 450px;
    --content-max-width: 900px;
    --header-height: 56px;
    --bg-main: #ffffff;
    --bg-sidebar: #ffffff;
    --bg-content: #ffffff;
    --text-main: #333;
    --text-light: #333;
    --border-color: #e5e7eb;
    --accent: #2563eb;
    --bg-light: #f2f4f6;
    --sidebar-bg-light: #f8f9fb;
  --sidebar-bg-dark: #1e1f25;
  --sidebar-text-light: #444;
  --sidebar-text-dark: #eaeaea;
  --sidebar-hover-bg: rgba(100, 149, 237, 0.15);
  --sidebar-active-bg: rgba(100, 149, 237, 0.25);
  --sidebar-active-color: #2b6cb0;
  --sidebar-border: rgba(150,150,150,0.15);
  --sidebar-transition: 0.25s ease;
  }

  [data-theme="dark"] {
    --bg-main: #212121;
    --bg-sidebar: #212121;
    --bg-content: #212121;
    --text-main: #fff;
    --text-light: #fff;
    --border-color: #374151;
    --accent: #3b82f6;
  }

  * { box-sizing: border-box; }
  body {
    margin: 0;
    font-family: "Roboto", sans-serif !important;
    font-optical-sizing: auto;
    font-style: normal;
    color: var(--text-main);
    background: var(--bg-main);
    display: flex;
    flex-direction: column;
    height: 100vh;
    transition: background 0.3s, color 0.3s;
  }
  
  .header {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--header-height);
    background: var(--bg-content);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
    border-bottom: 1px solid var(--border-color);
    z-index: 100;
    transition: background 0.3s;
  }

  .header-left, .header-center, .header-right {
    flex: 1; display: flex; align-items: center;
  }
  .header-left { justify-content: flex-start; }
  .header-center { justify-content: center; }
  .header-right { justify-content: flex-end; gap: 0.5rem; }
/* Search bar container */
.search-bar {
  display: flex;
  align-items: center;
  background: #f7f7f7;
  border-radius: 30px;
  padding: 5px 10px;
  width: 100%;
  max-width: 480px;
  transition: all 0.2s ease-in-out;
}

.search-bar:focus-within {
  box-shadow: 0 0 0 3px rgba(0,120,255,0.2);
  border-color: var(--accent-color, #0078ff);
}

/* Input styling */
.search-bar input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 14px;
  background: transparent;
  color: var(--text-dark, #222);
  padding: 6px 10px;
}

/* Button styling */
.search-bar button {
  background: var(--accent-color, #0078ff);
  border: none;
  border-radius: 50%;
  color: white;
  width: 34px;
  height: 34px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s;
}

.search-bar button:hover {
  background: #005fcc;
}

/* Dark mode */
[data-theme="dark"] .search-bar {
  background: #2a2a2a;
  border-color: #444;
  box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

[data-theme="dark"] .search-bar input {
  color: #eaeaea;
}

[data-theme="dark"] .search-bar button {
  background: #4ea7ff;
}

[data-theme="dark"] .search-bar button:hover {
  background: #1e8fff;
}
 .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  text-decoration: none;
}

.logo a {
  text-decoration: none;
  color: inherit;
}

.logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 8px; /* optional: softer corners */
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  justify-content: center;
}

.logo-text strong {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-color, #0078ff);
  letter-spacing: -0.3px;
  transition: color 0.2s ease;
}

.logo-text strong a {
  color: inherit;
  text-decoration: none;
}

.logo-text strong a:hover {
  color: var(--accent-hover, #005ecc);
}

.logo-text small {
  font-size: 0.8rem;
  color: var(--text-muted, #666);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}


/* Dark mode */
[data-theme="dark"] header {
  background: #212121;
  color: #eaeaea;
  border-color: #333;
}

[data-theme="dark"] .logo-text strong {
  color: #4ea7ff;
}

[data-theme="dark"] .logo-text small {
  color: #aaa;
}
  .menu-toggle {display:none;background: none;border:none;font-size:18px;}
   .theme-toggle {
    background: var(--bg-light);
    color: white;
    border: none;
    padding: 6px;
    border-radius: 100%;
    cursor: pointer;
  }
[data-theme="dark"] .menu-toggle {
  color: #aaa;
}
  @media (max-width: 768px) {
    .header-center { display: none; }
    .menu-toggle {display: flex;}
  }

  .main-container {
    display: flex;
    flex: 1;
    margin-top: var(--header-height);
    overflow: hidden;
  }

  .sidebar {
  width: var(--sidebar-width);
  background: var(--bg-sidebar);
  color: var(--text-light);
  padding: 1rem;
  overflow-y: auto;
  transition: all var(--sidebar-transition);
  border-right: 1px solid var(--sidebar-border);
}

.sidebar h2 {
  font-size: 0.8rem;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  color:orange;
  letter-spacing: 0.5px;
}

.menu-item button,
.menu-item a {
  display: flex;                 /* use flex layout for perfect alignment */
  align-items: center;           /* vertically center text and icon */
  justify-content: space-between;/* text on left, arrow on right */
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  outline: none;
  color: inherit;
  padding: 8px 3px;
  cursor: pointer;
  font-size: 15px;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: background var(--sidebar-transition), color var(--sidebar-transition);
  gap: 8px;
}

.menu-item button span,
.menu-item a span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;  
}

/* Dropdown indicator */
.menu-item button::after {
  content: "▸";
  flex-shrink: 0;               
  font-size: 0.8rem;
  opacity: 0.6;
  transition: transform var(--sidebar-transition);
}

.menu-item button:hover,
.menu-item a:hover {
  background: var(--sidebar-hover-bg);
}

/* Active effect */
.menu-item a.active,
.menu-item button.active {
  background: var(--sidebar-active-bg);
  color: var(--sidebar-active-color);
  font-weight: 600;
}

/* Submenus */
.submenu, .subsubmenu {
  display: none;
  margin-left: 8px;
  border-left: 1px solid #ddd;
  padding-left: 5px;
  transition: all var(--sidebar-transition);
}

/* When open */
.menu-item.open > .submenu,
.menu-item.open > .subsubmenu {
  display: block;
}

.submenu a,
.subsubmenu a {
  font-size: 14px;
  padding: 6px 5px;
}

.submenu a:hover,
.subsubmenu a:hover {
  background: var(--sidebar-hover-bg);
}

/* Dropdown indicator */
.menu-item button::after {
  content: "▸";
  float: right;
  font-size: 0.8rem;
  opacity: 0.6;
  transition: transform var(--sidebar-transition);
}

.menu-item.open > button::after {
  transform: rotate(90deg);
  opacity: 1;
}

/* Scrollbar styling */
.sidebar::-webkit-scrollbar {
  width: 6px;
}

.sidebar::-webkit-scrollbar-thumb {
  background: rgba(150,150,150,0.3);
  border-radius: 4px;
}

.sidebar::-webkit-scrollbar-thumb:hover {
  background: rgba(100,100,100,0.5);
}

  .resizer {
    width: 1px;
    cursor: col-resize;
    background: var(--border-color);
    user-select: none;
    transition: background 0.3s;
  }
  .content {
    flex: 1;
    overflow-y: auto;
    display: flex;
    justify-content: center;
    padding: 2rem;
    transition: background 0.3s;
  }

  .content-inner {
    max-width: var(--content-max-width);
    width: 100%;
    background: var(--bg-content);
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: background 0.3s;
  }

  @media (max-width: 768px) {
    .sidebar {
      position: fixed;
      top: var(--header-height);
      bottom: 0;
      left: 0;
      transform: translateX(-100%);
      transition: transform 0.3s ease;
      z-index: 200;
    }
    .sidebar.active { transform: translateX(0); }
    .resizer { display: none; }
    .content { padding: 1rem; }
  }
  
 .footer {
  background: var(--bg-sidebar);
  color: var(--text-light);
  border-top: 1px solid var(--sidebar-border);
  padding: 7px 16px;
  font-size: 0.9rem;
  transition: background var(--sidebar-transition), color var(--sidebar-transition);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: nowrap;
  white-space: nowrap;
}

/* --- Copyright --- */
.footer-brand {
  opacity: 0.8;
  font-weight: 500;
}

/* --- Links --- */
.footer-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-links a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--sidebar-active-color);
}

/* --- Icons --- */
.footer-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-icon {
  color: var(--text-light);
  text-decoration: none;
  font-size: 1.2rem;
  transition: color 0.2s, transform 0.2s;
}

.footer-icon:hover {
  color: var(--sidebar-active-color);
  transform: scale(1.1);
}

/* --- Mobile --- */
@media (max-width: 768px) {
  .footer-brand {
    display: none; /* Hide copyright only */
  }
  .footer-inner {
    justify-content: space-between;
    gap: 8px;
  }
  .footer-links a {
    font-size: 0.85rem;
  }
  .footer-icon {
    font-size: 1.1rem;
  }
}

/* --- Dark Mode --- */
[data-theme="dark"] .footer {
  background: var(--bg-sidebar-dark, #1e1e1e);
  color: var(--text-light-dark, #ddd);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .footer-links a:hover,
[data-theme="dark"] .footer-icon:hover {
  color: var(--sidebar-active-color, #4ea1ff);
}

.section-one {
  color: var(--text-main);
  background: none;
  max-width: var(--content-max-width);
}

.section-text {
  flex: 1 1 480px;
}

.section-text h1 {
  font-size: clamp(26px, 6vw, 30px);
  line-height: 1.2;
  margin-bottom: 18px;
  font-weight: 600;
  color: var(--text-main);
  text-align: left;
  transition: color 0.3s ease, text-shadow 0.3s ease;
  text-shadow: 1px 1px 2px var(--border-color);
}

/* optional hover effect for desktop */
.section-text h1:hover {
  text-shadow: 2px 2px 8px var(--accent-color, rgba(0,0,0,0.3));
}

/* responsive text for small screens */
@media (max-width: 600px) {
  .section-text h1 {
    font-size: 24px;
    line-height: 1.3;
  }
}


.section-text p {
  color: var(--text-light);
  margin-bottom: 24px;
}

.section-text table {
  border-collapse: collapse;
  margin-bottom: 24px;
  width: 100%;
  max-width: 400px;
  font-size: 0.95rem;
  color: var(--text-light);
}

.section-text table th,
.section-text table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border-color);
}

.section-text table th {
  text-align: left;
  font-weight: 600;
  color: var(--text-main);
  width: 40%;
}

.section-text table td {
  color: var(--text-light);
}

.btn-primary {
  display: inline-block;
  padding: 12px 26px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  opacity: 0.9;
}
.section-content {
  display:inline-block;
  max-width: var(--content-max-width);
  width: 100%;
}

.section-image {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: var(--content-max-width);
  height: auto;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

/* Shimmer loader */
.image-loader {
  width: 100%;
  height: 340px; /* reasonable default height */
  background: linear-gradient(90deg, #f3f3f3 25%, #ececec 50%, #f3f3f3 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite linear;
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Image appearance */
.section-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.section-image img.loaded {
  opacity: 1;
}

/* Dark mode loader */
[data-theme="dark"] .image-loader {
  background: linear-gradient(90deg, #2a2a2a 25%, #3a3a3a 50%, #2a2a2a 75%);
}


/* Responsive */
@media (max-width: 768px) {
  .section-container {
    flex-direction: column;
    gap: 30px;
  }
  .section-text p, .section-text table {
    margin-left: auto;
    margin-right: auto;
  }
}
.table-btn-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.btn-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
  min-width: 200px;
}
.btn-gradient {
  display: inline-block;
  text-align: center;
  padding: 12px 28px;
  border-radius: 999px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  width: 100%;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* Gradient colors */
.btn-gradient.green {
  background: linear-gradient(45deg, #22c55e, #16a34a);
}
.btn-gradient.orange {
  background: linear-gradient(45deg, #f59e0b, #d97706);
}
.btn-gradient.blue {
  background: linear-gradient(45deg, #3b82f6, #1d4ed8);
}

/* Hover effect */
.btn-gradient:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* Dark mode look */
@media (prefers-color-scheme: dark) {
  .btn-gradient {
    box-shadow: 0 3px 12px rgba(255,255,255,0.1);
  }
}

@media (max-width: 700px) {
  .table-btn-row {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-group {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    width: 100%;
  }

  .btn-gradient {
    flex: 1;
    font-size: 0.9rem;
    padding: 10px 0;
    border-radius: 999px;
    white-space: nowrap;
  }
}

.products-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border-color);
  border-left: 1px solid var(--border-color);
  background: var(--bg-main);
  color: var(--text-main);
  margin: 15px 0;
}

.product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  text-decoration: none;
  border-right: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  background: var(--bg-content);
  color: var(--text-main);
  transition: background 0.3s ease, color 0.3s ease;
  position: relative;
  padding: 1.5em 1em;
  overflow: hidden;
}

.product-img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  background: var(--bg-light);
  padding: 8px;
  box-sizing: border-box;
  margin-bottom: 0.8em;
  transition: transform 0.3s ease;
}

.product-info {
  width: 100%;
}

.product-info h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 550;
  text-transform: capitalize;
  color: var(--text-main);
  letter-spacing: 0.2px;
  transition: color 0.3s ease;
}

/* Hover line animation */
.product-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.product-card:hover::after {
  width: 100%;
}

.product-card:hover {
  background: var(--bg-light);
}

.product-card:hover .product-img {
  transform: scale(1.05);
}

.product-card:hover h3 {
  color: var(--accent);
}

/* Dark mode adjustments */
[data-theme="dark"] .product-card {
  background: #181a1f;
}

[data-theme="dark"] .product-card:hover {
  background: #1f2228;
}

[data-theme="dark"] .product-card::after {
  background: var(--accent, #3b82f6);
}

/* Responsive */
@media (max-width: 1000px) {
  .products-section {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .products-section {
    grid-template-columns: 1fr;
  }

  .product-img {
    height: 160px;
  }

  .product-info h3 {
    font-size: 0.95rem;
  }
}


h2, h3, h4, p {
  font-family: "Roboto", sans-serif !important;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

h2, h3, h4, p, li, table {
  font-family: "Roboto", sans-serif !important;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

h2 {
  font-size: 1.55rem;
  margin-top: 2em;
  margin-bottom: 0.8em;
  font-weight: 600;
  line-height: 1.4;
}

h3 {
  font-size: 1.25rem;
  margin-top: 1.6em;
  margin-bottom: 0.6em;
  font-weight: 550;
  line-height: 1.45;
}

h4 {
  font-size: 1.1rem;
  margin-top: 1.2em;
  margin-bottom: 0.5em;
  font-weight: 500;
  line-height: 1.5;
}

p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.2em;
  font-weight: 400;
  letter-spacing: 0.2px;
}

ul, ol {
  margin: 0.4em 0;
  padding-left: 0.5em;
  list-style: none;
}

li {
  position: relative;
  font-size: 1rem;
  line-height: 1.65;
  padding-left: 1.2em;
  margin-bottom: 0.35em;
  color: var(--text-main, #333);
  transition: color 0.3s ease;
}

/* Vertical connector line */
ul > li::before {
  content: "";
  position: absolute;
  left: 0.35em;
  top: 0;
  bottom: -0.4em;
  width: 2px;
  background-color: #2563eb; /* Blue */
  opacity: 0.7;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Horizontal connector line */
ul > li::after {
  content: "";
  position: absolute;
  top: 0.85em;
  left: 0.35em;
  width: 10px;
  height: 2px;
  background-color: #2563eb; /* Blue */
  opacity: 0.9;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Node dot */
ul > li span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  background-color: #2563eb; /* Blue */
  border-radius: 50%;
  box-shadow: 0 0 4px rgba(37, 99, 235, 0.5);
  transition: all 0.3s ease;
}

/* Remove last vertical connector */
ul > li:last-child::before {
  height: 0.9em;
  bottom: auto;
}

/* Nested lists */
ul ul {
  margin-top: 0.25em;
  margin-left: 0.6em;
  padding-left: 0.6em;
  border-left: none;
}

/* Hover effects: turns orange */
li:hover {
  color: #f97316;
}
li:hover::before,
li:hover::after,
li:hover span::before {
  background-color: #f97316; /* Orange on hover */
  opacity: 1;
  transform: scale(1.05);
}

/* Dark mode friendly */
[data-theme="dark"] ul > li::before,
[data-theme="dark"] ul > li::after,
[data-theme="dark"] ul > li span::before {
  background-color: #3b82f6;
  box-shadow: 0 0 5px rgba(59, 130, 246, 0.4);
}
[data-theme="dark"] li:hover::before,
[data-theme="dark"] li:hover::after,
[data-theme="dark"] li:hover span::before {
  background-color: #fb923c;
}



table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 1.5em 0;
}

th, td {
  padding: 10px 12px;
  border: 1px solid #ddd;
  text-align: left;
  font-weight: 400;
}

th {
  font-weight: 500;
}

@media (max-width: 768px) {
  h2 { font-size: 1.3rem; }
  h3 { font-size: 1.15rem; }
  h4 { font-size: 1.05rem; }
  p, li, table { font-size: 0.95rem; line-height: 1.6; }
}



@media (hover: hover) and (pointer: fine) {
  html, body, * {
    scrollbar-width: thin;
    scrollbar-color: var(--scroll-thumb, #c7d1e0) var(--scroll-track, #f5f5f7);
  }

  ::-webkit-scrollbar {
    width: 9px;
    height: 9px;
  }

  ::-webkit-scrollbar-track {
    background: var(--scroll-track, #f5f5f7);
  }

  ::-webkit-scrollbar-thumb {
    background: linear-gradient(
      180deg,
      color-mix(in srgb, var(--accent) 30%, #ddd) 0%,
      color-mix(in srgb, var(--accent) 10%, #bbb) 100%
    );
    border-radius: 6px;
    border: 2px solid var(--scroll-track, #f5f5f7);
    transition: background 0.3s ease;
  }

  ::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(
      180deg,
      color-mix(in srgb, var(--accent) 40%, #aaa) 0%,
      color-mix(in srgb, var(--accent) 25%, #999) 100%
    );
  }

  ::-webkit-scrollbar-corner {
    background: transparent;
  }
}

/* ===========================
   Hide on Mobile
   =========================== */
@media (hover: none) and (pointer: coarse) {
  ::-webkit-scrollbar {
    display: none;
  }
  * {
    scrollbar-width: none;
  }
}

html {
  scroll-behavior: smooth;
}

[data-theme="dark"] {
  --scroll-track: #1e1e1e;
  --scroll-thumb: #444c56;
}

[data-theme="dark"] ::-webkit-scrollbar-track {
  background: var(--scroll-track);
}

[data-theme="dark"] ::-webkit-scrollbar-thumb {
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--accent) 15%, #555) 0%,
    color-mix(in srgb, var(--accent) 10%, #444) 100%
  );
  border: 2px solid var(--scroll-track);
}

.cta-luxury {
  background: linear-gradient(135deg, #0057d8, #007bff 50%, #0098ff);
  padding: 5em 1.5em;
  text-align: center;
  border-radius: 18px;
  color: #fff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
  margin: 4em 0;
  transition: background 0.4s ease-in-out, box-shadow 0.3s ease;
}

.cta-inner {
  margin: 0 auto;
}

.cta-luxury h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.6em;
  line-height: 1.4;
}

.cta-luxury p {
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 720px;
  margin: 0 auto 2em;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 400;
  letter-spacing: 0.2px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.2em;
  flex-wrap: wrap;
  margin-bottom: 1.5em;
}

.cta-btn {
  display: inline-block;
  padding: 0.9em 2.2em;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  min-width: 180px;
}

.cta-btn.main {
  background: #fff;
  color: #0057d8;
  box-shadow: 0 4px 14px rgba(255, 255, 255, 0.25);
}

.cta-btn.main:hover {
  background: #f4f4f4;
  transform: translateY(-2px);
}

.cta-btn.outline {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
}

.cta-btn.outline:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.cta-sub {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-top: 1em;
}

/* Dark Mode */
[data-theme="dark"] .cta-luxury {
  background: linear-gradient(135deg, #003b91, #0057d8, #0076f5);
  box-shadow: 0 8px 35px rgba(0, 0, 0, 0.45);
}

[data-theme="dark"] .cta-btn.main {
  background: var(--accent);
  color: #fff;
}

[data-theme="dark"] .cta-btn.main:hover {
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
  .cta-luxury {
    padding: 3.5em 1em;
    border-radius: 12px;
  }
  .cta-luxury h2 {
    font-size: 1.6rem;
  }
  .cta-luxury p {
    font-size: 0.95rem;
  }
  .cta-btn {
    font-size: 0.95rem;
    padding: 0.8em 1.8em;
    min-width: 150px;
  }
}