/* ===== RESET & BASE ===== */
*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{font-family:"Inter",sans-serif;background:#fff;color:#1e293b;overflow-x:hidden;}
a{text-decoration:none;color:inherit;}
img{max-width:100%;display:block;}
ul{list-style:none;}

/* ===== LOADER ===== */
.loader{position:fixed;inset:0;background:#0A2E5D;display:flex;flex-direction:column;align-items:center;justify-content:center;z-index:9999;transition:opacity .5s,visibility .5s;}
.loader.hide{opacity:0;visibility:hidden;}
.loader-ring{width:60px;height:60px;border:4px solid rgba(255,255,255,.1);border-top-color:#1E6BB8;border-radius:50%;animation:spin 1s linear infinite;margin-bottom:16px;}
.loader p{color:#fff;font-size:18px;font-weight:600;letter-spacing:1px;}
@keyframes spin{to{transform:rotate(360deg);}}

/* ===== NAVBAR ===== */
.header{position:fixed;top:0;left:0;right:0;z-index:1000;padding:0 5%;transition:all .3s;background:#fff;box-shadow:0 2px 16px rgba(10,46,93,.08);}
.header.scrolled{background:#fff;box-shadow:0 4px 24px rgba(10,46,93,.15);}
.navbar{display:flex;align-items:center;justify-content:space-between;height:100px;}
.logo-img{
  height:90px;
  width:auto;
  object-fit:contain;
  display:block;
}


.nav-links{display:flex;align-items:center;gap:8px;}
.nav-links > li{position:relative;}
.nav-link{color:#0A2E5D;font-size:14px;font-weight:500;padding:8px 14px;border-radius:8px;transition:all .2s;display:flex;align-items:center;gap:6px;}
.nav-link:hover,.nav-link.active{color:#124C8C;background:rgba(10,46,93,.06);}
.btn-nav{background:linear-gradient(135deg,#D4A017,#E0B84B);color:#0A2E5D;padding:9px 22px;border-radius:50px;font-size:14px;font-weight:700;transition:all .3s;}
.btn-nav:hover{box-shadow:0 6px 20px rgba(212,160,23,.5);transform:translateY(-1px);}
.hamburger{display:none;flex-direction:column;gap:5px;cursor:pointer;}
.hamburger span{width:24px;height:2px;background:#0A2E5D;border-radius:2px;transition:.3s;}

/* ===== DROPDOWN ===== */
.dropdown-menu{display:none !important;position:absolute;top:calc(100% + 12px);left:0;background:#fff;min-width:260px;border-radius:14px;box-shadow:0 20px 60px rgba(0,0,0,.15);padding:8px;z-index:999;flex-direction:column;}
.dropdown-menu.open{display:flex !important;flex-direction:column;animation:dropIn .2s ease;}
@keyframes dropIn{from{opacity:0;transform:translateY(-8px);}to{opacity:1;transform:translateY(0);}}
.dropdown-menu li a{display:flex;align-items:center;gap:12px;padding:11px 16px;color:#334155;font-size:14px;border-radius:8px;transition:.2s;}
.dropdown-menu li a i{color:#0A2E5D;width:16px;}
.dropdown-menu li a:hover{background:#f1f5f9;color:#0A2E5D;}

/* ===== BUTTONS ===== */
.btn-primary{display:inline-flex;align-items:center;gap:8px;background:linear-gradient(135deg,#D4A017,#E0B84B);color:#0A2E5D;padding:13px 28px;border-radius:50px;font-size:15px;font-weight:700;transition:all .3s;border:none;cursor:pointer;}
.btn-primary:hover{transform:translateY(-2px);box-shadow:0 10px 30px rgba(212,160,23,.5);}
.btn-outline{display:inline-flex;align-items:center;gap:8px;border:2px solid rgba(255,255,255,.5);color:#fff;padding:11px 26px;border-radius:50px;font-size:15px;font-weight:600;transition:all .3s;}
.btn-outline:hover{background:rgba(255,255,255,.1);border-color:#E0B84B;color:#E0B84B;}

/* ===== GRADIENT TEXT ===== */
.gradient-text{background:linear-gradient(135deg,#0A2E5D,#1E6BB8,#D4A017);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;}
.gradient-text-light{background:linear-gradient(135deg,#E0B84B,#D4A017);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;}

/* ===== SECTION HEADER ===== */
.section-header{text-align:center;margin-bottom:60px;}
.section-header h2{font-size:42px;font-weight:800;margin-bottom:14px;}
.section-header p{color:#64748b;font-size:17px;max-width:560px;margin:0 auto;}
.section-header.light h2{color:#fff;}
.section-header.light p{color:rgba(255,255,255,.7);}
.section-tag{display:inline-block;background:rgba(212,160,23,.12);color:#B8860B;padding:6px 16px;border-radius:50px;font-size:13px;font-weight:600;margin-bottom:14px;letter-spacing:.5px;}
.section-tag.light{background:rgba(212,160,23,.2);color:#E0B84B;}

/* ===== HERO ===== */
.hero{min-height:100vh;background:linear-gradient(135deg,#0A2E5D 0%,#124C8C 60%,#0A2E5D 100%);display:flex;align-items:center;position:relative;overflow:hidden;padding:100px 5% 60px;}
.hero-bg{position:absolute;inset:0;pointer-events:none;}
.hero-shape{position:absolute;border-radius:50%;filter:blur(80px);opacity:.25;}
.hero-shape.s1{width:600px;height:600px;background:#1E6BB8;top:-200px;right:-100px;animation:float 8s ease-in-out infinite;}
.hero-shape.s2{width:400px;height:400px;background:#D4A017;bottom:-100px;left:-100px;animation:float 10s ease-in-out infinite reverse;}
.hero-shape.s3{width:300px;height:300px;background:#E0B84B;top:50%;left:40%;animation:float 6s ease-in-out infinite;}
@keyframes float{0%,100%{transform:translateY(0);}50%{transform:translateY(-30px);}}
.hero-content{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center;width:100%;max-width:1300px;margin:0 auto;position:relative;z-index:1;}
.hero-text{color:#fff;}
.badge{display:inline-flex;align-items:center;gap:8px;background:rgba(212,160,23,.2);border:1px solid rgba(212,160,23,.5);color:#E0B84B;padding:8px 18px;border-radius:50px;font-size:13px;font-weight:600;margin-bottom:24px;}
.badge i{color:#D4A017;}
.hero-text h1{font-size:54px;font-weight:900;line-height:1.15;margin-bottom:20px;color:#fff;}
.hero-text p{color:rgba(255,255,255,.75);font-size:17px;line-height:1.7;margin-bottom:32px;max-width:500px;}
.hero-btns{display:flex;gap:16px;flex-wrap:wrap;margin-bottom:48px;}
.hero-stats{display:flex;align-items:center;gap:24px;}
.stat h3{font-size:28px;font-weight:800;color:#fff;}
.stat p{font-size:13px;color:rgba(255,255,255,.6);}
.stat-divider{width:1px;height:40px;background:rgba(255,255,255,.2);}
.hero-image{position:relative;height:500px;}
.img-card{border-radius:20px;overflow:hidden;box-shadow:0 30px 80px rgba(0,0,0,.4);}
.main-img{width:100%;height:380px;}
.main-img img{width:100%;height:100%;object-fit:cover;}
.img-float{position:absolute;border-radius:14px;overflow:hidden;box-shadow:0 15px 40px rgba(0,0,0,.3);border:3px solid rgba(212,160,23,.3);}
.img-float.f1{width:140px;height:100px;bottom:60px;left:-30px;animation:float 7s ease-in-out infinite;}
.img-float.f2{width:140px;height:100px;top:20px;right:-20px;animation:float 9s ease-in-out infinite reverse;}
.img-float img{width:100%;height:100%;object-fit:cover;}
.badge-float{position:absolute;bottom:10px;right:10px;background:#fff;border-radius:12px;padding:12px 18px;display:flex;align-items:center;gap:10px;font-size:13px;font-weight:700;color:#0A2E5D;box-shadow:0 10px 30px rgba(0,0,0,.2);animation:float 5s ease-in-out infinite;}
.badge-float i{color:#D4A017;font-size:18px;}
.scroll-indicator{position:absolute;bottom:30px;left:50%;transform:translateX(-50%);display:flex;flex-direction:column;align-items:center;gap:8px;}
.scroll-dot{width:6px;height:30px;background:rgba(255,255,255,.2);border-radius:3px;position:relative;overflow:hidden;}
.scroll-dot::after{content:"";position:absolute;top:0;left:0;right:0;height:50%;background:#D4A017;border-radius:3px;animation:scrollAnim 1.5s ease-in-out infinite;}
@keyframes scrollAnim{0%{top:0;}100%{top:100%;}}

/* ===== MARQUEE ===== */
.marquee-wrap{background:linear-gradient(135deg,#0A2E5D,#124C8C,#1E6BB8);padding:16px 0;overflow:hidden;}
.marquee-track{display:flex;gap:40px;animation:marquee 25s linear infinite;white-space:nowrap;}
.marquee-track span{color:#fff;font-size:14px;font-weight:600;display:flex;align-items:center;gap:8px;opacity:.9;}
.marquee-track span i{font-size:16px;}
@keyframes marquee{from{transform:translateX(0);}to{transform:translateX(-50%);}}

/* ===== PRODUCTS ===== */
.products{padding:100px 5%;}
.products-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:28px;max-width:1300px;margin:0 auto;}
.product-card{background:#fff;border-radius:20px;overflow:hidden;box-shadow:0 4px 24px rgba(0,0,0,.07);transition:all .3s;border:1px solid #f1f5f9;}
.product-card:hover{transform:translateY(-8px);box-shadow:0 20px 50px rgba(10,46,93,.15);}
.product-img{position:relative;overflow:hidden;height:220px;}
.product-img img{width:100%;height:100%;object-fit:cover;transition:transform .4s;}
.product-card:hover .product-img img{transform:scale(1.06);}
.product-overlay{position:absolute;inset:0;background:rgba(10,46,93,.85);color:#fff;display:flex;align-items:center;justify-content:center;gap:8px;font-size:15px;font-weight:600;opacity:0;transition:.3s;}
.product-card:hover .product-overlay{opacity:1;}
.product-body{padding:22px;}
.product-tag{display:inline-block;background:rgba(212,160,23,.12);color:#B8860B;padding:4px 12px;border-radius:50px;font-size:12px;font-weight:600;margin-bottom:10px;}
.product-body h3{font-size:18px;font-weight:700;margin-bottom:8px;color:#1e293b;}
.product-body p{color:#64748b;font-size:14px;line-height:1.6;margin-bottom:18px;}
.product-footer{display:flex;align-items:center;justify-content:space-between;}
.price{font-size:18px;font-weight:800;color:#B8860B;}
.price small{font-size:13px;font-weight:400;color:#94a3b8;}
.btn-book{background:linear-gradient(135deg,#D4A017,#E0B84B);color:#0A2E5D;border:none;padding:9px 20px;border-radius:50px;font-size:13px;font-weight:700;cursor:pointer;transition:.3s;}
.btn-book:hover{transform:scale(1.05);box-shadow:0 6px 20px rgba(212,160,23,.5);}

/* ===== WHY US ===== */
.why-us{padding:100px 5%;background:linear-gradient(135deg,#0A2E5D,#124C8C);position:relative;overflow:hidden;}
.why-bg{position:absolute;inset:0;background:url("https://images.unsplash.com/photo-1518770660439-4636190af475?q=80&w=1600&auto=format&fit=crop") center/cover;opacity:.04;}
.why-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;max-width:1300px;margin:0 auto;}
.why-card{background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.08);border-radius:20px;padding:36px 28px;transition:.3s;}
.why-card:hover{background:rgba(255,255,255,.12);border-color:rgba(255,255,255,.3);transform:translateY(-4px);}
.why-icon{width:56px;height:56px;background:linear-gradient(135deg,#D4A017,#E0B84B);border-radius:14px;display:flex;align-items:center;justify-content:center;margin-bottom:20px;}
.why-icon i{color:#0A2E5D;font-size:22px;}
.why-card h3{color:#fff;font-size:18px;font-weight:700;margin-bottom:10px;}
.why-card p{color:rgba(255,255,255,.6);font-size:14px;line-height:1.7;}

/* ===== GALLERY ===== */
.gallery{padding:100px 5%;}
.gallery-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;max-width:1300px;margin:0 auto;align-items:start;}
.gallery-item{position:relative;overflow:hidden;border-radius:16px;cursor:pointer;}
.gallery-item img{width:100%;height:220px;object-fit:cover;transition:transform .4s;display:block;}
.gallery-item.tall img{height:460px;}
.gallery-item.wide{grid-column:span 2;}
.gallery-item.wide img{height:220px;}
.gallery-item:hover img{transform:scale(1.06);}
.gallery-overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(10,46,93,.85),transparent);display:flex;align-items:flex-end;padding:20px;opacity:0;transition:.3s;}
.gallery-item:hover .gallery-overlay{opacity:1;}
.gallery-overlay span{color:#fff;font-size:16px;font-weight:700;}

/* ===== CTA BANNER ===== */
.cta-banner{margin:0 5% 80px;background:linear-gradient(135deg,#0A2E5D,#124C8C,#D4A017);border-radius:24px;padding:60px 60px;display:flex;align-items:center;justify-content:center;text-align:center;}
.cta-content h2{color:#fff;font-size:36px;font-weight:800;margin-bottom:12px;}
.cta-content p{color:rgba(255,255,255,.85);font-size:17px;margin-bottom:28px;}

/* ===== CONTACT ===== */
.contact{padding:100px 5%;}
.contact-wrapper{display:grid;grid-template-columns:1fr 1.4fr;gap:50px;max-width:1300px;margin:0 auto;align-items:start;}
.contact-info{display:flex;flex-direction:column;gap:20px;}
.info-card{display:flex;align-items:flex-start;gap:16px;background:#f8fafc;border-radius:14px;padding:20px;}
.info-icon{width:44px;height:44px;background:linear-gradient(135deg,#D4A017,#E0B84B);border-radius:10px;display:flex;align-items:center;justify-content:center;flex-shrink:0;}
.info-icon i{color:#0A2E5D;font-size:16px;}
.info-card h4{font-size:13px;font-weight:600;color:#94a3b8;text-transform:uppercase;letter-spacing:.5px;margin-bottom:4px;}
.info-card p{color:#1e293b;font-size:15px;line-height:1.6;}
.map-embed{border-radius:14px;overflow:hidden;border:1px solid #e2e8f0;}
.contact-form{background:#fff;border-radius:20px;padding:40px;box-shadow:0 4px 30px rgba(0,0,0,.08);border:1px solid #f1f5f9;}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:20px;}
.form-group{display:flex;flex-direction:column;gap:8px;margin-bottom:20px;}
.form-group label{font-size:13px;font-weight:600;color:#475569;}
.form-group input,.form-group textarea,.form-group select{padding:13px 16px;border:1.5px solid #e2e8f0;border-radius:10px;font-size:15px;font-family:inherit;transition:.2s;outline:none;color:#1e293b;background:#fff;}
.form-group input:focus,.form-group textarea:focus,.form-group select:focus{border-color:#D4A017;box-shadow:0 0 0 3px rgba(212,160,23,.15);}
.form-group textarea{height:130px;resize:none;}
.btn-submit{width:100%;background:linear-gradient(135deg,#D4A017,#E0B84B);color:#0A2E5D;border:none;padding:15px;border-radius:12px;font-size:16px;font-weight:700;cursor:pointer;transition:.3s;display:flex;align-items:center;justify-content:center;gap:10px;}
.btn-submit:hover{transform:translateY(-2px);box-shadow:0 10px 30px rgba(212,160,23,.5);}

/* ===== FOOTER ===== */
.footer{background:#0A2E5D;color:#fff;}
.footer-top{display:grid;grid-template-columns:2fr 1fr 1fr 2fr;gap:50px;padding:70px 5% 50px;border-bottom:1px solid rgba(255,255,255,.08);}
.footer-brand .logo-img{
  mix-blend-mode:screen;
  height:80px;
}
.footer-brand p{color:rgba(255,255,255,.55);font-size:14px;line-height:1.7;margin:16px 0 24px;}
.social-links{display:flex;gap:12px;}
.social-links a{width:38px;height:38px;background:rgba(255,255,255,.07);border-radius:10px;display:flex;align-items:center;justify-content:center;color:rgba(255,255,255,.7);transition:.2s;}
.social-links a:hover{background:#D4A017;color:#0A2E5D;}
.footer-links h4,.footer-contact h4{font-size:15px;font-weight:700;margin-bottom:20px;color:#fff;}
.footer-links ul{display:flex;flex-direction:column;gap:10px;}
.footer-links ul li a{color:rgba(255,255,255,.55);font-size:14px;transition:.2s;}
.footer-links ul li a:hover{color:#E0B84B;}
.footer-contact p{color:rgba(255,255,255,.55);font-size:14px;line-height:1.7;display:flex;align-items:flex-start;gap:10px;margin-bottom:12px;}
.footer-contact p i{color:#D4A017;margin-top:3px;flex-shrink:0;}
.footer-bottom{text-align:center;padding:20px 5%;color:rgba(255,255,255,.4);font-size:13px;}
.footer-bottom i{color:#ef4444;}

/* ===== AOS ANIMATIONS ===== */
[data-aos]{opacity:0;transition:opacity .6s ease,transform .6s ease;}
[data-aos="fade-up"]{transform:translateY(40px);}
[data-aos="fade-right"]{transform:translateX(-40px);}
[data-aos="fade-left"]{transform:translateX(40px);}
[data-aos="zoom-in"]{transform:scale(.9);}
[data-aos].aos-animate{opacity:1;transform:none;}

/* ===== RESPONSIVE ===== */
@media(max-width:1024px){
  .hero-content{grid-template-columns:1fr;text-align:center;}
  .hero-image{display:none;}
  .hero-text p{max-width:100%;}
  .hero-btns{justify-content:center;}
  .hero-stats{justify-content:center;}
  .products-grid{grid-template-columns:repeat(2,1fr);}
  .why-grid{grid-template-columns:repeat(2,1fr);}
  .footer-top{grid-template-columns:1fr 1fr;}
}
@media(max-width:768px){
  .nav-links,.btn-nav{display:none;}
  .hamburger{display:flex;}
  .nav-links.open{display:flex;flex-direction:column;position:fixed;top:72px;left:0;right:0;background:#fff;padding:20px;gap:4px;}
  .hero-text h1{font-size:36px;}
  .section-header h2{font-size:30px;}
  .products-grid{grid-template-columns:1fr;}
  .why-grid{grid-template-columns:1fr;}
  .gallery-grid{grid-template-columns:1fr 1fr;}
  .gallery-item.tall{grid-row:span 1;}
  .gallery-item.tall img{height:220px;}
  .contact-wrapper{grid-template-columns:1fr;}
  .form-row{grid-template-columns:1fr;}
  .footer-top{grid-template-columns:1fr;}
  .cta-banner{padding:40px 24px;}
  .cta-content h2{font-size:26px;}
}




/* ===== PRODUCT DETAILS ===== */
.product-details{background:#f8fafc;}

.pd-banner{
  background:linear-gradient(135deg,#0A2E5D,#124C8C);
  padding:22px 5%;
  display:flex;
  align-items:center;
}
.pd-banner h2{
  color:#fff;
  font-size:26px;
  font-weight:800;
  display:flex;
  align-items:center;
  gap:14px;
}
.pd-banner h2 i{
  color:#D4A017;
  font-size:24px;
}

.pd-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:0;
  max-width:100%;
  background:#fff;
  border-bottom:1px solid #e2e8f0;
}
.pd-reverse{
  direction:rtl;
}
.pd-reverse > *{
  direction:ltr;
}

.pd-img{
  overflow:hidden;
  background:#f1f5f9;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:40px;
}
.pd-img img{
  width:100%;
  max-width:420px;
  height:300px;
  object-fit:contain;
  transition:transform .4s;
  filter:drop-shadow(0 10px 30px rgba(10,46,93,.15));
}
.pd-row:hover .pd-img img{
  transform:scale(1.04);
}

.pd-content{
  padding:50px 50px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:16px;
}
.pd-content h3{
  font-size:24px;
  font-weight:800;
  color:#0A2E5D;
  line-height:1.3;
}
.pd-content h4{
  font-size:18px;
  font-weight:700;
  color:#1A1A1A;
  margin-top:8px;
}
.pd-content p{
  color:#475569;
  font-size:15px;
  line-height:1.8;
}
.pd-content p strong{
  color:#0A2E5D;
  font-weight:700;
}

.pd-features{
  list-style:none;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin:8px 0;
}
.pd-features li{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:14px;
  color:#334155;
  font-weight:500;
}
.pd-features li i{
  color:#D4A017;
  font-size:13px;
  flex-shrink:0;
}

@media(max-width:768px){
  .pd-row{grid-template-columns:1fr;}
  .pd-reverse{direction:ltr;}
  .pd-content{padding:30px 20px;}
  .pd-banner h2{font-size:18px;}
  .pd-features{grid-template-columns:1fr;}
}

/* ===== ABOUT INTRO SECTION ===== */
.about-intro{padding:100px 5%;background:#fff;}
.about-intro-container{display:grid;grid-template-columns:1fr 1fr;gap:70px;align-items:center;max-width:1300px;margin:0 auto;}
.about-intro-img{position:relative;}
.about-intro-img img{width:100%;border-radius:20px;box-shadow:0 20px 60px rgba(10,46,93,.15);}
.about-intro-badge{position:absolute;bottom:-20px;right:-20px;background:#fff;border-radius:14px;padding:16px 20px;display:flex;align-items:center;gap:12px;box-shadow:0 10px 30px rgba(0,0,0,.12);border-left:4px solid #D4A017;}
.about-intro-badge i{font-size:28px;color:#D4A017;}
.about-intro-badge strong{display:block;font-size:18px;font-weight:800;color:#0A2E5D;}
.about-intro-badge span{font-size:12px;color:#64748b;}
.about-intro-content{display:flex;flex-direction:column;gap:16px;}
.about-intro-content h2{font-size:36px;font-weight:800;color:#1A1A1A;line-height:1.3;}
.about-intro-content p{color:#475569;font-size:15px;line-height:1.8;}
.about-intro-content p strong{color:#0A2E5D;}
.about-intro-stats{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;margin:8px 0;}
.ais{background:#f8fafc;border-radius:12px;padding:16px;text-align:center;border-bottom:3px solid #D4A017;}
.ais h3{font-size:24px;font-weight:800;color:#0A2E5D;}
.ais p{font-size:12px;color:#64748b;font-weight:500;}

/* ===== WHY INTRO SECTION ===== */
.why-intro{padding:100px 5%;background:#f8fafc;}
.why-intro-container{display:grid;grid-template-columns:1fr 1fr;gap:70px;align-items:center;max-width:1300px;margin:0 auto;}
.why-intro-content{display:flex;flex-direction:column;gap:16px;}
.why-intro-content h2{font-size:36px;font-weight:800;color:#1A1A1A;line-height:1.3;}
.why-intro-content p{color:#475569;font-size:15px;line-height:1.8;}
.why-intro-list{list-style:none;display:flex;flex-direction:column;gap:12px;margin-top:8px;}
.why-intro-list li{display:flex;align-items:center;gap:10px;font-size:15px;color:#334155;font-weight:500;}
.why-intro-list li i{color:#D4A017;font-size:16px;flex-shrink:0;}
.why-intro-img img{width:100%;border-radius:20px;box-shadow:0 20px 60px rgba(10,46,93,.12);}

@media(max-width:1024px){
  .about-intro-container,.why-intro-container{grid-template-columns:1fr;}
  .about-intro-stats{grid-template-columns:repeat(2,1fr);}
  .about-intro-badge{right:10px;bottom:-10px;}
}

/* ===== TOAST NOTIFICATIONS ===== */
.toast-container{
  position:fixed;
  bottom:28px;
  right:28px;
  z-index:99999;
  display:flex;
  flex-direction:column;
  gap:12px;
  pointer-events:none;
}
.toast{
  display:flex;
  align-items:flex-start;
  gap:14px;
  background:#fff;
  border-radius:16px;
  padding:18px 20px;
  min-width:300px;
  max-width:360px;
  box-shadow:0 12px 40px rgba(10,46,93,.18);
  border-left:4px solid #D4A017;
  pointer-events:all;
  animation:toastIn .35s cubic-bezier(.34,1.56,.64,1) forwards;
  position:relative;
  overflow:hidden;
}
.toast.toast-hide{
  animation:toastOut .3s ease forwards;
}
@keyframes toastIn{
  from{opacity:0;transform:translateX(60px);}
  to{opacity:1;transform:translateX(0);}
}
@keyframes toastOut{
  from{opacity:1;transform:translateX(0);}
  to{opacity:0;transform:translateX(60px);}
}
.toast-icon{
  width:40px;
  height:40px;
  background:linear-gradient(135deg,#D4A017,#E0B84B);
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}
.toast-icon i{color:#0A2E5D;font-size:17px;}
.toast-body{flex:1;}
.toast-title{font-size:14px;font-weight:700;color:#0A2E5D;margin-bottom:4px;}
.toast-msg{font-size:13px;color:#475569;line-height:1.5;}
.toast-close{
  background:none;
  border:none;
  cursor:pointer;
  color:#94a3b8;
  font-size:14px;
  padding:0;
  line-height:1;
  flex-shrink:0;
  transition:.2s;
}
.toast-close:hover{color:#0A2E5D;}
.toast-progress{
  position:absolute;
  bottom:0;
  left:0;
  height:3px;
  background:linear-gradient(90deg,#D4A017,#E0B84B);
  border-radius:0 0 0 16px;
  animation:toastProgress 4s linear forwards;
}
@keyframes toastProgress{
  from{width:100%;}
  to{width:0%;}
}
@media(max-width:480px){
  .toast-container{bottom:16px;right:16px;left:16px;}
  .toast{min-width:unset;max-width:100%;}
}
