/* ===================================================================
   Gyu Sakura Addon — shared widget styles
   All classes are prefixed with .gs- to avoid theme conflicts.
=================================================================== */
:root{
  --gs-maroon:#7D1935;
  --gs-maroon-dark:#550303;
  --gs-gold:#D4AF37;
  --gs-dark:#1A1A1A;
  --gs-cream:#FAFAF8;
  --gs-gray:#555;
}
.gs-section{font-family:'Poppins',system-ui,-apple-system,sans-serif;line-height:1.6;color:var(--gs-dark);}
.gs-section *{box-sizing:border-box;}
.gs-section img{max-width:100%;display:block;}
.gs-container{max-width:1200px;margin:0 auto;padding:0 24px;}
.gs-eyebrow{color:var(--gs-gold);letter-spacing:3px;font-size:13px;text-transform:uppercase;font-weight:600;margin-bottom:16px;}
.gs-title{font-family:'Playfair Display',Georgia,serif;font-size:clamp(26px,4vw,42px);font-weight:700;line-height:1.2;margin-bottom:16px;}
.gs-btn{display:inline-block;padding:14px 32px;border-radius:6px;font-weight:600;font-size:15px;transition:all .3s;cursor:pointer;border:none;text-decoration:none;}
.gs-btn-gold{background:var(--gs-gold);color:var(--gs-dark);}
.gs-btn-gold:hover{background:#c39d2c;transform:translateY(-2px);color:var(--gs-dark);}
.gs-btn-outline{border:2px solid #fff;color:#fff;background:transparent;}
.gs-btn-outline:hover{background:#fff;color:var(--gs-dark);}
.gs-btn-outline-maroon{border:2px solid var(--gs-maroon);color:var(--gs-maroon);background:transparent;}
.gs-btn-outline-maroon:hover{background:var(--gs-maroon);color:#fff;}

/* ---- HERO ---- */
.gs-hero{position:relative;height:100vh;min-height:600px;overflow:hidden;}
.gs-hero-slide{position:absolute;inset:0;opacity:0;transition:opacity 1s ease;background-size:cover;background-position:center;}
.gs-hero-slide.gs-active{opacity:1;}
.gs-hero-slide::after{content:"";position:absolute;inset:0;background:rgba(0,0,0,.55);}
.gs-hero-content{position:relative;z-index:2;height:100%;max-width:1200px;margin:0 auto;padding:0 8%;display:flex;flex-direction:column;justify-content:center;align-items:flex-start;}
.gs-hero-subtitle{color:var(--gs-gold);font-size:14px;letter-spacing:3px;text-transform:uppercase;margin-bottom:16px;font-weight:600;}
.gs-hero-heading{font-family:'Playfair Display',Georgia,serif;color:#fff;font-size:clamp(32px,5vw,64px);font-weight:700;line-height:1.15;max-width:750px;margin-bottom:20px;}
.gs-hero-desc{color:rgba(255,255,255,.88);font-size:clamp(15px,2vw,18px);max-width:560px;margin-bottom:32px;}
.gs-hero-buttons{display:flex;gap:16px;flex-wrap:wrap;}
.gs-hero-arrow{position:absolute;top:50%;transform:translateY(-50%);z-index:5;-webkit-appearance:none;appearance:none;background:rgba(0,0,0,.35)!important;border:1px solid rgba(255,255,255,.5)!important;color:#fff!important;width:42px!important;height:42px!important;min-width:0!important;padding:0!important;border-radius:50%!important;font-size:16px;line-height:1;cursor:pointer;transition:.3s;display:flex;align-items:center;justify-content:center;box-shadow:none!important;}
.gs-hero-arrow:hover{background:var(--gs-gold)!important;color:var(--gs-dark)!important;border-color:var(--gs-gold)!important;}
.gs-hero-arrow.gs-prev{left:20px;}
.gs-hero-arrow.gs-next{right:20px;}
.gs-hero-dots{position:absolute;bottom:28px;left:50%;transform:translateX(-50%);z-index:5;display:flex;gap:10px;align-items:center;}
.gs-hero-dots button{-webkit-appearance:none;appearance:none;width:10px!important;height:10px!important;min-width:0!important;min-height:0!important;border-radius:50%!important;border:2px solid #fff!important;background:transparent!important;cursor:pointer;transition:.3s;padding:0!important;box-shadow:none!important;}
.gs-hero-dots button.gs-active{background:var(--gs-gold)!important;border-color:var(--gs-gold)!important;width:26px!important;border-radius:6px!important;}
.gs-hero.gs-no-overlay .gs-hero-slide::after{display:none;}

/* ---- TRUST BAR ---- */
.gs-trust-bar{background:var(--gs-maroon);padding:26px 0;}
.gs-trust-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;}
.gs-trust-item{display:flex;align-items:center;justify-content:center;gap:14px;color:#fff;border-right:1px solid rgba(255,255,255,.15);}
.gs-trust-item:last-child{border-right:none;}
.gs-trust-item img{width:44px;height:44px;object-fit:contain;}
.gs-trust-item span{font-weight:600;font-size:15px;}

/* ---- FEATURES ---- */
.gs-features{padding:90px 0;background:var(--gs-maroon);}
.gs-features-head{text-align:center;margin-bottom:56px;color:#fff;}
.gs-features-head .gs-title{color:#fff;}
.gs-features-grid{display:grid;grid-template-columns:repeat(3,1fr);}
.gs-feature-box{padding:32px 28px;text-align:center;color:#fff;border-right:1px solid rgba(255,255,255,.12);border-bottom:1px solid rgba(255,255,255,.12);}
.gs-feature-box:nth-child(3n){border-right:none;}
.gs-feature-box img{width:64px;height:64px;object-fit:contain;margin:0 auto 20px;}
.gs-feature-box h3{font-family:'Playfair Display',Georgia,serif;font-size:20px;margin-bottom:12px;color:#fff;}
.gs-feature-box p{font-size:14.5px;line-height:1.7;color:rgba(255,255,255,.82);}

/* ---- ABOUT ---- */
.gs-about{padding:90px 0;background:#fff;}
.gs-about-grid{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center;}
.gs-about-text h2{font-family:'Playfair Display',Georgia,serif;font-size:clamp(24px,3.5vw,38px);margin-bottom:8px;color:var(--gs-dark);}
.gs-about-jp{font-family:'Playfair Display',Georgia,serif;color:var(--gs-maroon);font-size:18px;margin-bottom:24px;letter-spacing:2px;}
.gs-about-text p{margin-bottom:16px;color:var(--gs-gray);font-size:15.5px;}
.gs-about-img img{border-radius:12px;box-shadow:0 20px 50px rgba(0,0,0,.15);width:100%;}
.gs-about-stats{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;margin-top:32px;padding-top:32px;border-top:1px solid #E0E0E0;}
.gs-stat-item{text-align:center;}
.gs-stat-number{display:block;font-size:32px;font-weight:700;color:var(--gs-maroon);font-family:'Playfair Display',Georgia,serif;}
.gs-stat-label{font-size:12px;color:#888;text-transform:uppercase;letter-spacing:1px;}

/* ---- MENU ---- */
.gs-menu-sec{padding:90px 0;background:var(--gs-dark);background-size:cover;background-position:center;position:relative;}
.gs-menu-sec::before{content:"";position:absolute;inset:0;background:rgba(20,20,20,.85);}
.gs-menu-sec .gs-container{position:relative;z-index:2;}
.gs-menu-head{text-align:center;color:#fff;margin-bottom:48px;}
.gs-menu-head .gs-title{color:#fff;}
.gs-menu-head p{color:rgba(255,255,255,.75);max-width:640px;margin:0 auto;font-size:15.5px;}
.gs-menu-scroll{display:flex;gap:18px;overflow-x:auto;padding-bottom:20px;scroll-snap-type:x mandatory;}
.gs-menu-scroll::-webkit-scrollbar{height:8px;}
.gs-menu-scroll::-webkit-scrollbar-thumb{background:var(--gs-gold);border-radius:4px;}
.gs-menu-scroll img{flex:0 0 300px;height:300px;object-fit:cover;border-radius:10px;scroll-snap-align:start;box-shadow:0 10px 30px rgba(0,0,0,.4);}
.gs-menu-cta{text-align:center;margin-top:40px;}

/* ---- GALLERY ---- */
.gs-gallery{padding:90px 0;background:var(--gs-cream);}
.gs-gallery-head{text-align:center;margin-bottom:48px;}
.gs-gallery-head .gs-eyebrow{color:var(--gs-maroon);}
.gs-gallery-track{display:flex;gap:14px;overflow-x:auto;padding-bottom:16px;scroll-snap-type:x mandatory;}
.gs-gallery-track::-webkit-scrollbar{height:8px;}
.gs-gallery-track::-webkit-scrollbar-thumb{background:var(--gs-maroon);border-radius:4px;}
.gs-gallery-track img{flex:0 0 340px;height:240px;object-fit:cover;border-radius:8px;scroll-snap-align:start;cursor:pointer;transition:transform .3s;}
.gs-gallery-track img:hover{transform:scale(1.03);}

/* ---- PRAYER ROOM ---- */
.gs-prayer{background:var(--gs-dark);padding:90px 0;color:#fff;}
.gs-prayer-grid{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center;}
.gs-prayer-icon{font-size:130px;text-align:center;opacity:.35;}
.gs-prayer-img{border-radius:14px;overflow:hidden;box-shadow:0 20px 50px rgba(0,0,0,.35);}
.gs-prayer-img img{width:100%;height:100%;object-fit:cover;display:block;border-radius:14px;}
.gs-prayer h2{font-family:'Playfair Display',Georgia,serif;font-size:clamp(24px,4vw,40px);margin-bottom:20px;color:#fff;}
.gs-prayer p{color:rgba(255,255,255,.75);line-height:1.8;margin-bottom:24px;font-size:16px;}
.gs-prayer ul{list-style:none;margin-bottom:32px;padding:0;}
.gs-prayer li{padding:10px 0;color:rgba(255,255,255,.88);border-bottom:1px solid rgba(255,255,255,.1);}
.gs-prayer li:last-child{border-bottom:none;}
.gs-prayer li::before{content:"\2713";color:var(--gs-gold);font-weight:700;margin-right:12px;}

/* ---- FAQ ---- */
.gs-faq{background:var(--gs-cream);padding:90px 0;}
.gs-faq .gs-container{max-width:900px;}
.gs-faq-head{text-align:center;margin-bottom:48px;}
.gs-faq-head .gs-eyebrow{color:var(--gs-maroon);}
.gs-faq-list{display:flex;flex-direction:column;gap:14px;}
.gs-faq-item{background:#fff;border:1px solid #ececec;border-radius:14px;padding:4px 26px;box-shadow:0 2px 12px rgba(0,0,0,.04);transition:border-color .3s,box-shadow .3s;}
.gs-faq-item.gs-open{border-color:var(--gs-gold);box-shadow:0 10px 30px rgba(125,25,53,.10);}
.gs-faq-q{width:100%;text-align:left;padding:22px 0;background:none;border:none;cursor:pointer;font-size:16px;font-weight:600;color:var(--gs-dark);display:flex;justify-content:space-between;align-items:center;gap:18px;font-family:inherit;transition:color .3s;}
.gs-faq-item.gs-open .gs-faq-q{color:var(--gs-maroon);}
.gs-faq-ic{flex-shrink:0;width:32px;height:32px;border-radius:50%;background:var(--gs-maroon);color:#fff;display:flex;align-items:center;justify-content:center;font-size:20px;line-height:1;transition:transform .3s,background .3s;}
.gs-faq-item.gs-open .gs-faq-ic{background:var(--gs-gold);color:var(--gs-dark);transform:rotate(45deg);}
.gs-faq-a{max-height:0;overflow:hidden;transition:max-height .35s ease;color:var(--gs-gray);line-height:1.75;font-size:15px;}
.gs-faq-a div{padding:0 0 22px;}

/* ---- ACCESS ---- */
.gs-access{background:var(--gs-dark);padding:90px 0;color:#fff;}
.gs-access-head{text-align:center;margin-bottom:48px;}
.gs-access-head .gs-title{color:#fff;}
.gs-access-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:28px;}
.gs-access-card{background:rgba(255,255,255,.05);padding:34px;border-radius:10px;border:1px solid rgba(212,175,55,.3);text-align:center;transition:.3s;}
.gs-access-card:hover{border-color:var(--gs-gold);transform:translateY(-4px);}
.gs-access-card .gs-ic{font-size:38px;margin-bottom:16px;}
.gs-access-card h3{font-family:'Playfair Display',Georgia,serif;color:var(--gs-gold);margin-bottom:12px;font-size:19px;}
.gs-access-card p{color:rgba(255,255,255,.75);font-size:15px;}
.gs-access-foot{text-align:center;margin-top:48px;}
.gs-access-foot a.gs-phone{color:var(--gs-gold);font-size:18px;font-weight:600;text-decoration:none;}

/* ---- CTA ---- */
.gs-cta{background:var(--gs-maroon);padding:90px 0;text-align:center;color:#fff;}
.gs-cta h2{font-family:'Playfair Display',Georgia,serif;font-size:clamp(26px,4vw,44px);margin-bottom:16px;color:#fff;max-width:800px;margin:0 auto 16px;}
.gs-cta p{color:rgba(255,255,255,.85);margin-bottom:32px;font-size:17px;}
.gs-cta-buttons{display:flex;gap:16px;justify-content:center;flex-wrap:wrap;}

/* ---- REVIEWS ---- */
.gs-reviews{padding:90px 0;background:#fff;}
.gs-reviews-head{text-align:center;margin-bottom:48px;}
.gs-reviews-head .gs-eyebrow{color:var(--gs-maroon);}
.gs-reviews-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;}
.gs-review-card{background:var(--gs-cream);border-radius:12px;padding:28px;border:1px solid #eee;}
.gs-review-stars{color:var(--gs-gold);font-size:18px;margin-bottom:12px;}
.gs-review-card p{color:var(--gs-gray);font-size:14.5px;margin-bottom:16px;font-style:italic;}
.gs-review-author{font-weight:600;color:var(--gs-dark);font-size:14px;}

/* ---- MAP ---- */
.gs-map iframe{width:100%;height:460px;border:0;display:block;}

/* ---- SOCIAL ---- */
.gs-social{background:#111;padding:44px 0;text-align:center;}
.gs-social p{color:rgba(255,255,255,.6);margin-bottom:20px;font-size:14px;letter-spacing:2px;text-transform:uppercase;}
.gs-social-links{display:flex;gap:22px;justify-content:center;}
.gs-social-links a{color:var(--gs-gold);font-size:18px;font-weight:600;padding:12px;border:1px solid rgba(212,175,55,.35);border-radius:50%;width:52px;height:52px;display:flex;align-items:center;justify-content:center;transition:.3s;text-decoration:none;}
.gs-social-links a:hover{background:var(--gs-gold);color:var(--gs-dark);}

/* ---- FLOATS ---- */
.gs-whatsapp-float{position:fixed;bottom:30px;right:30px;background:#25D366;color:#fff;width:56px;height:56px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:28px;box-shadow:0 4px 20px rgba(37,211,102,.4);z-index:9999;transition:transform .3s;text-decoration:none;}
.gs-whatsapp-float:hover{transform:scale(1.1);}
.gs-back-to-top{position:fixed;bottom:100px;right:30px;background:var(--gs-maroon);color:#fff;width:44px;height:44px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:20px;z-index:9999;opacity:0;pointer-events:none;transition:.3s;cursor:pointer;border:none;}
.gs-back-to-top.gs-visible{opacity:1;pointer-events:auto;}

/* ---- RESPONSIVE ---- */
@media(max-width:900px){
  .gs-about-grid,.gs-prayer-grid{grid-template-columns:1fr;gap:36px;}
  .gs-features-grid{grid-template-columns:repeat(2,1fr);}
  .gs-feature-box:nth-child(3n){border-right:1px solid rgba(255,255,255,.12);}
  .gs-feature-box:nth-child(2n){border-right:none;}
  .gs-access-grid,.gs-reviews-grid{grid-template-columns:1fr;}
  .gs-trust-grid{grid-template-columns:repeat(2,1fr);}
  .gs-trust-item:nth-child(2n){border-right:none;}
  .gs-prayer-icon{font-size:90px;}
}
@media(max-width:767px){
  .gs-hero-content{align-items:center;text-align:center;padding:0 6%;}
  .gs-hero-buttons{justify-content:center;}
  .gs-hero-arrow{width:42px;height:42px;font-size:18px;}
  .gs-hero-arrow.gs-prev{left:8px;}.gs-hero-arrow.gs-next{right:8px;}
  .gs-features-grid,.gs-trust-grid{grid-template-columns:1fr;}
  .gs-feature-box{border-right:none!important;}
  .gs-trust-item{border-right:none;}
  .gs-about-stats{grid-template-columns:repeat(2,1fr);}
  .gs-menu-scroll img{flex:0 0 240px;height:240px;}
  .gs-gallery-track img{flex:0 0 260px;height:190px;}
}
