/* =========================================================
   Rentoz SaaS Theme – main.css
   Bootstrap 5 base + custom design system
   ========================================================= */

/* --- Google Fonts fallback --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* --- CSS Custom Properties --- */
:root {
  --primary: #956c00;
  --primary-dark: #832d00;
  --primary-light: #fff3e0;
  --accent: #f97908;
  --accent-dark: #e66a16;
  --dark: #2b1000;
  --text-dark: #2D2D2D;
  --text-gray: #6B7280;
  --text-light: #9CA3AF;
  --bg-light: #fff9f5;
  --bg-white: #FFFFFF;
  --border: #eee0d5;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(131, 45, 0, 0.1);
  --shadow-hover: 0 8px 40px rgba(131, 45, 0, 0.2);
  --transition: 0.3s ease;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  background: var(--bg-white);
  overflow-x: hidden;
  line-height: 1.7;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

img {
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--dark);
}

/* =========================================================
   SECTION UTILITIES
   ========================================================= */
.section-pad {
  padding: 90px 0;
}

.section-pad-sm {
  padding: 60px 0;
}

.section-bg {
  background: var(--bg-light);
}

.section-dark {
  background: var(--dark);
  color: #fff;
}

.section-purple {
  background: linear-gradient(135deg, #832d00 0%, #ff8736 100%);
  color: #fff;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: .75rem;
}

.section-header p {
  color: var(--text-gray);
  max-width: 580px;
  margin: 0 auto;
  font-size: 1rem;
}

.custom-logo-link img {
  max-height: 70px;
  width: auto;
}

.badge-pill {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  padding: .3rem 1rem;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .05em;
  margin-bottom: 1rem;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn-rentoz {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--accent);
  color: #fff;
  padding: .7rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(255, 135, 54, .35);
}

.btn-rentoz:hover {
  background: var(--accent-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 135, 54, .5);
}

.btn-rentoz-outline {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: transparent;
  color: #fff;
  padding: .7rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  border: 2px solid rgba(255, 255, 255, .5);
  cursor: pointer;
  transition: all var(--transition);
}

.btn-rentoz-outline:hover {
  background: rgba(255, 255, 255, .15);
  color: #fff;
  border-color: #fff;
}

.btn-primary-solid {
  background: var(--primary);
  color: #fff;
  padding: .65rem 1.6rem;
  border-radius: 50px;
  font-weight: 600;
  border: none;
  transition: all var(--transition);
  box-shadow: var(--shadow);
}

.btn-primary-solid:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
}

/* =========================================================
   NAVBAR
   ========================================================= */
.rentoz-navbar {
  background: transparent;
  padding: 1.2rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 9999;
  transition: background var(--transition), box-shadow var(--transition);
}

.rentoz-navbar.scrolled {
  background: linear-gradient(145deg, #4f1f05 0%, #8b3500 45%);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, .08);
}
#menu-main-menu li{
	padding:5px 10px
}
#menu-main-menu li a{
	color:#ffffff
}
.rentoz-navbar .navbar-brand img {
  height: 40px;
}

.rentoz-navbar .nav-link {
  color: rgba(255, 255, 255, .9) !important;
  font-weight: 500;
  font-size: .9rem;
  padding: .4rem .9rem !important;
  transition: color var(--transition);
}

.rentoz-navbar.scrolled .nav-link {
  color: var(--text-dark) !important;
}

.rentoz-navbar .nav-link:hover {
  color: var(--accent) !important;
}

.rentoz-navbar .nav-cta {
  background: var(--accent);
  color: #fff !important;
  border-radius: 50px;
  padding: .45rem 1.2rem !important;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(255, 135, 54, .4);
}

.rentoz-navbar .nav-cta:hover {
  background: var(--accent-dark);
  color: #fff !important;
}

.rentoz-navbar .nav-login {
  color: rgba(255, 255, 255, .9) !important;
  border: 1.5px solid rgba(255, 255, 255, .5);
  border-radius: 50px;
  padding: .4rem 1.1rem !important;
  font-weight: 500;
}

.rentoz-navbar.scrolled .nav-login {
  color: var(--primary) !important;
  border-color: var(--primary);
}

.rentoz-navbar .navbar-toggler {
  border: none;
}

.rentoz-navbar .navbar-toggler-icon {
  filter: invert(1);
}

.rentoz-navbar.scrolled .navbar-toggler-icon {
  filter: none;
}

/* =========================================================
   HERO SECTION
   ========================================================= */
.hero-section {
  background: linear-gradient(145deg, #832d00 0%, #956c00 45%, #ff8736 100%);
  min-height: auto;
  display: flex;
  align-items: center;
  padding: 260px 0 0px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, .08) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  border-radius: 50%;
}

.hero-section::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 135, 54, .15) 0%, transparent 70%);
  bottom: -80px;
  left: 5%;
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: #fff;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-content p {
  color: rgba(255, 255, 255, .9);
  font-size: 1.15rem;
  max-width: 650px;
  margin: 0 auto 2.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

.hero-image-wrap {
  position: relative;
  z-index: 2;
/*   animation: heroFloat 4s ease-in-out infinite; */
}

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

@keyframes heroFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

.hero-stat-badge {
  background: rgba(255, 255, 255, .15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: var(--radius);
  padding: .6rem 1rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: #fff;
  font-size: .85rem;
  font-weight: 600;
}

/* =========================================================
   HOW IT WORKS
   ========================================================= */
.hiw-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid var(--border);
  transition: all var(--transition);
  height: 100%;
}

.hiw-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-light);
}

.hiw-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--accent), #FFAA60);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.5rem;
  color: #fff;
  box-shadow: 0 8px 20px rgba(255, 135, 54, .3);
}

.hiw-card h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .5rem;
}

.hiw-card p {
  color: var(--text-gray);
  font-size: .875rem;
  margin: 0;
}

.step-number {
  width: 28px;
  height: 28px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  font-size: .75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto .75rem;
}

/* =========================================================
   FEATURES SECTION
   ========================================================= */
.features-section {
  background: var(--bg-light);
}

.feature-img-wrap img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.feature-item {
  display: flex;
  gap: 1rem;
  padding: 1.2rem;
  border-radius: var(--radius);
  transition: background var(--transition);
  margin-bottom: .75rem;
}

.feature-item:hover {
  background: var(--bg-white);
  box-shadow: var(--shadow);
}

.feature-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: .55rem;
}

.feature-item h6 {
  font-size: .95rem;
  font-weight: 600;
  margin-bottom: .25rem;
}

.feature-item p {
  font-size: .85rem;
  color: var(--text-gray);
  margin: 0;
}

/* =========================================================
   INFO SECTION
   ========================================================= */
.info-section {
  background: var(--bg-white);
}

.info-point {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.info-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--accent), #FFAA60);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
}

.info-point h6 {
  font-size: .95rem;
  font-weight: 600;
  margin-bottom: .25rem;
}

.info-point p {
  font-size: .85rem;
  color: var(--text-gray);
  margin: 0;
}

.info-img img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hover);
}

/* =========================================================
   USERS SECTION
   ========================================================= */
.users-section {
  background: var(--bg-light);
}

.users-dash img {
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(123, 97, 255, .2);
  width: 100%;
}

/* =========================================================
   PRICING SECTION
   ========================================================= */
.pricing-section {
  background: var(--bg-white);
}

.pricing-card {
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all var(--transition);
  height: 100%;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.pricing-card.featured {
  background: linear-gradient(145deg, var(--accent), #FFAA60);
  border-color: var(--accent);
  color: #fff;
  transform: scale(1.04);
}

.pricing-card.featured:hover {
  transform: scale(1.04) translateY(-8px);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  padding: .25rem .9rem;
  border-radius: 50px;
  white-space: nowrap;
}

.pricing-card .plan-name {
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.pricing-card .price-amount {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
}

.pricing-card .price-period {
  font-size: .85rem;
  opacity: .75;
}

.pricing-divider {
  border-color: rgba(0, 0, 0, .08);
  margin: 1.5rem 0;
}

.pricing-card.featured .pricing-divider {
  border-color: rgba(255, 255, 255, .3);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  text-align: left;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .875rem;
  margin-bottom: .6rem;
  color: var(--text-dark);
}

.pricing-card.featured .pricing-features li {
  color: rgba(255, 255, 255, .9);
}

.pricing-features li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--accent);
  font-size: .8rem;
}

.pricing-card.featured .pricing-features li::before {
  color: #fff;
}

.btn-plan {
  background: var(--primary);
  color: #fff;
  border-radius: 50px;
  padding: .65rem 2rem;
  font-weight: 600;
  border: none;
  width: 100%;
  transition: all var(--transition);
}

.btn-plan:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
}

.pricing-card.featured .btn-plan {
  background: #fff;
  color: var(--accent);
}

.pricing-card.featured .btn-plan:hover {
  background: rgba(255, 255, 255, .9);
}

/* =========================================================
   AWARDS SECTION
   ========================================================= */
.awards-section {
  background: var(--bg-light);
}

.award-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.award-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.award-card img {
  height: 72px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1rem;
}

.award-stat {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: .25rem;
}

.award-card h5 {
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: .4rem;
}

.award-card p {
  font-size: .82rem;
  color: var(--text-gray);
  margin: 0;
}

/* =========================================================
   QUICK & FASTER
   ========================================================= */
.quick-section {
  background: var(--bg-white);
}

.quick-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.quick-icon {
  width: 44px;
  height: 44px;
  background: var(--primary-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
}

.quick-item h6 {
  font-size: .95rem;
  font-weight: 600;
  margin-bottom: .25rem;
}

.quick-item p {
  font-size: .85rem;
  color: var(--text-gray);
  margin: 0;
}

/* =========================================================
   NEWS FEEDS
   ========================================================= */
.news-section {
  background: var(--bg-light);
}

.news-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
  height: 100%;
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.news-card .news-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.news-card-body {
  padding: 1.5rem;
}

.news-meta {
  display: flex;
  gap: .75rem;
  font-size: .78rem;
  color: var(--text-light);
  margin-bottom: .75rem;
  align-items: center;
}

.news-cat {
  background: var(--primary-light);
  color: var(--primary);
  padding: .15rem .65rem;
  border-radius: 50px;
  font-weight: 600;
}

.news-card h5 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: .75rem;
}

.news-card h5 a {
  color: var(--dark);
}

.news-card h5 a:hover {
  color: var(--primary);
}

.news-card p {
  font-size: .85rem;
  color: var(--text-gray);
  margin: 0;
}

.news-read-more {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  color: var(--primary);
  font-size: .85rem;
  font-weight: 600;
  margin-top: 1rem;
}

.news-read-more:hover {
  color: var(--accent);
  gap: .6rem;
}

/* =========================================================
   NEWSLETTER / CTA SECTION
   ========================================================= */
.newsletter-section {
  background: linear-gradient(135deg, var(--dark) 0%, #2C2C4A 100%);
  padding: 80px 0;
}

.newsletter-section h2 {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: .75rem;
}

.newsletter-section p {
  color: rgba(255, 255, 255, .7);
  max-width: 520px;
  margin: 0 auto 2rem;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  background: rgba(255, 255, 255, .1);
  border-radius: 50px;
  padding: .4rem;
  border: 1px solid rgba(255, 255, 255, .2);
}

.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: .5rem 1rem;
  color: #fff;
  font-family: inherit;
  font-size: .9rem;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, .5);
}

.newsletter-form button {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: .6rem 1.5rem;
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.newsletter-form button:hover {
  background: var(--accent-dark);
  transform: scale(1.02);
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: #0D0D1A;
  color: rgba(255, 255, 255, .7);
  padding: 70px 0 30px;
}

.footer-logo {
  margin-bottom: 1rem;
}

.footer-logo img {
  height: 36px;
  filter: brightness(10);
}

.footer-tagline {
  font-size: .875rem;
  line-height: 1.7;
  max-width: 240px;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}

.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, .08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .7);
  font-size: .9rem;
  transition: all var(--transition);
}

.social-link:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-3px);
}

.footer-widget h6 {
  color: #fff;
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: .6rem;
}

.footer-links a {
  color: rgba(255, 255, 255, .6);
  font-size: .875rem;
  transition: all var(--transition);
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  margin-top: 50px;
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .82rem;
  color: rgba(255, 255, 255, .4);
}

/* =========================================================
   ANIMATIONS
   ========================================================= */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: .1s;
}

.delay-2 {
  transition-delay: .2s;
}

.delay-3 {
  transition-delay: .3s;
}

.delay-4 {
  transition-delay: .4s;
}

/* =========================================================
   RESPONSIVE OVERRIDES
   ========================================================= */
@media (max-width: 991px) {
  .hero-section {
    text-align: center;
    padding: 120px 0 60px;
  }

  .hero-content p {
    margin: 0 auto 2rem;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-image-wrap {
    margin-top: 2.5rem;
  }

  .rentoz-navbar .nav-link {
    color: var(--text-dark) !important;
  }

  .rentoz-navbar .nav-login {
    color: var(--primary) !important;
    border-color: var(--primary);
  }

  .rentoz-navbar {
    background: rgba(255, 255, 255, .97) !important;
    backdrop-filter: blur(12px);
  }
}

@media (max-width: 767px) {
  .section-pad {
    padding: 60px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .pricing-card.featured {
    transform: none;
  }

  .newsletter-form {
    flex-direction: column;
    border-radius: var(--radius);
  }

  .newsletter-form button {
    border-radius: var(--radius);
  }

  .footer-bottom {
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .btn-rentoz,
  .btn-rentoz-outline {
    padding: .65rem 1.4rem;
    font-size: .88rem;
  }
}

/* =========================================================
   SINGLE / ARCHIVE PAGE
   ========================================================= */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #9B7DFF 100%);
  padding: 120px 0 60px;
  color: #fff;
  text-align: center;
}

.page-hero h1 {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.page-hero p {
  color: rgba(255, 255, 255, .8);
  max-width: 560px;
  margin: .75rem auto 0;
}

.post-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.post-card .post-thumb {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.post-card-body {
  padding: 1.5rem;
}

.content-wrap {
  max-width: 820px;
  margin: 0 auto;
}

.content-wrap img {
  border-radius: var(--radius);
  margin: 1rem 0;
}