/*====================================================================
   Custom CSS File for most of Desktop and Mobile look for Kipya Template
   Developed by Amazing LWEGATECH LTD team.
===================================================================**/
	:root {
  --kpy-font:"inter", sans-serif;
  --kpy-font-2:"Playfair", serif;
  --kpy-font-3: "Arial", sans-serif;
  --kpy-primary: #f7d508;      
  --kpy-primary-rgb: 247, 213, 8;
  --kpy-secondary: #710b0d;
  --kpy-secondary-rgb: 113, 11, 13;
  --kpy-accent: #594539;
  --kpy-accent-rgb: 89, 69, 57;
  --kpy-white: #ffffff;
  --kpy-white-rgb: 255, 255, 255;
  --kpy-black: #000000;
  --kpy-black-rgb: 0, 0, 0;
  --kpy-grey: #808080;
  --kpy-grey-rgb: 128, 128, 128;
  --kpy-primary-light: #fff34d;
  --kpy-primary-dark: #c7aa07;
  --kpy-secondary-light: #a21a1f;
  --kpy-secondary-dark: #4e0709;
  --kpy-accent-light: #7b6657;
  --kpy-accent-dark: #3f2e24;
}


/* Global Body Styles - Montserrat for body content */
html, body {
	font-family: var(--kpy-font-3) !important;
	color: var(--kpy-body-color);
	font-size: var(--kpy-font-size);
	font-weight: 500;
	line-height: 1.6;
	text-rendering: auto;
	height: 100vh;
	margin: 0;
	font-optical-sizing: auto;
}




/** =========================================================
Fading Effects
==========================================================**/
@keyframes fadeUp {
  0% {opacity: 0;transform: translateY(30px);}
  100% {opacity: 1;transform: translateY(0);}}
.fade-up {opacity: 0; transform: translateY(30px);}
.fade-up.animate {animation: fadeUp 0.8s ease-out forwards;}


/** =========================================================
FOOTER 
==========================================================**/

.site-footer { font-family: var(--kpy-font-3); background-color: var(--kpy-secondary); color: var(--kpy-white); }
.footer-main { background-color: var(--kpy-secondary); border-top: 1px solid rgba(255,255,255,0.1); }
.footer-bottom { background-color: var(--kpy-secondary-dark); border-top: 1px solid rgba(255,255,255,0.05); }
.footer-logo-img { max-height: 60px; width: auto; }
.footer-title { font-family: var(--kpy-font); font-weight: 600; position: relative; padding-bottom: 10px; }
.footer-title::after { content: ''; position: absolute; left: 0; bottom: 0; width: 40px; height: 2px; background-color: var(--kpy-primary); }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,0.8); text-decoration: none; transition: all 0.3s ease; font-size: 0.95rem; }
.footer-links a:hover { color: var(--kpy-primary); padding-left: 5px; }
.footer-contact i { color: var(--kpy-primary); width: 16px; }
.footer-contact span { color: rgba(255,255,255,0.8); font-size: 0.95rem; }
.footer-social { display: flex; gap: 15px; }
.social-icon { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; background-color: rgba(255,255,255,0.1); color: var(--kpy-white); border-radius: 50%; text-decoration: none; transition: all 0.3s ease; }
.social-icon:hover { background-color: var(--kpy-primary); color: var(--kpy-secondary); transform: translateY(-3px); }
.footer-legal-links a { transition: all 0.3s ease; }
.footer-legal-links a:hover { color: var(--kpy-primary) !important; }
.btn-primary { background-color: var(--kpy-primary); color: var(--kpy-secondary); border: 1px solid var(--kpy-primary); font-weight: 500; transition: all 0.3s ease; }
.btn-primary:hover { background-color: transparent; color: var(--kpy-primary); border: 1px solid var(--kpy-primary); }
@media (max-width: 767.98px) { .footer-title { margin-top: 1.5rem; } .footer-title::after { left: 50%; transform: translateX(-50%); } .footer-social { justify-content: center; } }


/** =========================================================
MENU SECTION
==========================================================**/
.top-bar { background: var(--kpy-secondary); z-index: 1001; font-family: var(--kpy-font-3); transition: all 0.3s ease-in-out; }
.top-bar.hidden { transform: translateY(-100%); opacity: 0; visibility: hidden; }
.transparent-header { position: absolute; left: 0; width: 100%; background: linear-gradient(to bottom, rgba(0,0,0,0.9), rgba(0,0,0,0)); transition: all 0.3s ease-in-out; z-index: 1000; font-family: var(--kpy-font); }
.transparent-header.scrolled { position: fixed; top: 0; left: 0; background: var(--kpy-secondary); }
.main-logo { max-height: 100px !important; width: auto; transition: all 0.3s ease; }
.top-bar .top-contact i, .top-bar .top-social i { color: var(--kpy-primary); transition: color 0.3s ease; }
.top-bar .top-social a:hover i { color: var(--kpy-primary-light); }
.navbar-nav { display: flex; gap: 30px; margin: 0; padding: 0; list-style: none; }
.navbar-nav .menu-item > a { color: var(--kpy-white); font-family: var(--kpy-font-3); font-weight: 500; text-decoration: none; padding: 12px 10px; transition: all 0.3s ease; }
.navbar-nav .menu-item > a:hover { color: var(--kpy-primary); border-bottom: 2px solid var(--kpy-primary); }
.navbar-nav .sub-menu { position: absolute; background: rgba(113, 11, 13, 0.5); display: none; border-radius: 2px; margin-top: 10px; }
.navbar-nav .menu-item:hover > .sub-menu { display: block; }
.navbar-nav .sub-menu a { color: var(--kpy-white); display: block; padding: 8px 10px; text-decoration: none; }
.navbar-nav .sub-menu a:hover { background: rgba(255,255,255,0.1); color: var(--kpy-primary); }
.dropdown-menu { display: block; opacity: 0; visibility: hidden; transition: all 0.3s ease; transform: translateY(10px); }
.dropdown:hover > .dropdown-menu, .dropdown-menu.show { opacity: 1; visibility: visible; transform: translateY(0); }
.btn-primary { background-color: var(--kpy-secondary); border: 1px var(--kpy-primary) solid; color: var(--kpy-white); }
.btn-primary:hover { background-color: var(--kpy-primary); color: var(--kpy-secondary); border: 1px var(--kpy-secondary) solid; }
@media (max-width: 991.98px) { .transparent-header { margin-top: 0; background: var(--kpy-secondary); } 
.top-bar { display: none; } 
.offcanvas-body { padding: 1rem; background:var(--kpy-secondary); } 
.navbar-nav { flex-direction: column; gap: 10; }
.navbar-nav .menu-item > a { padding: 0.7rem 0.5rem !important; border-bottom: 1px solid rgba(255,255,255,0.1);bac } 
.navbar-toggler { border: none; padding: 0.25rem 0.5rem; }
.navbar-toggler:focus { box-shadow: none; } 
.main-logo { max-height: 50px !important; }
.navbar-nav .sub-menu a { color: var(--kpy-secondary); display: block; padding: 8px 10px; text-decoration: none;  background:var(--kpy-white);}.offcanvas.offcanvas-end {max-width: 250px;}}



/** =========================================================
ABOUT SECTION
==========================================================**/

/* ===== Redesigned Explore UG About Section ===== */
.abt-section {padding: 60px 0; background: linear-gradient(135deg, rgba(255, 253, 245, 0.95) 0%, rgba(255, 251, 240, 0.95) 100%); position: relative; overflow: hidden;}
.abt-section::before {content: ""; position: absolute; top: -100px; right: -100px; width: 300px; height: 300px; background: var(--kpy-primary); opacity: 0.08; border-radius: 50%; z-index: 0;}
.abt-section::after {content: ""; position: absolute; bottom: -80px; left: -80px; width: 250px; height: 250px; background: var(--kpy-secondary); opacity: 0.06; border-radius: 50%; z-index: 0;}

.about-add {position: relative; z-index: 3; transition: all 0.5s cubic-bezier(0.25,0.46,0.45,0.94);}
.about-add:hover {transform: rotate(3deg) scale(1.05); z-index: 4;}
.about-add img {border-radius: 20px; box-shadow: 0 12px 30px rgba(0,0,0,0.2); transition: all 0.4s ease; filter: brightness(0.98) contrast(1.05);}
.about-add:hover img {box-shadow: 0 20px 40px rgba(0,0,0,0.3);}
.about-pic {position: relative; z-index: 2; transition: all 0.4s ease; }
.about-pic:hover {transform: translateY(-8px);}
.about-pic img {border-radius: 25px; box-shadow: 0 20px 40px rgba(0,0,0,0.25); width: 100%; height: auto; object-fit: cover; transition: all 0.4s ease; filter: brightness(0.98) contrast(1.05); min-height:600px;}
.about-pic::after {content: ""; position: absolute; bottom: -15px; left: 10%; width: 80%; height: 30px; background: rgba(0,0,0,0.15); border-radius: 50%; filter: blur(15px); z-index: -1; transition: all 0.4s ease;}
.about-pic:hover::after {width: 85%; opacity: 0.7;}
.column-abt:last-child {padding-left: 40px; position: relative;}
.about-heading {font-family: var(--kpy-font-2); font-size: 70px; font-weight: 800; color: var(--kpy-secondary); margin-bottom: 30px; position: relative; line-height: 1.2; text-shadow: 1px 1px 2px rgba(0,0,0,0.1);}
.about-heading::after {content: ""; position: absolute; bottom: -15px; left: 0; width: 80px; height: 5px; background: linear-gradient(90deg, var(--kpy-primary), var(--kpy-secondary)); border-radius: 3px;}
.about-description {font-family: var(--kpy-font-3); font-size: 1.15rem; line-height: 1.8; color: var(--kpy-accent); margin-bottom: 40px; position: relative; padding: 20px 0 20px 25px; max-width:600px; background: rgba(255,255,255,0.7);}
.about-btn .wp-block-button__link {background: linear-gradient(135deg, var(--kpy-primary) 0%, var(--kpy-primary-light) 100%); color: var(--kpy-black); font-family: var(--kpy-font); font-weight: 600; font-size: 1.1rem; padding: 16px 38px; border-radius: 15px; text-decoration: none; transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94); position: relative; overflow: hidden; z-index: 1; letter-spacing: 0.8px; box-shadow: 0 8px 25px rgba(247,213,8,0.35); border: none; display: inline-block;}
.about-btn .wp-block-button__link::before {content: ""; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(135deg, var(--kpy-secondary) 0%, var(--kpy-secondary-light) 100%); transition: all 0.6s cubic-bezier(0.25,0.46,0.45,0.94); z-index: -1; border-radius: 50px; border-radius: 15px;}
.about-btn .wp-block-button__link:hover {color: var(--kpy-white); transform: translateY(-5px) scale(1.05); box-shadow: 0 15px 35px rgba(113,11,13,0.4); letter-spacing: 1.2px; border-radius: 15px;}
.about-btn .wp-block-button__link:hover::before {left: 0;}
.columns-abt {align-items: center; gap: 60px; position: relative; z-index: 2;}
@media (max-width: 1200px){.column-abt:first-child {grid-template-columns: 1fr 1.8fr; gap: 15px;}}
@media (max-width: 992px){.abt-section {padding: 70px 0;} .about-heading {font-size: 2.5rem;} .column-abt:last-child {padding-left: 20px;} .column-abt:first-child {grid-template-columns: 1fr 2fr;} .about-pic{min-height:auto;}}
@media (max-width: 768px){
    .columns-abt {flex-direction: column; gap: 40px;}
    .column-abt:first-child {grid-template-areas:"large" "small1" "small2"; grid-template-columns: 1fr; gap: 30px;} 
.about-heading {font-size: 54px; text-align: center;}
.about-heading::after {left: 50%; transform: translateX(-50%);}
.about-description {text-align: center; padding: 15px; border-left: none; border-top: 4px solid var(--kpy-primary); border-radius: 10px;} 
.about-btn {text-align: center;} 
.abt-section::before, .abt-section::after {display: none;}
.about-add{display:none;}
.about-pic img{min-height:auto;}}
@media (max-width: 480px){.about-heading {font-size: 54px;}.about-description {font-size: 1.05rem; padding: 12px;} .about-btn .wp-block-button__link {padding: 14px 30px; font-size: 1rem;} .about-add img {border-width: 4px;}.about-pic img{min-height:auto;}}
@keyframes float {0%,100%{transform: translateY(0);} 50%{transform: translateY(-10px);}}
.about-add {animation: float 6s ease-in-out infinite;}
.about-add:nth-child(3) {animation-delay: 2s;}
.column-abt:last-child:hover .about-heading::after {width: 120px; transition: width 0.5s ease;}



/** =========================================================
HOME SLIDER
==========================================================**/
.explore-uganda-packages-slider-wrapper {font-family:var(--kpy-font,"Poppins",sans-serif);max-width:1200px;margin:30px auto;} 
.packages-slider-header {text-align:center;margin-bottom:40px;} 
.packages-slider-header h2 {font-family:var(--kpy-font-2,"Playfair Display",serif);color:var(--kpy-secondary,#710b0d);font-size:64px;margin-bottom:15px;position:relative;display:inline-block;font-weight:700;} 
.packages-slider-header h2:after {content:'';position:absolute;bottom:-10px;left:50%;transform:translateX(-50%);width:80px;height:3px;background:var(--kpy-primary,#f7d508);} 
.packages-slider-header p {color:var(--kpy-accent,#594539);font-size:1.1rem;max-width:600px;margin:20px auto 0;} 
.packages-slider-container {position:relative;padding:0 40px;overflow:hidden;} 
.packages-slider {display:flex;gap:30px;transition:transform 0.5s ease;} 
.package-slide {flex:0 0 calc(33.333% - 20px);min-width:300px;border-radius:12px;overflow:hidden;transition:all 0.3s ease;} 
.package-slide:hover {transform:translateY(-10px);} 
.package-card {display:block;text-decoration:none;color:inherit;height:100%;background:white;} 
.package-images {height:400px;background-size:cover;background-position:center;position:relative;border-radius:12px;} 
.package-badge {position:absolute;top:15px;left:15px;background:var(--kpy-primary,#f7d508);color:var(--kpy-secondary,#710b0d);padding:5px 12px;border-radius:20px;font-weight:600;font-size:0.85rem;z-index:2;} 
.package-prices {position:absolute;top:15px;right:15px;background:rgba(var(--kpy-secondary-rgb,113,11,13),0.95);color:var(--kpy-white);padding:8px 15px;border-radius:5px;font-size:1.1rem;z-index:2;} 
.package-conten {padding:20px;} 
.package-conten h3 {margin:0 0 10px;font-size:1.4rem;color:var(--kpy-secondary,#710b0d);font-family:var(--kpy-font-2,"Playfair Display",serif);line-height:1.3;} 
.package-meta,.package-duration {display:flex;align-items:center;margin-bottom:10px;color:#666;font-size:0.9rem;} 
.meta-icon {margin-right:8px;} 
.package-excerpt {margin-bottom:20px;color:#555;line-height:1.5;font-size:0.95rem;} 
.package-reviews {display:flex;align-items:center;margin-top:15px;color:var(--kpy-accent,#594539);font-size:0.85rem;} 
.stars {color:var(--kpy-primary,#f7d508);margin-right:5px;font-size:0.9rem;} 
.slider-controls {display:flex;justify-content:center;margin-top:30px;} 
.slider-dots {display:flex;gap:8px;} 
.slider-dot {width:12px;height:12px;border-radius:50%;background:#ddd;cursor:pointer;transition:all 0.3s ease;} 
.slider-dot.active {background:var(--kpy-secondary,#710b0d);transform:scale(1.2);} 
.slider-nav {position:absolute;top:50%;transform:translateY(-50%);width:40px;height:40px;border-radius:50%;background:#fff;box-shadow:0 3px 10px rgba(0,0,0,0.15);display:flex;align-items:center;justify-content:center;cursor:pointer;z-index:10;transition:all 0.3s ease;border:none;} 
.slider-nav:hover {background:var(--kpy-secondary,#710b0d);color:#fff;} 
.slider-nav.prev {left:0;} 
.slider-nav.next {right:0;} 
@media (max-width:1024px){.package-slide{flex:0 0 calc(50% - 20px);}} 
@media (max-width:768px){.package-slide{flex:0 0 100%;}.packages-slider-container{padding:0 20px;}.packages-slider-header h2{font-size:54px;}} 
.packages-grid {display:grid;grid-template-columns:repeat(auto-fill,minmax(320px,1fr));gap:35px;margin:30px auto;} 
.package-grid-item {transition:transform 0.3s;} 
.package-grid-item:hover {transform:translateY(-5px);} 





.destination-cards { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; margin:40px 0;}
.destination-card { text-align: center; width: 180px; }
.destination-card img { width: 100%; height: 120px; object-fit: cover; border-radius: 12px; margin-bottom: 10px; transition: transform 0.3s; }
.destination-card img:hover { transform: scale(1.05); }
.des-title{font-family:var(--kpy-font-2,"Playfair Display",serif);color:var(--kpy-secondary);font-size:64px;margin-bottom:15px;position:relative;font-weight:700; text-align:center;}
.des-tle{font-family:var(--kpy-font-2,"Playfair Display",serif);color:var(--kpy-white);font-size:64px;margin-bottom:15px;position:relative;font-weight:700; text-align:center;}
.des-tle:after {content:'';position:absolute;bottom:-10px;left:50%;transform:translateX(-50%);width:80px;height:3px;background:var(--kpy-primary);}
.des-title:after {content:'';position:absolute;bottom:-10px;left:50%;transform:translateX(-50%);width:80px;height:3px;background:var(--kpy-primary);}
.des-p{color: var(--kpy-accent);font-size: 1.1rem;max-width: 600px;margin: 0 auto; }
@media (max-width: 768px) {
  .destination-card { width: calc(50% - 20px); }
}

@media (max-width: 480px) {
  .destination-card { width: calc(50% - 20px); }
}




.who-section {padding:4rem 1rem;background-color:var(--kpy-white);} 
.who-section .container-xxl {max-width:1200px;margin:0 auto;padding:0 1rem;} 
.who-section .is-layout-flex {display:flex;gap:2rem;margin-bottom:2rem;} 
.who-section .is-layout-flex:last-child {margin-bottom:0;} 
.who-section .card {background:var(--kpy-white);border-radius:12px;padding:2rem;box-shadow:0 5px 15px rgba(var(--kpy-black-rgb),0.1);transition:transform 0.3s ease,box-shadow 0.3s ease;} 
.who-section .card:hover {transform:translateY(-5px);box-shadow:0 10px 25px rgba(var(--kpy-black-rgb),0.15);} 
.who-section .who-pic {margin:0;border-radius:8px;overflow:hidden;} 
.who-section .who-pic img {width:100%;height:auto;display:block;transition:transform 0.3s ease;} 
.who-section .who-pic:hover img {transform:scale(1.05);} 
.who-section h2.wp-block-heading {font-family:var(--kpy-font-2);color:var(--kpy-secondary);font-size:1.5rem;margin:0 0 1rem 0;font-weight:700;} 
.who-section p {color:var(--kpy-accent);line-height:1.6;margin:0;font-size:0.95rem;} 
.who-section .fas {font-size:2rem;color:var(--kpy-primary);display:flex;justify-content:center;align-items:center;} 
.who-section .is-layout-flow {display:flex;flex-direction:column;} 
@media (max-width:768px) {.who-section .is-layout-flex{flex-direction:column;gap:1.5rem;}.who-section .card{padding:1.5rem;}.who-section h2.wp-block-heading{font-size:1.3rem;}} 
@media (max-width:480px) {.who-section{padding:2rem 0;}.who-section .card{padding:1rem;}.who-section h2.wp-block-heading{font-size:1.1rem;}.who-section .fas{font-size:1.5rem;}}

.package-hero {position:relative;height:400px;overflow:hidden;margin-bottom:30px;} 
.package-hero-image {width:100%;height:100%;object-fit:cover;} 
.hero-overlay {position:absolute;top:0;left:0;width:100%;height:100%;display:flex;align-items:center;justify-content:center;color:var(--kpy-white);text-align:center;padding:20px;} 
.hero-content h1 {font-size:3rem;margin-bottom:15px; margin-top:65px; font-family:var(--kpy-font-2);} 
.trip-meta {display:flex;gap:15px;justify-content:center;flex-wrap:wrap;margin-top:35px; flex-wrap: nowrap;} 
.trip-meta span {background:rgba(var(--kpy-primary-rgb),0.9);color:#333;padding:8px 15px;border-radius:20px;font-size:0.9rem;font-weight:bold;white-space: nowrap;} 
.package-content {display:grid;grid-template-columns:2fr 1fr;gap:30px;} 
.package-main {background:var(--kpy-white);border-radius:10px;padding:25px;} 
.package-sidebar {background:var(--kpy-white);border-radius:10px;padding:25px;box-shadow:0 5px 15px rgba(var(--kpy-black-rgb),0.1);height:fit-content;} 
.package-section {margin-bottom:30px;} 
.package-section h2 {color:var(--kpy-secondary);border-bottom:2px solid var(--kpy-primary);padding-bottom:10px;margin-bottom:20px;font-size:1.8rem;} 
.itinerary-day {border-left:3px solid var(--kpy-primary);padding-left:15px;margin-bottom:25px; padding: 10px;box-shadow: 0 2px 5px rgba(var(--kpy-black-rgb), 0.15);} 
.itinerary-day h3 {color:var(--kpy-secondary);margin-bottom:10px;cursor:pointer;position:relative;padding-right:30px;font-size: 1.2rem;font-family: var(--kpy-font-2);} 
.itinerary-day h3:after {content:'\25BC';position:absolute;right:0;top:50%;transform:translateY(-50%);font-size:0.8em;transition:transform 0.3s ease;}
.itinerary-day p {font-size: 1rem;font-family: var(--kpy-font-3);font-weight: 200;}
.itinerary-day h3.active:after {transform:translateY(-50%) rotate(180deg);} 
.itinerary-day .day-content {display:none;padding-top:10px;} 
.itinerary-day .day-content.active {display:block;} 
.price-table {width:100%;border-collapse:collapse;margin:15px 0;} 
.price-table th, .price-table td {border:1px solid #ddd;padding:12px;text-align:left;font-weight:300;} 
.price-table th {background-color:#f5f5f5;color:var(--kpy-secondary);} 
.includes-excludes {display:grid;grid-template-columns:1fr 1fr;gap:20px;margin:20px 0; } 
.includes {background-color:#f5f5f5; padding:20px; border-radius:8px;}
.excludes{background-color:#f5f5f5; padding:20px; border-radius:8px;}
.includes h3, .excludes h3 {color:var(--kpy-secondary);margin-bottom:15px;} 
.includes ul, .excludes ul {list-style:none;padding-left:0;} 
.includes li, .excludes li {margin-bottom:8px;padding-left:25px;position:relative;font-weight:300;} 
.includes li:before {content:"✓";position:absolute;left:0;color:#4caf50;} 
.excludes li:before {content:"✗";position:absolute;left:0;color:#f44336;} 
.payment-details {background:#f9f9f9;padding:20px;border-radius:8px;} 
.payment-details h2 {color:var(--kpy-secondary);margin-bottom:20px;} 
.bank-details, .contact-info {background:var(--kpy-white);padding:15px;border-radius:8px;margin:15px 0;font-weight:300;} 
.bank-details h3, .contact-details h3 {color:var(--kpy-secondary);margin-bottom:15px;border-bottom:1px solid #eee;padding-bottom:10px;} 
.discount-banner {margin-top: 15px; padding: 10px; background: #fff3cd; border-radius: 5px; text-align: center;}
.contact-button {margin-top: 20px;}
.submit-booking {background:var(--kpy-secondary);color:var(--kpy-white);border:none;padding:15px 25px;border-radius:5px;font-size:1rem;font-weight:bold;cursor:pointer;transition:background 0.3s;width:100%;display:block;text-align:center;text-decoration:none;} 
.submit-booking:hover {background:#4e0709;} 
@media (max-width:968px) {.package-content{grid-template-columns:1fr;}.includes-excludes{grid-template-columns:1fr;}.hero-content h1{font-size:2rem;}} 
@media (max-width:768px) {.package-hero{height:300px;}.trip-meta{align-items:center;}} 
/* ✅ Responsive adjustments */
@media (max-width: 768px) {
  .package-hero {height: 500px;}.hero-content h1 {font-size: 2rem; margin-top: 40px;}}
@media (max-width: 480px) {
  .package-hero {height: 500px;}.hero-content h1 {font-size: 1.6rem;margin-top: 30px;}}


.booking-error { background: #f8d7da; border: 1px solid #f5c6cb; color: #721c24; padding: 20px; border-radius: 8px; text-align: center; font-family: var(--kpy-font); margin-bottom: 20px; }
.booking-error h3 { margin: 0 0 10px 0; font-family: var(--kpy-font-2); color: #721c24; font-size: 18px; }
.explore-uganda-single-package { font-family: var(--kpy-font); }
.package-hero { position: relative; height: 400px; overflow: hidden; }
.package-hero-image { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.5); display: flex; align-items: center; justify-content: center; }
.hero-content { text-align: center; color: white; }
.hero-content h1 { font-family: var(--kpy-font-2); font-size: 3rem; margin-bottom: 1rem; }
.trip-meta span { margin: 0 1rem; font-size: 1.1rem; }
.package-content { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; max-width: 1200px; margin: 0 auto; padding: 40px 20px; font-family: var(--kpy-font); }
.package-sidebar { position: sticky; top: 20px; height: fit-content; }
.package-section h2 { font-family: var(--kpy-font-2); color: var(--kpy-secondary); margin-bottom: 20px; font-size: 24px; }
.pricing-info { background: #fff; border-radius: 12px; padding: 25px; box-shadow: 0 4px 15px rgba(113, 11, 13, 0.08); border: 1px solid #e0e0e0; margin-bottom: 25px; }
.price-categories { display: flex; flex-direction: column; gap: 12px; }
.price-category { display: flex; justify-content: space-between; align-items: center; padding: 12px 15px; background: #f8f9fa; border-radius: 6px; border-left: 4px solid var(--kpy-secondary); }
.category-name { font-weight: 500; color: var(--kpy-secondary); }
.category-price { font-weight: 600; color: var(--kpy-secondary); font-size: 16px; }
.discount-banner { background: linear-gradient(135deg, #f7d508 0%, #f9a825 100%); color: var(--kpy-secondary); padding: 15px; border-radius: 8px; text-align: center; margin: 15px 0 0; font-weight: bold; font-family: var(--kpy-font); font-size: 16px; }
.booking-form-section { background: #fff; border-radius: 12px; padding: 25px; box-shadow: 0 4px 15px rgba(113, 11, 13, 0.08); border: 1px solid #e0e0e0; }
.booking-form .form-group { margin-bottom: 18px; }
.booking-form label { display: block; margin-bottom: 6px; font-weight: 600; color: var(--kpy-secondary); font-family: var(--kpy-font); font-size: 14px; }
.booking-form input, .booking-form select { width: 100%; padding: 12px 15px; border: 1px solid #d0d0d0; border-radius: 6px; font-size: 14px; font-family: var(--kpy-font); transition: all 0.2s ease; background: #fff; box-sizing: border-box; }
.booking-form input:focus, .booking-form select:focus { outline: none; border-color: var(--kpy-secondary); box-shadow: 0 0 0 2px rgba(113, 11, 13, 0.1); }
.booking-form input[readonly] { background-color: #f8f9fa; border-color: #ddd; }
.booking-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.price-summary { background: #f8f9fa; padding: 20px; border-radius: 8px; margin: 25px 0; border: 1px solid #e0e0e0; }
.price-summary h4 { margin: 0 0 15px 0; color: var(--kpy-secondary); font-family: var(--kpy-font-2); font-size: 18px; text-align: center; }
.price-line { display: flex; justify-content: space-between; margin-bottom: 10px; padding-bottom: 10px; border-bottom: 1px solid #e8e8e8; font-family: var(--kpy-font); font-size: 14px; }
.price-line:last-child { border-bottom: none; }
.price-line.discount { color: #d32f2f; font-weight: 600; }
.price-line.total { font-size: 16px; border-top: 2px solid var(--kpy-secondary); padding-top: 12px; margin-top: 12px; color: var(--kpy-secondary); font-weight: 600; }
.payment-instruction { margin-top: 15px; padding-top: 15px; border-top: 1px dashed #ccc; font-size: 12px; color: #666; text-align: center; }
.submit-booking { width: 100%; background: var(--kpy-secondary); color: white; border: none; padding: 16px; font-size: 16px; font-weight: 600; border-radius: 6px; cursor: pointer; transition: all 0.2s ease; font-family: var(--kpy-font); text-transform: uppercase; letter-spacing: 0.5px; }
.submit-booking:hover { background: #8a0f12; transform: translateY(-1px); box-shadow: 0 4px 10px rgba(113, 11, 13, 0.2); }
.booking-success { background: #e8f5e8; border: 1px solid #c3e6cb; color: #155724; padding: 20px; border-radius: 8px; text-align: center; font-family: var(--kpy-font);font-size:12px; }
.booking-success h3 { margin: 0 0 10px 0; font-family: var(--kpy-font-2); color: #155724; font-size: 18px; }
.contact-details { background: #f8f9fa; padding: 20px; border-radius: 8px; border: 1px solid #e0e0e0; margin-top: 25px; }
.contact-info p { margin-bottom: 8px; font-family: var(--kpy-font); font-size: 14px; }
.contact-info a { color: var(--kpy-secondary); text-decoration: none; }
.contact-info a:hover { color: var(--kpy-primary); text-decoration: underline; }
@media (max-width: 768px) { .package-content { grid-template-columns: 1fr; gap: 25px; padding: 20px 15px; } .booking-form .form-row { grid-template-columns: 1fr; } .package-sidebar { position: static; } .booking-form-section { padding: 20px; } }
.booking-form input:invalid, .booking-form select:invalid { border-color: #dc3545; }
.booking-form input:valid, .booking-form select:valid { border-color: #28a745; }

/** ==========================================================
page.php Styles
===========================================================**/
.parallax-hero { position: relative; min-height: 500px; overflow: hidden; display: flex; align-items: center; justify-content: center; clip-path: polygon(0 0, 100% 0, 100% 90%, 50% 100%, 0 90%); }
.parallax-bg { position: absolute; top: -20%; left: 0; width: 100%; height: 140%; background-attachment: fixed; background-position: center; background-repeat: no-repeat; background-size: cover; will-change: transform; z-index: 1; animation: heroZoom 18s ease-in-out infinite alternate; }
@keyframes heroZoom { 0% { transform: scale(1) translateY(0); } 100% { transform: scale(1.15) translateY(-30px); } }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%;  z-index: 2; }
.hero-content { position: relative; z-index: 3; text-align: center; color: #fff; padding: 2rem; max-width: 900px; margin: 0 auto; }
.hero-subtitle { font-size: 1.2rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 1rem; color: #f5d76e; animation: fadeUp 1.2s ease-out forwards; }
.parallax-hero .hero-title { font-size: 5rem; margin-bottom: 1.2rem; line-height: 1.2; animation: fadeUp 1.5s ease-out forwards; font-weight: 400; font-family: var(--kpy-font-2); }
.hero-breadcrumb { font-size: 0.95rem; color: #ddd; margin-top: 0.5rem; animation: fadeUp 2s ease-out forwards; }
.hero-breadcrumb a { color: #f5d76e; text-decoration: none; transition: color 0.3s ease; }
.hero-breadcrumb a:hover { color: #fff; }
@keyframes growLine { from { width: 0; opacity: 0; } to { width: 80px; opacity: 1; } }
.hero-excerpt { font-size: 1.15rem; line-height: 1.7; margin-bottom: 2rem; opacity: 0.9; animation: fadeUp 1.8s ease-out forwards; }
@keyframes fadeUp { 0% { opacity: 0; transform: translateY(40px); } 100% { opacity: 1; transform: translateY(0); } }
@media (max-width:768px) { .parallax-hero .hero-title { font-size: 3rem;} }

/** ==========================================================
About Page
===========================================================**/

.quick-section { padding: 3rem 0; background: linear-gradient(135deg, rgba(var(--kpy-white-rgb), 0.98) 0%, rgba(var(--kpy-primary-rgb), 0.05) 100%); } 
.quick-section .container-xxl { max-width: 1200px; margin: 0 auto; padding: 0 1rem; }
.quick-column { display: flex; gap: 3rem; align-items: center; } 
.quick-column > div { flex: 1; } .quick-img img { width: 100%; height: auto; border-radius: 20px; box-shadow: 0 20px 40px rgba(var(--kpy-black-rgb), 0.15); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.quick-img img:hover { transform: translateY(-5px); box-shadow: 0 25px 50px rgba(var(--kpy-black-rgb), 0.2); } 
.quick-column h2 { font-family: var(--kpy-font-2); font-size: 64px; color: var(--kpy-secondary); margin-bottom: 1.5rem; font-weight: 700; line-height: 1.2; }
.quick-column p { font-family: var(--kpy-font-3); font-size: 1.1rem; line-height: 1.8; color: var(--kpy-accent); margin-bottom: 1.5rem; } 
.quick-column p em { color: var(--kpy-primary); font-style: italic; font-weight: 600; } .quick-column .about-btn { margin-top: 2rem; } 

.quick-add img { width: 100%; height: auto; border-radius: 15px; box-shadow: 0 15px 30px rgba(var(--kpy-black-rgb), 0.1); transition: transform 0.3s ease; }
.quick-add img:hover { transform: scale(1.02); } @media (max-width: 768px) { .quick-column { flex-direction: column; gap: 2rem; } 
.quick-column h2 { font-size: 2rem; }
.quick-column p { font-size: 1rem; } 
.about-btn a { padding: 0.875rem 2rem; } } @media (max-width: 480px) { .quick-section { padding: 2rem 0; } 
.quick-column h2 { font-size: 1.75rem; } 
.quick-img img, .quick-add img { border-radius: 12px; } } 

.our-section { padding: 20px 0 60px; background: linear-gradient(135deg, rgba(var(--kpy-white-rgb), 0.98) 0%, rgba(var(--kpy-primary-rgb), 0.05) 100%); } 
.our-section .container-xxl { max-width: 1200px; margin: 0 auto; padding: 0 20px; } 
.our-section .wp-block-columns { display: flex; gap: 30px; align-items: stretch; } .our-section .card { flex: 1; background: var(--kpy-white); border-radius: 16px; padding: 40px 30px; box-shadow: 0 10px 30px rgba(var(--kpy-black-rgb), 0.08); transition: all 0.3s ease; display: flex; flex-direction: column; justify-content: center; border-bottom: 5px solid var(--kpy-primary); } .our-section .card:hover { transform: translateY(-10px); box-shadow: 0 15px 40px rgba(var(--kpy-black-rgb), 0.12); }
.our-section .card h2 { font-family: var(--kpy-font-2); font-size: 1.8rem; color: var(--kpy-secondary); margin-bottom: 20px; position: relative; padding-bottom: 15px; }
.our-section .card h2:after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 3px; background: var(--kpy-primary); border-radius: 2px; }
.our-section .card p { font-size: 1.1rem; line-height: 1.7; color: var(--kpy-accent); font-family: var(--kpy-font-3);}
.our-section .wp-block-image { flex: 1.2; display: flex; align-items: center; justify-content: center; }
.our-section .wp-block-image img { width: 100%; height: auto; border-radius: 16px; box-shadow: 0 15px 35px rgba(var(--kpy-black-rgb), 0.1); transition: all 0.3s ease; } 
.our-section .wp-block-image img:hover { transform: scale(1.02); box-shadow: 0 20px 40px rgba(var(--kpy-black-rgb), 0.15); } @media (max-width: 968px) { .our-section .wp-block-columns { flex-direction: column; }
.our-section .card { margin-bottom: 30px; } } @media (max-width: 480px) { 
    .our-section .card { padding: 30px 20px; } 
.our-section .card h2 { font-size: 1.5rem; } }
	
#quick-list { list-style:none; padding:0; margin:0; } 
#quick-list li { padding:12px 20px 12px 60px; margin-bottom:15px; background:rgba(var(--kpy-primary-rgb),0.1); border-left:4px solid var(--kpy-primary); border-radius:0 8px 8px 0; transition:all 0.3s ease; position:relative; font-size:1.1rem; } 
#quick-list li:before { content:''; position:absolute; left:20px; top:50%; transform:translateY(-50%); width:24px; height:24px; background-color:var(--kpy-secondary); border-radius:50%; display:flex; align-items:center; justify-content:center; color:var(--kpy-white); font-weight:bold; } 
#quick-list li:nth-child(1):before { content:'1'; } 
#quick-list li:nth-child(2):before { content:'2'; } 
#quick-list li:nth-child(3):before { content:'3'; } 
#quick-list li:nth-child(4):before { content:'4'; } 
#quick-list li:nth-child(5):before { content:'5'; } 
#quick-list li:hover { background:rgba(var(--kpy-primary-rgb),0.2); transform:translateX(5px); border-left:4px solid var(--kpy-secondary); } 
@media (max-width:768px) {#quick-list .container { padding:30px 20px; } .list-title { font-size:1.8rem; } #quick-list li { padding:15px 15px 15px 50px; font-size:1rem; } #quick-list li:before { left:15px; width:20px; height:20px; font-size:0.8rem; } }
	

/* Grid: 4 cards per row */
.explore-posts-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; margin: 40px 0; }

/* Responsive adjustments */
@media (max-width: 1200px) { .explore-posts-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 900px) { .explore-posts-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .explore-posts-grid { grid-template-columns: 1fr; } }

/* Card Styling */
.explore-post-card { border-radius: 12px; overflow: hidden; display: flex; flex-direction: column; transition: all 0.3s ease; }
.explore-post-card:hover { transform: translateY(-6px);  }

/* Thumbnail */
.explore-post-thumb { position: relative; padding-top: 56.25%; overflow: hidden; height: 300px;border-radius: 12px; }
.explore-post-img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.explore-post-card:hover .explore-post-img { transform: scale(1.05); }

/* Body */
.explore-post-body { padding: 20px; flex-grow: 1; display: flex; flex-direction: column; }
.explore-post-meta { font-size: 0.85rem; display: flex; gap: 15px; margin-bottom: 10px; }
.explore-post-meta i { margin-right: 4px; color: var(--kpy-secondary); }
.explore-post-title { font-size: 1.1rem; margin: 0 0 12px; color: var(--kpy-secondary); font-weight: 600; line-height: 1.4; transition: color 0.3s ease; }
.explore-post-card:hover .explore-post-title { color: var(--kpy-secondary); }
.explore-post-excerpt { flex-grow: 1; color: #444; font-size: 0.95rem; margin-bottom: 15px; }

/* Read More */
.explore-read-more { align-self: flex-start; font-weight: 600; text-decoration: none; color: var(--kpy-secondary); display: inline-flex; align-items: center; transition: all 0.3s ease; }
.explore-read-more i { margin-left: 6px; transition: transform 0.3s ease; }
.explore-read-more:hover { color: var(--kpy-secondary); }
.explore-read-more:hover i { transform: translateX(4px); }

/* ===== SINGLE POST PAGE NEW STYLING ===== */

/* Header Banner */
.spp-header-banner { min-height: 320px; display: flex; align-items: center; justify-content: center; text-align: center; position: relative; color: #fff; clip-path: polygon(0 0, 100% 0, 100% 90%, 50% 100%, 0 90%);}
.spp-header-banner::after { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.45); }
.spp-header-banner h1 { position: relative; font-size: 2.5rem; font-weight: 700; z-index: 2; line-height: 1.2; color: #fff; font-family:var(--kpy-font-2); }

/* Main Content Area */
.spp-content-container { padding: 30px 15px; display: flex; gap: 30px; flex-wrap: wrap; }
.spp-post-main { flex: 1 1 65%; background: #fff; border-radius: 12px; padding: 30px; }
.spp-post-main img { width: 100%; height: auto; border-radius: 8px; margin: 20px 0; }

/* Post Meta */
.spp-post-meta { font-size: 0.9rem; margin-bottom: 20px; color: #666; display: flex; align-items: center; gap: 10px; }
.spp-post-meta i { color: #710b0d; }
.spp-author-email a { color: inherit; }

/* Post Headings */
.spp-post-main h2, .spp-post-main h3, .spp-post-main h4 { margin-top: 25px; margin-bottom: 15px; font-weight: 600; color: var(--kpy-secondary); }

/* Sidebar */
.spp-sidebar { flex: 1 1 30%; background: var(--kpy-white);  padding: 20px; border-left: 2px var(--kpy-primary) solid; }
.spp-sidebar h3 { font-size: 1.3rem; margin-bottom: 20px; font-weight: 600; color: #710b0d; }
.spp-sidebar ul { list-style: none; padding: 0; }
.spp-sidebar ul li { margin-bottom: 12px; }
.spp-sidebar ul li a { color: #444; text-decoration: none; transition: all 0.3s ease; }
.spp-sidebar ul li a:hover { color: #710b0d; text-decoration: underline; }

/* Social Share */
.spp-social-share { border-top: 1px solid #eee; margin-top: 25px; padding-top: 15px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.spp-social-share small { font-size: 0.85rem; }
.spp-social-btn { background: transparent; border: 1px solid #ccc; color: #333; border-radius: 30px; padding: 6px 14px; transition: all 0.3s ease; display: inline-flex; align-items: center; font-size: 0.85rem; text-decoration: none; }
.spp-social-btn-facebook:hover { background: #3b5998; color: #fff; border-color: #3b5998; }
.spp-social-btn-twitter:hover { background: #1da1f2; color: #fff; border-color: #1da1f2; }
.spp-social-btn-whatsapp:hover { background: #25D366; color: #fff; border-color: #25D366; }

/* Responsive */
@media (max-width: 992px) { .spp-post-main, .spp-sidebar { flex: 1 1 100%; } .spp-header-banner h1 { font-size: 2rem; } }
@media (max-width: 576px) { .spp-header-banner { min-height: 350px; } .spp-header-banner h1 { font-size: 1.6rem; } .spp-post-main { padding: 20px; } }



.explore-news-horizontal { display: flex; flex-direction: column; gap: 20px; margin: 30px 0; }
.explore-news-horizontal-card { display: flex; background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.1); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.explore-news-horizontal-card:hover { transform: translateY(-4px); box-shadow: 0 8px 20px rgba(0,0,0,0.15); }
.explore-news-horizontal-link { display: flex; text-decoration: none; color: inherit; width: 100%; }
.explore-news-horizontal-thumb { flex: 0 0 35%; overflow: hidden; position: relative; }
.explore-news-horizontal-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.explore-news-horizontal-card:hover .explore-news-horizontal-img { transform: scale(1.05); }
.explore-news-horizontal-body { flex: 1; padding: 20px; display: flex; flex-direction: column; justify-content: center; }
.explore-news-horizontal-title { font-size: 1.2rem; font-weight: 600; margin-bottom: 8px; color: #222; transition: color 0.3s ease; }
.explore-news-horizontal-card:hover .explore-news-horizontal-title { color: #7f1712; }
.explore-news-horizontal-meta { font-size: 0.85rem; color: #666; display: flex; align-items: center; gap: 6px; margin-bottom: 10px; }
.explore-news-horizontal-meta i { color: #7f1712; }
.explore-news-horizontal-excerpt { font-size: 0.95rem; color: #444; line-height: 1.5; }
@media (max-width: 768px) { .explore-news-horizontal-card { flex-direction: column; } }

.cta { position:relative; width:100%; margin:60px 0; } 
.cta .wp-block-cover { position:relative; border-radius:0 0 20px 20px; overflow:hidden; display:flex; align-items:center; margin:60px 60px; } 
.cta .wp-block-cover__image-background { position:absolute; top:0; left:0; width:100%; height:100%; object-fit:cover; z-index:1; } 
.cta .wp-block-cover__background { background-color:rgba(var(--kpy-secondary-rgb),0.85) !important; z-index:2; } 
.cta .wp-block-cover__inner-container { position:relative; z-index:3; width:100%; padding:40px; max-width:1200px; margin:0 auto; } 
.cta .wp-block-columns { display:flex; align-items:center; gap:40px; } 
.cta h2 { font-family:var(--kpy-font-2); color:var(--kpy-white); font-size:2.5rem; margin-bottom:20px; line-height:1.2; } 
.cta p { color:rgba(var(--kpy-white-rgb),0.9); font-size:1.1rem; line-height:1.6; margin-bottom:0; } 
@media (max-width:968px) { .cta .wp-block-cover { min-height:350px !important; } .cta .wp-block-cover__inner-container { padding:30px; } .cta .wp-block-columns { flex-direction:column; text-align:center; gap:30px; } .cta .des-tle { font-size:2rem; } } 
@media (max-width:480px) { .cta .wp-block-cover { min-height:300px !important; } .cta .wp-block-cover__inner-container { padding:20px; } .cta .des-tle { font-size:1.8rem; } .cta p { font-size:1rem; } .cta .about-btn a { padding:14px 30px; font-size:1rem; } .cta .wp-block-cover { margin: 60px 20px;}}





/* Responsive */
@media (max-width: 768px) {
    .destination-hero h1 { font-size: 2rem; }
    .trip-meta { gap: 0.5rem; align-items: center; }
    .destination-container { grid-template-columns: 1fr; padding: 1rem; gap: 2rem; }
    .booking-widget { position: relative; top: auto; }
    .includes-excludes { grid-template-columns: 1fr; }
}





/** =====================================================================
*search
=======================================================================**/

.header-search input{visibility: hidden;}
.header-search ul.search-dropdown{display: none;}
.header-search label{position: relative;display: block;cursor: pointer;margin-top: -20px}
.header-search input:checked~ul.search-dropdown{display: block;position: absolute;z-index: 119;}
.search-dropdown .input-group{right:100%;flex-wrap: unset;margin-top:28px;}
.search-dropdown ul li{list-style: none !important;}
.search-dropdown .input-group input{visibility:visible;width: 600px !important;height: 60px;}
.search-dropdown .input-group .btn-search{background:#0b5a5f;color:#fff;}
#search-results {display: none;right: 100%;position: relative;background: rgba(255,255,255,0.93);padding: 1em;
    font-size: small;list-style: none;max-height: 300px;overflow-y: auto;width: 100%;border: 1px solid #ccc;box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);}
#search-results a{color:#125e63}
.search-result-item {margin-bottom: 3px;padding: 5px;}
.search-result-item h5 {margin: 0;font-size: 1.1em;}
.search-result-item p {margin-top: 2px;color: #666;font-size: 0.9em;margin-bottom: 5px;}
.search-result-item:hover{background: rgba(245, 227, 225, 0.92);}

/**modal search**/
.modal-search{background: rgba(42, 42, 134, 0.6);}
.modal-search .modal-body{align-items: center;}
.modal-search input{height: 60px;width: 600px;}
.modal-search .input-group .btn-search{background: #00AEEF;color:#fff;}
.modal-search #search-results {display: none;right: 0;position: relative;background: transparent;	padding: 1em;list-style: none;width: 100%;border: 0px solid #ccc;color:#fff;}
.modal-search  #search-results a{color:#00aeef;}
.modal-search .search-result-item {margin-bottom: 3px;padding: 5px;}
.modal-search .search-result-item h5 {margin: 0;font-size: 1.15em;}
.modal-search .search-result-item p {margin-top: 2px;color: #eee;font-size: 0.95em;margin-bottom: 5px;}
.modal-search .search-result-item:hover{background: rgba(0, 175, 239, 0.139);}





/* Animation for elements */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.bs-animate { animation: fadeInUp 0.6s ease forwards; }



/** =========================================================
Contact Form Styles
===============================================================**/
.contact-container { max-width: 1200px; margin: 0 auto; padding: 60px 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info { padding: 30px; }
.contact-info-title { font-family: var(--kpy-font-2); font-size: 2.5rem; color: var(--kpy-secondary); margin-bottom: 30px; position: relative; }
.contact-info-title:after { content: ''; position: absolute; bottom: -10px; left: 0; width: 60px; height: 4px; background: var(--kpy-primary); border-radius: 2px; }
.contact-info-description { font-size: 1.1rem; color: var(--kpy-accent); margin-bottom: 40px; line-height: 1.7; }
.contact-details { margin-bottom: 50px; }
.contact-detail-item { display: flex; align-items: flex-start; margin-bottom: 30px; }
.contact-detail-icon { width: 24px; height: 24px; margin-right: 15px; color: var(--kpy-primary); flex-shrink: 0; margin-top: 3px; }
.contact-detail-content h4 { font-weight: 600; color: var(--kpy-secondary); margin-bottom: 5px; font-size: 1.1rem; }
.contact-detail-content p { color: var(--kpy-accent); margin: 0; line-height: 1.5; }
.contact-social { margin-top: 40px; }
.contact-social h4 { font-weight: 600; color: var(--kpy-secondary); margin-bottom: 15px; font-size: 1.1rem; }
.contact-social-icons { display: flex; gap: 15px; }
.contact-social-icon { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: rgba(var(--kpy-primary-rgb), 0.1); color: var(--kpy-secondary); border-radius: 50%; transition: all 0.3s ease; text-decoration: none; }
.contact-social-icon:hover { background: var(--kpy-primary); transform: translateY(-3px); color: var(--kpy-white); }
.contact-form-container { border-radius: 16px; padding: 40px; box-shadow: 0 10px 30px rgba(var(--kpy-black-rgb), 0.08); position: relative; overflow: hidden; }
.contact-form-container:before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 5px; background: var(--kpy-primary); }
.contact-form-title { font-family: var(--kpy-font-2); font-size: 2rem; color: var(--kpy-secondary); margin-bottom: 30px; text-align: center; }
.contact-form { width: 100%; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.95rem; font-weight: 500; color: var(--kpy-secondary); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 14px 16px; border: 1px solid rgba(var(--kpy-accent-rgb), 0.2); border-radius: 8px; font-size: 1rem; font-family: var(--kpy-font); background: var(--kpy-white); color: var(--kpy-accent); transition: all 0.3s ease; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--kpy-primary); box-shadow: 0 0 0 3px rgba(var(--kpy-primary-rgb), 0.2); }
.form-group textarea { min-height: 150px; resize: vertical; }
.form-submit { text-align: center; margin-top: 30px; }
.submit-btn { display: inline-block; padding: 16px 40px; background: var(--kpy-primary); color: var(--kpy-secondary); text-decoration: none; font-weight: 600; font-size: 1.1rem; border-radius: 50px; border: none; cursor: pointer; transition: all 0.3s ease; box-shadow: 0 5px 15px rgba(var(--kpy-primary-rgb), 0.3); }
.submit-btn:hover { background: var(--kpy-primary-light); transform: translateY(-3px); box-shadow: 0 8px 20px rgba(var(--kpy-primary-rgb), 0.4); }
.safari-alert { padding: 16px 20px; border-radius: 8px; margin-bottom: 30px; font-size: 0.95rem; border-left: 4px solid; }
.safari-alert-success { background: rgba(76, 175, 80, 0.1); color: #2E7D32; border-left-color: #4CAF50; }
.safari-alert-danger { background: rgba(229, 57, 53, 0.1); color: #C62828; border-left-color: #E53935; }
.map-section { padding: 40px 0; background: rgba(var(--kpy-primary-rgb), 0.05); }
.map-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.map-title { font-family: var(--kpy-font-2); font-size: 2.5rem; color: var(--kpy-secondary); text-align: center; margin-bottom: 40px; }
.map-wrapper { border-radius: 16px; overflow: hidden; box-shadow: 0 15px 35px rgba(var(--kpy-black-rgb), 0.1); border: 1px solid rgba(var(--kpy-accent-rgb), 0.1); }
.map-wrapper iframe { display: block; width: 100%; height: 450px; border: none; }
@media (max-width: 1024px) { .contact-container { grid-template-columns: 1fr; gap: 40px; } .contact-hero-title { font-size: 3rem; } }
@media (max-width: 768px) { .contact-hero { height: 50vh; min-height: 400px; } .contact-hero-title { font-size: 2.5rem; } .contact-hero-subtitle { font-size: 1.1rem; } .form-row { grid-template-columns: 1fr; gap: 0; } .contact-info-title { font-size: 2rem; } .map-title { font-size: 2rem; } }
@media (max-width: 480px) { .contact-hero-title { font-size: 2rem; } .contact-form-container { padding: 30px 20px; } .contact-info { padding: 20px; } .contact-info-title { font-size: 1.8rem; } .submit-btn { padding: 14px 30px; font-size: 1rem; } }

/** =========================================================
destinations page
===============================================================**/

.travel-cards-grid {display: grid; grid-template-columns: repeat(3, 1fr); gap: 35px; margin: 60px 40px;}
.travel-card {position: relative; border-radius: 25px; overflow: hidden; height: 500px; box-shadow: 0 4px 10px rgba(0,0,0,0.1);}
.travel-card a {display: block; height: 100%; text-decoration: none; color: #fff;}
.travel-image {width: 100%; height: 100%; background-size: cover; background-position: center; transition: transform 0.3s ease;}
.travel-card:hover .travel-image {transform: scale(1.05);}
.travel-overlay {position: absolute; bottom: 0; left: 0; right: 0; padding: 20px; background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0));}
.travel-overlay h3 {margin: 0; font-size: 22px; font-weight: 400; color: var(--kpy-white); font-family:var(--kpy-font-2); font-size:2.5rem; text-align:center;}

@media (max-width: 1024px) {.travel-cards-grid{grid-template-columns:repeat(2,1fr);margin:40px 20px;gap:25px;}.travel-card{height:450px;}.travel-overlay h3{font-size:2rem;}}
@media (max-width: 768px) {.travel-cards-grid{grid-template-columns:1fr;margin:30px 15px;gap:20px;}.travel-card{height:400px;}.travel-overlay h3{font-size:1.8rem;}}
@media (max-width: 480px) { .des-title{font-size: 54px;}  .des-title{font-size: 54px;}.travel-card{height:350px;}.travel-overlay h3{font-size:1.5rem;}}


/** =========================================================
Gallery page
===============================================================**/
.gallery-cards-container { margin: 0 auto; padding: 20px; }
.about-side{border-left:2px var(--kpy-primary) solid ;}
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; margin-bottom: 30px; }
.gallery-card { position: relative; border-radius: 8px; overflow: hidden; box-shadow: 0 4px 8px rgba(0,0,0,0.1); transition: all 0.3s ease; aspect-ratio: 1/1; }
.gallery-card:hover { transform: translateY(-5px); box-shadow: 0 8px 16px rgba(0,0,0,0.2); }
.gallery-thumbnail-wrapper { position: relative; width: 100%; height: 100%; }
.gallery-thumbnail { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.gallery-card:hover .gallery-thumbnail { transform: scale(1.05); }
.gallery-title-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px; background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%); color: #fff; }
.gallery-title { margin: 0; font-size: 2.2rem; line-height: 1.2; text-shadow: 1px 1px 3px rgba(0,0,0,0.5); transform: translateY(10px); transition: transform 0.3s ease; opacity: 0.9; }
.gallery-card:hover .gallery-title { transform: translateY(0); opacity: 1; }
.gallery-card-link { display: block; height: 100%; text-decoration: none; color: inherit; }
.gallery-pagination { display: flex; justify-content: center; margin-top: 40px; }
.gallery-pagination .page-numbers { display: flex; list-style: none; padding: 0; margin: 0; gap: 8px; }
.gallery-pagination .page-numbers li a, .gallery-pagination .page-numbers li span { display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 10px; border-radius: 6px; background: #f8f9fa; color: #495057; text-decoration: none; font-weight: 500; transition: all 0.3s ease; }
.gallery-pagination .page-numbers li a:hover { background: #228b22; color: #fff; }
.gallery-pagination .page-numbers li span.current { background: #228b22; color: #fff; }
.gallery-pagination .page-numbers li .pagination-arrow { margin: 0 5px; }
@media (max-width: 768px) { .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 15px; } .gallery-title-overlay { padding: 15px; } .gallery-title { font-size: 1rem; } }
@media (max-width: 480px) { .gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; } .gallery-title-overlay { padding: 10px; } }
.uniform-img {width: 100%;height: 250px; object-fit: cover;border-radius: 8px;transition: transform 0.3s ease;}
.uniform-img:hover {transform: scale(1.03);}








/** =========================================================
text slider Styles
===============================================================**/

.text-slider{position:relative;width:100%;height:100vh;max-height:600px;overflow:hidden;display:flex;align-items:center;justify-content:center;text-align:center;color:var(--kpy-white);}
.slider-bg{position:absolute;top:0;left:0;width:100%;height:100%;background-size:cover;background-position:center;}
.slider-video{position:absolute;top:0;left:0;width:100%;height:100%;object-fit:cover;z-index:1;}
.video-title-overlay{position:absolute;top:0;left:0;width:100%;height:100%;display:flex;flex-direction:column;align-items:center;justify-content:center;z-index:2;}
.video-main-title{font-size:6rem;font-weight:800;color:var(--kpy-white);text-align:center;line-height:1;letter-spacing:0.01em;margin-top:80px;max-width:80%;font-family:var(--kpy-font-2);}
.video-subtitle{font-size:1.5rem;font-weight:400;color:var(--kpy-white);margin-top:15px;max-width:70%;text-align:center;font-family:var(--kpy-font-3);}
.overlay{position:relative;background:rgba(0,0,0,0.6);padding:30px;border-radius:10px;z-index:2;}
.main-title{font-size:40px;margin-bottom:10px;}
.subtitle{font-size:24px;height:30px;}
.slider-btn{display:inline-block;margin-top:15px;padding:10px 20px;color:#fff;background:#ff9900;text-decoration:none;border-radius:5px;}
@media(max-width:768px){.video-main-title{font-size:64px;padding:0 1rem;}.video-subtitle{font-size:clamp(1rem,5vw,1.5rem);max-width:90%;}}
@media(max-width:480px){.video-main-title{font-size:64px;word-spacing:0.2em;}.video-subtitle{font-size:clamp(0.9rem,6vw,1.2rem);}}



/** ============================================================
Error 404 Page Not Found CSS
=============================================================**/
.Error_404 {overflow: hidden; padding:80px 0 120px;}
.Error_404 .error_pic {width: 35%; float: left; text-align: center;}
.Error_404 .error_pic i {color: #E82A2A; font-size: 250px; line-height: 250px; margin-right: .2em; text-align: center; font-variant: normal; text-transform: none; margin-left: .2em;}
.Error_404 .error_desk {width: 65%; float: left; padding-top: 40px;}
.Error_404 .error_desk h2 {font-size: 55px; line-height: 60px;color: #E82A2A;font-weight: 500;}
.Error_404 .error_desk h4 {font-size: 28px; line-height: 30px;}
.Error_404 .error_desk p .check {line-height: 45px; font-size: 16px;}
.Error_404 .error_desk p .button {padding: 13px 20px; margin: 0; border-radius: 5px; display: inline; margin-left: 10px; box-shadow: inset 0 0 0 0;}
.Error_404 .error_desk p .button:hover{color:#f9f9f9; text-decoration: none; background: #E82A2A;}
a.button, a.tp-button {transition:.2s all; background: transparent; color: #E82A2A; border:solid 2px;}
.wp-block-ub-tabbed-content-tab-title strong {font-weight:500!important;}
.text-dark {color:#a88343;}


/** ============================================================
Ratings CSS
=============================================================**/

.ratings-section { background: #ffffff; border: 1px solid #e0e0e0; border-radius: 10px; padding: 30px; margin-top: 20px; } 
.ratings-section h2 { color: #710b0d; margin-bottom: 25px; font-size: 24px; border-bottom: 2px solid #f7d508; padding-bottom: 10px; } 
.overall-rating { display: flex; align-items: center; gap: 25px; margin-bottom: 15px; padding: 5px; background: linear-gradient(135deg, #f8f8f8, #f8f8f8); border-left: 4px solid #f7d508; } 
.rating-stars-large { font-size: 28px; line-height: 1; } 
.rating-details { display: flex; flex-direction: column; gap: 5px; } 
.average-score { font-size: 32px; font-weight: bold; line-height: 1; color: #fff; } 
.total-reviews { color: #666; font-size: 14px; font-weight: 500; } 
.reviews-list h3 { color: #333; margin-bottom: 20px; font-size: 20px; } 
.review-item { background: #f8f9fa; padding: 5px; margin-bottom: 10px; transition: transform 0.2s ease, box-shadow 0.2s ease; } 
.review-item:hover { transform: translateY(-2px); box-shadow: 0 4px 15px rgba(0,0,0,0.1); } 
.review-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 15px; } 
.reviewer-info { display: flex; align-items: center; gap: 12px; } 
.reviewer-avatar { width: 40px; height: 40px; background: #710b0d; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; font-size: 16px; } 
.reviewer-details { display: flex; flex-direction: column; gap: 3px; } 
.reviewer-name { color: #333; font-size: 16px; } 
.review-date { color: #666; font-size: 12px; } 
.review-rating { font-size: 18px; } 
.review-content p { margin-bottom: 10px; line-height: 1.6; color: #333; font-size: 15px; } 
.tour-date { color: #888; font-size: 12px; font-style: italic; } 
.view-all-reviews { text-align: center; margin-top: 25px; } 
.view-reviews-btn { display: inline-block; background: #710b0d; color: white; padding: 12px 25px; text-decoration: none; border-radius: 5px; font-weight: 500; transition: background 0.3s ease; } 
.view-reviews-btn:hover { background: #8a0f12; color: white; } 
.no-reviews { text-align: center; padding: 40px 20px; background: #f8f9fa; border-radius: 8px; border: 2px dashed #ddd; } 
.no-reviews-icon { font-size: 48px; margin-bottom: 15px; } 
.no-reviews h3 { color: #710b0d; margin-bottom: 10px; } 
.no-reviews p { color: #666; margin: 0; } 
@media (max-width: 768px) { .ratings-section { padding: 20px; } .overall-rating { flex-direction: column; text-align: center; gap: 15px; padding: 20px; } .rating-stars-large { font-size: 24px; } .average-score { font-size: 28px; } .review-header { flex-direction: column; gap: 10px; } .reviewer-info { justify-content: center; } .review-item { padding: 20px; } }


