* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #fff;
  color: #222;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.header {
  background: #fff;
  padding: 18px 0;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 999;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 30px;
  font-weight: 800;
  color: #111;
  text-decoration: none;
}

.logo img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.logo span {
  color: #ff7a00;
}

.navbar {
  display: flex;
  gap: 26px;
}

.navbar a {
  color: #222;
  text-decoration: none;
  font-weight: 600;
}

.navbar a:hover {
  color: #ff7a00;
}

.auth-buttons {
  display: flex;
  gap: 12px;
}

.signin-btn,
.signup-btn {
  border: none;
  cursor: pointer;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
}

.signin-btn {
  background: transparent;
  color: #ff7a00;
  border: 1px solid #ff7a00;
}

.signup-btn {
  background: #ff7a00;
  color: #fff;
}

.menu-btn {
  display: none;
  background: #ff7a00;
  color: #fff;
  border: none;
  padding: 8px 13px;
  font-size: 22px;
  border-radius: 6px;
}

.hero {
  height: 720px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.58);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  color: #fff;
  padding: 20px;
}

.hero-content h1 {
  font-size: 68px;
  margin-bottom: 22px;
}

.hero-content p {
  font-size: 22px;
  margin-bottom: 35px;
}

.main-btn {
  display: inline-block;
  background: #ff7a00;
  color: #fff;
  padding: 15px 38px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 800;
}

.section {
  padding: 100px 0;
}

.light-bg {
  background: #f7f9fc;
}

.section-title {
  text-align: center;
  margin-bottom: 55px;
}

.section-title h2 {
  font-size: 42px;
}

.country-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.country-card,
.service-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
  text-decoration: none;
  color: #222;
  transition: 0.35s;
}

.country-card:hover,
.service-card:hover {
  transform: translateY(-10px);
}

.country-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.country-card h3 {
  padding: 18px 20px 5px;
  font-size: 24px;
}

.country-card p {
  padding: 0 20px 22px;
  color: #666;
}

.service-card {
  padding: 35px;
  text-align: center;
}

.service-card img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-banner {
  padding: 120px 20px;
  text-align: center;
  background: linear-gradient(135deg, #ff7a00, #ffb347);
  color: #fff;
}

.page-banner h1 {
  font-size: 52px;
}

.about-content {
  max-width: 850px;
  text-align: center;
}

.about-content h2 {
  font-size: 40px;
  margin-bottom: 15px;
}

.contact-form {
  max-width: 650px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form input,
.contact-form textarea,
.auth-form input {
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
}

.contact-form textarea {
  height: 150px;
}

.contact-form button,
.auth-form button {
  padding: 15px;
  background: #ff7a00;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 700;
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.modal.active {
  display: flex;
}

.modal-box {
  background: #fff;
  width: 95%;
  max-width: 450px;
  padding: 35px;
  border-radius: 22px;
  position: relative;
}

.close-btn {
  position: absolute;
  top: 12px;
  right: 18px;
  border: none;
  background: none;
  font-size: 32px;
  cursor: pointer;
}

.auth-form {
  display: none;
  flex-direction: column;
  gap: 16px;
}

.auth-form.active {
  display: flex;
}

.auth-form h2 {
  text-align: center;
  font-size: 32px;
}

.auth-form p {
  text-align: center;
}

.auth-form span {
  color: #ff7a00;
  font-weight: 700;
  cursor: pointer;
}

.footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 28px;
}

.user-login-btn{
display:flex;
align-items:center;
gap:8px;
background:#ff7a00;
color:#fff;
border:none;
padding:12px 24px;
border-radius:40px;
font-weight:700;
cursor:pointer;
font-size:16px;
transition:0.3s;
}

.user-login-btn:hover{
background:#111;
}

.modal{
display:none;
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.65);
z-index:99999;
justify-content:center;
align-items:center;
padding:20px;
}

.modal.active{
display:flex;
}

.modal-box{
background:#fff;
width:100%;
max-width:450px;
padding:40px;
border-radius:24px;
position:relative;
animation:popup 0.4s ease;
}

.close-btn{
position:absolute;
top:12px;
right:18px;
border:none;
background:none;
font-size:34px;
cursor:pointer;
}

.login-form{
display:flex;
flex-direction:column;
gap:18px;
}

.login-form h2{
font-size:36px;
text-align:center;
margin-bottom:5px;
}

.login-text{
text-align:center;
color:#666;
margin-bottom:10px;
}

.login-form input{
padding:15px;
border:1px solid #ddd;
border-radius:12px;
font-size:16px;
}

.login-submit-btn{
background:#ff7a00;
color:#fff;
border:none;
padding:15px;
border-radius:12px;
font-size:18px;
font-weight:700;
cursor:pointer;
transition:0.3s;
}

.login-submit-btn:hover{
background:#111;
}

.login-links{
display:flex;
justify-content:space-between;
margin-top:5px;
}

.login-links a{
text-decoration:none;
color:#ff7a00;
font-weight:600;
font-size:14px;
}

@keyframes popup{

0%{
opacity:0;
transform:scale(0.8);
}

100%{
opacity:1;
transform:scale(1);
}

}



.modal{
display:none;
position:fixed;
inset:0;
background:rgba(0,0,0,0.65);
z-index:99999;
align-items:center;
justify-content:center;
padding:20px;
}

.modal.active{
display:flex;
}

.modal-box{
width:100%;
max-width:460px;
background:#fff;
padding:35px;
border-radius:20px;
position:relative;
animation:popup .3s ease;
}

.close-btn{
position:absolute;
top:12px;
right:18px;
border:none;
background:none;
font-size:35px;
cursor:pointer;
color:#777;
}

.login-form{
display:none;
flex-direction:column;
gap:16px;
}

.login-form.active{
display:flex;
}

.login-form h2{
font-size:32px;
text-align:center;
color:#111827;
}

.login-text{
text-align:center;
color:#666;
margin-bottom:10px;
}

.login-form input{
width:100%;
padding:14px 16px;
border:1px solid #ddd;
border-radius:8px;
font-size:15px;
}

.remember-row{
display:flex;
justify-content:space-between;
align-items:center;
font-size:14px;
}

.remember-row a{
text-decoration:none;
color:#ff7a00;
font-weight:600;
}

.login-submit-btn{
width:100%;
padding:15px;
background:linear-gradient(90deg,#ff7a00,#ffb347);
border:none;
border-radius:10px;
color:#fff;
font-size:17px;
font-weight:700;
cursor:pointer;
}

.login-links{
text-align:center;
}

.login-links span{
color:#ff7a00;
font-weight:700;
cursor:pointer;
}

@keyframes popup{
from{
opacity:0;
transform:scale(.8);
}
to{
opacity:1;
transform:scale(1);
}
}




/* =========================
   CLEAN TRAVELGO FOOTER
========================= */

.footer{
background:#0f172a;
color:#fff;
padding:70px 0 0;
margin-top:0;
}

.footer-grid{
display:grid;
grid-template-columns:1.4fr 1fr 1fr 1fr;
gap:45px;
align-items:flex-start;
}

.footer-logo{
display:inline-block;
font-size:36px;
font-weight:900;
color:#fff;
text-decoration:none;
margin-bottom:18px;
}

.footer-logo span{
color:#ff7a00;
}

.footer-about p{
font-size:16px;
line-height:1.8;
color:#d1d5db;
margin-bottom:22px;
}

.footer-contact p{
display:flex;
align-items:center;
gap:12px;
margin-bottom:14px;
color:#e5e7eb;
font-size:16px;
}

.footer-contact span{
color:#ff7a00;
font-size:20px;
}

.footer h3{
font-size:24px;
margin-bottom:24px;
position:relative;
}

.footer h3::after{
content:"";
width:45px;
height:3px;
background:#ff7a00;
position:absolute;
left:0;
bottom:-8px;
border-radius:10px;
}

.footer ul{
list-style:none;
padding:0;
margin:0;
}

.footer ul li{
margin-bottom:13px;
}

.footer ul li a{
color:#d1d5db;
text-decoration:none;
font-size:16px;
transition:0.3s;
}

.footer ul li a:hover{
color:#ff7a00;
padding-left:6px;
}

.social-icons{
display:flex;
gap:14px;
margin-bottom:28px;
flex-wrap:wrap;
}

.social-icons a{
width:48px;
height:48px;
background:#ff7a00;
color:#fff;
display:flex;
align-items:center;
justify-content:center;
border-radius:12px;
text-decoration:none;
font-size:20px;
font-weight:800;
transition:0.3s;
}

.social-icons a:hover{
background:#fff;
color:#ff7a00;
transform:translateY(-5px);
}

.footer-btn{
display:inline-block;
background:#ff7a00;
color:#fff;
padding:14px 28px;
border-radius:35px;
text-decoration:none;
font-weight:700;
transition:0.3s;
}

.footer-btn:hover{
background:#fff;
color:#ff7a00;
}

.footer-bottom{
margin-top:50px;
padding:22px 0;
text-align:center;
border-top:1px solid rgba(255,255,255,0.12);
background:#0b1120;
}

.footer-bottom p{
color:#d1d5db;
font-size:15px;
}

/* RESPONSIVE */
@media(max-width:992px){
.footer-grid{
grid-template-columns:1fr 1fr;
}
}

@media(max-width:600px){
.footer-grid{
grid-template-columns:1fr;
}

.footer{
padding-top:50px;
}
}

/* add social media icons css */
.social-icons{
display:flex;
gap:16px;
margin-top:20px;
flex-wrap:wrap;
}

.social-icons a{
width:55px;
height:55px;
display:flex;
align-items:center;
justify-content:center;
border-radius:14px;
font-size:22px;
color:#fff;
text-decoration:none;
transition:0.3s;
}

.facebook{
background:#1877f2;
}

.instagram{
background:linear-gradient(135deg,#ff0069,#ff7a00);
}

.youtube{
background:#ff0000;
}

.twitter{
background:#111827;
}

.social-icons a:hover{
transform:translateY(-6px);
}

.faq-page{
padding:80px 0;
background:#fff;
}

.faq-tabs{
display:flex;
gap:20px;
background:#fff;
box-shadow:0 8px 25px rgba(0,0,0,0.08);
padding:20px;
margin-bottom:35px;
overflow-x:auto;
}

.faq-tabs button{
border:none;
background:transparent;
font-size:18px;
font-weight:700;
padding:14px 25px;
cursor:pointer;
position:relative;
}

.faq-tabs button.active{
color:#ff7a00;
}

.faq-tabs button.active::after{
content:"";
position:absolute;
left:20px;
right:20px;
bottom:0;
height:3px;
background:#ff7a00;
}

.faq-list{
display:flex;
flex-direction:column;
gap:10px;
}

.faq-box{
background:#f8f9fb;
border-radius:4px;
overflow:hidden;
}

.faq-question{
width:100%;
border:none;
background:#f8f9fb;
padding:22px 26px;
font-size:20px;
font-weight:700;
display:flex;
justify-content:space-between;
align-items:center;
cursor:pointer;
text-align:left;
}

.faq-question span{
font-size:26px;
transition:0.3s;
}

.faq-answer{
display:none;
padding:0 26px 25px;
background:#fff;
}

.faq-answer p{
font-size:18px;
line-height:1.8;
color:#666;
}

.faq-box.active .faq-answer{
display:block;
}

.faq-box.active .faq-question span{
transform:rotate(180deg);
color:#ff7a00;
}


/* privacy policy */
.policy-hero{
background:linear-gradient(135deg,#ff7a00,#ffb347);
padding:70px 0 90px;
color:#fff;
}

.travelgo-breadcrumb{
display:inline-flex;
align-items:center;
gap:18px;
background:#fff;
padding:14px 28px;
border-radius:40px;
margin-bottom:35px;
}

.travelgo-breadcrumb a{
text-decoration:none;
font-weight:800;
color:#111827;
}

.travelgo-breadcrumb a.active{
background:#ff7a00;
color:#fff;
padding:9px 18px;
border-radius:25px;
}

.travelgo-breadcrumb span{
color:#999;
font-weight:800;
}

.policy-hero h1{
font-size:62px;
font-weight:900;
margin-bottom:15px;
}

.policy-hero p{
font-size:22px;
max-width:800px;
}

.policy-section{
padding:80px 0;
background:#fff;
}

.policy-content{
max-width:1000px;
}

.policy-content h2,
.policy-content h3{
color:#111827;
margin-bottom:18px;
}

.policy-content h2{
font-size:38px;
}

.policy-content h3{
font-size:28px;
margin-top:35px;
}

.policy-content p,
.policy-content li{
font-size:19px;
line-height:1.9;
color:#444;
}

.policy-content ul{
padding-left:25px;
margin:20px 0;
}

.policy-content li{
margin-bottom:12px;
}


