/* 
 * The II Rath Inn - Luxury Hotel Landing Page
 * Custom Stylesheet & Design System
 * Mandarmani, Purba Medinipur, WB
 */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-orange: #EE6723;
    --primary-orange-hover: #D45113;
    --primary-maroon: #802322;
    --primary-maroon-dark: #5A1615;
    --gold-accent: #E6A15C;
    --gold-light: #FBF4EC;
    
    --bg-dark: #0F141D;
    --bg-dark-card: #161D2B;
    --bg-light: #FAF8F5;
    --bg-white: #FFFFFF;
    
    --text-main: #2B2D42;
    --text-muted: #6C757D;
    --text-light: #F0F2F5;
    --text-dark-heading: #111827;
    
    --border-color: rgba(0, 0, 0, 0.08);
    --border-gold: rgba(238, 103, 35, 0.3);
    
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --transition-fast: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.12);
    --shadow-gold: 0 8px 25px rgba(238, 103, 35, 0.25);
}

/* Base Setup */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6, .font-serif {
    font-family: var(--font-heading);
    color: var(--text-dark-heading);
    font-weight: 700;
}

/* Scroll Progress Bar */
#scroll-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: transparent;
    z-index: 1050;
}

#scroll-progress {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary-maroon), var(--primary-orange), var(--gold-accent));
    transition: width 0.1s linear;
}

/* Top Notification Bar */
.top-bar {
    background: linear-gradient(90deg, var(--primary-maroon-dark) 0%, var(--primary-maroon) 50%, #681C1B 100%);
    color: #fff;
    font-size: 0.85rem;
    padding: 7px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--transition-fast);
}

.top-bar a:hover {
    color: var(--gold-accent);
}

.top-bar .offer-pill {
    background: rgba(238, 103, 35, 0.25);
    border: 1px solid rgba(238, 103, 35, 0.5);
    border-radius: 30px;
    padding: 2px 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Sticky Navbar */
.navbar-custom {
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: var(--transition-smooth);
    z-index: 1040;
}

.navbar-custom.scrolled {
    padding: 8px 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.navbar-brand-logo {
    height: 55px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-fast);
}

.navbar-nav .nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-main);
    padding: 8px 16px !important;
    position: relative;
    transition: var(--transition-fast);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-orange);
    transition: var(--transition-fast);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-maroon);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 60%;
}

/* Buttons */
.btn-gold {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #E85E1A 100%);
    color: #ffffff;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 4px;
    border: none;
    box-shadow: var(--shadow-gold);
    transition: var(--transition-fast);
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: 0.6s;
}

.btn-gold:hover::before {
    left: 100%;
}

.btn-gold:hover {
    background: linear-gradient(135deg, #D45113 0%, var(--primary-maroon) 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(212, 81, 19, 0.35);
}

.btn-maroon {
    background: var(--primary-maroon);
    color: #ffffff;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 4px;
    border: none;
    transition: var(--transition-fast);
}

.btn-maroon:hover {
    background: var(--primary-maroon-dark);
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-outline-gold {
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange);
    font-weight: 700;
    padding: 8px 22px;
    border-radius: 4px;
    background: transparent;
    transition: var(--transition-fast);
}

.btn-outline-gold:hover {
    background: var(--primary-orange);
    color: #ffffff;
    transform: translateY(-2px);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-subtitle {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--primary-orange);
    margin-bottom: 8px;
    background: rgba(238, 103, 35, 0.08);
    padding: 4px 14px;
    border-radius: 30px;
    border: 1px solid var(--border-gold);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 12px;
    position: relative;
}

.section-title span {
    color: var(--primary-maroon);
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 12px 0 0 0;
}

.section-divider .line {
    height: 2px;
    width: 50px;
    background: linear-gradient(90deg, transparent, var(--primary-orange), transparent);
}

.section-divider .star {
    color: var(--primary-orange);
    font-size: 0.9rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, rgba(15, 20, 29, 0.7) 0%, rgba(15, 20, 29, 0.85) 100%), 
                url('../images/room-luxury.jpg') no-repeat center center/cover;
    color: #ffffff;
    padding: 140px 0 80px 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(128, 35, 34, 0.25) 0%, rgba(15, 20, 29, 0.8) 100%);
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold-accent);
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 20px;
}

.hero-title .text-gold {
    color: var(--gold-accent);
    font-style: italic;
}

.hero-lead {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 35px;
    max-width: 620px;
}

/* Quick Search Widget Overlay */
.search-widget {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-top: 40px;
}

.search-widget label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary-maroon);
    margin-bottom: 6px;
}

.search-widget .form-control,
.search-widget .form-select {
    border: 1px solid #e0e0e0;
    padding: 10px 14px;
    font-size: 0.92rem;
    border-radius: 6px;
    transition: var(--transition-fast);
}

.search-widget .form-control:focus,
.search-widget .form-select:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(238, 103, 35, 0.15);
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.about-img-stack {
    position: relative;
    padding-bottom: 40px;
}

.about-img-main {
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    width: 90%;
    height: 420px;
    object-fit: cover;
}

.about-img-sub {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 240px;
    object-fit: cover;
    border-radius: 8px;
    border: 6px solid #ffffff;
    box-shadow: var(--shadow-lg);
}

.about-badge {
    position: absolute;
    top: 20px;
    left: -20px;
    background: var(--primary-maroon);
    color: #ffffff;
    padding: 18px 24px;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    text-align: center;
    border: 2px solid var(--gold-accent);
}

.about-badge .years {
    font-size: 2.2rem;
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1;
    color: var(--gold-accent);
}

.about-feature-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.about-feature-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--gold-light);
    color: var(--primary-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    border: 1px solid var(--border-gold);
}

.counter-box {
    text-align: center;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.counter-num {
    font-size: 2.2rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--primary-maroon);
}

/* Rooms Section */
.rooms-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.room-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0,0,0,0.06);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-gold);
}

.room-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.room-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.room-card:hover .room-img-wrapper img {
    transform: scale(1.08);
}

.room-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-maroon);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.room-price-tag {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(15, 20, 29, 0.88);
    backdrop-filter: blur(6px);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 6px;
    border: 1px solid var(--border-gold);
}

.room-price-tag .amount {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--gold-accent);
}

.room-price-tag .per-night {
    font-size: 0.75rem;
    opacity: 0.8;
}

.room-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.room-title {
    font-size: 1.35rem;
    margin-bottom: 10px;
    color: var(--primary-maroon);
}

.room-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 15px 0 20px 0;
    padding-top: 12px;
    border-top: 1px dashed var(--border-color);
}

.room-amenity-item {
    font-size: 0.82rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
}

.room-amenity-item i {
    color: var(--primary-orange);
}

/* Facilities Section */
.facilities-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-dark-card) 100%);
    color: #ffffff;
}

.facilities-section .section-title {
    color: #ffffff;
}

.facility-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition-smooth);
    height: 100%;
}

.facility-card:hover {
    background: rgba(238, 103, 35, 0.08);
    border-color: var(--primary-orange);
    transform: translateY(-6px);
}

.facility-icon-wrapper {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-maroon) 0%, var(--primary-orange) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    font-size: 1.6rem;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(238, 103, 35, 0.3);
}

.facility-title {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.facility-desc {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.gallery-filter-btn {
    padding: 8px 20px;
    border: 1px solid var(--border-color);
    border-radius: 30px;
    background: transparent;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    transition: var(--transition-fast);
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
    background: var(--primary-maroon);
    color: #ffffff;
    border-color: var(--primary-maroon);
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
    height: 260px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(128, 35, 34, 0.85) 100%);
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    color: #ffffff;
    transition: var(--transition-fast);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h5 {
    color: #ffffff;
    margin-bottom: 4px;
    font-size: 1.1rem;
}

.gallery-overlay p {
    font-size: 0.82rem;
    color: var(--gold-accent);
    margin-bottom: 0;
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 1060;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox-modal.active {
    display: flex;
    animation: fadeIn 0.3s forwards;
}

.lightbox-content {
    max-width: 900px;
    max-height: 85vh;
    position: relative;
    text-align: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 75vh;
    border-radius: 6px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.lightbox-caption {
    color: #ffffff;
    margin-top: 15px;
    font-size: 1.1rem;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #ffffff;
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
}

/* Attractions Section */
.attractions-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.attraction-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.06);
    transition: var(--transition-fast);
    height: 100%;
}

.attraction-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-gold);
}

.attraction-distance {
    display: inline-block;
    background: var(--gold-light);
    color: var(--primary-orange);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 12px;
    border: 1px solid var(--border-gold);
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #161D2B 0%, #0F141D 100%);
    color: #ffffff;
}

.testimonials-section .section-title {
    color: #ffffff;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-stars {
    color: var(--gold-accent);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.testimonial-quote {
    font-style: italic;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.98rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-orange);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.testimonial-info h6 {
    color: #ffffff;
    margin: 0;
    font-size: 0.95rem;
}

.testimonial-info small {
    color: var(--gold-accent);
    font-size: 0.8rem;
}

/* FAQs Section */
.faq-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.accordion-custom .accordion-item {
    border: 1px solid var(--border-color);
    border-radius: 8px !important;
    margin-bottom: 16px;
    overflow: hidden;
}

.accordion-custom .accordion-button {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-maroon);
    background: #ffffff;
    padding: 18px 24px;
    box-shadow: none;
}

.accordion-custom .accordion-button:not(.collapsed) {
    background: var(--gold-light);
    color: var(--primary-maroon);
    border-bottom: 1px solid var(--border-gold);
}

.accordion-custom .accordion-button:focus {
    box-shadow: none;
}

.accordion-custom .accordion-body {
    padding: 20px 24px;
    color: var(--text-main);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Contact & Booking Section */
.contact-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.contact-info-card {
    background: var(--primary-maroon);
    color: #ffffff;
    border-radius: 12px;
    padding: 40px 30px;
    height: 100%;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.contact-info-card::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(238, 103, 35, 0.15);
    border-radius: 50%;
    pointer-events: none;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 30px;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: var(--gold-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-info-item h6 {
    color: var(--gold-accent);
    margin-bottom: 4px;
    font-size: 0.95rem;
}

.contact-info-item p,
.contact-info-item a {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    text-decoration: none;
    font-size: 0.95rem;
}

.contact-info-item a:hover {
    color: var(--gold-accent);
}

.map-wrapper {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 240px;
    margin-top: 25px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.booking-form-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px 35px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-gold);
}

.booking-form-card label {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--primary-maroon);
    margin-bottom: 6px;
}

.booking-form-card .form-control,
.booking-form-card .form-select {
    border: 1px solid #dcdcdc;
    padding: 12px 16px;
    font-size: 0.95rem;
    border-radius: 6px;
    transition: var(--transition-fast);
}

.booking-form-card .form-control:focus,
.booking-form-card .form-select:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 4px rgba(238, 103, 35, 0.15);
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #ffffff;
    border-radius: 50%;
    text-align: center;
    font-size: 32px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 1030;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    animation: waBounce 2.5s infinite ease-in-out;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    color: #ffffff;
    transform: scale(1.1);
}

.whatsapp-float .tooltip-badge {
    position: absolute;
    right: 70px;
    background: #0F141D;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    padding: 6px 14px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    border: 1px solid var(--border-gold);
}

.whatsapp-float:hover .tooltip-badge {
    opacity: 1;
}

@keyframes waBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Back to Top Button */
#back-to-top {
    position: fixed;
    bottom: 95px;
    right: 25px;
    width: 45px;
    height: 45px;
    background: var(--primary-maroon);
    color: #ffffff;
    border: 1px solid var(--gold-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    z-index: 1020;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
}

#back-to-top.show {
    opacity: 1;
    visibility: visible;
}

#back-to-top:hover {
    background: var(--primary-orange);
    transform: translateY(-3px);
}

/* Footer */
.footer-custom {
    background: #0B0E14;
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 30px 0;
    font-size: 0.9rem;
    border-top: 2px solid var(--primary-maroon);
}

.footer-logo {
    height: 60px;
    margin-bottom: 20px;
}

.footer-title {
    color: #ffffff;
    font-size: 1.15rem;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--primary-orange);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-orange);
    padding-left: 5px;
}

.footer-social-icons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social-icons a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.footer-social-icons a:hover {
    background: var(--primary-orange);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 25px;
    margin-top: 50px;
    text-align: center;
    font-size: 0.85rem;
}

/* Keyframes */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive Overrides */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .about-img-main {
        width: 100%;
        height: 320px;
    }
    .about-img-sub {
        display: none;
    }
    .about-badge {
        position: relative;
        top: 0;
        left: 0;
        margin-top: 15px;
        display: inline-block;
    }
}
