/* PREMIUM PROTECTION PRO - MAIN STYLESHEET */

/* Root Variables - Pastel Color Palette */
:root {
  /* Primary Colors */
  --primary-1: #e6c9a8; /* Sand beige */
  --primary-2: #a8b8c0; /* Steel blue */
  --primary-3: #d6b6a4; /* Terracotta */
  --primary-4: #b9c1b6; /* Sage green */
  --primary-5: #c4b7c8; /* Lavender */

  /* Shades */
  --primary-1-light: #f3e5d8;
  --primary-1-dark: #c9a987;
  --primary-2-light: #d3dde2;
  --primary-2-dark: #87969e;
  --primary-3-light: #eed6c9;
  --primary-3-dark: #b39382;
  --primary-4-light: #dadeda;
  --primary-4-dark: #969c94;
  --primary-5-light: #e2d9e5;
  --primary-5-dark: #a698aa;
  
  /* Neutrals */
  --dark: #2c3e50;
  --light: #f8f9fa;
  --gray: #6c757d;
  
  /* Dimensions */
  --section-padding: 100px 0;
  --container-padding: 0 15px;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background-color: var(--light);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5em;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary-2-dark);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-3);
}

img {
  max-width: 100%;
  height: auto;
}

section {
  padding: var(--section-padding);
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border-radius: 5px;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--primary-2);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-2-dark);
  color: white;
}

.btn-secondary {
  background-color: var(--primary-3);
  color: white;
}

.btn-secondary:hover {
  background-color: var(--primary-3-dark);
  color: white;
}

.container {
  padding: var(--container-padding);
}

.section-title {
  margin-bottom: 60px;
  text-align: center;
}

.section-subtitle {
  display: block;
  color: var(--primary-3);
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.section-desc {
  max-width: 800px;
  margin: 0 auto;
  color: var(--gray);
}

/* Header Styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 20px 0;
  transition: all 0.3s ease;
}

header.scrolled {
  padding: 15px 0;
  background-color: white;
}

.site-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-2-dark);
}

.nav-link {
  font-weight: 600;
  padding: 0.5rem 1rem;
  color: var(--dark);
}

.nav-link:hover {
  color: var(--primary-3);
}

/* Hero Section */
.hero-section {
  height: 100vh;
  min-height: 600px;
  position: relative;
  overflow: hidden;
  margin-top: 80px;
  background: linear-gradient(135deg, var(--primary-2-dark), var(--primary-3));
}

.hero-bg-overlay {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.hero-cta {
  margin-top: 2rem;
}

.hero-image {
  position: relative;
  z-index: 2;
}

.hero-placeholder {
  width: 100%;
  height: 400px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.hero-placeholder::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: shine 2s infinite;
}

@keyframes shine {
  100% {
    left: 150%;
  }
}

.hero-image img {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* About Section */
.about-section {
  background-color: var(--light);
}

.about-image {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

/* Services Section */
.services-section {
  background-color: var(--primary-1-light);
  position: relative;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  opacity: 0.05;
  z-index: 0;
}

.service-item {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  z-index: 1;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-image {
  height: 200px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.service-item:hover .service-image img {
  transform: scale(1.05);
}

.service-content {
  padding: 25px;
}

.service-name {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--primary-2-dark);
}

.service-desc {
  color: var(--gray);
  margin-bottom: 15px;
}

.service-features {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.service-features li {
  margin-bottom: 5px;
  position: relative;
  padding-left: 25px;
}

.service-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--primary-3);
  transform: translateY(-50%);
}

.service-price {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-2-dark);
}

/* Features Section */
.features-section {
  background-color: white;
}

.feature-item {
  text-align: center;
  padding: 30px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background-color: var(--primary-4-light);
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary-2);
  margin-bottom: 20px;
}

.feature-name {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

/* Price Plan Section */
.priceplan-section {
  background-color: var(--primary-4-light);
}

.price-item {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.price-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.price-header {
  padding: 30px;
  background-color: var(--primary-2);
  color: white;
  text-align: center;
}

.price-content {
  padding: 30px;
}

.price-name {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.price-value {
  font-size: 2.5rem;
  font-weight: 700;
}

.price-period {
  display: block;
  font-size: 0.9rem;
  color: var(--gray);
}

.price-features {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.price-features li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.price-features li:last-child {
  border-bottom: none;
}

/* Team Section */
.team-section {
  background-color: white;
}

.team-member {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.team-image {
  width: 100%;
  height: 300px;
  position: relative;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-info {
  padding: 20px;
  text-align: center;
  background-color: white;
}

.team-name {
  font-size: 1.25rem;
  margin-bottom: 5px;
}

.team-role {
  color: var(--primary-3);
  font-weight: 600;
}

/* Reviews Section */
.reviews-section {
  background-color: var(--primary-5-light);
}

.review-item {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.review-text {
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.review-text::before {
  content: '"';
  font-family: Georgia, serif;
  font-size: 5rem;
  position: absolute;
  top: -30px;
  left: -10px;
  color: var(--primary-3-light);
  opacity: 0.3;
  z-index: 0;
}

.review-author {
  display: flex;
  align-items: center;
}

.author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}

.author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-name {
  font-weight: 700;
  margin-bottom: 5px;
}

.author-role {
  color: var(--gray);
  font-size: 0.9rem;
}

/* Core Info Section */
.coreinfo-section {
  background-color: white;
}

.core-item {
  text-align: center;
  background-color: var(--primary-1-light);
  padding: 40px 30px;
  border-radius: 10px;
  transition: all 0.3s ease;
  height: 100%;
}

.core-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.core-icon {
  font-size: 3rem;
  color: var(--primary-3);
  margin-bottom: 20px;
}

.core-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

/* Contact Section */
.contact-section {
  background-color: var(--light);
}

.contact-form {
  background-color: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-info {
  background-color: var(--primary-2);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  color: white;
}

.contact-info-item {
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
}

.contact-info-icon {
  font-size: 1.25rem;
  margin-right: 15px;
  color: var(--primary-1-light);
}

.contact-info-text {
  line-height: 1.4;
}

.form-control {
  margin-bottom: 20px;
}

/* Footer */
footer {
  background-color: var(--dark);
  color: white;
  padding: 60px 0 30px;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 30px;
}

.footer-title {
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: white;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-3);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-3);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  margin-top: 40px;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
}

/* Animation Classes */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* Swiper Styles */
.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: white;
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background-color: var(--primary-3);
}

.swiper-button-next,
.swiper-button-prev {
  color: white;
  background-color: rgba(0, 0, 0, 0.3);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 1rem;
}

/* Shape Decorations */
.shape {
  position: absolute;
  z-index: -1;
}

.shape-1 {
  top: 20%;
  left: -100px;
  width: 200px;
  height: 200px;
  background-color: var(--primary-1-light);
  border-radius: 50%;
  opacity: 0.5;
}

.shape-2 {
  bottom: 10%;
  right: -100px;
  width: 250px;
  height: 250px;
  background-color: var(--primary-4-light);
  border-radius: 50%;
  opacity: 0.5;
}

.shape-3 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background-color: var(--primary-3-light);
  border-radius: 50%;
  opacity: 0.1;
} 