
:root{
  --gold: #e09706;
  --bg-a: #fdf6ec;
  --bg-b: #f2e7d5;
  --dark: #1d1f2f;
}

/* Base */
html,body { height:100%; margin:0; padding:0; scroll-behavior:smooth; }
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  background: linear-gradient(135deg, var(--bg-a), var(--bg-b));
  color: #333;
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: linear-gradient(to bottom, #eeece9, var(--gold));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 0 0 20px 20px;
  box-shadow: 0 8px 32px rgba(31,38,135,0.2);
  letter-spacing: 0.05em;
  color: var(--dark);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
header.scrolled {
  background: rgba(255,255,255,0.35);
  box-shadow: 0 8px 48px rgba(31,38,135,0.4);
}
header img { height:90px; filter: drop-shadow(0 0 4px rgba(224,146,6,0.7)); transition: transform .3s;}
header img:hover { transform: rotate(10deg) scale(1.05); }

/* Header buttons / icons */
.header-buttons { display:flex; align-items:center; gap:8px; }
.header-buttons a{
  position: relative;
  margin-left: 20px;
  padding: 12px 24px;
  background: transparent;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 30px;
  overflow: hidden;
  transition: 0.4s ease;
  z-index: 0;
  display:inline-flex;
  align-items:center;
  gap:8px;
}

/* glow background behind header buttons */
.header-buttons a::before{
  content:"";
  position:absolute;
  top:-50%;
  left:-50%;
  width:400px;
  height:200%;
  background: linear-gradient(45deg,#25D366,#128C7E);
  animation: glow 3s linear infinite;
  filter: blur(25px);
  opacity:0;
  transition:opacity .4s;
  z-index:-1;
  border-radius:30px;
}

.header-buttons a.whatsapp-btn i { color: #25D366; }
.header-buttons a.insta-btn i { 
  color: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
  /* -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; */
}
.header-buttons a.call-btn i { color: #007bff; }


@keyframes glow { 0%{transform:rotate(0deg);} 100%{transform:rotate(360deg);} }

/* small icon sizing */
.whatsapp-btn i, .insta-btn i, .call-btn i { font-size:20px !important; }

/* Hero */
.hero {
  background-image: url('img/shifaaz-shamoon-Rl9l9mL6Pvs-unsplash.jpg');
  background-size: cover;
  background-position: center;
  padding: 120px 20px;
  text-align: center;
  color: #1d1f2f;
  position: relative;
  min-height: 320px;
  border-radius: 4%;
  margin-top: 20px;
  margin-bottom: 15px;
}
.hero::before{
  content:'';
  position:absolute; inset:0;
  /* background: rgba(0, 0, 0, 0.5); */
  z-index:1;
}
.hero-content{ position:relative; z-index:2; max-width:800px; margin:0 auto; animation:fadeInUp 1.2s ease; }
@keyframes fadeInUp {0%{opacity:0; transform:translateY(20px);}100%{opacity:1; transform:none;}}
.hero h1{ font-size:36px; font-weight:700; margin-bottom:15px; color:#fff; text-shadow:1px 1px 4px rgba(0,0,0,0.5); }
.hero p{ font-size:18px; color:#e0f7fa; margin:0 0 18px; }

/* brand */
.ak-brand { font-family:'Pacifico',cursive; font-size:30px; color:#ffd60a; display:inline-block; margin-top:5px; }

/* CTA button */
.hero-btn {
  padding:12px 25px; font-size:16px; background: var(--gold); color:#fff; text-decoration:none;
  border-radius:8px; font-weight:700; transition:background .3s;
}
.hero-btn:hover { background:#fb8500; color:var(--dark); }

/* Nav */
nav {
  display:flex;
  justify-content:center;
  background: linear-gradient(270deg,#ffe5ec,#ffd6a5,#caffbf,#9bf6ff,#a0c4ff,#bdb2ff);
  background-size:600% 600%;
  padding:1px;
  animation: gradientShift 12s ease infinite;
  border-radius:50px;
}
@keyframes gradientShift { 0%{background-position:0% 50%}50%{background-position:100% 50%}100%{background-position:0% 50%} }
nav:hover { background: linear-gradient(270deg,#fff4e6,#fbe1ba,#f9d59c,#f0b450,var(--gold)); animation: gradientShift 10s ease infinite; }
nav a { color:#333; text-decoration:none; padding:10px 10px; font-weight:600; transition: .25s; }
nav a:hover { background: rgba(255,255,255,0.5); border-radius:5px; }

/* sections */
section { padding:40px 20px; text-align:center; }
h2 { font-size:28px; color:#090909; font-weight:600; margin-bottom:10px; }

/* CTA box */
.cta { background:#90e0ef; border-radius:8px; padding:20px; margin:20px auto; max-width:800px; }

/* Cards/grid */
.services, .destinations {
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap:20px; padding:20px;
  align-items:center;
}

/* Card */
/* .card {
  background: white;
  padding:25px 20px;
  border-radius:15px;
  text-align:center;
  box-shadow:0 4px 10px rgba(0,0,0,0.1);
  transition: transform .3s ease, box-shadow .3s;
  cursor:pointer;
  display:flex; flex-direction:column; justify-content:flex-start; align-items:center;
  min-height:320px;
}
.card:hover { transform: translateY(-8px); box-shadow: 0 8px 20px rgba(0,0,0,0.15); }
.card i { margin-bottom:10px; font-size:30px; color: var(--gold); }
.card h3 { color: var(--gold); font-size:20px; margin-bottom:10px; }
.card p { color:#555; font-size:14px; line-height:1.5; } */

/* Desktop services section */
#services {
  padding: 20px 20px;
  background: #fdf6ec; /* light background */
}

#services h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: var(--gold);
  font-family: 'Poppins', sans-serif;
}

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Card styling (desktop look) */
 .card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  gap: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer; 
 }

 .card-link,
.services a {
  text-decoration: none;
  color: inherit;
} 

.card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.card:active {
  transform: scale(0.98);
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

/* Card icon */
.card-icon {
  font-size: 38px;
  color: var(--gold);
  transition: color 0.3s ease, transform 0.3s ease;
}

.card:hover .card-icon {
  color: #c67f04;
  transform: rotate(5deg);
}

/* Info section inside card */
.card .info h3 {
  font-size: 1.4rem;
  color: #333;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 8px;
}

.card .info p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
}

/* Link wrapper */
.card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}


.card p {
  line-height: 1.5;
  font-size: 16px; /* consistent font size */
}



/* travel cards (gallery style) */
.card-container { display:flex; flex-wrap:wrap; justify-content:center; gap:20px; padding:0 40px 60px; }
.travel-card { width:260px; height:330px; border-radius:18px; overflow:hidden; position:relative; box-shadow:0 8px 25px rgba(0,0,0,0.15); transition: transform .3s; }
.travel-card img { width:100%; height:100%; object-fit:cover; display:block; }
.travel-card:hover { transform: translateY(-6px); }
.card-info { position:absolute; bottom:0; width:100%; padding:15px 12px; background:linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0)); color:#fff; }

/* stars & price */
.stars { color:#f1c40f; margin-bottom:5px; font-size:15px; }
.price { font-weight:bold; color:#27ae60; font-size:1rem; }

/* Popup */
.popup {
  position: fixed; top:0; left:0; width:100%; height:100%;
  background: rgba(0,0,0,0.5); display:none; justify-content:center; align-items:center; z-index:999;
}
.popup-inner {
  display:flex; flex-direction:row; width:90%; max-width:900px; background:#fff; border-radius:16px; overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,0.3); animation:zoomIn .3s ease; position:relative;
}
@keyframes zoomIn { from{transform:scale(.95); opacity:0;} to{transform:scale(1); opacity:1;} }
.popup-left, .popup-right { width:50%; }
.popup-left img { width:100%; height:100%; object-fit:cover; }
.popup-right { padding:30px; background:#f8f9fa; display:flex; flex-direction:column; justify-content:space-between; }
.popup-right h2{ font-size:1.8rem; color:#34495e; margin-bottom:10px; }
.popup-right p{ font-size:1rem; color:#555; margin-bottom:10px; }
.tags span { display:inline-block; margin:4px 6px 10px 0; padding:6px 12px; background:#ecf0f1; border-radius:20px; font-size:.9rem; }
.popup-buttons { display:flex; flex-wrap:wrap; gap:10px; margin-top:20px; }
.popup-buttons button { padding:10px 20px; border:none; border-radius:25px; cursor:pointer; font-size:1rem; }
.choose-btn{ background:#3498db; color:#fff; } .next-btn{ background:#e67e22; color:#fff; } .more-btn{ background:#2980b9; color:#fff; }

/* close button */
.close-btn { position:absolute; top:15px; right:20px; font-size:1.8rem; background:#fff; color:#333; border:none; border-radius:50%; width:36px; height:36px; text-align:center; line-height:36px; box-shadow:0 2px 6px rgba(0,0,0,0.2); cursor:pointer; z-index:10; }
.close-btn:hover { background:#f44336; color:#fff; }

/* Map & About */



/* .map-about-container { display:flex; flex-wrap:wrap; gap:20px; justify-content:center; 
  align-items:flex-start; margin:40px auto;
   max-width:1100px; padding:20px; }

.map-card, .about-card { background:#fff; border:4px 
  solid var(--gold); border-radius:12px;
   box-shadow:0 4px 15px rgba(0,0,0,0.1); 
   padding:15px; flex:1 1 45%; min-width:300px; }
   
.map-card iframe { width:100%; height:300px; border:none; border-radius:10px; } */

:root {
  --gold: #d4a006; /* gold color variable */
}

/* Container */
.map-about-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: flex-start;
  margin: 40px auto;
  max-width: 1100px;
  padding: 20px;
}

/* Section Title */
.section-title {
  flex: 0 0 100%; /* full width so it’s above both cards */
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-title::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: var(--gold);
  margin: 6px auto 0;
  border-radius: 2px;
}

/* Cards */

.map-card,
.about-card {
  background: #fff;
  border: 5px solid var(--gold); /* thick border */
  border-radius: 14px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 15px;
  flex: 1 1 45%; /* 2 per row on desktop */
  min-width: 300px;
  font-size: 16px;
}
section {
    scroll-margin-top: 100px; /* adjust to height of navbar */
}

html {
    scroll-behavior: smooth;
}

/* Map Iframe */
.map-card iframe {
  width: 100%;
  height: 300px;
  border: 3px solid var(--gold); /* outline around the map */
  border-radius: 10px;
}

/* Contact / Why choose */
.contact-why-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: nowrap; /* no stacking */
  margin-bottom: 20px;
  
}

.contact-section, .why-choose {
  flex: 1 1 50%;
  background: #fff;
  border: 4px solid var(--gold);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: center;
  max-width: 450px;
   /* min-height: 100%; */  
}


.why-choose ul {
  list-style: none;
  padding: 10px;
  font-size: 16px;
  line-height: 1.8;
  min-height: 100;
}
.why-choose li {
  margin: 1px 0;
}



/* floating actions */
.floating-btn { position: fixed; bottom:20px; right:20px; display:flex; flex-direction:column; gap:10px; z-index:1000; }
.floating-btn a img { width:50px; height:50px; }

/* whatsapp floating circular button */
.whatsapp-float {
  position: fixed; width:60px; height:60px; bottom:30px; right:30px;
  background-color:#25d366; color:white; border-radius:50%; display:flex; align-items:center; justify-content:center;
  box-shadow:0 2px 10px rgba(0,0,0,0.3); z-index:1000; cursor:pointer; transition:background-color .3s;
}
.whatsapp-float img { width:35px; height:35px; }

/* attestation card styling */
.attestation-card {
  position: relative; background: rgba(255,245,210,0.55); backdrop-filter:blur(16px); -webkit-backdrop-filter:blur(16px);
  border-radius:20px; max-width:380px; margin:40px auto; padding:36px 32px 44px; box-shadow:0 12px 28px rgba(255,193,7,0.25);
  color:#2a2a2a; text-align:center; transition:box-shadow .3s, transform .3s; cursor:default;
}
.attestation-card:hover { transform: translateY(-8px) scale(1.04); box-shadow: 0 0 16px #a19369,0 0 32px #ffb300,0 0 60px #ae9d68; }
.attestation-card::before{ content:""; position:absolute; top:-80px; left:-60px; width:180px; height:180px; background:radial-gradient(circle,#ffecb3 0%, transparent 70%); opacity:.3; filter: blur(40px); border-radius:50%; z-index:-2; }
.attestation-card::after { content:""; position:absolute; bottom:-70px; right:-50px; width:140px; height:140px; background:radial-gradient(circle,#ffe082 0%, transparent 80%); opacity:.25; filter: blur(35px); border-radius:50%; z-index:-2; }
.attestation-card h2 { color:#f9a825; text-shadow:0 0 6px rgba(255,168,0,0.6); }

/* footer */
.site-footer {
  background: linear-gradient(to bottom, var(--gold), #eeece9);
  padding:20px 0; text-align:center; color:#333; font-weight:500; font-size:16px; border-top:2px solid #d4a006; width:100%;
}

/* small helpers */
.section-title { text-align:center; font-size:30px; color:var(--gold); margin:50px 0 20px; font-weight:700; text-transform:uppercase; letter-spacing:1px; }
.info h3{ text-align:center; font-size:1.1rem; color:#2d3436; margin-bottom:8px; }
