:root{
  --primary:#ff7a00;
  --dark:#111;
  --gray:#666;
  --bg:#f4f7fb;
  --white:#fff;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:"Segoe UI", sans-serif;
}

body{
  background:var(--bg);
}

/* SECTION */
.packages-ui{
  padding:80px 20px;
}

.container{
  max-width:1200px;
  margin:auto;
}

/* HEADER */
.section-header{
  text-align:center;
  margin-bottom:40px;
}

.section-header h2{
  font-size:36px;
  margin-bottom:10px;
  color:var(--dark);
}

.section-header p{
  color:var(--gray);
  font-size:16px;
}

/* INFO BAR */
.info-bar{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(160px,1fr));
  gap:20px;
  background:var(--white);
  padding:25px;
  border-radius:14px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
  margin-bottom:50px;
}

.info-item span{
  font-size:13px;
  color:var(--gray);
}

.info-item strong{
  display:block;
  font-size:16px;
  margin-top:5px;
}

/* CARDS */
.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
}

.card{
  background:var(--white);
  padding:30px;
  border-radius:18px;
  box-shadow:0 12px 35px rgba(0,0,0,0.08);
  transition:0.3s ease;
}

.card:hover{
  transform:translateY(-8px);
}

.card h3{
  margin-bottom:20px;
  color:var(--primary);
  font-size:22px;
}

.card ul{
  list-style:none;
}

.card ul li{
  margin-bottom:12px;
  font-size:15px;
  color:#222;
}

/* HIGHLIGHT */
.highlight{
  border:2px solid var(--primary);
}

/* CTA */
.cta-box{
  margin-top:70px;
  text-align:center;
  background:linear-gradient(135deg,#ff7a00,#ff9f43);
  padding:50px 20px;
  border-radius:22px;
  color:#fff;
}

.cta-box h3{
  font-size:28px;
  margin-bottom:10px;
}

.cta-box p{
  margin-bottom:25px;
  opacity:0.95;
}

.cta-btn{
  background:#fff;
  color:#ff7a00;
  padding:14px 36px;
  border-radius:30px;
  text-decoration:none;
  font-weight:700;
}

/* MOBILE */
@media(max-width:768px){
  .section-header h2{
    font-size:28px;
  }
}

.price-box{
  background:linear-gradient(135deg,#ffb347,#ff7a00);
  padding:30px 25px;
  border-radius:20px;
  text-align:center;
  color:#fff;
  box-shadow:0 15px 40px rgba(0,0,0,0.15);
  margin-top:25px;
}

.price-label{
  display:inline-block;
  background:rgba(255,255,255,0.25);
  padding:6px 14px;
  border-radius:20px;
  font-size:13px;
  font-weight:600;
  margin-bottom:12px;
}

.price-amount{
  font-size:44px;
  margin:10px 0;
  font-weight:800;
}

.price-text{
  font-size:14px;
  opacity:0.95;
  margin-bottom:20px;
}

.price-btn{
  display:inline-block;
  background:#fff;
  color:#ff7a00;
  padding:14px 34px;
  border-radius:30px;
  font-weight:700;
  text-decoration:none;
  transition:0.3s ease;
}

.price-btn:hover{
  transform:translateY(-3px);
}


/* ================= FOOTERS ================= */
/* Footer modern big-logo */
.footer {
  background:#353535;
  color:#ffffff;
  padding:50px 20px 20px;
  width:100%;
}

.footer-container{
  max-width:1200px;
  margin:auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:40px;
  flex-wrap:wrap;
}

.footer-brand{
  max-width:460px;
}

.footer-logo{
  height:350px;
  width:auto;
  max-width:350px;
  display:block;
  margin-bottom:16px;
}

.footer-brand p{
  font-size:15px;
  color:#e5e7eb;
  line-height:1.6;
}

/* Social icons round */
.footer-social{
  display:flex;
  gap:16px;
  margin-top:20px;
}

.social-icon{
  width:46px;
  height:46px;
  background:rgba(66,113,204,0.35);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  transition:all 0.3s ease;
}

.social-icon img{
  width:22px;
  height:22px;
  object-fit:contain;
  display:block;
}

.social-icon:hover{
  transform:translateY(-4px);
}

/* Brand hover colors */
.whatsapp:hover { background:var(--whatsapp); }
.instagram:hover { background:#E1306C; }
.linkedin:hover { background:#0A66C2; }
.call:hover { background:var(--primary); }
.youtube:hover { background:#FF0000; }

.footer-bottom{
  margin-top:40px;
  padding-top:15px;
  text-align:center;
  font-size:14px;
  color:#cbd5e1;
  border-top:1px solid rgba(255,255,255,0.12);
}

/* Footer v2 with columns */
.footer-alt {
  background-color:#353535;
  color:#fff;
  padding:40px 20px 20px 20px;
  font-family:Arial, sans-serif;
}

.footer-alt .footer-container{
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  gap:20px;
  align-items:flex-start;
}

.footer-column{
  flex:1 1 250px;
}

.footer-column h3{
  color:var(--accent);
  margin-bottom:10px;
}

.footer-column h4{
  color:#fff;
  margin-bottom:10px;
}

.footer-column p,
.footer-column ul{
  margin-bottom:10px;
  line-height:1.5;
}

.footer-column ul{
  list-style:none;
  padding:0;
}

.footer-column ul li{
  margin-bottom:8px;
}

.footer-column ul li a{
  color:#fff;
  text-decoration:none;
  transition:color 0.3s;
}

.footer-column ul li a:hover{
  color:var(--accent);
}

/* Social icons (image) */
.footer-alt .footer-social{
  display:flex;
  gap:10px;
  margin-top:10px;
}

.footer-alt .footer-social a img{
  width:35px;
  height:35px;
  transition:transform 0.3s;
}

.footer-alt .footer-social a img:hover{
  transform:scale(1.1);
}

.footer-alt .footer-bottom{
  text-align:center;
  margin-top:30px;
  border-top:1px solid rgba(255,255,255,0.12);
  padding-top:15px;
  font-size:14px;
  color:#ddd;
}

.footer-column:first-child{
  flex:2;
}

/* ================= GLOBAL BACK BUTTON ================= */
.back-home-top {
  position: fixed;
  top: 18px;
  left: 18px;
  z-index: 9999;

  background: linear-gradient(135deg, #ff7a00, #ff9800);
  color: #fff;
  padding: 10px 16px;

  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;

  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  transition: all 0.25s ease;
}

/* Hover effect */
.back-home-top:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
  background: linear-gradient(135deg, #e66a00, #ff8c00);
}

/* Mobile friendly */
@media (max-width: 600px) {
  .back-home-top {
    padding: 8px 14px;
    font-size: 13px;
    top: 12px;
    left: 12px;
  }
}

/* Smooth scroll for anchor */
html {
  scroll-behavior: smooth;
}
/* Contact Section */
.contact-section {
  background: linear-gradient(135deg, #fff9f0 0%, #fff5e6 100%);
  padding: 60px 20px;
  margin: 40px 0;
}

.contact-cta {
  max-width: 800px;
  margin: auto;
  text-align: center;
  padding: 40px 30px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #ff7a00;
}

.contact-cta h2 {
  font-size: 28px;
  margin-bottom: 12px;
  color: var(--dark);
}

.contact-cta p {
  color: var(--gray);
  margin-bottom: 25px;
  font-size: 16px;
  line-height: 1.6;
}

.contact-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  font-size: 15px;
  cursor: pointer;
}

.btn-primary {
  background: #ff7a00;
  color: white;
}

.btn-primary:hover {
  background: #e66a00;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 122, 0, 0.3);
}

.btn-secondary {
  background: white;
  color: #ff7a00;
  border: 2px solid #ff7a00;
}

.btn-secondary:hover {
  background: #fff5e6;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 122, 0, 0.2);
}

@media (max-width: 600px) {
  .contact-cta {
    padding: 25px 15px;
  }

  .contact-cta h2 {
    font-size: 22px;
  }

  .contact-buttons {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

