/* =============================================
   SAHEDA TOURS & TRAVELS - COMPLETE STYLESHEET
   Multi-Page Version | Black & Yellow/Gold Theme
   Elegant Spiritual Design with Islamic Touches
   Version: 4.0 | Fully Responsive
   Includes: Home, About, Contact, Services, Umrah, Booking Pages
   ============================================= */

/* ----- CSS RESET & BASE ----- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #1a1a1a;
    line-height: 1.5;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ----- TYPOGRAPHY ----- */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: rgba(245, 176, 66, 0.12);
    color: #e09d1e;
    padding: 6px 18px;
    border-radius: 40px;
    margin-bottom: 1rem;
}

.gold-tag {
    background: rgba(245, 176, 66, 0.12);
    color: #f5b042;
    border-left: 3px solid #f5b042;
    border-radius: 0 40px 40px 0;
}

/* ----- BUTTONS ----- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, #f5b042 0%, #e09d1e 100%);
    color: #0a0a0a;
    box-shadow: 0 5px 15px rgba(245, 176, 66, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #e09d1e 0%, #f5b042 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(245, 176, 66, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid #f5b042;
    color: #f5b042;
}

.btn-outline:hover {
    background: #f5b042;
    color: #0a0a0a;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #111111;
    color: #f5b042;
    border: 1px solid #2a2a2a;
}

.btn-secondary:hover {
    background: #f5b042;
    color: #111111;
}

.btn-cta {
    background: #0a0a0a;
    color: #f5b042;
    padding: 16px 42px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-cta:hover {
    background: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.btn-book-now {
    background: linear-gradient(135deg, #f5b042, #e09d1e);
    color: #0a0a0a;
    padding: 10px 24px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.btn-book-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(245, 176, 66, 0.4);
}

.full-width {
    width: 100%;
}

/* ----- HEADER SECTION ----- */
.site-header {
    background: #000000;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 2px solid rgba(245, 176, 66, 0.2);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    padding-bottom: 12px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 66px;
    width: auto;
    object-fit: contain;
    
}

.logo-text h1 {
    font-size: 1.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #f5b042, #ffdd99);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.logo-text span {
    font-size: 0.7rem;
    color: #dddddd;
    letter-spacing: 1px;
}

.main-nav .nav-list {
    display: flex;
    gap: 32px;
}

.nav-list a {
    font-weight: 600;
    color: #f0f0f0;
    font-size: 0.95rem;
    position: relative;
    padding-bottom: 6px;
}

.nav-list a:hover,
.nav-list a.active {
    color: #f5b042;
}

.nav-list a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #f5b042, #e09d1e);
    border-radius: 4px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.7rem;
    color: #f5b042;
    cursor: pointer;
}

.mobile-nav {
    display: none;
    background: #0f0f0f;
    border-top: 1px solid #2a2a2a;
    padding: 20px;
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    z-index: 999;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.mobile-nav-list a {
    color: #f0f0f0;
    font-weight: 600;
    font-size: 1.1rem;
    display: block;
}

.mobile-nav-list a.active,
.mobile-nav-list a:hover {
    color: #f5b042;
}

.mobile-book-btn {
    background: linear-gradient(135deg, #f5b042, #e09d1e);
    color: #0a0a0a !important;
    text-align: center;
    padding: 10px;
    border-radius: 40px;
    margin-top: 10px;
}

/* ----- HERO SLIDER SECTION ----- */
.hero-slider-section {
    width: 100%;
    height: 85vh;
    min-height: 550px;
}

.heroSwiper {
    width: 100%;
    height: 100%;
}

.slide-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center 30%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-content {
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.slide-badge {
    display: inline-block;
    background: rgba(245, 176, 66, 0.15);
    backdrop-filter: blur(4px);
    padding: 8px 22px;
    border-radius: 50px;
    color: #f5b042;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid rgba(245, 176, 66, 0.3);
}

.slide-content h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.slide-content h2 span {
    color: #f5b042;
    position: relative;
    display: inline-block;
}

.slide-content h2 span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #f5b042, transparent);
}

.slide-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.slide-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.swiper-pagination-bullet-active {
    background: #f5b042 !important;
}

.swiper-button-next,
.swiper-button-prev {
    color: #f5b042 !important;
    background: rgba(0,0,0,0.5);
    width: 44px;
    height: 44px;
    border-radius: 50%;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(245, 176, 66, 0.3);
}

/* ----- WELCOME SECTION ----- */
.welcome-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fefaf5 0%, #ffffff 100%);
}

.welcome-grid {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.welcome-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
    color: #111;
    border-left: 4px solid #f5b042;
    padding-left: 20px;
}

.welcome-content p {
    color: #3a3a3a;
    margin-bottom: 1.8rem;
    line-height: 1.7;
}

.welcome-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.welcome-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-card {
    background: white;
    padding: 30px 20px;
    text-align: center;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-bottom: 3px solid #f5b042;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(245, 176, 66, 0.15);
}

.stat-card i {
    font-size: 2.8rem;
    color: #f5b042;
    margin-bottom: 15px;
}

.stat-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #f5b042, #e09d1e);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stat-card p {
    color: #666;
    font-size: 0.9rem;
}

/* ----- ENHANCED SERVICES SECTION ----- */
.services-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #fefaf5 100%);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 120%;
    background: radial-gradient(circle, rgba(245, 176, 66, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.services-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle, rgba(245, 176, 66, 0.02) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.section-header h2 {
    font-size: 2.4rem;
    color: #0a0a0a;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #f5b042, #e09d1e);
    border-radius: 3px;
}

.section-header p {
    color: #5a5a5a;
    font-size: 1.1rem;
    margin-top: 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 30px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(245, 176, 66, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #f5b042, #e09d1e, #f5b042);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1);
    border-color: rgba(245, 176, 66, 0.3);
}

.service-icon {
    width: 85px;
    height: 85px;
    background: linear-gradient(135deg, rgba(245, 176, 66, 0.1), rgba(245, 176, 66, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
    border: 1px solid rgba(245, 176, 66, 0.2);
}

.service-icon i {
    font-size: 2.5rem;
    color: #f5b042;
    margin: 0;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, #f5b042, #e09d1e);
    transform: scale(1.05) rotate(5deg);
    border-color: transparent;
}

.service-card:hover .service-icon i {
    color: #0a0a0a;
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
    font-weight: 700;
    color: #1a1a1a;
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-link {
    color: #f5b042;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
}

.service-link:hover {
    gap: 10px;
    color: #e09d1e;
}

/* ----- WHY CHOOSE US SECTION ----- */
.why-choose-us {
    padding: 90px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #141414 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f5b042' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -20%;
    width: 70%;
    height: 140%;
    background: radial-gradient(circle, rgba(245, 176, 66, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.why-choose-us::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -20%;
    width: 60%;
    height: 120%;
    background: radial-gradient(circle, rgba(245, 176, 66, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.why-choose-us .section-header h2 {
    color: #ffffff;
}

.why-choose-us .section-header h2::after {
    background: linear-gradient(90deg, #f5b042, #e09d1e);
}

.why-choose-us .section-header p {
    color: #aaaaaa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.feature {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    text-align: center;
    padding: 40px 25px;
    border-radius: 28px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(245, 176, 66, 0.15);
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(245, 176, 66, 0.05), transparent);
    transition: left 0.6s ease;
}

.feature:hover::before {
    left: 100%;
}

.feature:hover {
    transform: translateY(-8px);
    border-color: rgba(245, 176, 66, 0.4);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(245, 176, 66, 0.15), rgba(245, 176, 66, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
    border: 1px solid rgba(245, 176, 66, 0.2);
}

.feature:hover .feature-icon-wrapper {
    background: linear-gradient(135deg, #f5b042, #e09d1e);
    transform: scale(1.05);
}

.feature i {
    font-size: 2.5rem;
    color: #f5b042;
    transition: all 0.3s ease;
}

.feature:hover i {
    color: #0a0a0a;
    transform: scale(1.1);
}

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #f5b042;
    font-weight: 700;
}

.feature p {
    color: #bbbbbb;
    font-size: 0.95rem;
    line-height: 1.6;
}

.feature-number {
    position: absolute;
    bottom: 15px;
    right: 20px;
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(245, 176, 66, 0.08);
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.feature:hover .feature-number {
    color: rgba(245, 176, 66, 0.15);
    transform: scale(1.05);
}

/* ----- UMRAH HIGHLIGHT ----- */
.umrah-highlight {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.umrah-highlight::before {
    content: '﴿';
    font-family: 'Inter', sans-serif;
    font-size: 200px;
    position: absolute;
    bottom: -50px;
    right: -50px;
    opacity: 0.03;
    color: #f5b042;
}

.umrah-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.umrah-text h2 {
    font-size: 2.6rem;
    margin-bottom: 20px;
    color: #f5b042;
    position: relative;
}

.umrah-text p {
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 25px;
}

.umrah-list {
    margin-bottom: 30px;
}

.umrah-list li {
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1rem;
    color: #ddd;
}

.umrah-list i {
    color: #f5b042;
    font-size: 1.2rem;
}

.umrah-image img {
    border-radius: 32px;
    box-shadow: 0 25px 45px rgba(0,0,0,0.4);
    width: 100%;
    height: 380px;
    object-fit: cover;
    transition: all 0.3s;
}

.umrah-image img:hover {
    transform: scale(1.02);
}

/* ----- TESTIMONIALS SECTION ----- */
.testimonials {
    padding: 80px 0;
    background: #ffffff;
}

.testimonialSwiper {
    padding: 20px 0 50px;
}

.testimonial-card {
    background: linear-gradient(135deg, #ffffff 0%, #fefaf5 100%);
    padding: 40px 30px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(245, 176, 66, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.12);
    border-color: rgba(245, 176, 66, 0.3);
}

.quote-icon {
    font-size: 2.5rem;
    color: #f5b042;
    opacity: 0.4;
    margin-bottom: 20px;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.7;
    color: #333;
    font-size: 1rem;
}

.testimonial-author {
    margin-top: 15px;
}

.author-img i {
    font-size: 3rem;
    color: #f5b042;
    opacity: 0.7;
    margin-bottom: 10px;
}

.testimonial-author h4 {
    font-size: 1.2rem;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: #f5b042;
    font-weight: 500;
}

.rating {
    margin-top: 10px;
}

.rating i {
    color: #f5b042;
    font-size: 0.85rem;
    margin: 0 2px;
}

.testimonial-pagination .swiper-pagination-bullet-active {
    background: #f5b042;
}

/* ----- CTA SECTION ----- */
.cta-section {
    background: linear-gradient(115deg, #f5b042 0%, #d4921a 100%);
    padding: 70px 0;
    position: relative;
}

.cta-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.cta-text h3 {
    font-size: 2.2rem;
    color: #0a0a0a;
    font-weight: 800;
    margin-bottom: 10px;
}

.cta-text p {
    color: #2a2a2a;
    font-size: 1rem;
}

/* =============================================
   SUBHEADER & BREADCRUMBS STYLES
   ============================================= */

.subheader {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 80px 0 70px;
    position: relative;
    overflow: hidden;
    
}

.subheader::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 150%;
    background: radial-gradient(circle, rgba(245, 176, 66, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.subheader::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 50%;
    height: 120%;
    background: radial-gradient(circle, rgba(245, 176, 66, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.subheader-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.subheader-text {
    flex: 1;
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    color: #f5b042;
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #f5b042, #e09d1e);
    border-radius: 3px;
}

.page-subtitle {
    font-size: 1.1rem;
    color: #cccccc;
    margin-top: 15px;
    line-height: 1.6;
    max-width: 600px;
}

/* Breadcrumb Styles */
.breadcrumb-wrapper {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    border: 1px solid rgba(245, 176, 66, 0.2);
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.breadcrumb-item a {
    color: #dddddd;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.breadcrumb-item a:hover {
    color: #f5b042;
}

.breadcrumb-item.active span {
    color: #f5b042;
    font-weight: 600;
}

.breadcrumb-separator {
    font-size: 0.7rem;
    color: #f5b042;
    opacity: 0.6;
}

.breadcrumb-item:first-child a i {
    font-size: 0.9rem;
}

/* =============================================
   ABOUT PAGE STYLES
   ============================================= */

.about-content {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #0a0a0a;
}

.about-text p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-text h3 {
    font-size: 1.4rem;
    margin: 25px 0 15px;
    color: #f5b042;
}

.about-image img {
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    width: 100%;
    height: auto;
}

/* Mission Vision Section */
.mission-vision {
    padding: 60px 0;
    background: linear-gradient(135deg, #fefaf5 0%, #ffffff 100%);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.mv-card {
    text-align: center;
    padding: 40px 25px;
    background: white;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(245, 176, 66, 0.1);
}

.mv-icon i {
    font-size: 2.5rem;
    color: #f5b042;
    margin-bottom: 20px;
}

.mv-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.mv-card p {
    color: #666;
    line-height: 1.6;
}

/* Values List */
.values-list {
    list-style: none;
    margin-top: 20px;
}

.values-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.values-list li i {
    color: #f5b042;
}

/* Team Section */
.team-section {
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-card {
    text-align: center;
    background: white;
    border-radius: 24px;
    padding: 30px;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.team-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.team-img i {
    font-size: 4rem;
    color: #f5b042;
}

.team-card h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.team-card p {
    color: #f5b042;
    font-size: 0.9rem;
}

/* =============================================
   SERVICES DETAILED PAGE STYLES
   ============================================= */

.services-detailed {
    padding: 80px 0;
}

.services-grid-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-detailed-card {
    background: #fff;
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s;
    border: 1px solid #f0f0f0;
}

.service-detailed-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: rgba(245, 176, 66, 0.3);
}

.service-detailed-icon {
    width: 70px;
    height: 70px;
    background: rgba(245, 176, 66, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-detailed-icon i {
    font-size: 2rem;
    color: #f5b042;
}

.service-detailed-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.service-features {
    margin: 20px 0;
    list-style: none;
}

.service-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features li i {
    color: #f5b042;
    font-size: 0.8rem;
}

/* =============================================
   CONTACT PAGE STYLES
   ============================================= */

.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fefaf5 0%, #ffffff 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #0a0a0a;
}

.contact-details {
    margin: 30px 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-item i {
    width: 45px;
    height: 45px;
    background: rgba(245, 176, 66, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #f5b042;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.contact-item:hover i {
    background: #f5b042;
    color: #0a0a0a;
}

.contact-item a {
    color: inherit;
}

.contact-item a:hover {
    color: #f5b042;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #111;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #f5b042;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #f5b042;
    color: #0a0a0a;
    transform: translateY(-3px);
}

.contact-form .input-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    background: white;
    transition: all 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #f5b042;
    box-shadow: 0 0 0 3px rgba(245, 176, 66, 0.15);
}

.contact-form textarea {
    border-radius: 16px;
    resize: vertical;
}

/* Map Section */
.map-section {
    padding: 0 0 80px;
}

.map-wrapper {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.map-wrapper iframe {
    width: 100%;
    height: 400px;
    display: block;
}

/* =============================================
   UMRAH PACKAGES PAGE STYLES
   ============================================= */

.packages-section {
    padding: 80px 0;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.package-card {
    background: #fff;
    border-radius: 28px;
    padding: 35px;
    text-align: center;
    position: relative;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
}

.package-card.featured {
    transform: scale(1.02);
    border: 2px solid #f5b042;
    box-shadow: 0 20px 40px rgba(245, 176, 66, 0.15);
}

.package-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #f5b042, #e09d1e);
    color: #0a0a0a;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.package-price {
    margin: 20px 0;
}

.package-price .currency {
    font-size: 1.2rem;
    vertical-align: top;
}

.package-price .amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #f5b042;
}

.package-price .period {
    font-size: 0.9rem;
    color: #666;
}

.package-card h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.package-features {
    list-style: none;
    margin: 25px 0;
    text-align: left;
}

.package-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.package-features li i {
    color: #f5b042;
}

/* =============================================
   BOOKING PAGE STYLES
   ============================================= */

.booking-section {
    padding: 80px 0;
}

.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
}

.booking-info {
    background: linear-gradient(135deg, #fefaf5, #ffffff);
    padding: 35px;
    border-radius: 28px;
    border: 1px solid rgba(245, 176, 66, 0.2);
}

.booking-info h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #f5b042;
}

.info-list {
    list-style: none;
    margin: 25px 0;
}

.info-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-list li i {
    color: #f5b042;
    font-size: 1.2rem;
}

.booking-form {
    background: white;
    padding: 35px;
    border-radius: 28px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f5b042;
    box-shadow: 0 0 0 3px rgba(245, 176, 66, 0.15);
}

/* =============================================
   FOOTER STYLES
   ============================================= */

.site-footer {
    background: #050505;
    color: #dddddd;
    padding-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 55px;
    margin-bottom: 16px;
    
}

.footer-tagline {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #aaa;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: #1a1a1a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
    color: #f5b042;
}

.footer-social a:hover {
    background: #f5b042;
    color: #0a0a0a;
    transform: translateY(-3px);
}

.footer-col h4 {
    color: #f5b042;
    margin-bottom: 20px;
    font-size: 1.2rem;
    position: relative;
    display: inline-block;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #f5b042;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #aaa;
    transition: all 0.3s;
}

.footer-col ul li a:hover {
    color: #f5b042;
    padding-left: 5px;
}

.footer-contact-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 15px;
    color: #aaa;
}

.footer-contact-list li i {
    color: #f5b042;
    margin-top: 4px;
}

.footer-contact-list li a {
    color: #aaa;
}

.footer-contact-list li a:hover {
    color: #f5b042;
}

.footer-bottom {
    border-top: 1px solid #1f1f1f;
    padding: 20px 0;
    text-align: center;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    color: #888;
    font-size: 0.85rem;
}

.footer-bottom-flex i {
    color: #f5b042;
}

/* =============================================
   BACK TO TOP BUTTON
   ============================================= */

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f5b042, #e09d1e);
    color: #0a0a0a;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.back-to-top:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(245, 176, 66, 0.4);
}

.back-to-top.show {
    display: flex;
}

/* =============================================
   RESPONSIVE DESIGN
   ============================================= */

@media (max-width: 1024px) {
    .welcome-grid,
    .umrah-container,
    .contact-grid,
    .about-grid,
    .booking-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .slide-content h2 {
        font-size: 2.5rem;
    }
    
    .umrah-text h2 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .main-nav,
    .btn-book-now {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-slider-section {
        height: 70vh;
    }
    
    .slide-content h2 {
        font-size: 2rem;
    }
    
    .welcome-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid,
    .features-grid,
    .services-grid-detailed,
    .packages-grid,
    .team-grid,
    .mv-grid {
        grid-template-columns: 1fr;
    }
    
    .subheader-content {
        flex-direction: column;
        text-align: center;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .page-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .breadcrumb-wrapper {
        justify-content: center;
    }
    
    .breadcrumb-list {
        justify-content: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .service-card,
    .feature {
        padding: 30px 20px;
    }
    
    .feature-number {
        font-size: 2.5rem;
        bottom: 10px;
        right: 15px;
    }
}

@media (max-width: 680px) {
    .container {
        padding: 0 20px;
    }
    
    .welcome-stats {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .footer-bottom-flex {
        flex-direction: column;
        text-align: center;
    }
    
    .slide-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .slide-content h2 {
        font-size: 1.6rem;
    }
    
    .slide-content p {
        font-size: 0.95rem;
    }
    
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .cta-text h3 {
        font-size: 1.6rem;
    }
    
    .umrah-text h2 {
        font-size: 1.6rem;
    }
    
    .subheader {
        padding: 60px 0 50px;
    }
    
    .page-title {
        font-size: 1.6rem;
    }
    
    .breadcrumb-item {
        font-size: 0.8rem;
    }
    
    .breadcrumb-wrapper {
        padding: 8px 16px;
    }
}

@media (max-width: 480px) {
    .logo-text h1 {
        font-size: 1rem;
    }
    
    .logo-text span {
        font-size: 0.6rem;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .stat-card h3 {
        font-size: 1.4rem;
    }
}

/* =============================================
   ANIMATIONS & UTILITIES
   ============================================= */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    animation: fadeUp 0.6s ease-out;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #f5b042;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #e09d1e;
}

/* Selection Color */
::selection {
    background: #f5b042;
    color: #0a0a0a;
}

::-moz-selection {
    background: #f5b042;
    color: #0a0a0a;
}

/* Animation delays for staggered appearance */
.service-card:nth-child(1) { transition-delay: 0.05s; }
.service-card:nth-child(2) { transition-delay: 0.1s; }
.service-card:nth-child(3) { transition-delay: 0.15s; }
.service-card:nth-child(4) { transition-delay: 0.2s; }
.service-card:nth-child(5) { transition-delay: 0.25s; }
.service-card:nth-child(6) { transition-delay: 0.3s; }

.feature:nth-child(1) { transition-delay: 0.05s; }
.feature:nth-child(2) { transition-delay: 0.1s; }
.feature:nth-child(3) { transition-delay: 0.15s; }
.feature:nth-child(4) { transition-delay: 0.2s; }
.feature:nth-child(5) { transition-delay: 0.25s; }
.feature:nth-child(6) { transition-delay: 0.3s; }

/* =============================================
   SPIRITUAL SUBHEADER ENHANCEMENTS
   ============================================= */

.subheader {
    position: relative;
    overflow: hidden;
}

/* Floating Light Orbs */
.light-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 176, 66, 0.15), transparent);
    pointer-events: none;
    z-index: 1;
    animation: floatOrb 15s ease-in-out infinite;
}

.light-orb-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.light-orb-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    right: 20%;
    animation-delay: 3s;
    animation-duration: 12s;
}

.light-orb-3 {
    width: 150px;
    height: 150px;
    top: 40%;
    right: -50px;
    animation-delay: 6s;
    animation-duration: 18s;
}

@keyframes floatOrb {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.3;
    }
    33% {
        transform: translateY(-30px) translateX(20px) scale(1.1);
        opacity: 0.5;
    }
    66% {
        transform: translateY(20px) translateX(-15px) scale(0.9);
        opacity: 0.4;
    }
}

/* Star Twinkle Effect */
.star {
    position: absolute;
    background: #ffffff;
    border-radius: 50%;
    opacity: 0;
    animation: twinkle 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0.5);
    }
    50% {
        opacity: 0.8;
        transform: scale(1);
    }
}

/* Quranic Verse Animation */
.quranic-verse {
    position: absolute;
    bottom: 30px;
    left: 30px;
    font-size: 0.9rem;
    color: rgba(245, 176, 66, 0.2);
    font-family: 'Amiri', 'Times New Roman', serif;
    z-index: 2;
    animation: fadeInOut 6s ease-in-out infinite;
    direction: rtl;
}

.quranic-verse:nth-child(2) {
    bottom: 60px;
    animation-delay: 3s;
}

@keyframes fadeInOut {
    0%, 100% {
        opacity: 0.1;
        transform: translateX(-5px);
    }
    50% {
        opacity: 0.3;
        transform: translateX(0);
    }
}

/* Glassmorphism Breadcrumb Enhancement */
.breadcrumb-wrapper {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(245, 176, 66, 0.3);
    transition: all 0.3s ease;
}

.breadcrumb-wrapper:hover {
    background: rgba(0, 0, 0, 0.5);
    border-color: rgba(245, 176, 66, 0.5);
    box-shadow: 0 0 20px rgba(245, 176, 66, 0.1);
}

/* Page Title Glow Effect */
.page-title {
    text-shadow: 0 0 30px rgba(245, 176, 66, 0.3);
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(245, 176, 66, 0.2);
    }
    50% {
        text-shadow: 0 0 40px rgba(245, 176, 66, 0.4);
    }
}

/* Responsive Adjustments for Spiritual Elements */
@media (max-width: 768px) {
    .light-orb-1 {
        width: 150px;
        height: 150px;
    }
    
    .light-orb-2 {
        width: 100px;
        height: 100px;
    }
    
    .quranic-verse {
        font-size: 0.7rem;
        bottom: 15px;
        left: 15px;
    }
}
/* ============================================
   BACK TO TOP BUTTON - LEFT SIDE
   ============================================ */

.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f5b042, #e09d1e);
    color: #0a0a0a;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.back-to-top.left {
    left: 30px;
    right: auto;
}

.back-to-top:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(245, 176, 66, 0.4);
}

.back-to-top.show {
    display: flex;
}

.back-to-top .tooltip {
    position: absolute;
    left: 60px;
    background: #0a0a0a;
    color: #f5b042;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    pointer-events: none;
}

.back-to-top:hover .tooltip {
    opacity: 1;
    visibility: visible;
    left: 65px;
}

/* ============================================
   STICKY WIDGETS - RIGHT SIDE
   ============================================ */

.sticky-widgets {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 998;
    transition: all 0.3s ease;
}

.sticky-widgets.hide {
    transform: translateX(100px);
    opacity: 0;
}

.sticky-widget {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 12px 18px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.sticky-widget:hover {
    transform: translateX(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* WhatsApp Widget */
.whatsapp-widget {
    background: linear-gradient(135deg, #25D366, #128C7E);
    border: none;
}

.whatsapp-widget .widget-icon {
    background: rgba(255,255,255,0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.whatsapp-widget .widget-icon i {
    font-size: 1.5rem;
    color: white;
}

.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4444;
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 1.5s infinite;
}

.whatsapp-widget .widget-text {
    color: white;
}

.whatsapp-widget .widget-title {
    font-size: 0.9rem;
    font-weight: 700;
    display: block;
}

.whatsapp-widget .widget-subtitle {
    font-size: 0.7rem;
    opacity: 0.9;
}

/* Book Now Widget */
.booknow-widget {
    background: linear-gradient(135deg, #f5b042, #e09d1e);
}

.booknow-widget .widget-icon {
    background: rgba(0,0,0,0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.booknow-widget .widget-icon i {
    font-size: 1.3rem;
    color: #0a0a0a;
}

.booknow-widget .widget-text {
    color: #0a0a0a;
}

.booknow-widget .widget-title {
    font-size: 0.9rem;
    font-weight: 700;
    display: block;
}

.booknow-widget .widget-subtitle {
    font-size: 0.7rem;
    opacity: 0.8;
}

/* Pulse Animation for WhatsApp */
.widget-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.3);
    border-radius: 50px;
    transform: translate(-50%, -50%) scale(0);
    animation: pulseRing 2s infinite;
    pointer-events: none;
}

@keyframes pulseRing {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0.5;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

/* Responsive for Sticky Widgets */
@media (max-width: 768px) {
    .sticky-widgets {
        right: 15px;
        bottom: 20px;
        gap: 10px;
    }
    
    .sticky-widget {
        padding: 8px 14px;
    }
    
    .sticky-widget .widget-icon {
        width: 32px;
        height: 32px;
    }
    
    .sticky-widget .widget-icon i {
        font-size: 1.2rem;
    }
    
    .sticky-widget .widget-title {
        font-size: 0.8rem;
    }
    
    .sticky-widget .widget-subtitle {
        font-size: 0.65rem;
    }
    
    .back-to-top.left {
        left: 15px;
        bottom: 20px;
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }
    
    .back-to-top .tooltip {
        display: none;
    }
}

@media (max-width: 480px) {
    .sticky-widget .widget-text {
        display: none;
    }
    
    .sticky-widget {
        padding: 10px;
        border-radius: 50%;
    }
    
    .sticky-widget .widget-icon {
        margin: 0;
    }
    
    .whatsapp-widget .widget-text,
    .booknow-widget .widget-text {
        display: none;
    }
}