/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Kanit", sans-serif;
  background-color: #f9f9f9;
  color: #222;
}

/* Header Styling */
.securepro-navbar {
  background: #0d1b2a;
  color: #fff;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 25px;
}

/* Logo */
.securepro-logo a {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
}

.securepro-logo span {
  color: #00b4d8;
}

/* Navigation Menu */
.securepro-nav-menu ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

.securepro-nav-menu ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.securepro-nav-menu ul li a:hover {
  color: #00b4d8;
}

/* Call Button */
.nav-call a {
  background: #00b4d8;
  color: #fff;
  padding: 8px 18px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.nav-call a:hover {
  background: #0092b1;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: #fff;
  border-radius: 2px;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .securepro-nav-menu {
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    background: #0d1b2a;
    display: none;
    flex-direction: column;
    align-items: center;
    padding: 15px 0;
  }

  .securepro-nav-menu.active {
    display: flex;
  }

  .securepro-nav-menu ul {
    flex-direction: column;
    gap: 15px;
  }

  .nav-call {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

/* Small Screen Adjustments */
@media (max-width: 576px) {
  .securepro-logo a {
    font-size: 1.3rem;
  }
}
/* ===== Hero Section ===== */
.scp-hero {
  background: radial-gradient(circle at 20% 30%, #e6faff 0%, #f9f9ff 100%);
  padding: 120px 20px 80px;
  position: relative;
  overflow: hidden;
}

.scp-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.scp-hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* ===== Text Content ===== */
.scp-hero-text {
  flex: 1 1 520px;
  padding: 20px;
}

.scp-hero-text h1 {
  font-size: 3rem;
  font-weight: 800;
  color: #0d1b2a;
  line-height: 1.2;
  margin-bottom: 20px;
}

.scp-hero-text p {
  color: #333;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 35px;
  max-width: 550px;
}

.scp-hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

/* ===== Buttons ===== */
.scp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  padding: 12px 28px;
  transition: all 0.3s ease;
}

.scp-btn-primary {
  background: #00b4d8;
  color: #fff;
  box-shadow: 0 4px 10px rgba(0,180,216,0.3);
}

.scp-btn-primary:hover {
  background: #0092b1;
  box-shadow: 0 6px 14px rgba(0,180,216,0.4);
  transform: translateY(-2px);
}

.scp-btn-outline {
  border: 2px solid #00b4d8;
  color: #00b4d8;
  background: transparent;
}

.scp-btn-outline:hover {
  background: #00b4d8;
  color: #fff;
  transform: translateY(-2px);
}

/* ===== Image Section ===== */
.scp-hero-image {
  flex: 1 1 500px;
  text-align: center;
  position: relative;
}

.scp-hero-image::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(0,180,216,0.15) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 0;
}

.scp-img {
  max-width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: drop-shadow(0 10px 25px rgba(0,0,0,0.2));
}

.scp-img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 15px 30px rgba(0,0,0,0.25));
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
  .scp-hero-inner {
    flex-direction: column-reverse;
    text-align: center;
  }

  .scp-hero-text {
    flex: 1 1 100%;
    padding: 10px;
  }

  .scp-hero-text h1 {
    font-size: 2.4rem;
  }

  .scp-hero-text p {
    font-size: 1rem;
    margin: 0 auto 25px;
  }

  .scp-hero-buttons {
    justify-content: center;
  }

  .scp-img {
    max-width: 80%;
  }
}

@media (max-width: 576px) {
  .scp-hero {
    padding: 90px 15px 60px;
  }

  .scp-hero-text h1 {
    font-size: 1.9rem;
  }

  .scp-btn {
    padding: 10px 22px;
    font-size: 0.95rem;
  }
}

/* ===== Services Section ===== */
.scp-services {
  background: #f7faff;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.scp-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

/* Section Title */
.scp-section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0d1b2a;
  margin-bottom: 15px;
}

.scp-section-subtitle {
  color: #555;
  font-size: 1.05rem;
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

/* ===== Service Cards ===== */
.scp-service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 35px;
}

.scp-service-card {
  background: #fff;
  border-radius: 15px;
  padding: 40px 25px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.scp-service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: #00b4d8;
  transition: width 0.4s ease;
}

.scp-service-card:hover::before {
  width: 100%;
}

.scp-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 35px rgba(0, 180, 216, 0.15);
}

/* ===== Icons ===== */
.scp-service-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00b4d8, #0077b6);
  color: #fff;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 15px rgba(0, 180, 216, 0.3);
}

/* ===== Text ===== */
.scp-service-card h3 {
  color: #0d1b2a;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.scp-service-card p {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
  .scp-section-title {
    font-size: 2.1rem;
  }

  .scp-section-subtitle {
    font-size: 1rem;
    margin-bottom: 40px;
  }
}

@media (max-width: 576px) {
  .scp-services {
    padding: 80px 15px;
  }

  .scp-section-title {
    font-size: 1.8rem;
  }

  .scp-service-card {
    padding: 30px 20px;
  }

  .scp-service-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}
/* About Section */
.securepro-about {
  position: relative;
  background: radial-gradient(circle at top right, #0d1b2a, #000);
  color: #fff;
  padding: 80px 20px;
  overflow: hidden;
  font-family: "Kanit", sans-serif;
}

/* Layout */
.about-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

/* Image */
.about-image {
  flex: 1 1 45%;
  text-align: center;
}
.about-image img {
  width: 90%;
  max-width: 480px;
  border-radius: 20px;
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.3);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.about-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(0, 255, 255, 0.5);
}

/* Content */
.about-info {
  flex: 1 1 50%;
}

.about-info h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #00b4d8, #48cae4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-info p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #d9d9d9;
  margin-bottom: 25px;
}

/* Features */
.about-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  margin-bottom: 12px;
  color: #bde0fe;
}

.about-features i {
  color: #00b4d8;
  font-size: 1.2rem;
}

/* Call Button */
.about-call-btn {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(90deg, #00b4d8, #0077b6);
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.about-call-btn:hover {
  background: linear-gradient(90deg, #0077b6, #00b4d8);
  transform: translateY(-2px);
  box-shadow: 0 0 15px rgba(0, 180, 216, 0.5);
}

/* Responsive */
@media (max-width: 992px) {
  .about-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .about-info h2 {
    font-size: 2rem;
  }

  .about-info p {
    font-size: 1rem;
  }

  .about-image img {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .about-info h2 {
    font-size: 1.7rem;
  }
  .about-call-btn {
    padding: 10px 22px;
    font-size: 0.9rem;
  }
}
/* Features Section */
.securepro-features {
  background: linear-gradient(180deg, #000814, #001d3d);
  color: #fff;
  padding: 80px 20px;
  font-family: "Kanit", sans-serif;
  position: relative;
  overflow: hidden;
}

/* Section Header */
.features-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.features-header h2 {
  font-size: 2.5rem;
  background: linear-gradient(90deg, #00b4d8, #90e0ef);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
  font-weight: 700;
}
.features-header p {
  color: #cce3f0;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Grid Layout */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Feature Card */
.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 180, 216, 0.2);
  border-radius: 16px;
  padding: 40px 25px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -40%;
  width: 180%;
  height: 180%;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.2), transparent 70%);
  transform: scale(0);
  transition: transform 0.6s ease;
  z-index: 0;
}

.feature-card:hover::before {
  transform: scale(1);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 30px rgba(0, 180, 216, 0.3);
}

/* Icon */
.feature-icon {
  font-size: 2.8rem;
  color: #00b4d8;
  margin-bottom: 20px;
  z-index: 1;
  position: relative;
}

/* Text */
.feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  font-weight: 600;
  color: #fff;
  z-index: 1;
  position: relative;
}

.feature-card p {
  color: #bde0fe;
  font-size: 1rem;
  line-height: 1.6;
  z-index: 1;
  position: relative;
}

/* Responsive */
@media (max-width: 992px) {
  .features-header h2 {
    font-size: 2.1rem;
  }
}

@media (max-width: 576px) {
  .feature-card {
    padding: 30px 20px;
  }
  .feature-card h3 {
    font-size: 1.2rem;
  }
  .feature-icon {
    font-size: 2.2rem;
  }
}
/* CTA Section */
.securepro-cta {
  background: #ffffff;
  color: #000814;
  padding: 80px 20px;
  font-family: "Kanit", sans-serif;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Decorative Accent (subtle background pattern) */
.securepro-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(0, 180, 216, 0.07), transparent 70%);
  z-index: 0;
}

/* Container */
.cta-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  z-index: 1;
}

/* Heading */
.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #001d3d;
  letter-spacing: 0.5px;
}

/* Paragraph */
.cta-content p {
  color: #33415c;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 35px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

/* Button */
.cta-btn {
  display: inline-block;
  padding: 14px 36px;
  background: linear-gradient(90deg, #00b4d8, #0077b6);
  color: #ffffff;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.05rem;
  box-shadow: 0 8px 20px rgba(0, 180, 216, 0.3);
  transition: all 0.3s ease;
}
.cta-btn:hover {
  background: linear-gradient(90deg, #0077b6, #00b4d8);
  box-shadow: 0 10px 25px rgba(0, 180, 216, 0.4);
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 992px) {
  .cta-content h2 {
    font-size: 2.1rem;
  }
  .cta-content p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .cta-content h2 {
    font-size: 1.8rem;
  }
  .cta-btn {
    padding: 12px 28px;
    font-size: 0.95rem;
  }
}
/* Features Section */
.securepro-features {
  background: linear-gradient(180deg, #00111a, #001d3d);
  color: #fff;
  padding: 90px 20px;
  font-family: "Kanit", sans-serif;
  position: relative;
  overflow: hidden;
}

/* Subtle background glow */
.securepro-features::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -20%;
  width: 140%;
  height: 160%;
  background: radial-gradient(circle at center, rgba(0, 180, 216, 0.08), transparent 70%);
  z-index: 0;
}

/* Section Header */
.features-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
  position: relative;
}
.features-header h2 {
  font-size: 2.6rem;
  font-weight: 700;
  background: linear-gradient(90deg, #00b4d8, #90e0ef);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
}
.features-header p {
  color: #cde6f3;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Features Layout */
.features-flex {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Feature Box */
.feature-box {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  padding: 40px 25px;
  text-align: center;
  border: 1px solid rgba(0, 180, 216, 0.15);
  box-shadow: 0 0 15px rgba(0, 180, 216, 0.15);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-box:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 0 25px rgba(0, 180, 216, 0.35);
}

/* Icon */
.feature-icon {
  font-size: 2.8rem;
  color: #00b4d8;
  margin-bottom: 20px;
  transition: transform 0.4s ease;
}
.feature-box:hover .feature-icon {
  transform: rotate(10deg) scale(1.1);
}

/* Headings and Text */
.feature-box h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  font-weight: 600;
  color: #ffffff;
}
.feature-box p {
  font-size: 1rem;
  color: #bde0fe;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 992px) {
  .features-header h2 {
    font-size: 2.2rem;
  }
  .features-header p {
    font-size: 1rem;
  }
}
@media (max-width: 576px) {
  .feature-box {
    padding: 30px 20px;
  }
  .feature-box h3 {
    font-size: 1.2rem;
  }
  .feature-icon {
    font-size: 2.2rem;
  }
}
/* Pricing Section */
.securepro-plans {
  background: #f5f8ff;
  padding: 90px 20px;
  font-family: "Kanit", sans-serif;
  text-align: center;
}

/* Header */
.plans-header {
  max-width: 750px;
  margin: 0 auto 60px;
}
.plans-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #001d3d;
  margin-bottom: 15px;
}
.plans-header p {
  color: #33415c;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Grid */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Plan Card */
.plan-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 35px 25px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  position: relative;
}
.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,180,216,0.25);
}

/* Featured Plan */
.featured-plan {
  border: 2px solid #00b4d8;
  transform: scale(1.05);
}

/* Plan Header */
.plan-top h3 {
  font-size: 1.5rem;
  color: #001d3d;
  margin-bottom: 8px;
  font-weight: 700;
}
.plan-top .price {
  font-size: 1.3rem;
  color: #00b4d8;
  font-weight: 600;
}

/* Features List */
.plan-features {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}
.plan-features li {
  font-size: 1rem;
  color: #33415c;
  margin-bottom: 12px;
  position: relative;
  padding-left: 25px;
}
.plan-features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #00b4d8;
  font-weight: bold;
}

/* Call Button */
.plan-btn {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(90deg, #00b4d8, #0077b6);
  color: #fff;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.plan-btn:hover {
  background: linear-gradient(90deg, #0077b6, #00b4d8);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,180,216,0.35);
}

/* Responsive */
@media (max-width: 992px) {
  .plans-header h2 {
    font-size: 2.1rem;
  }
  .plans-header p {
    font-size: 1rem;
  }
}
@media (max-width: 576px) {
  .plan-card {
    padding: 30px 20px;
  }
  .plan-top h3 {
    font-size: 1.3rem;
  }
  .plan-top .price {
    font-size: 1.1rem;
  }
  .plan-btn {
    padding: 10px 22px;
    font-size: 0.95rem;
  }
}
/* Testimonials Section */
.securepro-testimonials {
  background: linear-gradient(180deg, #001d3d, #00111a);
  color: #ffffff;
  padding: 90px 20px;
  font-family: "Kanit", sans-serif;
  text-align: center;
  position: relative;
}

/* Section Header */
.testimonials-header {
  max-width: 750px;
  margin: 0 auto 60px;
}
.testimonials-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(90deg, #00b4d8, #90e0ef);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
}
.testimonials-header p {
  font-size: 1.1rem;
  color: #cce3f0;
  line-height: 1.6;
}

/* Grid Layout */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Testimonial Card */
.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,180,216,0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
}
.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0,180,216,0.25);
}

/* Avatar */
.testimonial-avatar {
  width: 80px;
  height: 80px;
  margin: 0 auto 15px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #00b4d8;
}
.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Text */
.testimonial-card p {
  font-size: 1rem;
  color: #bde0fe;
  line-height: 1.6;
  margin-bottom: 15px;
}
.testimonial-author span {
  font-weight: 600;
  color: #00b4d8;
}

/* Responsive */
@media (max-width: 992px) {
  .testimonials-header h2 {
    font-size: 2.2rem;
  }
  .testimonials-header p {
    font-size: 1rem;
  }
}
@media (max-width: 576px) {
  .testimonial-card {
    padding: 30px 20px;
  }
  .testimonial-avatar {
    width: 70px;
    height: 70px;
  }
  .testimonial-card p {
    font-size: 0.95rem;
  }
}
/* Disclaimer Section */
.securepro-disclaimer {
  background: #f0f4f8;
  color: #001d3d;
  padding: 60px 20px;
  font-family: "Kanit", sans-serif;
  text-align: center;
}
.disclaimer-container h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.disclaimer-container p {
  font-size: 1rem;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

/* Footer */
.securepro-footer {
  background: #001d3d;
  color: #ffffff;
  padding: 60px 20px 40px;
  font-family: "Kanit", sans-serif;
}
.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto 30px;
}
.footer-left {
  flex: 1 1 300px;
  margin-bottom: 30px;
}
.footer-logo a {
  font-size: 1.8rem;
  font-weight: 700;
  color: #00b4d8;
  text-decoration: none;
}
.footer-logo a span {
  color: #ffffff;
}
.footer-left p {
  margin: 15px 0;
  color: #cce3f0;
}
.footer-social a {
  display: inline-block;
  margin-right: 12px;
  font-size: 1.2rem;
  color: #00b4d8;
  transition: transform 0.3s ease;
}
.footer-social a:hover {
  transform: scale(1.2);
}

/* Right Column Links */
.footer-right {
  flex: 1 1 200px;
  margin-bottom: 30px;
}
.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  color: #cce3f0;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-links a:hover {
  color: #00b4d8;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  text-align: center;
}
.footer-bottom p {
  margin-bottom: 10px;
}
.footer-call-now {
  display: inline-block;
  padding: 10px 25px;
  background: #00b4d8;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.footer-call-now:hover {
  background: #0077b6;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,180,216,0.3);
}

/* Fixed Call Button */
.fixed-call-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #00b4d8;
  color: #fff;
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 20px rgba(0,180,216,0.4);
  z-index: 9999;
  transition: all 0.3s ease;
}
.fixed-call-btn:hover {
  background: #0077b6;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,180,216,0.5);
}

/* Responsive */
@media (max-width: 992px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-right {
    margin-top: 20px;
  }
}
@media (max-width: 576px) {
  .footer-call-now, .fixed-call-btn {
    font-size: 0.9rem;
    padding: 10px 18px;
  }
}
/* Contact Section */
.securepro-contact-section {
  background: #f5f8ff;
  padding: 90px 20px;
  font-family: "Kanit", sans-serif;
  color: #001d3d;
}

/* Heading */
.contact-heading {
  text-align: center;
  margin-bottom: 60px;
}
.contact-heading h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #001d3d;
}
.contact-heading p {
  font-size: 1.1rem;
  color: #33415c;
  line-height: 1.6;
}

/* Contact Grid */
.contact-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.contact-card {
  flex: 1 1 250px;
  background: #ffffff;
  border-radius: 18px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}
.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,180,216,0.2);
}
.contact-card i {
  font-size: 2.2rem;
  color: #00b4d8;
  margin-bottom: 15px;
}
.contact-card h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.contact-card p {
  font-size: 1rem;
  color: #33415c;
}

/* Contact Form */
.contact-form {
  max-width: 800px;
  margin: 0 auto 50px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 20px;
  border-radius: 12px;
  border: 1px solid #d1d9e6;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #00b4d8;
  box-shadow: 0 0 8px rgba(0,180,216,0.3);
}
.contact-form button {
  padding: 15px 25px;
  font-size: 1rem;
  font-weight: 600;
  background: linear-gradient(90deg, #00b4d8, #0077b6);
  color: #fff;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.contact-form button:hover {
  background: linear-gradient(90deg, #0077b6, #00b4d8);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,180,216,0.35);
}

/* Map */
.contact-map {
  width: 100%;
  height: 400px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .contact-grid {
    flex-direction: column;
    align-items: center;
  }
  .contact-card {
    width: 100%;
    max-width: 400px;
  }
}

@media (max-width: 576px) {
  .contact-heading h2 {
    font-size: 2rem;
  }
  .contact-heading p {
    font-size: 1rem;
  }
  .contact-form input,
  .contact-form textarea {
    padding: 12px 15px;
    font-size: 0.95rem;
  }
  .contact-form button {
    font-size: 0.95rem;
    padding: 12px 20px;
  }
  .contact-map {
    height: 300px;
  }
}
