/*
Theme Name: REZI Theme
Author: Sammy
Version: 1.0
*/
#wpadminbar {
  display: none;
}
:root {
  --bg: #0b0b0b;
  --bg-secondary: #111111;
  --card: #171717;

  --gold: #d4af37;
  --gold-light: #f1d77a;

  --text: #f5f5f5;
  --text-muted: #a1a1a1;

  --border: #1f1f1f;

  --shadow: 0 10px 40px rgba(0, 0, 0, 0.35);

  --transition: 0.35s ease;
}

::selection {
  background: var(--gold);
  color: #111;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 80%;
}

body {
  background: var(--bg);
  color: var(--text);

  font-family: "Inter", sans-serif;

  line-height: 1.7;
  overflow-x: hidden;

  animation: fadeIn 0.4s ease;
}

img {
  width: 100%;
  display: block;
  object-fit: cover;
}

button,
.btn-gold,
.btn-outline {
  transition: 0.3s;
}

button:hover,
.btn-gold:hover,
.btn-outline:hover {
  transform: translateY(-2px);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

select {
  width: 100%;

  padding: 12px 15px;

  background: #1f2937;

  color: #fff;

  border: 1px solid #374151;

  border-radius: 10px;
}

select option {
  background: #1f2937;

  color: #fff;
}

p,
span {
  font-weight: 100;
}

/* =========================================
   SECTION FADE ANIMATION
========================================= */

.fade-section {
  opacity: 0;

  transform: translateY(80px);

  transition:
    opacity 1s ease,
    transform 1s ease;

  will-change: opacity, transform;
}

/* ACTIVE */

.fade-section.active {
  opacity: 1;

  transform: translateY(0);
}

/* DIFFERENT DELAYS */

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.25s;
}

.delay-3 {
  transition-delay: 0.4s;
}

.delay-4 {
  transition-delay: 0.55s;
}

section {
  padding: 80px 20px;
  position: relative;
}

section::before {
  content: "";

  position: absolute;

  top: 0;
  left: 50%;

  transform: translateX(-50%);

  width: 70%;
  height: 1px;

  background: linear-gradient(
    to right,
    transparent,
    rgba(212, 175, 55, 0.12),
    transparent
  );
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  color: #fff;
}

h2 {
  font-size: 32px;
  margin-bottom: 30px;
}

p,
span {
  color: var(--text-muted);
  font-family: "Inter", sans-serif;
}

a {
  text-decoration: none;
}

/* Header Styles */
a {
  text-decoration: none;
}

ul {
  list-style: none;
}
/*====================================
PRELOADER
====================================*/

#rezi-preloader {
  position: fixed;
  inset: 0;
  background: #0b0d11;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.8s ease;
}

#rezi-preloader.hide {
  opacity: 0;
  visibility: hidden;
}

.preloader-inner {
  text-align: center;
}

.preloader-inner img {
  width: 180px;
  max-width: 80%;
  margin-bottom: 30px;
}

.loader-bar{
    width:220px;
    height:4px;
    background:rgba(255,255,255,.08);
    border-radius:50px;
    overflow:hidden;
    position:relative;
    margin:auto;
}

.loader-bar span{
    position:absolute;
    top:0;
    left:-80px;
    width:80px;
    height:100%;
    background:#C9A96E;
    border-radius:50px;
    animation:loader 1.5s linear infinite;
}

@keyframes loader{

    from{
        left:-80px;
    }

    to{
        left:220px;
    }

}

/* =========================
    HEADER
========================= */

header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  transition: 0.4s ease;
}

/* =========================
    TOP BAR
========================= */

.top-bar {
  background: #0b0b0b;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 18px 40px;
  transition: 0.4s ease;
  overflow: hidden;
}

.top-bar-container {
  max-width: 1320px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.top-left {
  display: flex;
  align-items: center;
  gap: 35px;
  flex-wrap: wrap;
}

.top-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #bfbfbf;
  font-size: 13px;
}

.top-item i {
  color: #d4af37;
  font-size: 13px;
}

.top-right {
  display: flex;
  align-items: center;
  gap: 30px;
}

.socials {
  display: flex;
  gap: 18px;
}

.socials i {
  color: #bfbfbf;
  transition: 0.3s;
  cursor: pointer;
}

.socials i:hover {
  color: white;
}

.quote-btn {
  background: #a77b19;
  color: white;
  padding: 16px 30px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
  font-size: 12px;
  transition: 0.3s;
  white-space: nowrap;
}

.quote-btn:hover {
  background: #a77b19;
}

/* =========================
    NAVBAR
========================= */

.navbar {
  background: #070707;
  padding: 25px 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: 0.4s ease;
}

.nav-container {
  max-width: 1320px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO */

.logo,
.mobile-logo {
  color: white;
  font-size: 13px;
  font-weight: bold;
  transition: 0.4s ease;
}

.logo,
.mobile-logo {
  display: flex;

  align-items: center;
}

.logo img {
  width: 140px;

  height: auto;

  object-fit: contain;

  transition: 0.4s ease;
  transform: scale(1.2);
}

.mobile-logo img {
  width: 160px;

  height: auto;

  object-fit: contain;

  transition: 0.4s ease;
  transform: scale(1);
}

/* MENU */

.nav-menu {
  display: flex;
  align-items: center;
  gap: 35px;
}

.nav-menu > li > a {
  color: #d6d6d6;
  font-weight: bold;
  font-size: 15px;
  transition: 0.3s;
}

.nav-menu > li > a:hover {
  color: #d4af37;
}

.nav-menu > li > a.active {
  color: #d4af37;
}

/* =========================
    DESKTOP DROPDOWN
========================= */

.dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.dropdown-link {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dropdown-link > a {
  color: #d6d6d6;
  font-weight: bold;
  font-size: 15px;
  transition: 0.3s;
}

.dropdown-link > a:hover {
  color: #d4af37;
}

.dropdown-link i {
  color: #d6d6d6;
  font-size: 12px;
  transition: 0.3s;
  cursor: pointer;
}

/* SUBMENU */

.submenu {
  position: absolute;
  top: calc(100% + 35px);
  left: 0;
  width: 270px;
  background: #111111;
  border-top: 3px solid #d4af37;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: 0.35s ease;
  z-index: 999;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.submenu li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.submenu li:last-child {
  border-bottom: none;
}

.submenu li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  color: #d7d7d7;
  font-size: 13px;
  transition: 0.3s;
}

.submenu li a:hover {
  background: #181818;
  color: #d4af37;
  padding-left: 30px;
}

/* SHOW */

.dropdown:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown:hover .dropdown-link i {
  transform: rotate(180deg);
  color: #d4af37;
}

.dropdown:hover .dropdown-link > a {
  color: #d4af37;
}

/* NAV ICONS */

.nav-icons {
  display: flex;
  align-items: center;
  gap: 28px;
  color: white;
  font-size: 12px;
}

.nav-icons i {
  cursor: pointer;
  transition: 0.3s;
}

.nav-icons i:hover {
  color: #d4af37;
}

/* =========================
    SCROLL EFFECT
========================= */

header.scrolled .top-bar {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
  border-bottom: none;
}

header.scrolled .navbar {
  padding: 18px 40px;
  background: #070707;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

header.scrolled .logo {
  font-size: 12px;
}

/* =========================
    MOBILE HEADER
========================= */

.mobile-header {
  display: none;
  background: #070707;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
}

/* TOP INFO */

.mobile-top {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.toggle-info {
  color: white;
  font-size: 12px;
  cursor: pointer;
  width: 30px;
}

.mobile-contact {
  display: none;
  flex-direction: column;
  gap: 22px;
  margin-top: 20px;
}

.mobile-contact.active {
  display: flex;
}

/* MOBILE MAIN */

.mobile-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.mobile-logo {
  color: white;
  font-size: 13px;
  font-weight: bold;
}

.mobile-logo span {
  color: #d4af37;
}

.mobile-icons {
  display: flex;
  align-items: center;
  gap: 22px;
  color: white;
  font-size: 18px;
}

.mobile-icons i {
  cursor: pointer;
}

.menu-toggle {
  cursor: pointer;
}

/* =========================
    MOBILE MENU
========================= */

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: #070707;
  z-index: 99999;
  transition: 0.4s ease;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

/* MENU TOP */

.mobile-menu-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.close-menu {
  color: white;
  font-size: 12px;
  cursor: pointer;
}

/* LINKS */

.mobile-links {
  width: 100%;
}

.mobile-links > a {
  display: block;
  padding: 28px 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: #d6d6d6;
  font-size: 12px;
  font-weight: bold;
}

/* =========================
    MOBILE DROPDOWN
========================= */

.mobile-dropdown {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-dropdown-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 25px;
}

.mobile-dropdown-top a {
  color: #d6d6d6;
  font-size: 12px;
  font-weight: bold;
}

.mobile-arrow {
  color: #d6d6d6;
  font-size: 12px;
  transition: 0.3s;
  cursor: pointer;
}

.mobile-submenu {
  display: none;
  background: #0b0b0b;
}

.mobile-submenu a {
  display: block;
  padding: 18px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: #d6d6d6;
  font-size: 12px;
}

.mobile-dropdown.active .mobile-submenu {
  display: block;
}

.mobile-dropdown.active .mobile-arrow {
  transform: rotate(90deg);
  color: #d4af37;
}

.mobile-links a.active {
  color: #d4af37;
}

/* =========================
    RESPONSIVE
========================= */

@media (max-width: 1200px) {
  .nav-menu {
    gap: 22px;
  }

  .nav-menu > li > a,
  .dropdown-link > a {
    font-size: 19px;
  }
}

@media (max-width: 991px) {
  body {
    padding-top:;
  }

  .top-bar,
  .navbar {
    display: none;
  }

  .mobile-header {
    display: block;
  }
}

@media (max-width: 600px) {
  .quote-btn {
    padding: 13px 18px;
    font-size: 12px;
  }

  .mobile-logo {
    font-size: 13px;
  }

  .mobile-links > a,
  .mobile-dropdown-top a {
    font-size: 16px;
  }
}

/* ==========================
   FOOTER
========================== */

.rezi-footer {
  position: relative;

  background: url("https://images.unsplash.com/photo-1518770660439-4636190af475?q=80&w=2000")
    center center/cover no-repeat;

  color: #fff;
}

.rezi-footer-overlay {
  position: absolute;

  inset: 0;

  background: linear-gradient(rgba(11, 16, 21, 0.92), rgba(11, 16, 21, 0.95));
}

.rezi-footer-container {
  position: relative;

  z-index: 2;

  width: min(1400px, 90%);

  margin: auto;

  padding: 100px 0 70px;

  display: grid;

  grid-template-columns:
    1.4fr
    1fr
    1fr
    1.2fr;

  gap: 50px;
}

/* HEADINGS */

.rezi-footer h3 {
  margin-bottom: 25px;

  color: #fff;

  font-size: 24px;
}

/* ABOUT */

.footer-about img {
  max-width: 220px;

  margin-bottom: 25px;
}

.footer-about p {
  color: #bdbdbd;

  line-height: 2;
}

/* LINKS */

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: #bdbdbd;

  text-decoration: none;

  transition: 0.3s;
}

.footer-links a:hover {
  color: var(--primary-color);

  padding-left: 8px;
}

/* HOURS */

.footer-hours ul {
  list-style: none;
}

.footer-hours li {
  display: flex;

  justify-content: space-between;

  gap: 20px;

  padding: 12px 0;

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);

  color: #bdbdbd;
}

/* CONTACT */

.footer-contact p {
  margin-bottom: 18px;

  color: #bdbdbd;
}

.footer-contact i {
  color: var(--primary-color);

  margin-right: 10px;
}

.footer-phone {
  font-size: 32px;

  font-weight: 700;

  color: #fff !important;

  margin-top: 20px;
}

/* SOCIALS */

.footer-socials {
  display: flex;

  gap: 12px;

  margin-top: 25px;
}

.footer-socials a {
  width: 45px;

  height: 45px;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  background: rgba(255, 255, 255, 0.08);

  color: #fff;

  text-decoration: none;

  transition: 0.3s;
}

.footer-socials a:hover {
  background: var(--primary-color);

  color: #111;
}

/* BOTTOM */

.footer-bottom {
  position: relative;

  z-index: 2;

  border-top: 1px solid rgba(255, 255, 255, 0.08);

  width: min(1400px, 90%);

  margin: auto;

  padding: 25px 0;

  display: flex;

  justify-content: space-between;

  align-items: center;

  color: #999;
}

/* TABLET */

@media (max-width: 991px) {
  .rezi-footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */

@media (max-width: 768px) {
  .rezi-footer-container {
    grid-template-columns: 1fr;

    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;

    gap: 10px;

    text-align: center;
  }

  .footer-phone {
    font-size: 24px;
  }
}

/*---------------------*
 *   FRONT PAGE STYYE END
 *---------------------*/

/* =========================
   BOOKING PAGE
========================= */

.rezi-booking-page {
  position: relative;

  width: 100%;

  padding: 160px 6%;

  background: linear-gradient(180deg, #0b0b0c, #111214);

  overflow: hidden;
}

/* =========================
   OVERLAY
========================= */

.rezi-booking-overlay {
  position: absolute;

  inset: 0;

  background: radial-gradient(
    circle at top right,
    rgba(212, 175, 95, 0.08),
    transparent 40%
  );
}

/* =========================
   HERO
========================= */

.rezi-booking-hero {
  position: relative;

  z-index: 5;

  text-align: center;

  max-width: 950px;

  margin: 0 auto 90px;
  padding-top: 60px;
}

/* SMALL */

.rezi-booking-hero span {
  display: inline-block;

  margin-bottom: 22px;

  color: #d4af5f;

  font-size: 13px;
  font-weight: 600;

  letter-spacing: 3px;

  text-transform: uppercase;
}

/* TITLE */

.rezi-booking-hero h1 {
  color: #f5f1eb;

  font-size: 82px;
  line-height: 1.02;

  margin-bottom: 30px;

  font-weight: 600;
}

/* TEXT */

.rezi-booking-hero p {
  color: #9e9e9e;

  font-size: 18px;
  line-height: 2;

  max-width: 760px;

  margin: auto;
}

/* =========================
   CONTAINER
========================= */

.rezi-booking-container {
  position: relative;

  z-index: 5;

  display: grid;

  grid-template-columns: 1fr 700px;

  gap: 50px;

  align-items: start;

  max-width: 1500px;

  margin: auto;
}

/* =========================
   FORM SIDE
========================= */

.rezi-booking-form-side {
  padding: 50px;

  background: rgba(255, 255, 255, 0.03);

  backdrop-filter: blur(10px);

  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* TOP */

.rezi-form-top {
  margin-bottom: 45px;
}

.rezi-form-top span {
  display: inline-block;

  margin-bottom: 16px;

  color: #d4af5f;

  font-size: 13px;
  font-weight: 600;

  letter-spacing: 3px;

  text-transform: uppercase;
}

.rezi-form-top h2 {
  color: #f5f1eb;

  font-size: 46px;

  line-height: 1.1;
}

/* =========================
   FORM
========================= */

.rezi-booking-form {
  display: flex;

  flex-direction: column;

  gap: 24px;
}

/* =========================
   DATE ICON
========================= */

input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1);

  cursor: pointer;

  opacity: 1;
}

/* =========================
   TIME ICON
========================= */

input[type="time"]::-webkit-calendar-picker-indicator {
  filter: invert(1);

  cursor: pointer;

  opacity: 1;
}

/* GRID */

.rezi-form-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 24px;
}

/* INPUT GROUP */

.rezi-input-group {
  display: flex;

  flex-direction: column;
}

/* LABEL */

.rezi-input-group label {
  margin-bottom: 12px;

  color: #f5f1eb;

  font-size: 14px;
}

/* INPUTS */

.rezi-input-group input,
.rezi-input-group select,
.rezi-input-group textarea {
  width: 100%;

  padding: 18px 20px;

  background: #151515;

  border: 1px solid rgba(255, 255, 255, 0.06);

  outline: none;

  color: #fff;

  font-size: 15px;

  transition: 0.35s ease;
}

/* TEXTAREA */

.rezi-input-group textarea {
  min-height: 160px;

  resize: none;
}

/* FOCUS */

.rezi-input-group input:focus,
.rezi-input-group select:focus,
.rezi-input-group textarea:focus {
  border-color: rgba(212, 175, 95, 0.4);
}

/* BUTTON */

.rezi-submit-btn {
  width: 100%;

  padding: 20px;

  background: #d4af5f;

  border: none;

  color: #111;

  font-size: 15px;
  font-weight: 600;

  cursor: pointer;

  transition: 0.35s ease;

  margin-top: 10px;
}

.rezi-submit-btn:hover {
  opacity: 0.9;
}

/* =========================
   SUCCESS BOX
========================= */

.booking-success-box {
  padding: 22px;

  border-radius: 14px;

  margin-top: 20px;

  background: linear-gradient(
    135deg,
    rgba(34, 197, 94, 0.12),
    rgba(22, 163, 74, 0.06)
  );

  border: 1px solid rgba(34, 197, 94, 0.25);

  box-shadow: 0 10px 35px rgba(34, 197, 94, 0.08);
}

/* ICON */

.booking-success-icon {
  width: 55px;
  height: 55px;

  min-width: 55px;

  border-radius: 50%;

  display: flex;

  align-items: center;
  justify-content: center;

  background: linear-gradient(135deg, #22c55e, #16a34a);

  color: #fff;

  font-size: 24px;

  font-weight: bold;

  box-shadow: 0 10px 25px rgba(34, 197, 94, 0.25);
}

/* TITLE */

.booking-success-content h4 {
  color: #4ade80;

  font-size: 20px;

  margin-bottom: 6px;
}

/* TEXT */

.booking-success-content p {
  color: #d1fae5;

  font-size: 15px;

  margin: 0;
}

/* REFERENCE */

.booking-success-content strong {
  color: #fff;
}

.booking-success-text {
  margin-top: 12px;
  line-height: 1.8;
  color: #d1fae5;
}

.booking-account-box {
  margin-top: 20px;

  padding: 20px;

  background: rgba(255, 255, 255, 0.04);

  border: 1px solid rgba(255, 255, 255, 0.08);

  border-radius: 12px;
}

.booking-account-box h5 {
  color: #fff;

  margin-bottom: 10px;

  font-size: 18px;
}

.booking-account-box p {
  color: #cfcfcf;

  line-height: 1.7;

  margin-bottom: 15px;
}

.booking-account-btn {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  padding: 12px 24px;

  background: #d4af5f;

  color: #111;

  text-decoration: none;

  font-weight: 600;

  transition: 0.3s;
}

.booking-account-btn:hover {
  opacity: 0.9;
}

/* =========================
   IMAGE SIDE
========================= */

.rezi-booking-image {
  position: sticky;

  top: 120px;

  overflow: hidden;

  min-height: 850px;
}

.rezi-booking-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  position: absolute;

  inset: 0;
}

/* CARD */

.rezi-booking-card {
  position: absolute;

  left: 35px;
  bottom: 35px;

  width: calc(100% - 70px);

  padding: 34px;

  background: rgba(0, 0, 0, 0.55);

  backdrop-filter: blur(10px);

  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* SMALL */

.rezi-booking-card span {
  display: inline-block;

  margin-bottom: 14px;

  color: #d4af5f;

  font-size: 12px;

  letter-spacing: 2px;

  text-transform: uppercase;
}

/* TITLE */

.rezi-booking-card h3 {
  color: #f5f1eb;

  font-size: 34px;
  line-height: 1.2;

  margin-bottom: 20px;
}

/* TEXT */

.rezi-booking-card p {
  color: #c4c4c4;

  line-height: 1.9;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {
  .rezi-booking-container {
    grid-template-columns: 1fr;
  }

  .rezi-booking-image {
    position: relative;

    top: 0;

    min-height: 600px;
  }
}

@media (max-width: 768px) {
  .rezi-booking-hero h1 {
    font-size: 46px;
  }

  .rezi-booking-hero p {
    font-size: 15px;
  }

  .rezi-form-top h2 {
    font-size: 34px;
  }

  .rezi-form-grid {
    grid-template-columns: 1fr;
  }

  .rezi-booking-form-side {
    padding: 35px 24px;
  }
}

@media (max-width: 480px) {
  .rezi-booking-hero h1 {
    font-size: 36px;
  }

  .rezi-booking-card {
    left: 20px;
    bottom: 10px;
    width: calc(100% - 40px);
    height: auto;
  }

  .rezi-booking-card h3 {
    font-size: 25px;
    margin-bottom: 12px;
  }
}

/* =========================
   CONTACT PAGE
========================= */

.rezi-contact-page {
  width: 100%;

  background: #0b0b0c;
}

/* =========================
   HERO
========================= */

.rezi-contact-hero {
  position: relative;

  min-height: 80vh;

  display: flex;
  align-items: center;
  justify-content: center;

  padding-top: 180px;

  background: url("images/contact-hero.jpg") center/cover;

  overflow: hidden;
}

/* OVERLAY */

.rezi-contact-overlay {
  position: absolute;

  inset: 0;

  /* background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.78)); */
}

/* CONTENT */

.rezi-contact-hero-content {
  position: relative;

  z-index: 5;

  max-width: 950px;

  text-align: center;
}

/* SMALL */

.rezi-contact-hero-content span {
  display: inline-block;

  margin-bottom: 20px;

  color: #d4af5f;

  font-size: 13px;
  font-weight: 600;

  letter-spacing: 3px;

  text-transform: uppercase;
}

/* TITLE */

.rezi-contact-hero-content h1 {
  color: #f5f1eb;

  font-size: 82px;
  line-height: 1.02;

  margin-bottom: 30px;
}

/* TEXT */

.rezi-contact-hero-content p {
  color: #c4c4c4;

  font-size: 18px;
  line-height: 2;

  max-width: 760px;

  margin: auto;
}

/* =========================
   CONTACT SECTION
========================= */

.rezi-contact-section {
  padding: 120px 6%;
}

/* CONTAINER */

.rezi-contact-container {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 60px;

  align-items: start;
}

/* =========================
   CONTACT ITEM
========================= */

.rezi-contact-item {
  display: flex;

  align-items: flex-start;

  gap: 20px;

  padding-bottom: 28px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* ICON */

.rezi-contact-icon {
  min-width: 58px;
  height: 58px;

  border-radius: 50%;

  background: rgba(212, 175, 95, 0.1);

  border: 1px solid rgba(212, 175, 95, 0.18);

  display: flex;
  align-items: center;
  justify-content: center;

  color: #d4af5f;

  font-size: 20px;

  transition: 0.35s ease;
}

/* HOVER */

.rezi-contact-item:hover .rezi-contact-icon {
  background: #d4af5f;

  color: #111;

  transform: translateY(-3px);
}

/* TEXT */

.rezi-contact-text h3 {
  color: #f5f1eb;

  font-size: 22px;

  margin-bottom: 10px;
}

.rezi-contact-text p {
  color: #9e9e9e;

  line-height: 1.8;
}

/* =========================
   INFO SIDE
========================= */

.rezi-contact-info span {
  display: inline-block;

  margin-bottom: 18px;

  color: #d4af5f;

  letter-spacing: 3px;

  text-transform: uppercase;

  font-size: 13px;
}

/* TITLE */

.rezi-contact-info h2 {
  color: #f5f1eb;

  font-size: 60px;
  line-height: 1.08;

  margin-bottom: 28px;
}

/* TEXT */

.rezi-contact-info > p {
  color: #9e9e9e;

  line-height: 2;

  margin-bottom: 50px;
}

/* ITEMS */

.rezi-contact-items {
  display: flex;

  flex-direction: column;

  gap: 28px;
}

/* ITEM */

.rezi-contact-item {
  padding-bottom: 24px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.rezi-contact-item h3 {
  color: #f5f1eb;

  font-size: 22px;

  margin-bottom: 10px;
}

.rezi-contact-item p {
  color: #9e9e9e;
}

/* =========================
   FORM SIDE
========================= */

.rezi-contact-form-side {
  padding: 50px;

  background: linear-gradient(180deg, #151515, #101010);

  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* TOP */

.rezi-form-top {
  margin-bottom: 40px;
}

.rezi-form-top span {
  display: inline-block;

  margin-bottom: 16px;

  color: #d4af5f;

  letter-spacing: 3px;

  text-transform: uppercase;

  font-size: 13px;
}

.rezi-form-top h2 {
  color: #f5f1eb;

  font-size: 42px;
}

/* FORM */

.rezi-contact-form {
  display: flex;

  flex-direction: column;

  gap: 24px;
}

/* GRID */

.rezi-contact-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 24px;
}

/* INPUT GROUP */

.rezi-input-group {
  display: flex;

  flex-direction: column;
}

/* LABEL */

.rezi-input-group label {
  margin-bottom: 12px;

  color: #f5f1eb;

  font-size: 14px;
}

/* INPUTS */

.rezi-input-group input,
.rezi-input-group select,
.rezi-input-group textarea {
  width: 100%;

  padding: 18px 20px;

  background: #0f0f0f;

  border: 1px solid rgba(255, 255, 255, 0.06);

  color: #fff;

  outline: none;

  transition: 0.35s ease;
}

/* FOCUS */

.rezi-input-group input:focus,
.rezi-input-group select:focus,
.rezi-input-group textarea:focus {
  border-color: rgba(212, 175, 95, 0.35);
}

/* TEXTAREA */

.rezi-input-group textarea {
  min-height: 180px;

  resize: none;
}

/* BUTTON */

.rezi-contact-btn {
  width: 100%;

  padding: 20px;

  background: #d4af5f;

  border: none;

  color: #111;

  font-weight: 600;

  cursor: pointer;
}

/* =========================
   QUICK SERVICES
========================= */

.rezi-quick-services {
  padding: 0 6% 120px;
}

/* TOP */

.rezi-quick-top {
  text-align: center;

  margin-bottom: 70px;
}

.rezi-quick-top span {
  display: inline-block;

  margin-bottom: 18px;

  color: #d4af5f;

  letter-spacing: 3px;

  text-transform: uppercase;

  font-size: 13px;
}

.rezi-quick-top h2 {
  color: #f5f1eb;

  font-size: 60px;
  line-height: 1.08;
}

/* GRID */

.rezi-quick-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 28px;
}

/* CARD */

.rezi-quick-card {
  padding: 40px;

  background: linear-gradient(180deg, #151515, #101010);

  border: 1px solid rgba(255, 255, 255, 0.05);

  transition: 0.35s ease;
}

.rezi-quick-card:hover {
  transform: translateY(-5px);

  border-color: rgba(212, 175, 95, 0.25);
}

.rezi-quick-card h3 {
  color: #f5f1eb;

  font-size: 30px;

  margin-bottom: 18px;
}

.rezi-quick-card p {
  color: #9e9e9e;

  line-height: 1.9;

  margin-bottom: 28px;
}

.rezi-quick-card a {
  color: #d4af5f;

  text-decoration: none;
}

/* =========================
   FINAL CTA
========================= */

.rezi-contact-cta {
  position: relative;

  padding: 140px 6%;

  overflow: hidden;

  background: linear-gradient(180deg, #111214, #0b0b0c);
}

/* OVERLAY */

.rezi-contact-cta-overlay {
  position: absolute;

  inset: 0;

  background: radial-gradient(
    circle at center,
    rgba(212, 175, 95, 0.08),
    transparent 55%
  );
}

/* CONTENT */

.rezi-contact-cta-content {
  position: relative;

  z-index: 5;

  max-width: 900px;

  margin: auto;

  text-align: center;
}

/* SMALL */

.rezi-contact-cta-content span {
  display: inline-block;

  margin-bottom: 18px;

  color: #d4af5f;

  font-size: 13px;

  letter-spacing: 3px;

  text-transform: uppercase;
}

/* TITLE */

.rezi-contact-cta-content h2 {
  color: #f5f1eb;

  font-size: 74px;
  line-height: 1.05;

  margin-bottom: 28px;
}

/* TEXT */

.rezi-contact-cta-content p {
  color: #9e9e9e;

  line-height: 2;

  margin-bottom: 42px;
}

/* BUTTONS */

.rezi-contact-cta-buttons {
  display: flex;
  justify-content: center;

  gap: 18px;

  flex-wrap: wrap;
}

/* BUTTON */

.rezi-contact-cta-btn {
  min-width: 220px;

  padding: 18px 34px;

  text-decoration: none;

  transition: 0.35s ease;
}

/* PRIMARY */

.rezi-contact-cta-btn.primary {
  background: #d4af5f;

  color: #111;
}

/* SECONDARY */

.rezi-contact-cta-btn.secondary {
  background: rgba(255, 255, 255, 0.03);

  border: 1px solid rgba(255, 255, 255, 0.12);

  color: #f5f1eb;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {
  .rezi-contact-container,
  .rezi-quick-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 785px) {
  .rezi-contact-hero-content h1 {
    font-size: 46px;
  }
  .rezi-contact-hero-content p {
    font-size: 15px;
  }
  .rezi-contact-info h2,
  .rezi-quick-top h2,
  .rezi-contact-cta-content h2 {
    font-size: 38px;
  }

  .rezi-contact-grid {
    grid-template-columns: 1fr;
  }

  .rezi-contact-form-side {
    padding: 35px 24px;
  }

  .rezi-contact-cta-btn {
    width: 100%;

    text-align: center;
  }
  .rezi-contact-section,
  .rezi-quick-services,
  .rezi-contact-cta {
    zoom: 90%;
  }
}

@media (max-width: 480px) {
  .rezi-contact-hero-content h1 {
    font-size: 36px;
  }

  .rezi-contact-info h2,
  .rezi-quick-top h2,
  .rezi-contact-cta-content h2 {
    font-size: 30px;
  }
}

/* =========================
CAREERS HERO
========================= */

.rezi-careers-hero {
  position: relative;

  min-height: 100vh;

  display: flex;

  align-items: center;

  justify-content: center;

  overflow: hidden;
}

.rezi-careers-video {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  object-fit: cover;
}

.rezi-careers-overlay {
  position: absolute;

  inset: 0;

  background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(15, 15, 15, 0.95));
}

.rezi-careers-content {
  position: relative;

  z-index: 10;

  text-align: center;

  max-width: 900px;

  padding: 0 20px;
}

.rezi-careers-content span {
  color: #d4af37;

  text-transform: uppercase;

  letter-spacing: 4px;

  font-size: 13px;
}

.rezi-careers-content h1 {
  color: #fff;

  font-size: clamp(3rem, 8vw, 6rem);

  line-height: 1;

  margin: 25px 0;
}

.rezi-careers-content p {
  color: rgba(255, 255, 255, 0.75);

  font-size: 20px;

  line-height: 1.8;

  max-width: 700px;

  margin: auto;
  font-weight: 100;
}

@media (max-width: 500px) {
  .rezi-careers-content p {
    font-size: 16px;
  }
}
.rezi-careers-btn {
  margin-top: 40px;

  height: 62px;

  padding: 0 40px;

  border: none;

  border-radius: 100px;

  background: linear-gradient(135deg, #d4af37, #b89028);

  color: #111;

  font-weight: 700;

  cursor: pointer;

  transition: 0.3s;
}

.rezi-careers-btn:hover {
  transform: translateY(-4px);
}

/* =========================
MODAL
========================= */

.rezi-careers-modal {
  position: fixed;

  inset: 0;

  background: rgba(0, 0, 0, 0.85);

  display: none;

  align-items: center;

  justify-content: center;

  z-index: 99999;
}

.rezi-careers-modal.active {
  display: flex;
}

.rezi-careers-modal-box {
  width: min(800px, 90%);

  background: #151515;

  border-radius: 10px;

  padding: 40px;

  border: 1px solid rgba(212, 175, 55, 0.15);
}

.rezi-careers-modal-header {
  display: flex;

  justify-content: space-between;

  align-items: baseline;
}

.rezi-careers-modal-header h2 {
  color: #fff;
  font-size: 25px;
}

.rezi-careers-modal-header span {
  color: #fff;

  font-size: 30px;

  cursor: pointer;
}

.rezi-careers-job {
  display: flex;

  justify-content: space-between;

  align-items: center;

  padding: 24px 0;

  text-decoration: none;

  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.rezi-careers-job h3 {
  color: #fff;

  margin-bottom: 8px;
}

.rezi-careers-job span {
  color: rgba(255, 255, 255, 0.6);
}

.rezi-careers-job i {
  color: #d4af37;
}

.rezi-job-layout {
  display: grid;

  grid-template-columns: 2fr 1fr;

  gap: 40px;
}

.rezi-job-banner {
  height: 500px;

  border-radius: 30px;

  overflow: hidden;

  margin-bottom: 40px;
}

.rezi-job-banner img {
  width: 100%;

  height: 100%;

  object-fit: cover;
}

.rezi-job-info-card,
.rezi-job-section-card,
.rezi-job-sidebar-card {
  background: #151515;

  padding: 40px;

  border-radius: 24px;

  border: 1px solid rgba(212, 175, 55, 0.08);

  margin-bottom: 30px;
}

.rezi-job-info-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 30px;
}

.rezi-job-info-grid label {
  display: block;

  color: rgba(255, 255, 255, 0.55);

  margin-bottom: 10px;
}

.rezi-job-info-grid p {
  color: #fff;

  font-weight: 600;
}

.rezi-related-job {
  display: block;

  padding: 15px 0;

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);

  color: #fff;

  text-decoration: none;
}

.rezi-job-cta {
  padding: 120px 0;

  text-align: center;
}

@media (max-width: 991px) {
  .rezi-job-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .rezi-job-info-grid {
    grid-template-columns: 1fr;
  }

  .rezi-job-banner {
    height: 300px;
  }
}

/* =========================
REZI PREMIUM PAGE HERO
========================= */

.page-banner {
  position: relative;

  min-height: 650px;

  display: flex;

  align-items: center;

  justify-content: center;

  text-align: center;

  overflow: hidden;

  background:
    linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.85)),
    url("../images/career-banner.jpg");

  background-size: cover;
  background-position: center;
  padding-top: 145px;
}

/* DARK GLASS OVERLAY */

.page-banner::before {
  content: "";

  position: absolute;

  inset: 0;

  background: radial-gradient(
    circle at top,
    rgba(212, 175, 55, 0.08),
    transparent 60%
  );
}

/* CONTENT */

.page-banner-content {
  position: relative;

  z-index: 2;

  max-width: 900px;

  padding: 0 20px;
}

/* SMALL LABEL */

.page-banner-content::before {
  content: "CAREERS";

  display: block;

  color: #d4af37;

  letter-spacing: 5px;

  font-size: 13px;

  font-weight: 600;

  margin-bottom: 25px;
}

/* TITLE */

.page-banner-content h1 {
  color: #fff;

  font-size: clamp(3rem, 7vw, 5.5rem);

  line-height: 1.5;

  margin-bottom: 20px;

  font-weight: 700;
}

/* SUBTEXT */

.page-banner-content p {
  max-width: 700px;

  margin: auto;

  color: rgba(255, 255, 255, 0.72);

  font-size: 18px;

  line-height: 1.8;

  margin-bottom: 35px;
}

/* BREADCRUMB */

.page-breadcrumb {
  display: inline-flex;

  align-items: center;

  gap: 12px;

  padding: 12px 25px;

  border-radius: 100px;

  background: rgba(255, 255, 255, 0.04);

  backdrop-filter: blur(12px);

  border: 1px solid rgba(212, 175, 55, 0.1);
}

.page-breadcrumb a {
  color: #d4af37;

  font-size: 14px;

  font-weight: 600;
}

.page-breadcrumb span {
  color: rgba(255, 255, 255, 0.6);

  font-size: 14px;
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .page-banner {
    height: 220px;
  }

  .page-banner-content h1 {
    font-size: 42px;
  }

  .page-breadcrumb a,
  .page-breadcrumb span {
    font-size: 15px;
  }
}

@media (max-width: 500px) {
  .page-banner-content h1 {
    font-size: 30px;
  }

  .page-banner-content p {
    font-size: 15px;
  }
}
/* =========================
REZI CAREERS APPLICATION
========================= */

.career-form-section {
  background: #0f0f0f;

  padding: 20px 20px;
}

/* SUMMARY */

.career-job-summary {
  max-width: 1200px;

  margin: 0 auto 40px;

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 20px;
  zoom: 90%;
}

.career-summary-card {
  background: #151515;

  border: 1px solid rgba(212, 175, 55, 0.08);

  border-radius: 14px;

  padding: 30px;
}

.career-summary-card span {
  display: block;

  color: rgba(255, 255, 255, 0.6);

  font-size: 14px;

  margin-bottom: 12px;
}

.career-summary-card h3 {
  color: #fff;

  font-size: 20px;
}

/* FORM WRAPPER */

.career-form-wrapper {
  max-width: 1200px;

  margin: auto;

  background: #151515;

  border: 1px solid rgba(212, 175, 55, 0.08);

  border-radius: 14px;

  overflow: hidden;
  zoom: 90%;
}

/* HEADER */

.career-form-header {
  padding: 40px;

  border-bottom: 1px solid rgba(212, 175, 55, 0.08);
}

.career-form-header h2 {
  color: #fff;

  font-size: 52px;

  line-height: 1;
}

/* FORM */

.career-form {
  padding: 50px;
}

/* GRID */

.form-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 25px;
}

/* GROUP */

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;

  color: rgba(255, 255, 255, 0.65);

  font-size: 15px;

  margin-bottom: 12px;
}

/* INPUTS */

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;

  background: #0b0b0b;

  border: 1px solid rgba(255, 255, 255, 0.08);

  border-radius: 16px;

  padding: 18px 20px;

  color: #fff;

  font-size: 15px;

  transition: 0.3s;
}

/* FOCUS */

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #d4af37;

  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.08);
}

/* TEXTAREA */

.form-group textarea {
  min-height: 220px;

  resize: vertical;
}

/* FULL WIDTH */

.full-width {
  grid-column: 1/-1;
}

/* FILE */

.file-upload {
  background: #0b0b0b;

  border: 2px dashed rgba(212, 175, 55, 0.25);

  padding: 30px;

  border-radius: 20px;
}

/* BUTTON */

.career-submit-btn {
  height: 60px;

  padding: 0 45px;

  border: none;

  border-radius: 100px;

  background: linear-gradient(135deg, #d4af37, #b89028);

  color: #111;

  font-weight: 700;

  cursor: pointer;

  transition: 0.3s;
}

.career-submit-btn:hover {
  transform: translateY(-4px);

  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.25);
}

/* MOBILE */

@media (max-width: 991px) {
  .career-job-summary {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .career-form-header h2 {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .career-job-summary {
    grid-template-columns: 1fr;
  }

  .career-form {
    padding: 25px;
  }

  .career-form-header {
    padding: 25px;
  }

  .career-form-header h2 {
    font-size: 32px;
  }
}

/*==========================
qoute APPLICATION SUCCESS
==========================*/

.rezi-quote-hero {
  position: relative;
  min-height: 500px;
  padding-top: 180px;
  display: flex;
  align-items: center;
  background: url("../images/quote-banner.jpg") center/cover;
}

.rezi-quote-overlay {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.85)); */
}

.rezi-quote-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.rezi-quote-hero-content span {
  color: #d4af37;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.rezi-quote-hero-content h1 {
  color: #fff;
  font-size: 52px;
  line-height: 1;
  margin: 20px 0;
}

.rezi-quote-hero-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 1.8;
}

.rezi-quote-page {
  padding: 50px 0;

  background: #0b0b0b;
}

.rezi-quote-grid {
  display: grid;

  grid-template-columns:
    1.2fr
    0.8fr;

  gap: 70px;

  align-items: start;
}

.rezi-quote-tag {
  color: #d4af37;

  letter-spacing: 3px;

  text-transform: uppercase;
}

.rezi-quote-left h1 {
  color: #fff;

  font-size: 72px;

  line-height: 1;

  margin: 20px 0 50px;
}

.rezi-form-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 20px;

  margin-bottom: 20px;
}

.rezi-field input,
.rezi-field select,
.rezi-field textarea {
  width: 100%;

  background: #151515;

  border: 1px solid rgba(212, 175, 55, 0.08);

  height: 65px;

  padding: 0 25px;

  color: #fff;

  border-radius: 18px;
}

.rezi-field textarea {
  height: auto;

  padding: 20px;
}

.rezi-upload {
  background: #151515;

  border: 2px dashed rgba(212, 175, 55, 0.15);

  padding: 40px;

  border-radius: 20px;

  margin: 20px 0;
}

.rezi-submit-btn {
  width: 100%;

  height: 65px;

  border: none;

  border-radius: 100px;

  background: linear-gradient(135deg, #d4af37, #b89028);

  color: #111;

  font-weight: 700;

  cursor: pointer;
}

.rezi-quote-right img {
  width: 100%;

  border-radius: 30px;

  display: block;
}

.rezi-consultation-card {
  background: #111;
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 24px;
  padding: 40px;
}

.rezi-consultation-card h3 {
  color: #fff;
  margin-bottom: 15px;
}

.rezi-consultation-card p {
  color: #aaa;
  margin-bottom: 25px;
}

.rezi-contact-item {
  color: #fff;
  margin-bottom: 20px;
}

.rezi-contact-item i {
  color: #d4af37;
  margin-right: 10px;
}

.rezi-call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 55px;
  border-radius: 100px;
  background: linear-gradient(135deg, #d4af37, #b89028);
  color: #111;
  font-weight: 700;
}
.rezi-side-image {
  margin-bottom: 30px;
}

.rezi-side-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 24px;
}
.rezi-quote-form input,
.rezi-quote-form select,
.rezi-quote-form textarea {
  transition: 0.3s;
}

.rezi-quote-form input:focus,
.rezi-quote-form select:focus,
.rezi-quote-form textarea:focus {
  border-color: #d4af37;

  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.12);
}

@media (max-width: 991px) {
  .rezi-quote-grid {
    grid-template-columns: 1fr;
  }

  .rezi-form-grid {
    grid-template-columns: 1fr;
  }

  .rezi-quote-left h1 {
    font-size: 48px;
  }
}

@media (max-width: 520px) {
  .rezi-quote-hero-content h1 {
    font-size: 32px;
  }
  .rezi-quote-hero-content p {
    font-size: 14px;
  }
  .rezi-quote-left h1 {
    font-size: 28px;
  }
}
/* register page */

.body-register {
  font-family: Arial, Helvetica, sans-serif;
  background: #181818;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding-top: 145px;
}

/* =========================
   REGISTER SECTION
========================= */

.rezi-register-section {
  width: 100%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #111111;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

/* =========================
   LEFT SIDE
========================= */

.rezi-register-left {
  background: linear-gradient(135deg, #d4af37, #0b0b0c);
  padding: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.rezi-register-left::before {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  top: -80px;
  right: -80px;
}

.rezi-register-left::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  bottom: -60px;
  left: -60px;
}

.rezi-register-badge {
  background: rgba(255, 255, 255, 0.12);
  width: fit-content;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 14px;
  margin-bottom: 25px;
  backdrop-filter: blur(10px);
}

.rezi-register-left h1 {
  font-size: 52px;
  line-height: 1.1;
  margin-bottom: 25px;
}

.rezi-register-left p {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

/* =========================
   RIGHT SIDE
========================= */

.rezi-register-right {
  padding: 70px;
  background: #000000;
}

.rezi-form-top {
  margin-bottom: 40px;
}

.rezi-form-top h2 {
  font-size: 34px;
  margin-bottom: 10px;
}

.rezi-form-top p {
  color: #94a3b8;
  line-height: 1.6;
}

/* =========================
   FORM
========================= */

.rezi-register-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.rezi-form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rezi-form-group label {
  font-size: 14px;
  color: #cbd5e1;
}

.rezi-form-group input {
  height: 58px;
  background: #090909;
  border: 1px solid #453f31;
  border-radius: 16px;
  padding: 0 20px;
  color: #fff;
  font-size: 15px;
  outline: none;
  transition: 0.3s;
}

.rezi-register-btn {
  height: 60px;
  border: none;
  border-radius: 18px;
  background: linear-gradient(135deg, #d4af37, #9c9c9c);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  margin-top: 10px;
}

.rezi-register-btn:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

/* =========================
   ALERTS
========================= */

.rezi-alert {
  padding: 16px 18px;
  border-radius: 14px;
  margin-bottom: 25px;
  font-size: 14px;
  line-height: 1.5;
}

.rezi-alert-error {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.25);
  color: #fca5a5;
}

.rezi-alert-success {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.25);
  color: #86efac;
}

/* =========================
   LOGIN LINK
========================= */

.rezi-login-link {
  margin-top: 30px;
  text-align: center;
  color: #94a3b8;
  font-size: 15px;
}

.rezi-login-link a {
  color: #d4af37;
  text-decoration: none;
  font-weight: 600;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 950px) {
  .rezi-register-section {
    grid-template-columns: 1fr;
  }

  .rezi-register-left {
    padding: 50px 35px;
  }

  .rezi-register-left h1 {
    font-size: 40px;
  }

  .rezi-register-right {
    padding: 40px 25px;
  }
}

@media (max-width: 500px) {
  body {
    padding:;
  }

  .rezi-register-left {
    padding: 40px 25px;
  }

  .rezi-register-left h1 {
    font-size: 32px;
  }

  .rezi-form-top h2 {
    font-size: 28px;
  }
}

/* login page */

/* =========================
   LOGIN SECTION
========================= */

.rezi-login-section {
  width: 100%;
  max-width: 1150px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #181818;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

/* =========================
   LEFT
========================= */

.rezi-login-left {
  background: linear-gradient(135deg, #d4af37, #0b0b0c);

  padding: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.rezi-login-left::before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  top: -80px;
  right: -80px;
}

.rezi-login-left::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  bottom: -70px;
  left: -70px;
}

.rezi-login-badge {
  width: fit-content;
  padding: 10px 18px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  margin-bottom: 25px;
  font-size: 14px;
}

.rezi-login-left h1 {
  font-size: 52px;
  line-height: 1.1;
  margin-bottom: 25px;
}

.rezi-login-left p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  font-size: 17px;
}

/* =========================
   RIGHT
========================= */

.rezi-login-right {
  padding: 70px;
}

.rezi-login-top {
  margin-bottom: 40px;
}

.rezi-login-top h2 {
  font-size: 36px;
  margin-bottom: 12px;
}

.rezi-login-top p {
  color: #94a3b8;
  line-height: 1.7;
}

.password-field{

    position:relative;

}

.password-field input{

    width:100%;

    padding-right:55px;

}

.toggle-password{

    position:absolute;

    right:18px;

    top:50%;

    transform:translateY(-50%);

    cursor:pointer;

    color:#888;

    font-size:18px;

    transition:.3s;

}

.toggle-password:hover{

    color:var(--primary-color);

}

.password-field{

    position:relative;

}

.password-field input{

    width:100%;

    padding-right:55px;

}

.toggle-password{

    position:absolute;

    right:18px;

    top:50%;

    transform:translateY(-50%);

    cursor:pointer;

    color:#888;

    font-size:18px;

    transition:.3s;

}

.toggle-password:hover{

    color:var(--primary-color);

}
/* =========================
   FORM
========================= */

.rezi-login-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.rezi-form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rezi-form-group label {
  font-size: 14px;
  color: #cbd5e1;
}

.rezi-form-group input {
  height: 58px;
  border-radius: 16px;
  border: 1px solid #d4af37;
  background: #090909;
  padding: 0 20px;
  color: #fff;
  outline: none;
  transition: 0.3s;
  font-size: 15px;
}

.rezi-form-group input:focus {
  border-color: #6a5500;
  box-shadow: 0 0 0 4px rgba(157, 131, 0, 0.15);
}

.rezi-login-btn {
  height: 60px;
  border: none;
  border-radius: 18px;
  background: linear-gradient(135deg, #d4af37, #9c9c9c);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  margin-top: 5px;
}

.rezi-login-btn:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

/* =========================
   ALERT
========================= */

.rezi-alert {
  padding: 16px 18px;
  border-radius: 14px;
  margin-bottom: 25px;
  font-size: 14px;
}

.rezi-alert-error {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #fca5a5;
}

/* =========================
   FOOT LINKS
========================= */

.rezi-login-links {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
}

.rezi-login-links a {
  color: #d4af37;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 950px) {
  .rezi-login-section {
    grid-template-columns: 1fr;
  }

  .rezi-login-left {
    padding: 50px 35px;
  }

  .rezi-login-left h1 {
    font-size: 40px;
  }

  .rezi-login-right {
    padding: 40px 25px;
  }
}

@media (max-width: 500px) {
  body {
    padding:;
  }

  .rezi-login-left {
    padding: 40px 25px;
  }

  .rezi-login-left h1 {
    font-size: 32px;
  }

  .rezi-login-top h2 {
    font-size: 28px;
  }
}

/* =========================================
   FAQ HERO
========================================= */

.faq-hero-section {
  position: relative;

  height: 100vh;

  overflow: hidden;

  background: #070707;
}

.faq-hero-bg {
  width: 100%;
  height: 100%;

  object-fit: cover;

  filter: brightness(0.55);

  transform: scale(1.05);
}

.faq-hero-overlay {
  position: absolute;

  inset: 0;

  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.9),
    rgba(0, 0, 0, 0.45)
  );
}

.faq-hero-content {
  position: absolute;

  left: 7%;
  top: 35%;

  transform: translateY(-50%);

  max-width: 850px;

  z-index: 2;
}

.faq-tag {
  display: inline-block;

  color: #d4af37;

  font-size: 12px;

  letter-spacing: 4px;

  margin-bottom: 22px;
}

.faq-hero-content h1 {
  color: white;

  font-size: 76px;

  line-height: 1.02;

  letter-spacing: -4px;

  margin-bottom: 28px;
}

.faq-hero-content p {
  color: #d0d0d0;

  font-size: 18px;

  line-height: 2;

  max-width: 680px;
}

/* =========================================
   FAQ SECTION
========================================= */

.premium-faq-section {
  padding: 110px 7%;

  background: #070707;
}

.premium-faq-container {
  display: grid;

  grid-template-columns: 0.9fr 1.1fr;

  gap: 70px;

  align-items: start;
}

/* LEFT */

.faq-small-tag {
  display: inline-block;

  color: #d4af37;

  font-size: 12px;

  letter-spacing: 4px;

  margin-bottom: 22px;
}

.premium-faq-left h2 {
  color: white;

  font-size: 58px;

  line-height: 1.08;

  letter-spacing: -3px;

  margin-bottom: 26px;
}

.premium-faq-left p {
  color: #bdbdbd;

  font-size: 16px;

  line-height: 2;

  margin-bottom: 40px;
}

/* CONTACT BOX */

.faq-contact-box {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.03),
    rgba(255, 255, 255, 0.015)
  );

  border: 1px solid rgba(255, 255, 255, 0.05);

  border-radius: 28px;

  padding: 28px;

  display: flex;

  align-items: center;

  gap: 22px;
}

.faq-contact-icon {
  width: 70px;

  height: 70px;

  border-radius: 50%;

  background: rgba(212, 175, 55, 0.12);

  display: flex;

  justify-content: center;

  align-items: center;

  color: #d4af37;

  font-size: 24px;

  flex-shrink: 0;
}

.faq-contact-box span {
  display: block;

  color: #8f8f8f;

  font-size: 13px;

  margin-bottom: 8px;
}

.faq-contact-box a {
  color: white;

  font-size: 20px;

  line-height: 1.5;

  transition: 0.3s ease;
}

.faq-contact-box a:hover {
  color: #d4af37;
}

/* RIGHT */

.premium-faq-right {
  display: flex;

  flex-direction: column;

  gap: 22px;
}

/* FAQ ITEM */

.premium-faq-item {
  background: #101010;

  border: 1px solid rgba(255, 255, 255, 0.05);

  border-radius: 26px;

  overflow: hidden;

  transition: 0.4s ease;
}

.premium-faq-item:hover {
  border-color: rgba(212, 175, 55, 0.18);
}

/* ACTIVE */

.premium-faq-item.active {
  border-color: rgba(212, 175, 55, 0.18);

  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.03),
    rgba(255, 255, 255, 0.01)
  );
}

/* QUESTION */

.premium-faq-question {
  width: 100%;

  background: none;

  border: none;

  outline: none;

  display: flex;

  justify-content: space-between;

  align-items: center;

  gap: 20px;

  padding: 32px;

  cursor: pointer;

  text-align: left;
}

.premium-faq-question span {
  color: white;

  font-size: 24px;

  line-height: 1.5;
}

.premium-faq-question i {
  color: #d4af37;

  font-size: 16px;

  transition: 0.4s ease;
}

/* ANSWER */

.premium-faq-answer {
  max-height: 0;

  overflow: hidden;

  transition: 0.5s ease;
}

.premium-faq-item.active .premium-faq-answer {
  max-height: 300px;
}

.premium-faq-answer p {
  color: #bcbcbc;

  font-size: 16px;

  line-height: 2;

  padding: 0 32px 32px 32px;
}

/* ICON ROTATION */

.premium-faq-item.active .premium-faq-question i {
  transform: rotate(45deg);
}

/* =========================================
   CTA SECTION
========================================= */

.faq-cta-section {
  padding: 0 7% 110px;

  background: #070707;
}

.faq-cta-card {
  background: linear-gradient(135deg, #151515, #1b1406);

  border-radius: 36px;

  padding: 90px;

  text-align: center;

  border: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-cta-card span {
  display: inline-block;

  color: #d4af37;

  font-size: 12px;

  letter-spacing: 4px;

  margin-bottom: 24px;
}

.faq-cta-card h2 {
  color: white;

  font-size: 58px;

  line-height: 1.08;

  letter-spacing: -3px;

  max-width: 900px;

  margin: 0 auto 40px;
}

/* BUTTON */

.faq-cta-btn {
  width: 270px;

  height: 68px;

  border-radius: 60px;

  background: #d4af37;

  color: #111;

  display: inline-flex;

  justify-content: center;

  align-items: center;

  gap: 14px;

  font-size: 13px;

  font-weight: 700;

  letter-spacing: 1px;

  transition: 0.4s ease;
}

.faq-cta-btn:hover {
  transform: translateY(-6px);

  background: #c59d22;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {
  .premium-faq-container {
    grid-template-columns: 1fr;
  }

  .faq-hero-content h1 {
    font-size: 56px;
  }

  .premium-faq-left h2,
  .faq-cta-card h2 {
    font-size: 46px;
  }
}

@media (max-width: 600px) {
  .faq-hero-content {
    left: 5%;
    right: 5%;
  }

  .faq-hero-content h1 {
    font-size: 40px;
  }

  .premium-faq-section,
  .faq-cta-section {
    padding: 85px 5%;
  }

  .premium-faq-left h2,
  .faq-cta-card h2 {
    font-size: 34px;
  }

  .premium-faq-question {
    padding: 24px;
  }

  .premium-faq-question span {
    font-size: 18px;
  }

  .faq-cta-card {
    padding: 70px 30px;
  }
}
