/* ===================================================
   GOOGLE FONT
=================================================== */

@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700&family=Nunito:wght@300;400;500;600;700;800;900&display=swap");

/* ===================================================
   ROOT VARIABLES
=================================================== */

:root {
  --black: #0b0b0b;
  --black-light: #141414;
  --black-card: #1a1a1a;

  --gold: #d4af37;
  --gold-light: #e5c55c;

  --orange: #ff6b00;

  --white: #ffffff;
  --gray: #cfcfcf;
  --gray-dark: #9a9a9a;

  --border: #2d2d2d;

  --container: 1320px;

  --shadow: 0 10px 40px rgba(0, 0, 0, 0.35);

  --transition: 0.35s ease;
}

/* ===================================================
   RESET
=================================================== */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Nunito", sans-serif;

  background: var(--black);

  color: var(--white);

  line-height: 1.7;

  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  border: none;
  outline: none;
  cursor: pointer;
}

/* ===================================================
   TYPOGRAPHY
=================================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Cinzel", serif;

  line-height: 1.2;
}

p {
  color: var(--gray);
}

.w-full {
  width: 100%;
}

.section-title {
  font-size: 48px;

  margin-bottom: 15px;
}

.section-subtitle {
  color: var(--gray);

  max-width: 750px;

  margin: auto;
}

/* ===================================================
   CONTAINER
=================================================== */

.container {
  width: 90%;

  max-width: var(--container);

  margin: auto;
}

.section {
  padding: 100px 0;
}

/* ===================================================
   BUTTONS
=================================================== */

.btn {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 10px;

  padding: 15px 30px;

  border-radius: 10px;

  font-weight: 800;

  transition: var(--transition);
}

.btn-gold {
  background: var(--gold);

  color: #000;
}

.btn-gold:hover {
  transform: translateY(-3px);
}

.btn-orange {
  background: var(--orange);

  color: #fff;
}

.btn-orange:hover {
  transform: translateY(-3px);
}

.btn-outline {
  border: 1px solid var(--gold);

  color: var(--gold);
}

.btn-outline:hover {
  background: var(--gold);

  color: #000;
}

/* ===================================================
   TOP BAR
=================================================== */

.topbar {
  background: var(--gold);

  color: #000;

  padding: 10px 0;

  font-weight: 800;
}

.topbar-content {
  display: flex;

  justify-content: space-between;

  align-items: center;
}

/* ===================================================
   HEADER
=================================================== */

.header {
  position: sticky;

  top: 0;

  z-index: 9999;

  background: rgba(11, 11, 11, 0.95);

  backdrop-filter: blur(15px);

  border-bottom: 1px solid var(--border);
}

.navbar {
  height: 90px;

  display: flex;

  justify-content: space-between;

  align-items: center;
}

.logo {
  display: flex;

  align-items: center;

  gap: 15px;
}

.logo img {
  width: 90px;
  border-radius: 8px;
  border: 3px solid var(--gold);
}

.logo-text h2 {
  font-size: 24px;

  color: var(--gold);
}

.logo-text span {
  font-size: 13px;

  color: var(--gray);
}

.nav-menu {
  display: flex;

  gap: 35px;
}

.nav-menu a {
  color: white;

  font-weight: 700;

  transition: var(--transition);
}

.nav-menu a:hover {
  color: var(--gold);
}

.nav-menu a.active {
  color: var(--gold);
}

/* ===================================================
   HERO SECTION
=================================================== */

.hero {
  /* padding: 120px 0; */
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";

  position: absolute;

  width: 500px;

  height: 500px;

  background: rgba(212, 175, 55, 0.12);

  filter: blur(120px);

  top: -100px;

  right: -100px;
}

.hero-grid {
  display: grid;

  grid-template-columns: 1.1fr 0.9fr;

  gap: 60px;

  align-items: center;
}

.hero-tag {
  display: inline-block;

  padding: 8px 18px;

  border: 1px solid rgba(212, 175, 55, 0.3);

  border-radius: 30px;

  color: var(--gold);

  margin-bottom: 25px;
}

.hero-content h1 {
  font-size: 64px;

  margin-bottom: 20px;
}

.hero-content p {
  font-size: 20px;

  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;

  gap: 15px;

  margin-bottom: 35px;
}

.hero-features {
  display: flex;

  flex-wrap: wrap;

  gap: 20px;
}

.hero-features div {
  display: flex;

  align-items: center;

  gap: 10px;
}

.hero-features i {
  color: var(--gold);
}

.hero-image {
  position: relative;

  display: flex;

  justify-content: center;
}

.hero-image img {
  width: 100%;
}

.hero-image::before {
  content: "";

  position: absolute;

  width: 400px;

  height: 400px;

  background: rgba(212, 175, 55, 0.18);

  border-radius: 50%;

  filter: blur(90px);

  z-index: -1;
}

.product-badge {
  position: absolute;

  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);

  background: var(--gold);

  color: #000;

  padding: 12px 18px;

  border-radius: 10px;

  font-weight: 800;
  white-space: nowrap;
}

.location-badge {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  background: rgba(255, 107, 0, 0.12);

  color: var(--orange);

  padding: 12px 18px;

  border-radius: 10px;

  margin-bottom: 30px;

  font-weight: 700;
}

.hero-stats {
  display: flex;

  gap: 40px;

  margin-top: 40px;

  flex-wrap: wrap;
}

.hero-stats h3 {
  color: var(--gold);

  font-size: 36px;

  margin-bottom: 5px;
}

.hero-stats span {
  color: var(--gray);

  font-size: 14px;
}

/* ===================================================
   TRUST CARDS
=================================================== */

.trust-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 25px;
}

.trust-card {
  background: var(--black-card);

  border: 1px solid var(--border);

  border-radius: 16px;

  text-align: center;

  padding: 35px;
}

.trust-card h3 {
  font-size: 38px;

  color: var(--gold);
}

/* ===================================================
   COMMON CARDS
=================================================== */

.card {
  background: var(--black-card);

  border: 1px solid var(--border);

  border-radius: 18px;

  transition: var(--transition);
}

.card:hover {
  transform: translateY(-8px);

  box-shadow: var(--shadow);
}

/* ===================================================
   SECTION HEADER
=================================================== */

.section-header {
  text-align: center;

  margin-bottom: 60px;
}

/* ===================================================
   PRODUCT CARDS
=================================================== */

.products-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 30px;
}

.product-card {
  overflow: hidden;
}

.product-image {
  height: 280px;

  overflow: hidden;
}

.product-image img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: 0.5s;
}

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

.product-content {
  padding: 25px;
}

.product-content h3 {
  margin-bottom: 10px;
}

.product-actions {
  margin-top: 20px;

  display: flex;

  gap: 10px;
}

/* ===================================================
   SERVICE CARDS
=================================================== */

.service-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 30px;
}

.service-card {
  padding: 35px;

  text-align: center;
}

.service-card i {
  font-size: 55px;

  color: var(--gold);

  margin-bottom: 20px;
}

/* ===================================================
   CATEGORY CARDS
=================================================== */

.category-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 30px;
}

.category-card {
  position: relative;

  overflow: hidden;

  border-radius: 18px;
}

.category-overlay {
  position: absolute;

  inset: 0;

  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.2));

  display: flex;

  align-items: flex-end;

  padding: 25px;
}

/* ===================================================
   TESTIMONIALS
=================================================== */

.review-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 30px;
}

.review-card {
  padding: 30px;
}

.review-stars {
  color: var(--gold);

  margin-bottom: 15px;
}

/* ===================================================
   CTA SECTION
=================================================== */

.cta {
  background: linear-gradient(135deg, #1b1b1b, #0b0b0b);

  border: 1px solid var(--border);

  border-radius: 20px;

  padding: 60px;

  text-align: center;
}

/* ===================================================
   CONTACT
=================================================== */

.contact-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 40px;
}

.contact-card {
  padding: 35px;
}

.contact-info {
  display: flex;

  align-items: center;

  gap: 15px;

  margin-bottom: 20px;
}

.contact-info i {
  color: var(--gold);

  width: 25px;
}

/* ===================================================
   FOOTER
=================================================== */

.footer {
  background: #070707;

  border-top: 1px solid var(--border);

  padding: 70px 0 25px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
}

.footer a:hover,
.footer ul li:hover {
  color: var(--gold);
  transition: 0.3s ease;
}

.footer h3,
.footer h4 {
  margin-bottom: 20px;

  color: var(--gold);
}

.footer ul li {
  margin-bottom: 10px;
}

.footer a {
  color: var(--gray);
}

.footer-bottom {
  margin-top: 50px;

  border-top: 1px solid var(--border);

  padding-top: 25px;

  text-align: center;

  color: var(--gray-dark);
}

/* ===================================================
   WHATSAPP BUTTON
=================================================== */

.whatsapp-float {
  position: fixed;

  right: 25px;

  bottom: 25px;

  width: 65px;

  height: 65px;

  border-radius: 50%;

  background: #25d366;

  color: white;

  display: flex;

  justify-content: center;

  align-items: center;

  font-size: 32px;

  z-index: 99999;

  box-shadow: var(--shadow);
}

/* ===================================================
   ANIMATION
=================================================== */

.fade-up {
  opacity: 0;

  transform: translateY(40px);

  transition: 0.8s ease;
}

.fade-up.active {
  opacity: 1;

  transform: translateY(0);
}

.product-features {
  margin-top: 20px;
}

.product-features li {
  display: flex;

  align-items: center;

  gap: 10px;

  margin-bottom: 10px;

  color: var(--gray);
}

.product-features i {
  color: var(--gold);
}

.product-content h3 {
  margin-bottom: 15px;
}

.product-content p {
  min-height: 90px;
}

/* ==========================================
   WHY CHOOSE US
========================================== */

.why-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 30px;
}

.why-card {
  padding: 35px;

  text-align: center;
}

.why-card i {
  font-size: 55px;

  color: var(--gold);

  margin-bottom: 20px;
}

.why-card h3 {
  margin-bottom: 15px;

  font-size: 24px;
}

.service-card h3 {
  margin-bottom: 15px;
}

/* ==========================================
   TV SERVICES
========================================== */

.tv-service-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 25px;
}

.tv-service-card {
  padding: 30px;

  text-align: center;
}

.tv-service-card i {
  font-size: 50px;

  color: var(--gold);

  margin-bottom: 20px;
}

.tv-service-card h3 {
  margin-bottom: 15px;

  font-size: 22px;
}

/* ==========================================
   REVIEWS
========================================== */

.review-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 30px;
}

.review-card {
  padding: 30px;
}

.review-stars {
  color: var(--gold);

  margin-bottom: 15px;
}

.review-card p {
  margin-bottom: 20px;
}

.review-card h4 {
  color: var(--white);

  margin-bottom: 5px;
}

.review-card span {
  color: var(--gray-dark);

  font-size: 14px;
}

/* ==========================================
   SERVICE AREA
========================================== */

.service-area-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 20px;
}

.area-card {
  padding: 25px;

  text-align: center;

  font-weight: 700;
}

/* ==========================================
   ABOUT SECTION
========================================== */

.about-grid {
  display: grid;

  /* grid-template-columns: 1fr 1fr; */
  grid-template-columns: 1fr;

  gap: 60px;

  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;

  border-radius: 20px;

  border: 1px solid var(--border);
}

.about-content p {
  margin-bottom: 20px;
}

.about-highlights {
  margin: 30px 0;

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 15px;
}

.about-highlights div {
  display: flex;

  align-items: center;

  gap: 10px;

  font-weight: 700;
}

.about-highlights i {
  color: var(--gold);
}

/* ==========================================
   FAQ
========================================== */

.faq-container {
  max-width: 900px;

  margin: auto;
}

.faq-item {
  margin-bottom: 15px;

  overflow: hidden;
}

.faq-question {
  width: 100%;

  background: none;

  color: white;

  padding: 25px;

  font-size: 18px;

  font-weight: 700;

  display: flex;

  justify-content: space-between;

  align-items: center;

  cursor: pointer;
}

.faq-question i {
  color: var(--gold);
}

.faq-answer {
  max-height: 0;

  overflow: hidden;

  transition:
    max-height 0.4s ease,
    padding 0.4s ease;

  padding: 0 25px;
}

.faq-item.active .faq-answer {
  max-height: 300px;

  padding: 0 25px 25px;
}

.faq-question i {
  color: var(--gold);
}

.faq-question i {
  transition: 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-item {
  transition: 0.3s ease;
}

.faq-item.active {
  border-color: var(--gold);

  box-shadow: 0 0 20px rgba(212, 175, 55, 0.08);
}

.contact-card h3 {
  color: var(--gold);
  margin-bottom: 10px;
}

/* ==========================================
   FOOTER SOCIAL
========================================== */

.footer-social {
  display: flex;

  gap: 15px;
}

.footer-social a {
  width: 45px;

  height: 45px;

  border-radius: 50%;

  background: var(--black-card);

  border: 1px solid var(--border);

  display: flex;

  align-items: center;

  justify-content: center;

  color: var(--gold);

  transition: 0.3s;
}

.footer-social a:hover {
  background: var(--gold);
  color: #000;
}

.footer ul li {
  margin-bottom: 12px;
}

.footer ul li i {
  color: var(--gold);

  margin-right: 8px;
}

.footer a.developer-link {
  color: var(--gold);
}

.footer a.developer-link:hover {
  text-decoration: underline;
}

/* ==========================================
   PRODUCT BANNER
========================================== */

.product-banner {
  min-height: 400px;

  display: flex;

  align-items: center;

  text-align: center;
}

.banner-content {
  max-width: 800px;

  margin: auto;
}

.breadcrumb {
  margin-top: 25px;

  display: flex;

  justify-content: center;

  gap: 10px;
}

.breadcrumb a {
  color: var(--gold);
}

/* ==========================================
   PRODUCT PAGE
========================================== */

.product-row {
  display: grid;

  grid-template-columns: 450px 1fr;

  gap: 40px;

  padding: 35px;

  margin-bottom: 40px;
}

.product-row-image {
  display: flex;

  align-items: center;

  justify-content: center;
}

.product-row-image img {
  width: 100%;

  max-width: 350px;
}

.product-row-content h3 {
  margin-bottom: 20px;

  font-size: 34px;
}

.product-row-content ul {
  margin: 25px 0;
}

.product-row-content ul li {
  margin-bottom: 12px;

  color: var(--gray);
}

/* ==========================================
   SPECIFICATION TABLE
========================================== */

.spec-table-wrapper {
  max-width: 900px;

  margin: auto;
}

.spec-table {
  width: 100%;

  border-collapse: collapse;

  overflow: hidden;

  border-radius: 15px;
}

.spec-table th,
.spec-table td {
  padding: 18px 20px;

  border: 1px solid var(--border);
}

.spec-table th {
  background: var(--black-card);

  color: var(--gold);

  text-align: left;

  width: 35%;
}

.spec-table td {
  color: var(--gray);
}

.product-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.product-overview-grid .about-highlights {
  grid-template-columns: 1fr;
}

/* ==========================================
   PRODUCT GALLERY
========================================== */

.gallery-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 20px;
}

.gallery-grid img {
  width: 100%;

  height: 260px;

  object-fit: contain;

  background: var(--black-card);

  border: 1px solid var(--border);

  border-radius: 15px;

  padding: 20px;

  transition: 0.3s;
}

.gallery-grid img:hover {
  transform: translateY(-5px);
}

.contact-benefits {
  margin-top: 20px;
}

.contact-benefits li {
  margin-bottom: 15px;

  color: var(--gray);

  font-size: 17px;
}

/* ==========================================
   TECHNICIAN SECTION
========================================== */

.technician-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 30px;

  max-width: 1100px;

  margin: auto;
}

.technician-card {
  padding: 40px;

  text-align: center;

  position: relative;
}

.technician-image {
  width: 180px;

  height: 180px;

  margin: auto;

  margin-bottom: 25px;

  border-radius: 50%;

  overflow: hidden;

  border: 4px solid var(--gold);

  box-shadow: 0 0 25px rgba(212, 175, 55, 0.15);
}

.technician-image img {
  width: 100%;

  height: 100%;

  object-fit: cover;
}

.technician-card h3 {
  margin-bottom: 10px;

  font-size: 28px;
}

.technician-degree {
  display: block;

  color: var(--gold);

  font-weight: 700;

  margin-bottom: 15px;
}

.experience-badge {
  display: inline-block;

  background: rgba(212, 175, 55, 0.12);

  color: var(--gold);

  padding: 10px 18px;

  border-radius: 30px;

  font-weight: 700;

  margin-bottom: 20px;
}

.technician-card p {
  margin-bottom: 25px;

  min-height: 90px;
}

.technician-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 0 30px rgba(212, 175, 55, 0.08);
}
