/* ==========================================================================
   UNI-WORLD TRAVEL AGENCY - SUNSET GRADIENT THEME (NO BLUE)
   ========================================================================== */

   @import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

   /* --- RESET & VARIABLES --- */
   * {
       margin: 0;
       padding: 0;
       box-sizing: border-box;
   }
   
   :root {
       /* Warm Palette - NO BLUE */
       --bg-white: #ffffff;
       --bg-light: #fffaf6;         /* Very soft warm tint */
       --bg-dark: #2d2a26;          /* Warm Charcoal */
       --bg-card: #ffffff;
       
       /* Sunset Gradients */
       --accent-solid: #f26419;     /* Burnt Orange */
       --gradient-primary: linear-gradient(135deg, #f26419 0%, #fbbf24 100%); /* Orange to Gold */
       --gradient-hover: linear-gradient(135deg, #ea580c 0%, #f59e0b 100%);
       --gradient-light: linear-gradient(135deg, #ffedd5 0%, #fef3c7 100%);
       
       /* Text Colors */
       --text-dark: #2d2a26;        
       --text-body: #57534e;        
       --text-muted: #a8a29e;
       --text-light: #fffaf6;
       
       /* Structure & Effects */
       --border-color: #f5f5f4;
       --shadow-sm: 0 4px 6px -1px rgba(242, 100, 25, 0.05);
       --shadow-md: 0 10px 20px -5px rgba(242, 100, 25, 0.1);
       --shadow-lg: 0 25px 50px -12px rgba(242, 100, 25, 0.15);
       --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
       --header-height: 90px;
       --border-radius-sm: 12px;
       --border-radius-lg: 24px;
   }
   
   html, body {
       font-family: 'Outfit', sans-serif;
       background-color: var(--bg-white);
       color: var(--text-body);
       line-height: 1.7;
       overflow-x: hidden;
       width: 100%;
       scroll-behavior: smooth;
   }
   
   /* --- TYPOGRAPHY --- */
   h1, h2, h3, h4, h5 {
       color: var(--text-dark);
       font-weight: 800;
       line-height: 1.2;
       letter-spacing: -0.5px;
   }
   .text-gradient {
       background: var(--gradient-primary);
       -webkit-background-clip: text;
       -webkit-text-fill-color: transparent;
       display: inline-block;
   }
   a {
       text-decoration: none;
       color: inherit;
       transition: var(--transition);
   }
   img {
       max-width: 100%;
       height: auto;
       display: block;
       object-fit: cover;
   }
   
   /* --- LAYOUT UTILITIES --- */
   .container {
       width: 100%;
       max-width: 1300px;
       margin: 0 auto;
       padding: 0 5%;
   }
   .py-mega { padding: 120px 0; }
   .py-large { padding: 80px 0; }
   .text-center { text-align: center; }
   .bg-light { background-color: var(--bg-light); }
   .bg-dark { background-color: var(--bg-dark); color: var(--text-light); }
   .bg-dark h2, .bg-dark h3, .bg-dark h4 { color: var(--text-light); }
   
   /* Strict Grid Alignments */
   .grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 60px; align-items: center; }
   .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; align-items: stretch; }
   .grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: stretch; }
   
   /* Section Headers */
   .section-header { margin-bottom: 60px; max-width: 800px; }
   .section-header h2 { font-size: 3.2rem; margin-bottom: 15px; }
   .section-header.text-center { margin-left: auto; margin-right: auto; }
   .badge { display: inline-block; background: var(--gradient-light); color: var(--accent-solid); padding: 8px 20px; border-radius: 50px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; border: 1px solid rgba(242, 100, 25, 0.2); }
   
   /* --- BUTTONS --- */
   .btn-primary, .btn-outline {
       display: inline-flex; align-items: center; justify-content: center; gap: 10px;
       padding: 16px 40px; border-radius: 50px; font-weight: 700; font-size: 1rem;
       text-transform: uppercase; letter-spacing: 0.5px; transition: var(--transition); cursor: pointer; border: none;
   }
   .btn-primary {
       background: var(--gradient-primary); color: var(--bg-white) !important;
       box-shadow: 0 10px 20px rgba(242, 100, 25, 0.25);
   }
   .btn-primary:hover {
       background: var(--gradient-hover); transform: translateY(-3px);
       box-shadow: 0 15px 30px rgba(242, 100, 25, 0.35);
   }
   .btn-outline {
       background: transparent; color: var(--text-dark) !important;
       border: 2px solid var(--accent-solid);
   }
   .btn-outline:hover {
       background: var(--gradient-primary); color: var(--bg-white) !important; border-color: transparent; transform: translateY(-3px);
   }
   
   /* --- HEADER & NAVIGATION --- */
   header {
       position: fixed; top: 0; width: 100%; height: var(--header-height); z-index: 1000;
       background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
       border-bottom: 1px solid var(--border-color); transition: var(--transition); display: flex; align-items: center;
   }
   header.scrolled { height: 75px; box-shadow: var(--shadow-sm); }
   .nav-container { display: flex; justify-content: space-between; align-items: center; width: 100%; height: 100%; }
   .logo h1 { font-size: 2rem; font-weight: 900; letter-spacing: -1px; margin: 0; }
   .logo h1 span { background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
   
   .nav-links { display: flex; gap: 35px; list-style: none; margin: 0; padding: 0; }
   .nav-links a { font-weight: 600; font-size: 1rem; color: var(--text-dark); transition: var(--transition); }
   .nav-links a:hover, .nav-links a.active { color: var(--accent-solid); }
   
   /* Hamburger Menu */
   .hamburger { display: none; flex-direction: column; gap: 6px; cursor: pointer; border: none; background: none; z-index: 1001; padding: 5px; }
   .hamburger span { width: 32px; height: 3px; background: var(--text-dark); border-radius: 5px; transition: var(--transition); }
   .hamburger.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); background: var(--accent-solid); }
   .hamburger.active span:nth-child(2) { opacity: 0; }
   .hamburger.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); background: var(--accent-solid); }
   
   /* --- HERO SECTION --- */
   .hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding-top: var(--header-height); overflow: hidden; }
   .hero-bg { position: absolute; inset: 0; z-index: 0; }
   .hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
   .hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(45, 42, 38, 0.95) 0%, rgba(45, 42, 38, 0.6) 50%, transparent 100%); z-index: 1; }
   .hero-content { position: relative; z-index: 2; max-width: 700px; color: var(--text-light); }
   .hero-content h1 { color: var(--text-light); font-size: 5rem; line-height: 1.1; margin-bottom: 25px; }
   .hero-content p { font-size: 1.25rem; color: #e7e5e4; margin-bottom: 40px; }
   
   /* --- FEATURES & CARDS --- */
   .feature-card { background: var(--bg-card); padding: 50px 40px; border-radius: var(--border-radius-lg); border: 1px solid var(--border-color); transition: var(--transition); box-shadow: var(--shadow-sm); position: relative; overflow: hidden; display: flex; flex-direction: column; height: 100%; }
   .feature-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 5px; background: var(--gradient-primary); transform: scaleX(0); transform-origin: left; transition: transform 0.5s ease; }
   .feature-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); border-color: transparent; }
   .feature-card:hover::before { transform: scaleX(1); }
   .icon-box { font-size: 3rem; margin-bottom: 25px; display: inline-flex; align-items: center; justify-content: center; width: 80px; height: 80px; background: var(--gradient-light); border-radius: var(--border-radius-sm); }
   .feature-card h3 { font-size: 1.8rem; margin-bottom: 15px; }
   .feature-card p { font-size: 1.05rem; flex-grow: 1; }
   
   /* --- DESTINATION/PORTFOLIO GRID --- */
   .dest-card { position: relative; border-radius: var(--border-radius-lg); overflow: hidden; aspect-ratio: 3/4; cursor: pointer; box-shadow: var(--shadow-md); transition: var(--transition); }
   .dest-card img { width: 100%; height: 100%; transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
   .dest-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(45,42,38,0.95) 0%, transparent 60%); padding: 30px; display: flex; flex-direction: column; justify-content: flex-end; transition: var(--transition); }
   .dest-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
   .dest-card:hover img { transform: scale(1.1); }
   .dest-tag { background: var(--gradient-primary); color: #fff; padding: 5px 15px; border-radius: 50px; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; margin-bottom: 10px; width: fit-content; transform: translateY(20px); opacity: 0; transition: all 0.4s ease; }
   .dest-title { color: #fff; font-size: 2rem; margin-bottom: 5px; transform: translateY(20px); opacity: 0; transition: all 0.5s ease; }
   .dest-desc { color: #e7e5e4; font-size: 1rem; transform: translateY(20px); opacity: 0; transition: all 0.6s ease; }
   .dest-card:hover .dest-tag, .dest-card:hover .dest-title, .dest-card:hover .dest-desc { transform: translateY(0); opacity: 1; }
   
   /* --- STATS COUNTER --- */
   .stats-wrapper { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 40px; padding: 60px; background: var(--bg-dark); border-radius: var(--border-radius-lg); box-shadow: var(--shadow-lg); }
   .stat-box { text-align: center; }
   .stat-box h3 { font-size: 4rem; color: #fff; margin-bottom: 5px; line-height: 1; }
   .stat-box p { color: var(--accent-solid); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; font-size: 1rem; }
   
   /* --- TESTIMONIAL SLIDER --- */
   .slider-container { position: relative; overflow: hidden; padding-bottom: 50px; }
   .slider-wrapper { display: flex; transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
   .slide { min-width: 100%; padding: 40px; background: #fff; border-radius: var(--border-radius-lg); border: 1px solid var(--border-color); box-shadow: var(--shadow-sm); text-align: center; }
   .quote-icon { font-size: 4rem; color: var(--accent-solid); opacity: 0.2; line-height: 0; margin-bottom: 30px; display: block; font-family: serif; }
   .slide p { font-size: 1.5rem; color: var(--text-dark); font-style: italic; margin-bottom: 30px; line-height: 1.5; }
   .slide h4 { font-size: 1.2rem; color: var(--accent-solid); margin-bottom: 5px; }
   .slide span { color: var(--text-muted); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }
   .slider-dots { display: flex; justify-content: center; gap: 10px; margin-top: 30px; }
   .dot { width: 12px; height: 12px; border-radius: 50%; background: var(--border-color); cursor: pointer; transition: var(--transition); }
   .dot.active { background: var(--accent-solid); transform: scale(1.5); }
   
   /* --- CTA BANNER --- */
   .cta-banner { background: var(--gradient-primary); border-radius: var(--border-radius-lg); padding: 80px 5%; text-align: center; color: #fff; box-shadow: var(--shadow-lg); }
   .cta-banner h2 { color: #fff; font-size: 3.5rem; margin-bottom: 20px; }
   .cta-banner p { font-size: 1.2rem; margin-bottom: 40px; color: rgba(255,255,255,0.9); max-width: 700px; margin-left: auto; margin-right: auto; }
   .cta-banner .btn-outline { border-color: #fff; color: #fff !important; }
   .cta-banner .btn-outline:hover { background: #fff; color: var(--accent-solid) !important; }
   
   /* --- SLIM FOOTER --- */
   footer { background: var(--bg-white); padding: 50px 0 20px; border-top: 1px solid var(--border-color); }
   .footer-wrapper { display: grid; grid-template-columns: 2fr 1.5fr 1.5fr; gap: 40px; margin-bottom: 30px; align-items: start; }
   .footer-brand h2 { font-size: 1.8rem; font-weight: 900; margin-bottom: 10px; }
   .footer-brand h2 span { background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
   .footer-brand p { font-size: 0.95rem; color: var(--text-body); max-width: 350px; margin-bottom: 20px; }
   .footer-nav { display: flex; flex-direction: column; gap: 12px; }
   .footer-nav a { color: var(--text-dark); font-weight: 600; font-size: 1rem; transition: var(--transition); }
   .footer-nav a:hover { color: var(--accent-solid); transform: translateX(5px); }
   .footer-contact { display: flex; flex-direction: column; gap: 15px; }
   .contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 0.95rem; color: var(--text-body); }
   .contact-item span { color: var(--accent-solid); font-size: 1.2rem; line-height: 1; }
   .contact-item a { color: var(--text-dark); font-weight: 700; }
   .contact-item a:hover { color: var(--accent-solid); }
   .footer-bottom { text-align: center; padding-top: 25px; border-top: 1px solid var(--border-color); font-size: 0.9rem; color: var(--text-muted); }
   
   /* --- ANIMATIONS (Scroll Reveal) --- */
   .reveal { opacity: 0; visibility: hidden; transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
   .reveal.active { opacity: 1; visibility: visible; }
   .slide-up { transform: translateY(50px); }
   .slide-up.active { transform: translateY(0); }
   .slide-left { transform: translateX(-50px); }
   .slide-left.active { transform: translateX(0); }
   .slide-right { transform: translateX(50px); }
   .slide-right.active { transform: translateX(0); }
   .zoom-in { transform: scale(0.95); }
   .zoom-in.active { transform: scale(1); }
   
   .delay-1 { transition-delay: 0.1s; }
   .delay-2 { transition-delay: 0.2s; }
   .delay-3 { transition-delay: 0.3s; }
   .delay-4 { transition-delay: 0.4s; }
   
   /* --- RESPONSIVE MEDIA QUERIES --- */
   @media (max-width: 1024px) {
       .grid-3 { grid-template-columns: repeat(2, 1fr); }
       .grid-4 { grid-template-columns: repeat(2, 1fr); }
       .hero-content h1 { font-size: 4rem; }
       .footer-wrapper { grid-template-columns: 1fr 1fr; }
   }
   
   @media (max-width: 768px) {
       .nav-links { display: none; }
       .hamburger { display: flex; }
       
       .nav-container.menu-open .nav-links {
           display: flex; flex-direction: column; position: absolute; top: var(--header-height); left: 0;
           width: 100%; background: var(--bg-white); padding: 30px 5%; border-top: 1px solid var(--border-color);
           box-shadow: 0 10px 20px rgba(0,0,0,0.1); align-items: flex-start; z-index: 1000; gap: 0;
       }
       .nav-container.menu-open .nav-links a { font-size: 1.2rem; padding: 15px 0; width: 100%; border-bottom: 1px solid var(--border-color); }
       
       .grid-2, .grid-3, .grid-4, .footer-wrapper { grid-template-columns: 1fr; }
       .hero-content h1 { font-size: 3rem; }
       .section-header h2 { font-size: 2.5rem; }
       .stats-wrapper { flex-direction: column; gap: 50px; }
   }