/* ===== HISPARADISETECH - MAIN CSS FILE ===== */

/* ===== GLOBAL STYLES ===== */
:root {
  --primary-color: #002134;
  --secondary-color: #ff6900;
  --text-dark: #333333;
  --text-light: #ffffff;
  --text-muted: #777777;
  --bg-light: #f9f9f9;
  --bg-dark: #001a29;
  --transition: all 0.3s ease;
  --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --radius: 8px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.7;
  color: var(--text-dark);
  overflow-x: hidden;
  background-color: white;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 15px;
}

p {
  margin-bottom: 20px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  position: relative;
}

.section-header.light h2 {
  color: var(--text-light);
}

.underline {
  width: 80px;
  height: 4px;
  background: var(--secondary-color);
  margin: 0 auto 20px;
  border-radius: 2px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  background-color: var(--secondary-color);
  color: var(--text-light);
  padding: 14px 30px;
  border-radius: var(--radius);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(255, 105, 0, 0.3);
}

.btn:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 105, 0, 0.4);
}

.btn-outline {
  display: inline-block;
  background-color: transparent;
  color: var(--primary-color);
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  border: 2px solid var(--primary-color);
  transition: var(--transition);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
  transform: translateY(-2px);
}

.btn-modern {
  display: inline-block;
  padding: 16px 35px;
  background-color: var(--secondary-color);
  color: white;
  font-weight: 600;
  font-size: 15px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 20px;
  transition: all 0.4s ease;
  border: 2px solid var(--secondary-color);
}

.btn-modern:hover {
  background-color: transparent;
  color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 105, 0, 0.3);
}

/* ===== TOP BAR & NAVIGATION ===== */
.top-bar {
  background-color: var(--primary-color);
  padding: 10px 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

.top-bar-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-info {
  display: flex;
  align-items: center;
}

.top-bar-info-item {
  display: flex;
  align-items: center;
  margin-right: 30px;
}

.top-bar-info-item i {
  margin-right: 10px;
  font-size: 14px;
  color: var(--secondary-color);
}

.top-bar-right {
  display: flex;
  align-items: center;
}

.social-links {
  display: flex;
}

.social-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  margin-left: 15px;
  transition: all 0.3s ease;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
  color: white;
  background-color: var(--secondary-color);
  transform: translateY(-2px);
}

/* Enhanced Header Styles */
.main-header {
  background-color: #fff;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.logo img {
  max-height: 55px;
  transition: all 0.3s ease;
}

.main-navigation {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > li {
  position: relative;
  margin: 0 8px;
}

.nav-menu > li > a {
  font-weight: 500;
  padding: 30px 18px;
  color: var(--text-dark);
  display: block;
  font-size: 15px;
  position: relative;
  transition: all 0.3s ease;
}

.nav-menu > li > a::after {
  content: '';
  position: absolute;
  bottom: 22px;
  left: 18px;
  width: 0;
  height: 3px;
  background-color: var(--secondary-color);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
  color: var(--secondary-color);
}

.nav-menu > li > a:hover::after,
.nav-menu > li > a.active::after {
  width: calc(100% - 36px);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  background-color: white;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  padding: 20px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.4s ease;
  z-index: 100;
  border-top: 4px solid var(--secondary-color);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu a {
  padding: 12px 25px;
  display: block;
  color: var(--text-dark);
  transition: all 0.3s ease;
  font-weight: 400;
  font-size: 14px;
  border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
  background-color: rgba(0, 33, 52, 0.05);
  color: var(--primary-color);
  border-left-color: var(--secondary-color);
  padding-left: 30px;
}

.dropdown-menu .btn {
  margin: 8px 20px 5px 20px;
  padding: 8px 20px;
  font-size: 12px;
}

.header-button {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(135deg, var(--secondary-color), #e55a00);
  color: white;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid var(--secondary-color);
  margin-left: 20px;
}

.header-button:hover {
  background: linear-gradient(135deg, var(--primary-color), #001a29);
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 105, 0, 0.3);
}

/* Mobile Menu Styles */
.menu-toggle {
  display: none;
  flex-direction: column;
  width: 30px;
  height: 24px;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1002;
  position: relative;
}

.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--primary-color);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

/* ===== HERO SLIDER ===== */
.hero-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--bg-dark) 100%);
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.2s ease;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(0, 33, 52, 0.85) 0%, rgba(0, 26, 41, 0.7) 100%);
  z-index: 1;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

.slide-content {
  position: relative;
  z-index: 3;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
  color: white;
  transform: translateY(30px);
  opacity: 0;
  transition: all 1s ease 0.5s;
}

.slide.active .slide-content {
  transform: translateY(0);
  opacity: 1;
}

.slide-content h1 {
  font-size: 3.8rem;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.2;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.slide-content .highlight {
  color: var(--secondary-color);
  font-weight: 800;
}

.slide-content p {
  font-size: 1.2rem;
  margin-bottom: 35px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.95;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

.btn-hero {
  padding: 16px 35px;
  border-radius: 6px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s ease;
  font-size: 15px;
  border: 2px solid transparent;
}

.btn-hero.primary {
  background-color: var(--secondary-color);
  color: white;
  border-color: var(--secondary-color);
}

.btn-hero.outline {
  background-color: transparent;
  color: white;
  border-color: white;
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.btn-hero.primary:hover {
  background-color: transparent;
  color: var(--secondary-color);
}

.btn-hero.outline:hover {
  background-color: white;
  color: var(--primary-color);
}

.hero-slider-nav {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.hero-slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-slider-dot.active {
  background-color: var(--secondary-color);
  transform: scale(1.3);
}

.hero-slider-arrows {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  justify-content: space-between;
  padding: 0 40px;
}

.hero-arrow {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.2rem;
  backdrop-filter: blur(10px);
}

.hero-arrow:hover {
  background-color: var(--secondary-color);
  transform: scale(1.1);
}

/* ===== FEATURES SECTION ===== */
.features-section {
  padding: 100px 0;
  background-color: var(--bg-light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.feature-box {
  background: white;
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 33, 52, 0.05);
  position: relative;
  overflow: hidden;
}

.feature-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 105, 0, 0.1), transparent);
  transition: left 0.6s ease;
}

.feature-box:hover::before {
  left: 100%;
}

.feature-box:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 50px rgba(0, 33, 52, 0.15);
  border-color: var(--secondary-color);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(0, 33, 52, 0.1), rgba(255, 105, 0, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 32px;
  color: var(--secondary-color);
  transition: all 0.4s ease;
}

.feature-box:hover .feature-icon {
  background: var(--secondary-color);
  color: white;
  transform: rotateY(360deg) scale(1.1);
}

.feature-box h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.feature-box p {
  color: #666;
  font-size: 15px;
  margin-bottom: 0;
  line-height: 1.6;
}

/* ===== ABOUT SECTION ===== */
.about-modern {
  padding: 120px 0;
  background-color: var(--bg-light);
  position: relative;
  overflow: hidden;
}

.about-modern::before {
  content: '';
  position: absolute;
  right: -50px;
  top: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(0, 33, 52, 0.05);
  z-index: 0;
}

.about-modern-content {
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
  margin-bottom: 80px;
}

.about-modern-text {
  flex: 1;
}

.about-modern-text h2 {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 30px;
  line-height: 1.2;
  position: relative;
  padding-bottom: 20px;
}

.about-modern-text h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background-color: var(--secondary-color);
  border-radius: 2px;
}

.about-modern-text h2 span {
  color: var(--secondary-color);
  font-weight: 800;
}

.about-modern-text p {
  color: #666;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 25px;
}

.about-modern-image {
  flex: 1;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  transform: perspective(1000px) rotateY(-5deg);
  transition: all 0.5s ease;
}

.about-modern-image:hover {
  transform: perspective(1000px) rotateY(0);
}

.about-modern-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.about-modern-image:hover img {
  transform: scale(1.05);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  background-color: white;
  padding: 50px;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
}

.stat-icon {
  font-size: 40px;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.stat-number {
  font-size: 42px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 12px;
  position: relative;
}

.stat-number::after {
  content: '+';
  position: absolute;
  top: 0;
  right: -15px;
  font-size: 32px;
  color: var(--secondary-color);
}

.stat-title {
  font-size: 16px;
  color: #666;
  font-weight: 500;
}

/* ===== SERVICES SECTION ===== */
.services {
  padding: 100px 0;
  background-color: white;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 35px;
  margin-top: 60px;
}

.service-card {
  background: white;
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 33, 52, 0.05);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 105, 0, 0.1), transparent);
  transition: left 0.6s ease;
}

.service-card:hover::before {
  left: 100%;
}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 50px rgba(0, 33, 52, 0.15);
  border-color: var(--secondary-color);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(0, 33, 52, 0.1), rgba(255, 105, 0, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 32px;
  color: var(--secondary-color);
  transition: all 0.4s ease;
}

.service-card:hover .service-icon {
  background: var(--secondary-color);
  color: white;
  transform: rotateY(360deg) scale(1.1);
}

.service-card h3 {
  margin-bottom: 15px;
  color: var(--primary-color);
  font-size: 22px;
}

.service-card p {
  margin-bottom: 20px;
  color: var(--text-muted);
  line-height: 1.6;
}

.price-display {
  margin: 20px 0;
  font-size: 24px;
  font-weight: 700;
  color: var(--secondary-color);
}

/* ===== INVESTMENT SECTION ===== */
.invest {
  background-color: var(--primary-color);
  color: var(--text-light);
  background-image: linear-gradient(135deg, rgba(0, 33, 52, 0.95) 0%, rgba(0, 26, 41, 0.95) 100%), url('https://via.placeholder.com/1920x1080');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 100px 0;
}

.invest-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 35px;
  margin-top: 60px;
}

.invest-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 40px 30px;
  backdrop-filter: blur(10px);
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.invest-card:hover {
  background-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.invest-icon {
  font-size: 50px;
  margin-bottom: 25px;
  color: var(--secondary-color);
}

.invest-card h3 {
  margin-bottom: 20px;
  font-size: 24px;
}

.invest-card p {
  margin-bottom: 25px;
  opacity: 0.9;
}

.cta-container {
  text-align: center;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 50px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  margin-top: 60px;
}

.cta-container h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.cta-container p {
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

/* ===== PROCESS SECTION ===== */
.process-section {
  padding: 100px 0;
  background-color: white;
}

.process-heading {
  text-align: center;
  margin-bottom: 70px;
}

.process-heading h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.process-heading p {
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.process-step {
  text-align: center;
  position: relative;
  background-color: white;
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.process-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.process-step::after {
  content: '';
  position: absolute;
  top: 45px;
  right: -20%;
  width: 40%;
  height: 3px;
  background-color: var(--primary-color);
  z-index: 0;
}

.process-step:last-child::after {
  display: none;
}

.step-number {
  width: 90px;
  height: 90px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: 700;
  margin: 0 auto 25px;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.process-step:hover .step-number {
  background-color: var(--secondary-color);
  transform: scale(1.1);
}

.process-step h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.process-step p {
  color: #666;
  font-size: 15px;
  padding: 0 10px;
  margin-bottom: 0;
}

/* ===== CASE STUDIES SECTION ===== */
.case-studies {
  padding: 100px 0;
  background-color: var(--bg-light);
}

.case-studies-header {
  text-align: center;
  margin-bottom: 60px;
}

.case-studies-header h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.case-studies-header p {
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 35px;
}

.case-study-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
  background-color: white;
}

.case-study-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.case-study-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.case-study-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.case-study-card:hover .case-study-image img {
  transform: scale(1.1);
}

.case-study-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2));
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.case-study-category {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--secondary-color);
  color: white;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.case-study-content {
  padding: 30px;
}

.case-study-content h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.case-study-content p {
  color: #666;
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.read-more-link {
  display: inline-block;
  color: var(--secondary-color);
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
}

.read-more-link i {
  margin-left: 8px;
  transition: all 0.3s ease;
}

.read-more-link:hover {
  color: var(--primary-color);
}

.read-more-link:hover i {
  transform: translateX(5px);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
  background-color: white;
  padding: 100px 0;
}

.testimonial-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-slide {
  display: none;
}

.testimonial-slide.active {
  display: block;
  animation: fadeIn 1s forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.testimonial-content {
  background-color: var(--bg-light);
  padding: 50px;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  position: relative;
  text-align: center;
}

.testimonial-content::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 15px solid var(--bg-light);
}

.quote-icon {
  font-size: 40px;
  color: var(--secondary-color);
  margin-bottom: 25px;
}

.testimonial-content p {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #555;
  line-height: 1.7;
}

.client-info h4 {
  color: var(--primary-color);
  margin-bottom: 5px;
  font-size: 18px;
}

.client-info span {
  color: var(--secondary-color);
  font-size: 14px;
  font-weight: 500;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.testimonial-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
  margin: 0 6px;
  cursor: pointer;
  transition: var(--transition);
}

.testimonial-dots .dot.active {
  background-color: var(--secondary-color);
  transform: scale(1.2);
}

/* ===== FAQ SECTION ===== */
.faq-section {
  padding: 100px 0;
  background-color: var(--bg-light);
  position: relative;
}

.faq-heading {
  text-align: center;
  margin-bottom: 60px;
}

.faq-heading h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.faq-heading p {
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  background-color: white;
}

.faq-question {
  padding: 25px 30px;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
  margin: 0;
}

.faq-question i {
  font-size: 16px;
  color: var(--secondary-color);
  transition: all 0.3s ease;
}

.faq-item.active .faq-question {
  background-color: var(--primary-color);
}

.faq-item.active .faq-question h3 {
  color: white;
}

.faq-item.active .faq-question i {
  color: white;
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 25px 30px;
  max-height: 1000px;
}

.faq-answer p {
  color: var(--text-muted);
  margin: 0;
  line-height: 1.7;
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--bg-dark) 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  transform: rotate(45deg);
}

.cta-section h2 {
  font-size: 2.8rem;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
}

.cta-section p {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
  opacity: 0.9;
  position: relative;
  z-index: 2;
}

.cta-buttons {
  display: flex;
  gap: 25px;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.cta-btn {
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 6px;
  transition: all 0.4s ease;
  letter-spacing: 1px;
}

.cta-btn.primary {
  background-color: var(--secondary-color);
  color: white;
  border: 2px solid var(--secondary-color);
}

.cta-btn.outline {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.cta-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.cta-btn.primary:hover {
  background-color: transparent;
  color: var(--secondary-color);
}

.cta-btn.outline:hover {
  background-color: white;
  color: var(--primary-color);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: 100px 0;
  background-color: var(--bg-light);
  position: relative;
}

.contact-heading {
  text-align: center;
  margin-bottom: 60px;
}

.contact-heading h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.contact-heading p {
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  background-color: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.contact-info {
  padding: 60px 50px;
  background-color: var(--primary-color);
  color: white;
}

.contact-info h3 {
  font-size: 28px;
  margin-bottom: 40px;
  color: white;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 35px;
}

.contact-info-icon {
  font-size: 24px;
  color: var(--secondary-color);
  margin-right: 20px;
  margin-top: 5px;
}

.contact-info-content h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: white;
}

.contact-info-content p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  line-height: 1.6;
}

.contact-social {
  margin-top: 50px;
}

.contact-social h4 {
  font-size: 18px;
  margin-bottom: 20px;
  color: white;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: white;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: var(--secondary-color);
  transform: translateY(-5px);
}

.contact-form {
  padding: 60px 50px;
}

.contact-form h3 {
  font-size: 28px;
  margin-bottom: 40px;
  color: var(--primary-color);
}

.form-group {
  margin-bottom: 25px;
}

.form-control {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid #eee;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 33, 52, 0.1);
  outline: none;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

textarea.form-control {
  height: 130px;
  resize: vertical;
}

.submit-btn {
  background-color: var(--secondary-color);
  color: white;
  border: none;
  padding: 16px 40px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.submit-btn:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 105, 0, 0.3);
}

/* ===== FOOTER ===== */
footer {
  background-color: var(--primary-color);
  color: white;
  padding-top: 80px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 50px;
  padding-bottom: 60px;
}

.footer-logo {
  margin-bottom: 25px;
}

.footer-logo img {
  max-height: 60px;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
  font-size: 15px;
  line-height: 1.7;
}

.footer-contact {
  margin-top: 25px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.footer-contact-icon {
  font-size: 18px;
  color: var(--secondary-color);
  margin-right: 15px;
  margin-top: 5px;
}

.footer-contact-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 1.6;
}

.footer-heading {
  font-size: 20px;
  color: white;
  margin-bottom: 30px;
  font-weight: 600;
  position: relative;
  padding-bottom: 15px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--secondary-color);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.footer-links a:hover {
  color: var(--secondary-color);
  padding-left: 8px;
}

.footer-links a i {
  margin-right: 10px;
  font-size: 12px;
  color: var(--secondary-color);
}

.newsletter-form {
  position: relative;
  margin-bottom: 25px;
}

.newsletter-input {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: white;
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--secondary-color);
  background-color: rgba(255, 255, 255, 0.15);
}

.newsletter-btn {
  position: absolute;
  right: 6px;
  top: 6px;
  padding: 9px 20px;
  background-color: var(--secondary-color);
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.newsletter-btn:hover {
  background-color: #e55a00;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 16px;
}

.footer-social a:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 25px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-size: 14px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.8);
  margin-left: 25px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
  color: var(--secondary-color);
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--secondary-color);
  color: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 105, 0, 0.3);
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 105, 0, 0.4);
}

/* ===== FLOATING CALCULATOR ===== */
.hisparadisetech-calculator-trigger {
  position: fixed;
  bottom: 100px;
  right: 30px;
  background: linear-gradient(135deg, var(--secondary-color), #e55a00);
  color: white;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(255, 105, 0, 0.3);
  display: flex;
  align-items: center;
  padding: 0 20px;
  height: 55px;
  z-index: 9998;
  cursor: pointer;
  transition: all 0.4s ease;
  border: none;
  font-family: 'Poppins', sans-serif;
}

.hisparadisetech-calculator-trigger:hover {
  background: linear-gradient(135deg, #e55a00, var(--secondary-color));
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(255, 105, 0, 0.4);
}

.hisparadisetech-calculator-trigger.active {
  background: var(--primary-color);
  border-radius: 12px 12px 0 0;
}

.hisparadisetech-calculator-trigger i {
  font-size: 22px;
  margin-right: 12px;
}

.hisparadisetech-calculator-trigger span {
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hisparadisetech-calculator-panel {
  position: fixed;
  bottom: -1000px;
  right: 30px;
  width: 400px;
  max-height: 650px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  z-index: 9997;
  transition: bottom 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
  border: 2px solid rgba(255, 105, 0, 0.1);
  font-family: 'Poppins', sans-serif;
}

.hisparadisetech-calculator-panel.active {
  bottom: 30px;
}

.calculator-header {
  background: linear-gradient(135deg, var(--primary-color), var(--bg-dark));
  color: white;
  padding: 25px;
  text-align: center;
}

.calculator-header h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

.calculator-header p {
  margin: 8px 0 0 0;
  font-size: 14px;
  opacity: 0.9;
}

.calculator-body {
  padding: 25px;
  max-height: 500px;
  overflow-y: auto;
}

.calculator-body .form-group {
  margin-bottom: 20px;
}

.calculator-body label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #333;
  font-size: 14px;
}

.calculator-body select,
.calculator-body input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  color: #333;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.calculator-body select:focus,
.calculator-body input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 33, 52, 0.1);
}

.input-row {
  display: flex;
  gap: 15px;
}

.input-row .form-group {
  flex: 1;
  margin-bottom: 20px;
}

#addons-container {
  margin-top: 15px;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
  display: none;
}

#addons-container h4 {
  font-size: 16px;
  margin: 0 0 15px 0;
  color: var(--primary-color);
}

.addons-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.addon-item {
  display: flex;
  align-items: center;
}

.addon-item input[type="checkbox"] {
  width: auto;
  margin-right: 12px;
}

.addon-item label {
  margin: 0;
  font-size: 13px;
  font-weight: normal;
  color: #555;
}

.calculate-btn {
  background: linear-gradient(135deg, var(--secondary-color), #e55a00);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 16px;
  font-size: 15px;
  font-weight: 600;
  width: 100%;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 15px;
}

.calculate-btn:hover {
  background: linear-gradient(135deg, #e55a00, var(--primary-color));
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 105, 0, 0.3);
}

#calculator-result {
  margin-top: 25px;
  padding: 20px;
  background-color: rgba(0, 33, 52, 0.05);
  border-radius: 10px;
  display: none;
}

#calculator-result h4 {
  margin: 0 0 15px 0;
  color: var(--primary-color);
  font-size: 18px;
}

.total-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  border-top: 2px solid rgba(0, 33, 52, 0.1);
  margin-top: 20px;
}

.total-container span:first-child {
  font-weight: 600;
  font-size: 16px;
  color: var(--primary-color);
}

.total-container span:last-child {
  font-weight: 700;
  font-size: 24px;
  color: var(--secondary-color);
}

#result-details {
  font-size: 14px;
  color: #555;
}

#result-details p {
  margin: 8px 0;
}

#calculator-error {
  display: none;
  margin-top: 15px;
  padding: 12px;
  background-color: rgba(255, 0, 0, 0.1);
  border-radius: 6px;
  color: #d32f2f;
  font-size: 14px;
}

/* ===== POPUP STYLES ===== */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-content {
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  width: 90%;
  max-width: 450px;
  padding: 40px;
  position: relative;
  font-family: 'Poppins', sans-serif;
}

.popup-content h3 {
  color: var(--primary-color);
  font-size: 22px;
  margin-top: 0;
  margin-bottom: 15px;
}

.popup-content p {
  color: #666;
  font-size: 15px;
  margin-bottom: 20px;
}

.close-popup {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 20px;
  color: #999;
  cursor: pointer;
  transition: all 0.3s ease;
  background: none;
  border: none;
  padding: 8px;
  border-radius: 50%;
}

.close-popup:hover {
  color: var(--primary-color);
  background-color: #f9f9f9;
}

.popup-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 25px;
}

.contact-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 15px;
  border-radius: 10px;
  background-color: #f9f9f9;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.contact-option:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 33, 52, 0.2);
  border-color: var(--secondary-color);
}

.contact-option i {
  font-size: 28px;
  margin-bottom: 12px;
  color: var(--secondary-color);
}

.contact-option:hover i {
  color: white;
}

.contact-option span {
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

.whatsapp-options {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 25px;
}

.whatsapp-option {
  display: flex;
  align-items: center;
  padding: 20px;
  border-radius: 10px;
  background-color: #f9f9f9;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.whatsapp-option:hover {
  background-color: #25D366;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.whatsapp-option i {
  font-size: 28px;
  margin-right: 20px;
  color: #25D366;
}

.whatsapp-option:hover i {
  color: white;
}

.whatsapp-option-content {
  flex: 1;
}

.whatsapp-option-content .name {
  display: block;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 5px;
}

.whatsapp-option-content .number {
  display: block;
  font-size: 14px;
  opacity: 0.8;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
  .slide-content h1 {
    font-size: 3.2rem;
  }
  
  .nav-menu > li {
    margin: 0 5px;
  }
  
  .nav-menu > li > a {
    padding: 28px 12px;
  }
}

@media (max-width: 992px) {
  .menu-toggle {
    display: flex;
  }
  
  .main-navigation {
    justify-content: flex-end;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: white;
    flex-direction: column;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
    padding: 80px 25px 30px;
    transition: all 0.4s ease;
    overflow-y: auto;
    z-index: 1001;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-menu > li {
    margin: 0;
    width: 100%;
  }
  
  .nav-menu > li > a {
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .nav-menu > li > a::after {
    display: none;
  }
  
  .dropdown-menu {
    position: static;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    transition: max-height 0.3s ease;
    width: 100%;
    border: none;
    border-left: 3px solid var(--secondary-color);
  }
  
  .dropdown.active .dropdown-menu {
    max-height: 500px;
    padding: 15px 0;
  }
  
  .dropdown-menu a {
    padding-left: 20px;
    border-left: none;
  }
  
  .header-button {
    margin-left: 15px;
  }
  
  section {
    padding: 80px 0;
  }
  
  .slide-content h1 {
    font-size: 2.8rem;
  }
  
  .about-modern-content {
    flex-direction: column;
    gap: 40px;
  }
  
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .contact-container,
  .footer-top {
    grid-template-columns: 1fr;
  }
  
  .process-step::after {
    display: none;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .top-bar-wrapper {
    flex-direction: column;
    gap: 15px;
  }
  
  .top-bar-info {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .top-bar-info-item {
    margin-right: 20px;
    margin-bottom: 5px;
  }
  
  .hero-slider {
    height: 80vh;
  }
  
  .slide-content h1 {
    font-size: 2.2rem;
  }
  
  .slide-content p {
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .services-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .about-stats {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .contact-info,
  .contact-form {
    padding: 40px 30px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .footer-bottom-links a {
    margin: 0 15px;
  }
  
  .hisparadisetech-calculator-trigger {
    padding: 0 15px;
    height: 50px;
    right: 20px;
  }
  
  .hisparadisetech-calculator-panel {
    width: calc(100% - 40px);
    right: 20px;
  }
  
  .popup-options {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .hero-slider {
    height: 70vh;
  }
  
  .slide-content h1 {
    font-size: 1.8rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .about-modern-text h2 {
    font-size: 2.2rem;
  }
  
  .hisparadisetech-calculator-trigger span {
    display: none;
  }
  
  .hisparadisetech-calculator-trigger {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    justify-content: center;
    padding: 0;
  }
  
  .hisparadisetech-calculator-trigger i {
    margin: 0;
  }
  
  .hisparadisetech-calculator-trigger.active {
    border-radius: 50%;
  }
  
  .input-row {
    flex-direction: column;
  }
  
  .popup-content {
    padding: 25px;
    width: 95%;
  }
  
  .cta-section h2 {
    font-size: 2rem;
  }
  
  .contact-heading h2,
  .faq-heading h2,
  .case-studies-header h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-slider {
    height: 60vh;
  }
  
  .slide-content h1 {
    font-size: 1.6rem;
  }
  
  .feature-box,
  .service-card,
  .invest-card {
    padding: 30px 20px;
  }
  
  .contact-info,
  .contact-form {
    padding: 30px 20px;
  }
  
  .calculator-body {
    padding: 20px;
  }
  
  .footer-top {
    gap: 30px;
  }
}

/* ===== ANIMATION CLASSES ===== */
.animate-init {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate {
  opacity: 1;
  transform: translateY(0);
}

/* ===== SCROLL ANIMATIONS ===== */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-up {
  animation: slideInUp 0.8s ease forwards;
}

.slide-left {
  animation: slideInLeft 0.8s ease forwards;
}

.slide-right {
  animation: slideInRight 0.8s ease forwards;
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

.w-100 { width: 100%; }
.h-100 { height: 100%; }

.position-relative { position: relative; }
.position-absolute { position: absolute; }
.position-fixed { position: fixed; }

.z-1 { z-index: 1; }
.z-2 { z-index: 2; }
.z-3 { z-index: 3; }