/*
Theme Name: Ar-Rahman
Theme URI: https://example.com/ar-rahman
Author: Built for Hajj & Umrah agencies
Description: Hajj & Umrah agency theme built for Wamy Hajj Kafela. Ships the 2027 package data, team roster, contact details and hero banners, with a one-click setup that installs its Elementor dependencies.
Version: 1.2.0
Requires at least: 6.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ar-rahman
Tags: elementor, travel, one-column, custom-menu, featured-images, full-width-template
*/

:root{
  /* Team section tokens, sampled from the reference design */
  --arh-team-gold:#BC8C1D;
  --arh-team-heading:#0C1B21;
  --arh-team-lead:#555555;
  --arh-primary:#BAA35D;
  --arh-secondary:#282828;
  --arh-text:#8C8C8C;
  --arh-light:#F8F8F8;
}
*,*::before,*::after{box-sizing:border-box}
html{width:100%;max-width:100%;overflow-x:hidden;-webkit-text-size-adjust:100%}
body{width:100%;max-width:100%;margin:0;padding:0;overflow-x:hidden;font-family:"Hind Siliguri","Barlow",-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;font-size:16px;line-height:1.7;color:var(--arh-text);background:#fff}
h1,h2,h3,h4,h5,h6{font-family:"Philosopher","Hind Siliguri",sans-serif;font-weight:700;color:var(--arh-secondary);margin:0 0 .5em;line-height:1.3}
a{color:var(--arh-primary);text-decoration:none}
a:hover{text-decoration:underline}
img{max-width:100%;height:auto;display:block}
iframe,video,svg{max-width:100%}
.arh-container{width:100%;max-width:1140px;margin:0 auto;padding:0 20px;box-sizing:border-box}
@media(max-width:768px){.arh-container{padding:0 16px}}
@media(max-width:480px){.arh-container{padding:0 12px}}
.arh-fallback-header{padding:24px 0;border-bottom:1px solid #eee}
.arh-fallback-header .arh-brand{font-family:"Prata",serif;font-size:24px;color:var(--arh-secondary)}
.arh-fallback-header ul{list-style:none;display:flex;gap:24px;margin:0;padding:0}
.arh-fallback-footer{background:var(--arh-secondary);color:#bdbdbd;padding:40px 0;margin-top:60px;text-align:center;font-size:14px}
.arh-content{padding:60px 0}
@media(max-width:768px){.arh-content{padding:36px 0}}
.screen-reader-text{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0,0,0,0)}

/* Language Switcher Styling */
.arh-lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--arh-primary);
  font-family: "Barlow", "Hind Siliguri", sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 4px;
  border: 1px solid rgba(186, 163, 93, 0.6);
  background: transparent;
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
  margin-right: 8px;
}
.arh-lang-switcher:hover {
  color: var(--arh-secondary);
  background: var(--arh-primary);
  border-color: var(--arh-primary);
  text-decoration: none;
}
.arh-lang-switcher svg {
  transition: transform 0.3s ease;
}
.arh-lang-switcher:hover svg {
  transform: rotate(15deg);
}

/* Redesigned Package Cards Styling */
.wamy-grid--packages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 36px;
}
@media(max-width:640px){
  .wamy-grid--packages {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 24px;
  }
}
.wamy-card--redesigned {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #eaeaea;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
}
.wamy-card--redesigned:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(186, 163, 93, 0.15);
  border-color: rgba(186, 163, 93, 0.4);
}
.wamy-card__banner {
  height: 220px;
  overflow: hidden;
  position: relative;
  background: #f0f0f0;
}
.wamy-card__banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.wamy-card--redesigned:hover .wamy-card__banner-img {
  transform: scale(1.05);
}
.wamy-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.wamy-card__title {
  font-family: "Philosopher", "Hind Siliguri", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--arh-secondary);
  margin-bottom: 8px;
  line-height: 1.3;
}
.wamy-card__divider {
  border: 0;
  border-top: 1px dashed rgba(186, 163, 93, 0.4);
  margin: 12px 0 20px 0;
}
.wamy-card__details-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.wamy-card__details-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--arh-secondary);
  font-family: "Hind Siliguri", "Inter", sans-serif;
}
.wamy-card__icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--arh-primary);
  color: #ffffff;
  flex-shrink: 0;
  margin-top: 2px;
}
.wamy-card__icon-svg {
  display: block;
}
.wamy-card__label {
  font-weight: 700;
  color: #1e293b;
  font-family: "Hind Siliguri", "Inter", sans-serif;
  min-width: 82px;
  flex-shrink: 0;
  white-space: nowrap;
}
.wamy-card__value {
  color: #334155;
  font-weight: 600;
  font-family: "Hind Siliguri", "Inter", sans-serif;
  flex-grow: 1;
  word-break: break-word;
  letter-spacing: 0.1px;
}
.wamy-card__price-box {
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid #f0f0f0;
  display: flex;
  align-items: baseline;
  gap: 6px;
  color: var(--arh-primary);
  font-family: "Barlow", "Hind Siliguri", sans-serif;
  margin-bottom: 16px;
}
.wamy-card__currency {
  font-size: 14px;
  font-weight: 700;
  color: var(--arh-text);
  text-transform: uppercase;
}
.wamy-card__price-val {
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
  color: var(--arh-primary);
}
.wamy-card__starts {
  font-size: 12px;
  color: var(--arh-text);
  font-weight: 600;
  text-transform: uppercase;
}
.wamy-card__action {
  margin-bottom: 8px;
}
.wamy-card__btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px 20px;
  background: var(--arh-primary);
  color: #ffffff;
  border-radius: 6px;
  font-weight: 700;
  font-size: 15px;
  font-family: "Barlow", "Hind Siliguri", sans-serif;
  text-transform: uppercase;
  border: none;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(186, 163, 93, 0.15);
}
.wamy-card__btn:hover {
  background: var(--arh-secondary);
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(40, 40, 40, 0.3);
}
.wamy-card__footer {
  font-size: 11px;
  color: var(--arh-text);
  text-align: center;
  font-style: italic;
  margin-top: 4px;
}


