/* ===== Contact Page Styling - Matches JAK82 Theme ===== */

.contact-section {
  font-family: "Figtree", sans-serif;
  background-image: url('../img/bg/comon-bg.png');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 60px 20px;
}

.contact-container {
  max-width: 950px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 14px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
}

/* ===== Left Side Info ===== */
.contact-info {
  flex: 1 1 40%;
  background: linear-gradient(135deg, #f2f4f8, #ffffff);
  padding: 40px;
}

.contact-info h2 {
  font-size: 1.8rem;
  color: #0a1f44;
  margin-bottom: 1rem;
}

.contact-info p {
  color: #444;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.contact-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info li {
  font-size: 0.95rem;
  color: #222;
  margin-bottom: 10px;
}

.contact-info li strong {
  color: #0a1f44;
}

.contact-info a {
  color: #0a1f44;
  text-decoration: none;
  transition: 0.3s ease;
}

.contact-info a:hover {
  color: #0078ff;
  text-decoration: underline;
}

/* ===== Right Side Form ===== */
.contact-form {
  flex: 1 1 60%;
  padding: 40px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form label {
  font-weight: 600;
  color: #0a1f44;
  font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 15px;
  border: 1.2px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  font-family: "Figtree", sans-serif;
  background-color: #ffffff;
  transition: all 0.3s ease;
  color: #222;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #0078ff;
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 120, 255, 0.2);
}

.contact-form button {
  padding: 12px 25px;
  background-color: #0a1f44;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.contact-form button:hover {
  background-color: #0078ff;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
  .contact-info, .contact-form {
    flex: 1 1 100%;
    padding: 30px 25px;
  }
}

/* ABOUT PAGE HERO CLEAN THEME */
.about-hero {
  background: #f7f9fc;
  padding: 55px 20px;
  text-align: center;
  border-bottom: 1px solid #e5e7eb;
}

.about-hero h1 {
  font-size: 34px;
  font-weight: 700;
  color: #1e293b;
}

.about-hero p {
  font-size: 18px;
  color: #475569;
  max-width: 680px;
  margin: 10px auto 0 auto;
}

/* PROFILE IMAGE CLEAN LOOK */
.about-image {
  text-align: center;
  margin: 35px auto;
}

.about-image img {
  max-width: 210px;
  border-radius: 50%;
  border: 2px solid #e2e8f0;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* SECTION SPACING SMOOTH */
.section {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px 60px 20px;
}

/* MOBILE NAVIGATION FIX */
.navbar ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

#menu-toggle {
  display: none;
}

/* Hamburger Icon */
.mobile-menu-btn {
  display: none;
  cursor: pointer;
  font-size: 28px;
  color: white;
}

/* Show hamburger on mobile */
@media (max-width: 768px) {

  .mobile-menu-btn {
    display: block;
  }

  .navbar ul {
    position: fixed;
    top: 0;
    right: -260px;
    width: 260px;
    height: 100vh;
    background: #0d1224; /* Dark navy premium */
    padding-top: 80px;
    transition: right 0.35s ease;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding-left: 24px;
  }

  .navbar ul.show-menu {
    right: 0;
  }

  .navbar ul li a {
    color: #fff;
    font-size: 19px;
    text-decoration: none;
  }
}

/* Hosting Plans Boxes */
.hosting-plan-box {
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.hosting-plan-box h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.hosting-plan-box ul {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

.hosting-plan-box ul li {
    font-size: 15px;
    padding: 5px 0;
    border-bottom: 1px dashed #eee;
}

.price-tag {
    font-size: 18px;
    font-weight: bold;
    color: #C62848; /* crimson red */
    padding: 10px 0;
    border-top: 1px solid #ddd;
}

/* MOBILE RESPONSIVE FIX */
@media (max-width: 768px) {

    .hosting-plan-box h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .hosting-plan-box ul li {
        font-size: 14px;
        padding: 4px 0;
    }

    .price-tag {
        font-size: 17px;
        padding: 8px 0;
    }

    .hosting-plan-box {
        padding: 15px;
        margin-bottom: 20px;
    }
}

/* Check Icon Style - Universal */
.hosting-plan-box ul li {
    position: relative;
    padding-left: 22px;
}

.hosting-plan-box ul li::before {
    content: "✔"; /* Always works */
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #C62848; /* crimson red */
    font-size: 15px;
    font-weight: bold;
}

/* Premium Hosting Plan Box - Polished Look */
.hosting-plan-box {
    background: #ffffff;
    border: 1px solid #e2e2e2;
    border-radius: 14px;
    padding: 22px;
    margin-bottom: 28px;
    text-align: left;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
}

/* Hover Effect */
.hosting-plan-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* Top Colored Ribbon */
.hosting-plan-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #C62848, #ff6b81);
}

/* Premium List Icons */
.hosting-plan-box ul li {
    position: relative;
    padding-left: 28px;
    font-size: 15px;
    color: #444;
    margin-bottom: 6px;
}

.hosting-plan-box ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 3px;
    color: #C62848;
    font-size: 16px;
    font-weight: bold;
}

.price-tag {
    font-size: 20px;
    font-weight: 700;
    background: #C62848;
    color: white;
    display: inline-block;
    padding: 10px 22px;
    border-radius: 30px;
    margin-top: 12px;
    box-shadow: 0 5px 15px rgba(198,40,72,0.3);
}

@media (max-width: 768px) {
    .hosting-plan-box {
        padding: 18px;
        margin-bottom: 22px;
        border-radius: 12px;
    }

    .hosting-plan-box h3 {
        font-size: 18px;
        font-weight: 700;
    }

    .price-tag {
        font-size: 18px;
        padding: 8px 18px;
    }
}
