/* Premium Protection - Anti-Corrosion Services Template
   Main CSS - 2025
   ========================================================================== */

:root {
  /* Primary Color Palette - Pastel with sophistication */
  --primary-1: #e8c5a7; /* Soft Sand */
  --primary-2: #d3bdb0; /* Taupe */
  --primary-3: #afb6c2; /* Steel Blue */
  --primary-4: #af9a86; /* Warm Bronze */
  --primary-5: #d1cabc; /* Platinum */

  /* Light and dark shades */
  --primary-1-light: #f5e2d0;
  --primary-1-dark: #c2a182;
  --primary-2-light: #f0e8e3;
  --primary-2-dark: #a99588;
  --primary-3-light: #d6dbe3;
  --primary-3-dark: #89919e;
  --primary-4-light: #d0c2b7;
  --primary-4-dark: #8a7968;
  --primary-5-light: #eae7e1;
  --primary-5-dark: #a29b8e;

  /* Functional colors */
  --text-dark: #353535;
  --text-light: #fafafa;
  --text-muted: #777777;
  --background: #fefefe;
  --border-color: rgba(0, 0, 0, 0.1);
  --overlay-dark: rgba(0, 0, 0, 0.6);
  --overlay-light: rgba(255, 255, 255, 0.85);
}

/* Base Styles
   ========================================================================== */
body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  background-color: var(--background);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: var(--primary-3-dark);
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-3);
}

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background-color: var(--primary-3);
  color: var(--text-light);
}

.btn-primary:hover {
  background-color: var(--primary-3-dark);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.section-padding {
  padding: 100px 0;
}

.section-title {
  margin-bottom: 3rem;
  text-align: center;
}

.section-title h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  width: 80px;
  height: 3px;
  background: var(--primary-3);
  transform: translateX(-50%);
}

/* Decorative Elements
   ========================================================================== */
.shape-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.shape-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 90px;
}

.shape-divider .shape-fill {
  fill: var(--background);
}

/* Header & Navigation
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--background);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.header.sticky {
  padding: 15px 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary-3-dark);
}

.navbar-nav .nav-link {
  position: relative;
  padding: 0.5rem 1rem;
  font-weight: 500;
  color: var(--text-dark);
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-3);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 40%;
}

/* Hero Section
   ========================================================================== */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}

.hero-content {
  margin-top: 150px !important;
  position: relative;
  z-index: 1;
  margin: 10px;
}

.hero-slider .swiper-slide {
  height: 100vh;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-slider .swiper-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--overlay-dark);
}

.hero-content h1 {
  margin-bottom: 1.5rem;
  color: var(--text-light);
  font-size: 4rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-content p {
  color: var(--text-light);
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-slider .swiper-pagination {
  position: absolute;
  bottom: 30px;
}

.hero-slider .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: var(--text-light);
  opacity: 0.5;
}

.hero-slider .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--primary-3);
}

/* About Section
   ========================================================================== */
.about-section {
  position: relative;
  background-color: var(--background);
}

.about-img {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-img img {
  width: 100%;
  transition: transform 0.5s ease;
}

.about-img:hover img {
  transform: scale(1.05);
}

.about-content {
  padding: 20px;
}

.about-content h2 {
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.about-content p {
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

/* Services Section
   ========================================================================== */
.services-section {
  background-color: var(--primary-5-light);
  position: relative;
}

.service-card {
  background: var(--background);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  margin-bottom: 30px;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-img {
  height: 250px;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-img img {
  transform: scale(1.05);
}

.service-content {
  padding: 25px;
}

.service-content h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.service-content p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.service-features li {
  padding: 8px 0;
  color: var(--text-dark);
  position: relative;
  padding-left: 25px;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-3);
}

.service-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-3-dark);
  margin-bottom: 0;
}

/* Features Section
   ========================================================================== */
.features-section {
  position: relative;
  background-color: var(--background);
}

.feature-card {
  padding: 30px;
  background: var(--background);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  margin-bottom: 30px;
  border: 1px solid var(--border-color);
}

.feature-card:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-3-light);
}

.feature-icon {
  margin-bottom: 20px;
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  background: var(--primary-1-light);
  border-radius: 50%;
  color: var(--primary-3-dark);
  font-size: 28px;
}

.feature-content h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.feature-content p {
  color: var(--text-muted);
}

/* Price Plan Section
   ========================================================================== */
.priceplan-section {
  background-color: var(--primary-1-light);
  position: relative;
}

.price-card {
  background: var(--background);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  height: 100%;
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.price-header {
  padding: 30px;
  background: var(--primary-3-light);
  position: relative;
}

.price-title {
  font-size: 1.8rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.price-value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-3-dark);
  margin-bottom: 0;
}

.price-period {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.price-content {
  padding: 30px;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.price-features li {
  padding: 10px 0;
  border-bottom: 1px dashed var(--border-color);
  color: var(--text-dark);
}

.price-features li:last-child {
  border-bottom: none;
}

.price-badge {
  position: absolute;
  top: 0;
  right: 30px;
  background: var(--primary-4);
  color: var(--text-light);
  padding: 5px 15px;
  font-size: 0.8rem;
  border-radius: 0 0 10px 10px;
}

/* Team Section
   ========================================================================== */
.team-section {
  position: relative;
  background-color: var(--background);
}

.team-card {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  margin-bottom: 30px;
  background: var(--background);
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.team-img {
  position: relative;
  overflow: hidden;
}

.team-img img {
  width: 100%;
  transition: transform 0.5s ease;
}

.team-card:hover .team-img img {
  transform: scale(1.05);
}

.team-content {
  padding: 25px;
  text-align: center;
}

.team-content h3 {
  margin-bottom: 5px;
  font-size: 1.5rem;
}

.team-content p {
  color: var(--primary-3);
  margin-bottom: 15px;
}

/* Reviews Section
   ========================================================================== */
.reviews-section {
  background-color: var(--primary-3-light);
  position: relative;
}

.review-card {
  background: var(--background);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin: 15px;
}

.review-text {
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 20px;
  position: relative;
  padding-top: 30px;
}

.review-text::before {
  content: '"';
  font-size: 4rem;
  position: absolute;
  top: -20px;
  left: -10px;
  color: var(--primary-1-light);
  z-index: -1;
  font-family: Georgia, serif;
}

.review-author {
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.reviews-slider .swiper-pagination {
  position: static;
  margin-top: 30px;
}

.reviews-slider .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: var(--primary-3);
  opacity: 0.5;
}

.reviews-slider .swiper-pagination-bullet-active {
  opacity: 1;
}

/* Core Info Section
   ========================================================================== */
.coreinfo-section {
  position: relative;
  background-color: var(--background);
}

.coreinfo-item {
  position: relative;
  margin-bottom: 30px;
  padding: 30px;
  border-radius: 15px;
  background: var(--background);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.coreinfo-item:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-1);
}

.coreinfo-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary-3);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s ease;
}

.coreinfo-item:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.coreinfo-icon {
  font-size: 2.5rem;
  color: var(--primary-3);
  margin-bottom: 20px;
}

.coreinfo-content h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.coreinfo-content p {
  color: var(--text-muted);
}

/* Contact Section
   ========================================================================== */
.contact-section {
  position: relative;
  background-color: var(--primary-5-light);
}

.contact-form {
  background: var(--background);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-control {
  height: 54px;
  padding: 10px 20px;
  font-size: 16px;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  margin-bottom: 20px;
}

textarea.form-control {
  height: 150px;
}

.form-control:focus {
  box-shadow: none;
  border-color: var(--primary-3);
}

.contact-info {
  padding: 40px;
  background: var(--primary-3);
  border-radius: 15px;
  color: var(--text-light);
  height: 100%;
}

.contact-info h3 {
  margin-bottom: 30px;
  color: var(--text-light);
}

.contact-info-item {
  display: flex;
  margin-bottom: 25px;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  background: var(--background);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-3);
  font-size: 1.2rem;
  margin-right: 15px;
}

.contact-info-text {
  flex: 1;
}

.contact-info-text h4 {
  margin-bottom: 5px;
  font-size: 1.2rem;
  color: var(--text-light);
}

.contact-info-text p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
}

/* Footer
   ========================================================================== */
.footer {
  background-color: var(--primary-3-dark);
  color: var(--text-light);
  padding: 80px 0 0;
  position: relative;
}

.footer-widget {
  margin-bottom: 40px;
}

.footer-widget h3 {
  color: var(--text-light);
  margin-bottom: 25px;
  font-size: 1.5rem;
  position: relative;
  padding-bottom: 10px;
}

.footer-widget h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--primary-1);
}

.footer-contact-info p {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
}

.footer-contact-info i {
  margin-right: 10px;
  color: var(--primary-1);
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li {
  margin-bottom: 10px;
}

.footer-menu li a {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.footer-menu li a:hover {
  color: var(--primary-1);
  padding-left: 5px;
}

.footer-bottom {
  background-color: rgba(0, 0, 0, 0.1);
  padding: 20px 0;
  margin-top: 40px;
}

.footer-bottom p {
  margin-bottom: 0;
}

/* AOS Animation
   ========================================================================== */
[data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-aos].aos-animate {
  opacity: 1;
}

/* Responsive Media Queries
   ========================================================================== */

/* Media query styles moved to responsive.css */ 