/* ============================================
   ILORIN CARS - Landing Page Styles
   ============================================ */

/* ---- Header ---- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2000;
  transition: all var(--transition-normal);
  padding: 0 20px;
}

.header.scrolled {
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
}

body.light-mode .header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(13, 13, 13, 0.08);
}

body.light-mode .header:not(.scrolled) {
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.86),
    rgba(255, 255, 255, 0)
  );
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  height: var(--header-height);
}

.header-logo {
  height: 50px;
  z-index: 2001;
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 2001;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition-normal);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ---- Sidebar ---- */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--sidebar-width);
  height: 100vh;
  background: rgba(13, 13, 13, 0.98);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: 2000;
  transform: translateX(-100%);
  transition: transform var(--transition-smooth);
  display: flex;
  flex-direction: column;
  padding: 120px 0 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  overflow-y: auto;
}

body.light-mode .sidebar {
  background: rgba(255, 255, 255, 0.98);
  border-right: 1px solid rgba(13, 13, 13, 0.08);
  box-shadow: var(--shadow-lg);
}

.sidebar.open {
  transform: translateX(0);
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 0 32px;
}

.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  color: var(--silver);
  font-size: 1rem;
  font-weight: 500;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  position: relative;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
  color: var(--white);
  background: rgba(45, 127, 249, 0.1);
}

body.light-mode .sidebar-nav a:hover,
body.light-mode .sidebar-nav a.active {
  color: var(--accent-blue);
  background: rgba(45, 127, 249, 0.12);
}

.sidebar-nav a.active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 24px;
  background: var(--accent-blue);
  border-radius: 0 3px 3px 0;
}

.sidebar-nav a svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.sidebar-footer {
  padding: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: auto;
}

body.light-mode .sidebar-footer {
  border-top-color: rgba(13, 13, 13, 0.08);
}

.sidebar-social {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.sidebar-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--silver);
  transition: all var(--transition-fast);
}

body.light-mode .sidebar-social a {
  background: rgba(13, 13, 13, 0.05);
}

.sidebar-social a:hover {
  background: var(--accent-blue);
  color: #fff;
}
.sidebar-social a svg {
  width: 16px;
  height: 16px;
}
.sidebar-copyright {
  font-size: 0.8rem;
  color: var(--silver-dark);
}

/* ---- Hero ---- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease;
}
.hero-slide.active {
  opacity: 1;
}

.hero-slide video,
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(13, 13, 13, 0.85) 0%,
    rgba(13, 13, 13, 0.6) 40%,
    rgba(13, 13, 13, 0.4) 70%,
    rgba(13, 13, 13, 0.3) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 0 24px;
}
.hero-tag {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(45, 127, 249, 0.2);
  border: 1px solid rgba(45, 127, 249, 0.3);
  border-radius: var(--radius-full);
  color: var(--accent-blue);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 20px;
  font-family: var(--font-display);
}

.hero-title span {
  display: block;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.2rem;
  color: var(--silver);
  margin-bottom: 40px;
  line-height: 1.7;
  max-width: 550px;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--silver);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: bounce 2s ease-in-out infinite;
}

.hero-scroll-indicator .mouse {
  width: 24px;
  height: 38px;
  border: 2px solid var(--silver);
  border-radius: 12px;
  position: relative;
}

.hero-scroll-indicator .mouse::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background: var(--accent-blue);
  border-radius: 2px;
  animation: scrollWheel 1.5s ease-in-out infinite;
}

@keyframes scrollWheel {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(12px);
  }
}

/* ---- About ---- */
.about {
  position: relative;
  overflow: hidden;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-image-wrapper {
  position: relative;
}
.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.about-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  background: var(--accent-blue);
  border-radius: var(--radius-lg);
  opacity: 0.15;
  filter: blur(40px);
  z-index: -1;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.about-stat {
  text-align: center;
  padding: 24px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition-normal);
}
.about-stat:hover {
  border-color: var(--accent-blue);
  background: rgba(45, 127, 249, 0.05);
}
.about-stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-blue);
  margin-bottom: 4px;
}
.about-stat-label {
  font-size: 0.85rem;
  color: var(--silver);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ---- Values ---- */
.values {
  background: var(--black-soft);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}
.value-card {
  padding: 36px 28px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--transition-normal);
}
.value-card:hover {
  border-color: var(--accent-blue);
  transform: translateY(-6px);
  box-shadow: var(--shadow-blue);
}
.value-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: var(--accent-blue-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.value-icon svg {
  width: 32px;
  height: 32px;
  color: var(--accent-blue);
}
.value-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.value-card p {
  font-size: 0.9rem;
  color: var(--silver);
  line-height: 1.6;
}

/* ---- CEO ---- */
.ceo-section {
  position: relative;
  overflow: hidden;
}
.ceo-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.ceo-image-wrapper {
  position: relative;
}
.ceo-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.ceo-image img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.ceo-quote {
  position: absolute;
  bottom: 30px;
  right: -30px;
  background: var(--accent-blue);
  color: #fff;
  padding: 24px 28px;
  border-radius: var(--radius-lg);
  max-width: 280px;
  box-shadow: var(--shadow-lg);
}
.ceo-quote p {
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 4px;
}
.ceo-quote span {
  font-size: 0.8rem;
  opacity: 0.8;
  font-style: normal;
}
.ceo-name {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.ceo-role {
  color: var(--accent-blue);
  font-weight: 600;
  margin-bottom: 20px;
  display: block;
}
.ceo-message {
  color: var(--silver);
  line-height: 1.8;
  margin-bottom: 24px;
}
.ceo-achievements {
  display: flex;
  gap: 30px;
}
.ceo-achievement {
  text-align: center;
}
.ceo-achievement .number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-blue);
}
.ceo-achievement .label {
  font-size: 0.8rem;
  color: var(--silver);
  text-transform: uppercase;
}

/* ---- Services ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  padding: 36px 28px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--accent-blue-light);
  opacity: 0;
  transition: opacity var(--transition-normal);
}
.service-card:hover::before {
  opacity: 1;
}
.service-card:hover {
  border-color: var(--accent-blue);
  transform: translateY(-4px);
}
.service-card .service-icon {
  width: 56px;
  height: 56px;
  background: var(--accent-blue-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
}
.service-card .service-icon svg {
  width: 28px;
  height: 28px;
  color: var(--accent-blue);
}
.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  position: relative;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--silver);
  line-height: 1.6;
  position: relative;
}

/* ---- Marketplace ---- */
.marketplace-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}
.category-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.category-tab {
  padding: 10px 24px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  color: var(--silver);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
  font-family: var(--font-primary);
}
.category-tab:hover,
.category-tab.active {
  background: var(--accent-blue);
  border-color: var(--accent-blue);
  color: #fff;
}

.search-bar {
  display: flex;
  gap: 8px;
  max-width: 400px;
  width: 100%;
}
.search-bar input {
  flex: 1;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  color: var(--white);
  font-size: 0.95rem;
  font-family: var(--font-primary);
}
.search-bar input:focus {
  outline: none;
  border-color: var(--accent-blue);
}
.search-bar button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-blue);
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}
.search-bar button:hover {
  background: var(--accent-blue-hover);
}

.filter-bar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.filter-select {
  padding: 10px 40px 10px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  color: var(--silver);
  font-size: 0.9rem;
  font-family: var(--font-primary);
  cursor: pointer;
  transition: all var(--transition-fast);
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23c0c0c0' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
.filter-select:focus {
  outline: none;
  border-color: var(--accent-blue);
}
.filter-select option {
  background: var(--dark-gray);
  color: var(--white);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.product-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-normal);
  position: relative;
}
body.light-mode .product-card,
body.light-mode .value-card,
body.light-mode .service-card,
body.light-mode .testimonial-inner,
body.light-mode .faq-item,
body.light-mode .contact-info-item,
body.light-mode .contact-form-wrapper,
body.light-mode .product-sidebar-card {
  background: #f1f4f8;
  border-color: rgba(13, 13, 13, 0.1);
  box-shadow: 0 10px 28px rgba(13, 13, 13, 0.07);
}
.product-card:hover {
  border-color: var(--accent-blue);
  transform: translateY(-6px);
  box-shadow: var(--shadow-blue);
}
.product-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.product-card:hover .product-card-image img {
  transform: scale(1.08);
}
.product-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
}
.product-card-favorite {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  transition: all var(--transition-fast);
}
.product-card-favorite.active {
  background: #ef4444;
}
.product-card-favorite svg {
  width: 18px;
  height: 18px;
}
.product-card-body {
  padding: 20px;
}
.product-card-category {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-blue);
  font-weight: 600;
  margin-bottom: 8px;
}
.product-card-name {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}
.product-card-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 16px;
}
.product-card-spec {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--silver);
}
.product-card-spec svg {
  width: 14px;
  height: 14px;
  color: var(--accent-blue);
  flex-shrink: 0;
}
.product-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 16px 20px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.product-card-price {
  min-width: 0;
  overflow-wrap: anywhere;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 800;
  color: var(--accent-blue);
}
.product-card-footer .btn {
  flex: 0 0 auto;
  white-space: nowrap;
}
.product-card-price small {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--silver);
  display: block;
}

/* ---- Product Detail ---- */
.product-detail {
  padding-top: calc(var(--header-height) + 20px);
}
.product-detail-gallery {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  margin-bottom: 40px;
}
.product-thumbnails {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 500px;
  overflow-y: auto;
}
.product-thumbnail {
  width: 100px;
  height: 70px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition-fast);
  opacity: 0.6;
}
.product-thumbnail.active,
.product-thumbnail:hover {
  border-color: var(--accent-blue);
  opacity: 1;
}
.product-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-main-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 500px;
}
.product-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: zoom-in;
}
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
}
.product-info h1 {
  font-size: 2.5rem;
  margin-bottom: 8px;
}
.product-info .price {
  font-size: 2rem;
  color: var(--accent-blue);
  font-weight: 800;
  margin-bottom: 24px;
}
.specs-table {
  width: 100%;
  border-collapse: collapse;
}
.specs-table tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.specs-table td {
  padding: 14px 0;
  font-size: 0.95rem;
}
.specs-table td:first-child {
  color: var(--silver);
  width: 40%;
}
.specs-table td:last-child {
  font-weight: 600;
}
.product-sidebar-card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  position: sticky;
  top: calc(var(--header-height) + 20px);
}
.sidebar-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}
.sidebar-cta .btn {
  width: 100%;
  justify-content: center;
}
.share-buttons {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}
.share-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: var(--silver);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}
.share-btn:hover {
  background: var(--accent-blue);
  border-color: var(--accent-blue);
  color: #fff;
}

/* ---- Testimonials ---- */
.testimonials {
  background: var(--black-soft);
  position: relative;
  overflow: hidden;
}
.testimonial-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}
.testimonial-track {
  display: flex;
  transition: transform var(--transition-smooth);
}
.testimonial-card {
  min-width: 100%;
  padding: 20px;
}
.testimonial-inner {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
}
.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 20px;
}
.testimonial-stars svg {
  width: 20px;
  height: 20px;
  color: #f59e0b;
  fill: #f59e0b;
}
.testimonial-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--silver);
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author-img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 12px;
  object-fit: cover;
  border: 3px solid var(--accent-blue);
}
.testimonial-author {
  font-weight: 700;
  font-size: 1.05rem;
}
.testimonial-role {
  color: var(--silver);
  font-size: 0.85rem;
}
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--silver-dark);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}
.testimonial-dot.active {
  background: var(--accent-blue);
  width: 30px;
  border-radius: 5px;
}

/* ---- FAQ ---- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}
.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-primary);
  gap: 16px;
}
.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform var(--transition-normal);
  color: var(--accent-blue);
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: all var(--transition-normal);
  color: var(--silver);
  line-height: 1.7;
}
.faq-item.open .faq-answer {
  padding: 0 24px 20px;
  max-height: 300px;
}

/* ---- Gallery ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 16px;
}
.gallery-item {
  min-height: 220px;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item:nth-child(1),
.gallery-item:nth-child(5) {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 456px;
}
.gallery-item:nth-child(2),
.gallery-item:nth-child(4) {
  grid-column: span 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.gallery-item:hover img {
  transform: scale(1.08);
}
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 13, 13, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-normal);
}
.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}
.gallery-item-overlay svg {
  width: 40px;
  height: 40px;
  color: #fff;
}

/* ---- Contact ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  color: inherit;
  text-decoration: none;
}
.contact-info-item:hover {
  border-color: var(--accent-blue);
}
.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--accent-blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg {
  width: 20px;
  height: 20px;
  color: var(--accent-blue);
}
.contact-info-text h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}
.contact-info-text p {
  font-size: 0.9rem;
  color: var(--silver);
}
.contact-form-wrapper {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-form textarea.form-input {
  resize: vertical;
  min-height: 120px;
}
.contact-map {
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 60px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ---- Footer ---- */
.footer {
  background: var(--black-soft);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}
.footer-logo {
  width: 100px;
  margin-bottom: 16px;
}
.footer-about p {
  color: var(--silver);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--silver);
  transition: all var(--transition-fast);
}
.footer-social a:hover {
  background: var(--accent-blue);
  color: #fff;
}
.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 3px;
  background: var(--accent-blue);
  border-radius: 3px;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  color: var(--silver);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}
.footer-col ul li a:hover {
  color: var(--accent-blue);
  padding-left: 4px;
}
.footer-newsletter p {
  color: var(--silver);
  font-size: 0.9rem;
  margin-bottom: 16px;
}
.footer-newsletter-form {
  display: flex;
  gap: 8px;
}
.footer-newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  color: var(--white);
  font-size: 0.9rem;
  font-family: var(--font-primary);
}
.footer-newsletter-form input:focus {
  outline: none;
  border-color: var(--accent-blue);
}
.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 60px;
  text-align: center;
}
.footer-bottom p {
  color: var(--silver-dark);
  font-size: 0.85rem;
}
.footer-bottom a {
  color: var(--accent-blue);
  font-weight: 700;
}

body.light-mode .footer,
body.light-mode .footer-bottom {
  border-color: rgba(13, 13, 13, 0.08);
}

body.light-mode .footer-social a,
body.light-mode .footer-newsletter-form input {
  background: #e9edf3;
  border-color: rgba(13, 13, 13, 0.12);
}
