/*
Theme Name:  Kunsh Trips
Theme URI:   https://kunshtrips.com
Author:      Kunsh Trips
Author URI:  https://kunshtrips.com
Description: A local travel agency theme for Kunsh Trips Jaisalmer – featuring camel safaris, fort tours, desert camp packages and more. SEO-optimised, mobile-friendly, and fully customisable.
Version:     1.1.0
License:     GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: kunsh-trips
Tags:        travel, tourism, rajasthan, jaisalmer, one-page, responsive
*/

/* ═══════════════════════════════════════════════════════════════
   KUNSH TRIPS — WHITE & CREAMY TRUSTWORTHY THEME
   Palette: White base · Warm cream · Soft gold accent · Slate text
════════════════════════════════════════════════════════════════ */

/* ─── CSS Custom Properties ─────────────────────────────────── */
:root {
  /* Brand */
  --brand:          #ffc87a;   /* primary gold accent */
  --brand-dark:     #e8a84a;   /* hover / deeper gold */
  --brand-light:    #fff4e0;   /* very soft warm tint */
  --brand-xlight:   #fff9f0;   /* barely-there warm bg */

  /* Neutrals — all light, clean, trustworthy */
  --white:          #ffffff;
  --cream:          #fffdf7;   /* page background */
  --cream-2:        #fdf8f0;   /* section alternate bg */
  --cream-3:        #faf4e8;   /* slightly deeper cream */
  --border:         #f0e8d8;   /* subtle warm border */
  --border-med:     #e8d8c0;   /* medium border */

  /* Text */
  --text-dark:      #2d2416;   /* headings — warm near-black */
  --text-body:      #4a3d2e;   /* body copy — warm brown-gray */
  --text-muted:     #8a7560;   /* captions, labels */
  --text-light:     #b8a48a;   /* placeholders, faint labels */

  /* Trust colours (used sparingly) */
  --trust-green:    #2e7d52;   /* availability, success */
  --trust-blue:     #1a4a7a;   /* links, info */

  /* Fonts */
  --font-display: 'Playfair Display', serif;
  --font-body:    'DM Sans', sans-serif;

  /* Shadows — all warm-tinted, never dark/harsh */
  --shadow-sm:  0 2px 8px  rgba(200,140,60,.10);
  --shadow-md:  0 6px 24px rgba(200,140,60,.13);
  --shadow-lg:  0 16px 48px rgba(200,140,60,.16);
}

/* ─── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-body);
  line-height: 1.7;
  font-size: 15px;
}
img   { max-width: 100%; height: auto; display: block; }
a     { text-decoration: none; color: inherit; }

/* ─── Utility ────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

.section-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brand-dark);
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.2;
}

.section-title::after {
  content: '';
  display: block;
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--brand-dark));
  border-radius: 4px;
  margin-top: 14px;
}

.section-desc {
  color: var(--text-body);
  font-size: 15px;
  max-width: 560px;
  font-weight: 300;
  line-height: 1.75;
  margin-top: 16px;
}

section { padding: 72px 40px; }

/* ─── Divider ────────────────────────────────────────────────── */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-med), transparent);
  margin: 0 40px;
}

/* ─── Buttons ────────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: var(--text-dark);
  padding: 13px 30px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(255,200,122,.35);
  transition: all .25s ease;
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--brand-dark) 0%, #d47820 100%);
  box-shadow: 0 8px 24px rgba(255,200,122,.45);
  transform: translateY(-2px);
  color: var(--white);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--text-dark);
  padding: 13px 30px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1.5px solid var(--border-med);
  cursor: pointer;
  transition: all .25s ease;
}
.btn-outline:hover {
  border-color: var(--brand);
  color: var(--brand-dark);
  background: var(--brand-xlight);
  transform: translateY(-2px);
}

.btn-nav {
  background: var(--brand);
  color: var(--text-dark);
  padding: 9px 22px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all .2s ease;
  box-shadow: var(--shadow-sm);
}
.btn-nav:hover {
  background: var(--brand-dark);
  color: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

/* ─── Navigation ─────────────────────────────────────────────── */
.site-header {
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 40px;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(200,140,60,.08);
}

.site-logo {
  font-family: var(--font-display);
  color: var(--text-dark);
  font-size: 22px;
  letter-spacing: .5px;
}
.site-logo span {
  color: var(--text-muted);
  font-size: 10px;
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 1px;
}
.site-logo em {
  color: var(--brand-dark);
  font-style: normal;
}

.main-nav ul  { display: flex; gap: 32px; list-style: none; }
.main-nav a   {
  color: var(--text-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .5px;
  text-transform: uppercase;
  transition: color .2s;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--brand-dark);
  border-bottom-color: var(--brand);
}

/* ─── Hero ───────────────────────────────────────────────────── */
.hero-section {
  background: linear-gradient(150deg, var(--cream) 0%, var(--brand-light) 50%, #fde8c0 100%);
  min-height: 86vh;
  position: relative;
  overflow: hidden;
  padding: 80px 40px 80px;
  border-bottom: 1px solid var(--border);
}

/* Subtle dot pattern */
.hero-bg {
  position: absolute;
  inset: 0;
  opacity: .4;
  background-image: radial-gradient(circle, var(--border-med) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* Fort silhouette — now warm cream colored to blend with hero */
.fort-silhouette {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 160px;
  background: var(--white);
  opacity: .6;
  clip-path: polygon(0 100%,0 60%,3% 60%,3% 40%,5% 40%,5% 30%,6% 30%,6% 20%,7% 20%,7% 25%,8% 25%,8% 15%,9% 15%,9% 20%,10% 20%,10% 30%,11% 30%,11% 40%,13% 40%,13% 60%,16% 60%,16% 45%,17% 45%,17% 35%,18% 35%,18% 25%,19.5% 25%,19.5% 35%,21% 35%,21% 45%,23% 45%,23% 60%,26% 60%,26% 40%,28% 40%,28% 55%,30% 55%,30% 60%,34% 60%,34% 45%,36% 45%,36% 35%,37% 35%,37% 25%,38% 25%,38% 35%,39% 35%,39% 45%,41% 45%,41% 60%,44% 60%,44% 50%,46% 50%,46% 40%,47% 40%,47% 55%,50% 55%,50% 60%,100% 60%,100% 100%);
}

.hero-content { position: relative; z-index: 2; max-width: 640px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1px solid var(--border-med);
  color: var(--brand-dark);
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
  font-weight: 600;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 56px;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-title em {
  color: var(--brand-dark);
  font-style: normal;
  display: block;
}

.hero-sub {
  color: var(--text-body);
  font-size: 16px;
  font-weight: 300;
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ─── Stats Bar ──────────────────────────────────────────────── */
.stats-bar {
  background: var(--white);
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.stat {
  text-align: center;
  padding: 24px 16px;
  border-right: 1px solid var(--border);
  transition: background .2s;
}
.stat:last-child { border-right: none; }
.stat:hover { background: var(--brand-xlight); }
.stat-num   {
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--brand-dark);
  display: block;
  font-weight: 700;
}
.stat-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 4px;
  display: block;
}

/* ─── Booking Form Premium ─────────────────────────────────── */

.booking-form{
    background:#ffffff;
    border-radius:18px;
    padding:40px;
    max-width:1100px;
    margin:50px auto 0;
    border:1px solid rgba(255,200,122,.25);
    box-shadow:0 15px 40px rgba(44,24,16,.08);
}

.form-row{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:18px;
    align-items:end;
}

.form-group label{
    display:block;
    margin-bottom:8px;
    font-size:11px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:2px;
    color:#8a6a58;
}

.form-group select,
.form-group input[type="date"],
.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"]{
    width:100%;
    height:52px;
    padding:0 14px;
    border:1.5px solid rgba(255,200,122,.30);
    border-radius:10px;
    background:#fffdf7;
    color:#2C1810;
    font-size:14px;
    font-family:inherit;
    outline:none;
    transition:all .25s ease;
}

.form-group select:hover,
.form-group input[type="date"]:hover,
.form-group input[type="text"]:hover,
.form-group input[type="tel"]:hover,
.form-group input[type="email"]:hover{
    border-color:#ffc87a;
}

.form-group select:focus,
.form-group input[type="date"]:focus,
.form-group input[type="text"]:focus,
.form-group input[type="tel"]:focus,
.form-group input[type="email"]:focus{
    border-color:#ffc87a;
    background:#ffffff;
    box-shadow:0 0 0 4px rgba(255,200,122,.20);
}

.form-group input::placeholder{
    color:#9a8574;
}

.booking-btn,
.form-group .btn-primary{
    width:100%;
    height:52px;
    border:none;
    border-radius:10px;
    background:linear-gradient(135deg,#ffc87a,#e6933a);
    color:#2C1810;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
    cursor:pointer;
    transition:all .3s ease;
}

.booking-btn:hover,
.form-group .btn-primary:hover{
    transform:translateY(-2px);
    background:linear-gradient(135deg,#e6933a,#d47f1e);
    color:#ffffff !important;
    box-shadow:0 12px 25px rgba(230,147,58,.30);
}

#ddj-form-msg{
    margin-top:15px;
    font-size:14px;
}

@media(max-width:768px){

    .booking-form{
        padding:24px;
        margin-top:30px;
    }

    .form-row{
        grid-template-columns:1fr;
        gap:14px;
    }

}
/* ─── Tours Grid ─────────────────────────────────────────────── */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  margin-top: 48px;
}

.tour-card {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all .3s ease;
}
.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-med);
}

.card-img {
  height: 185px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.card-img-camel   { background: linear-gradient(135deg,#fde8b0 0%,#ffc87a 60%,#e6933a 100%); }
.card-img-fort    { background: linear-gradient(135deg,#fde0b0 0%,#e6933a 60%,#c47020 100%); }
.card-img-village { background: linear-gradient(135deg,#d4f0e4 0%,#7ecba8 60%,#3a9972 100%); }
.card-img-sunset  { background: linear-gradient(135deg,#fde8b0 0%,#f5a060 60%,#d05030 100%); }
.card-img-jeep    { background: linear-gradient(135deg,#fde8b0 0%,#a8c8e0 60%,#4a8aaa 100%); }
.card-img-heritage{ background: linear-gradient(135deg,#fff4e0 0%,#ffc87a 50%,#c47020 100%); }

.card-tag {
  background: rgba(255,255,255,.88);
  color: var(--brand-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 100px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,200,122,.4);
}

.card-body    { padding: 20px; }
.card-title   {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}
.card-desc    {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 16px;
  font-weight: 300;
}
.card-footer  {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.price        {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--brand-dark);
  font-weight: 700;
}
.price span   { font-size: 11px; color: var(--text-muted); font-family: var(--font-body); font-weight: 400; }
.duration     {
  font-size: 12px;
  color: var(--text-muted);
  background: var(--cream-3);
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid var(--border);
  font-weight: 500;
}

/* ─── Why Section ────────────────────────────────────────────── */
.why-section {
  background: var(--cream-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.why-section .section-title { color: var(--text-dark); }
.why-section .section-title::after { background: linear-gradient(90deg, var(--brand), var(--brand-dark)); }

.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 48px; }

.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all .3s ease;
}
.why-card:hover {
  border-color: var(--brand);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.why-icon  { font-size: 34px; margin-bottom: 16px; display: block; }
.why-title { font-family: var(--font-display); font-size: 17px; color: var(--text-dark); margin-bottom: 10px; }
.why-text  { font-size: 13px; color: var(--text-body); font-weight: 300; line-height: 1.7; }

/* ─── Testimonials ───────────────────────────────────────────── */
.testimonials { background: var(--brand-xlight); border-top: 1px solid var(--border); }
.testimonials .section-title::after { background: linear-gradient(90deg, var(--brand), var(--brand-dark)); }

.test-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 48px; }

.test-card {
  background: var(--white);
  border-radius: 14px;
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s;
}
.test-card:hover { box-shadow: var(--shadow-md); }
.stars        { color: var(--brand-dark); font-size: 15px; margin-bottom: 14px; letter-spacing: 2px; }
.test-text    {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 18px;
  font-style: italic;
  font-family: var(--font-display);
  font-weight: 400;
}
.test-author  { font-size: 13px; color: var(--text-dark); font-weight: 600; }
.test-from    { font-size: 11px; color: var(--text-muted); margin-top: 3px; }

/* ─── CTA Section ────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--brand-light) 0%, var(--cream-3) 100%);
  text-align: center;
  padding: 80px 40px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-section .section-title { color: var(--text-dark); }
.cta-section .section-title::after { margin: 14px auto 0; }
.cta-section .section-desc  {
  color: var(--text-body);
  margin: 20px auto 36px;
}

/* ─── Contact Strip ──────────────────────────────────────────── */
.contact-strip {
  background: var(--cream-2);
  padding: 28px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.contact-info { display: flex; gap: 48px; }
.contact-item { color: var(--text-body); }
.contact-item strong {
  color: var(--brand-dark);
  display: block;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 5px;
  font-weight: 700;
}
.contact-item a { color: var(--text-body); transition: color .2s; }
.contact-item a:hover { color: var(--brand-dark); }

/* ─── Footer ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--white);
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  border-top: 1px solid var(--border);
}
.site-footer p   { font-size: 12px; color: var(--text-muted); }
.footer-seo      { font-size: 11px; color: var(--text-light); }

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .tours-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid   { grid-template-columns: repeat(2,1fr); }
  .stats-bar  { grid-template-columns: repeat(2,1fr); }
  .stats-bar .stat { border-bottom: 1px solid var(--border); }
}

@media (max-width: 768px) {
  .site-header     { flex-direction: column; gap: 14px; padding: 16px 20px; }
  .main-nav ul     { flex-wrap: wrap; gap: 14px; justify-content: center; }
  .hero-section    { padding: 56px 20px 60px; min-height: auto; }
  .hero-title      { font-size: 36px; }
  section          { padding: 48px 20px; }
  .tours-grid      { grid-template-columns: 1fr; }
  .test-grid       { grid-template-columns: 1fr; }
  .why-grid        { grid-template-columns: 1fr; }
  .form-row        { grid-template-columns: 1fr; }
  .contact-strip   { flex-direction: column; gap: 20px; text-align: center; padding: 28px 20px; }
 
	.contact-info    { flex-direction: column; gap: 18px; align-items: center; }
  .site-footer     { flex-direction: column; text-align: center; padding: 20px; }
  .booking-form    { padding: 20px; }
  .stats-bar       { grid-template-columns: repeat(2,1fr); padding: 0 20px; }
}

@media (max-width: 480px) {
  .hero-title  { font-size: 30px; }
  .hero-btns   { flex-direction: column; }
  .hero-btns a { text-align: center; }
}
.wp-post-image {
    width: auto !important;
    height: auto !important;
    max-width: 100% !important;
    object-fit: contain !important;
    max-height: none !important;
}