/* ================================================
   RRR Catering – Premium CSS
   Font: Inter (body) + Poppins (headings)
   Theme: Orange + Cream + Deep Charcoal
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@500;600;700;800&display=swap');

/* ── CSS Variables ─────────────────────────────── */
:root {
    --primary:        #F57C00;
    --primary-dark:   #E65100;
    --primary-light:  #FFF3E0;
    --gold:           #D4AF37;
    --cream:          #FFF8E7;
    --charcoal:       #1A1A2E;
    --charcoal-mid:   #16213E;
    --text-dark:      #1E1E2E;
    --text-mid:       #555;
    --text-light:     #888;
    --white:          #FFFFFF;
    --section-bg:     #F9F9F9;
    --border:         rgba(0,0,0,0.07);
    --glass-bg:       rgba(255,255,255,0.75);
    --shadow-sm:      0 4px 15px rgba(0,0,0,0.06);
    --shadow-md:      0 8px 30px rgba(0,0,0,0.10);
    --shadow-lg:      0 16px 50px rgba(0,0,0,0.14);
    --shadow-orange:  0 8px 25px rgba(245,124,0,0.35);
    --radius-sm:      8px;
    --radius-md:      15px;
    --radius-lg:      24px;
    --transition:     all 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ── Reset & Base ───────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--white);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.7;
}

/* ── Typography ─────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.25;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }

p { line-height: 1.8; color: var(--text-mid); }

/* ── Colour Utilities ───────────────────────────── */
.text-primary-theme { color: var(--primary) !important; }
.text-gold          { color: var(--gold) !important; }
.bg-primary-theme   { background-color: var(--primary) !important; }
.bg-cream           { background-color: var(--cream) !important; }
.bg-charcoal        { background-color: var(--charcoal) !important; }

/* ── Letter Spacing ─────────────────────────────── */
.tracking-wider  { letter-spacing: 0.12em; }
.tracking-widest { letter-spacing: 0.2em; }

/* ── Section Padding ────────────────────────────── */
.section-padding   { padding: 90px 0; }
.section-padding-sm{ padding: 50px 0; }

/* ── Section Label (eyebrow text) ───────────────── */
.section-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--primary);
    display: block;
    margin-bottom: 8px;
}

/* ================================================
   ANNOUNCEMENT BAR
   ================================================ */
.announcement-bar {
    background: linear-gradient(90deg, var(--charcoal) 0%, #16213E 100%);
    color: #ddd;
    font-size: 0.82rem;
    padding: 7px 0;
    z-index: 1100;
}
.announcement-bar a { color: var(--primary); text-decoration: none; }

/* ================================================
   NAVBAR
   ================================================ */
.navbar-glass {
    background: rgba(255,255,255,0.95) !important;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.07);
    padding: 14px 0;
    transition: var(--transition);
}

.navbar-glass.scrolled {
    background: rgba(255,255,255,0.99) !important;
    box-shadow: 0 4px 30px rgba(0,0,0,0.12);
    padding: 10px 0;
}

.navbar-brand {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.55rem;
    color: var(--primary) !important;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.navbar-brand .brand-dot {
    width: 8px; height: 8px;
    background: var(--primary);
    border-radius: 50%;
    display: inline-block;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%,100%{ transform: scale(1); opacity:1; }
    50%    { transform: scale(1.5); opacity:0.6; }
}

.nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.93rem;
    color: var(--text-dark) !important;
    padding: 8px 14px !important;
    position: relative;
    transition: var(--transition);
    text-decoration: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px; left: 14px; right: 14px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active-page::after { transform: scaleX(1); }

.nav-link:hover,
.nav-link.active-page { color: var(--primary) !important; }

/* Dropdown */
.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-md);
    padding: 10px;
    min-width: 200px;
    animation: dropIn 0.25s ease;
}

@keyframes dropIn {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.dropdown-item {
    border-radius: var(--radius-sm);
    padding: 8px 14px;
    font-size: 0.88rem;
    font-weight: 500;
    transition: var(--transition);
}
.dropdown-item:hover {
    background: var(--primary-light);
    color: var(--primary);
}

/* Hamburger animation */
.navbar-toggler {
    border: none;
    padding: 6px;
    outline: none !important;
    box-shadow: none !important;
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23F57C00' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ================================================
   BUTTONS
   ================================================ */
.btn-theme {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 12px 32px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.92rem;
    border: none;
    letter-spacing: 0.03em;
    box-shadow: var(--shadow-orange);
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}
.btn-theme:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #BF360C 100%);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(245,124,0,0.45);
}

.btn-outline-theme {
    background: transparent;
    color: var(--primary);
    padding: 11px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.92rem;
    border: 2px solid var(--primary);
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}
.btn-outline-theme:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-light-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.7);
    padding: 11px 30px;
    border-radius: 50px;
    font-weight: 700;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}
.btn-light-outline:hover {
    background: rgba(255,255,255,0.15);
    color: var(--white);
    border-color: var(--white);
}

/* ================================================
   HERO SECTION
   ================================================ */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 640px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--charcoal);
}

.hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 1;
    transform: scale(1.06);
    animation: heroZoom 12s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    from { transform: scale(1.0); }
    to   { transform: scale(1.06); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26,26,46,0.85) 0%,
        rgba(26,26,46,0.60) 50%,
        rgba(245,124,0,0.25) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(245,124,0,0.18);
    border: 1px solid rgba(245,124,0,0.4);
    color: #FFB74D;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
}
.hero-title .accent { color: var(--primary); }

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,0.82);
    max-width: 520px;
    margin-bottom: 36px;
    font-weight: 400;
}

/* Inner page hero (smaller) */
.page-hero {
    position: relative;
    height: 380px;
    min-height: 320px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--charcoal);
}

.page-hero .hero-bg-img {
    opacity: 0.45;
    animation: none;
}

.page-hero .hero-overlay {
    background: linear-gradient(180deg, rgba(26,26,46,0.7) 0%, rgba(26,26,46,0.55) 100%);
}

.page-hero-content {
    position: relative; z-index: 2;
    color: var(--white);
    text-align: center;
}
.page-hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: var(--white);
    font-weight: 800;
    margin-bottom: 12px;
}
.page-hero-title .accent { color: var(--primary); }

/* Breadcrumb */
.breadcrumb-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
    margin-top: 12px;
}
.breadcrumb-nav a { color: rgba(255,255,255,0.8); text-decoration: none; }
.breadcrumb-nav a:hover { color: var(--primary); }
.breadcrumb-nav .sep { color: var(--primary); }

/* ================================================
   GLASS CARD
   ================================================ */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.45);
    box-shadow: var(--shadow-sm);
    border-radius: var(--radius-md);
    transition: var(--transition);
}
.glass-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

/* ================================================
   SERVICE CARDS
   ================================================ */
.service-card {
    border: none;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    background: var(--white);
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}
.service-card img {
    height: 230px;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.service-card:hover img { transform: scale(1.07); }

/* Overlay on hover */
.card-img-wrap {
    position: relative;
    overflow: hidden;
}
.card-img-overlay-custom {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(26,26,46,0.85) 100%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}
.service-card:hover .card-img-overlay-custom { opacity: 1; }

/* ================================================
   ICON BOXES
   ================================================ */
.icon-box {
    text-align: center;
    padding: 36px 28px;
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.icon-box:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--white) 100%);
}
.icon-box .icon-circle {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light), var(--cream));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.7rem;
    color: var(--primary);
    transition: var(--transition);
}
.icon-box:hover .icon-circle {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    box-shadow: var(--shadow-orange);
}

/* ================================================
   COUNTERS
   ================================================ */
.counter-section { background: var(--cream); }

.counter-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.counter-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
.counter-number {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
    line-height: 1;
}
.counter-label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-mid);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ================================================
   PROCESS STEPS
   ================================================ */
.step-card {
    text-align: center;
    position: relative;
    padding: 0 20px;
}
.step-number {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-orange);
    position: relative;
    z-index: 1;
}
.step-connector {
    position: absolute;
    top: 32px;
    left: calc(50% + 40px);
    right: calc(-50% + 40px);
    height: 2px;
    background: linear-gradient(90deg, var(--primary), transparent);
    z-index: 0;
}

/* ================================================
   PACKAGES / PRICING
   ================================================ */
.package-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    background: var(--white);
    position: relative;
}
.package-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}
.package-card.featured {
    border: 2px solid var(--primary);
    box-shadow: 0 0 0 4px rgba(245,124,0,0.12), var(--shadow-lg);
}
.package-card .package-header {
    padding: 32px 28px 24px;
    text-align: center;
}
.package-card.featured .package-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}
.package-card.featured .package-header h3,
.package-card.featured .package-header .price { color: var(--white); }

.popular-badge {
    position: absolute;
    top: -1px; right: 20px;
    background: var(--gold);
    color: var(--charcoal);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 5px 14px 4px;
    border-radius: 0 0 10px 10px;
}
.price {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}
.price-unit { font-size: 1rem; font-weight: 500; color: var(--text-light); }

.package-body {
    padding: 24px 28px 28px;
}
.package-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 9px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
    color: var(--text-mid);
}
.package-feature:last-child { border-bottom: none; }
.package-feature .check { color: var(--primary); flex-shrink: 0; margin-top: 3px; }

/* ================================================
   GALLERY
   ================================================ */
.gallery-grid {
    columns: 4;
    column-gap: 16px;
}
@media(max-width:1199px){ .gallery-grid { columns: 3; } }
@media(max-width:767px) { .gallery-grid { columns: 2; } }
@media(max-width:480px) { .gallery-grid { columns: 1; } }

.gallery-item {
    break-inside: avoid;
    margin-bottom: 16px;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

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

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(26,26,46,0.85) 100%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 18px;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-filter-btn {
    border-radius: 50px;
    padding: 8px 24px;
    font-weight: 600;
    font-size: 0.88rem;
    transition: var(--transition);
    border: 2px solid var(--border);
    background: var(--white);
    color: var(--text-dark);
    cursor: pointer;
}
.gallery-filter-btn.active,
.gallery-filter-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: var(--shadow-orange);
}

/* Gallery hidden state */
.gallery-item.hidden {
    display: none;
}

/* ================================================
   LIGHTBOX
   ================================================ */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.93);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.lightbox-overlay.active { display: flex; }
.lightbox-overlay img {
    max-width: 90vw;
    max-height: 88vh;
    border-radius: var(--radius-md);
    box-shadow: 0 0 60px rgba(0,0,0,0.6);
    animation: lightboxIn 0.3s ease;
}
@keyframes lightboxIn {
    from { opacity:0; transform: scale(0.92); }
    to   { opacity:1; transform: scale(1); }
}
.lightbox-close {
    position: absolute;
    top: 20px; right: 24px;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    background: rgba(255,255,255,0.1);
    border: none;
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.lightbox-close:hover { background: var(--primary); }
.lightbox-caption {
    position: absolute;
    bottom: 20px; left: 0; right: 0;
    text-align: center;
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

/* ================================================
   TIMELINE
   ================================================ */
.timeline { position: relative; padding: 20px 0; }
.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0; bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary) 0%, var(--gold) 100%);
    transform: translateX(-50%);
}
.timeline-item { display: flex; margin-bottom: 40px; position: relative; }
.timeline-item:nth-child(odd)  { flex-direction: row-reverse; }
.timeline-content {
    width: calc(50% - 40px);
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.timeline-content:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.timeline-item:nth-child(odd)  .timeline-content { margin-right: 40px; }
.timeline-item:nth-child(even) .timeline-content { margin-left: 40px; }
.timeline-dot {
    position: absolute;
    left: 50%;
    top: 20px;
    width: 20px; height: 20px;
    border-radius: 50%;
    background: var(--primary);
    border: 4px solid var(--white);
    box-shadow: var(--shadow-orange);
    transform: translateX(-50%);
    z-index: 1;
}
.timeline-year {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 6px;
}

@media(max-width:767px){
    .timeline::before { left: 20px; }
    .timeline-item, .timeline-item:nth-child(odd) { flex-direction: column; }
    .timeline-content, .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content { width: 100%; margin: 0 0 0 48px; }
    .timeline-dot { left: 20px; }
}

/* ================================================
   TESTIMONIALS
   ================================================ */
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: var(--transition);
    border-left: 4px solid var(--primary);
}
.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
.testimonial-card .quote-icon {
    font-size: 3rem;
    color: var(--primary-light);
    line-height: 1;
    font-family: Georgia, serif;
    position: absolute;
    top: 16px; right: 24px;
    opacity: 0.6;
}
.testimonial-avatar {
    width: 52px; height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--white);
    flex-shrink: 0;
}

/* ================================================
   FAQ ACCORDION
   ================================================ */
.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}
.faq-item.open { box-shadow: var(--shadow-sm); }
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    background: var(--white);
    transition: var(--transition);
}
.faq-question:hover { color: var(--primary); }
.faq-question .faq-icon {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
    transition: var(--transition);
}
.faq-item.open .faq-question { color: var(--primary); }
.faq-item.open .faq-icon {
    background: var(--primary);
    color: var(--white);
    transform: rotate(45deg);
}
.faq-answer {
    padding: 0 22px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.75;
}
.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 22px 18px;
}

/* ================================================
   FLOATING GLASS CARD (HERO SIDEBAR)
   ================================================ */
.floating-card {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: var(--radius-lg);
    padding: 32px;
    color: var(--white);
    animation: floatY 6s ease-in-out infinite;
}
@keyframes floatY {
    0%,100%{ transform: translateY(0); }
    50%    { transform: translateY(-16px); }
}
.floating-card .stat-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.floating-card .stat-row:last-child { border-bottom: none; }
.floating-card .stat-icon {
    width: 42px; height: 42px;
    border-radius: 10px;
    background: rgba(245,124,0,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFB74D;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* ================================================
   CTA BANNER
   ================================================ */
.cta-banner {
    position: relative;
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
}
.cta-banner-bg {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
}
.cta-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(245,124,0,0.9) 0%, rgba(26,26,46,0.92) 100%);
    z-index: 1;
}
.cta-banner-content { position: relative; z-index: 2; color: var(--white); }

/* ================================================
   CONTACT
   ================================================ */
.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 20px;
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    margin-bottom: 16px;
    transition: var(--transition);
}
.contact-info-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}
.contact-info-icon {
    width: 52px; height: 52px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: var(--shadow-orange);
}

/* Business Hours */
.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-row .day { font-weight: 600; }
.hours-row .time { color: var(--primary); font-weight: 600; }

/* ================================================
   FLOATING FAB BUTTONS
   ================================================ */
.fab-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.fab-btn {
    width: 58px; height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--white);
    box-shadow: 0 4px 18px rgba(0,0,0,0.22);
    transition: var(--transition);
    text-decoration: none;
    position: relative;
}
.fab-btn:hover { transform: scale(1.12); color: var(--white); }
.fab-whatsapp { background: #25D366; }
.fab-call     { background: var(--primary); }

.fab-btn .fab-tooltip {
    position: absolute;
    right: 70px;
    background: var(--charcoal);
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 600;
    white-space: nowrap;
    padding: 5px 12px;
    border-radius: 6px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.fab-btn:hover .fab-tooltip { opacity: 1; }

/* Scroll-to-top */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 46px; height: 46px;
    border-radius: 50%;
    background: var(--charcoal);
    color: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 990;
}
.scroll-top-btn.visible { opacity: 1; transform: translateY(0); }
.scroll-top-btn:hover { background: var(--primary); }

/* ================================================
   FOOTER (DARK)
   ================================================ */
.footer-dark {
    background: var(--charcoal);
    color: rgba(255,255,255,0.75);
    padding: 80px 0 0;
}
.footer-dark h5, .footer-dark h4 {
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 22px;
}
.footer-brand {
    font-family: 'Poppins', sans-serif;
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
    margin-bottom: 14px;
    text-decoration: none;
}
.footer-dark p { color: rgba(255,255,255,0.6); font-size: 0.9rem; }

.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-links a::before {
    content: '›';
    color: var(--primary);
    font-size: 1.1rem;
}
.footer-links a:hover { color: var(--primary); padding-left: 4px; }

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.75);
    margin-right: 10px;
    font-size: 0.95rem;
    transition: var(--transition);
    text-decoration: none;
}
.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-4px);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.65);
}
.footer-contact-item i { color: var(--primary); margin-top: 3px; flex-shrink: 0; }

.footer-bottom {
    background: rgba(0,0,0,0.3);
    margin-top: 60px;
    padding: 18px 0;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245,124,0,0.12);
    border: 1px solid rgba(245,124,0,0.3);
    color: #FFB74D;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

/* ================================================
   FORM STYLES
   ================================================ */
.form-control, .form-select {
    border: 1.5px solid rgba(0,0,0,0.1);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: 0.92rem;
    transition: var(--transition);
    background: #FAFAFA;
}
.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(245,124,0,0.12);
    background: var(--white);
}

/* ================================================
   AOS (Animate on Scroll) via CSS classes
   ================================================ */
[data-aos] { opacity: 0; transition-property: opacity, transform; transition-duration: 0.7s; transition-timing-function: cubic-bezier(0.4,0,0.2,1); }
[data-aos="fade-up"]    { transform: translateY(30px); }
[data-aos="fade-right"] { transform: translateX(-30px); }
[data-aos="fade-left"]  { transform: translateX(30px); }
[data-aos="zoom-in"]    { transform: scale(0.9); }
[data-aos].aos-animate  { opacity: 1; transform: none; }

/* ================================================
   RESPONSIVE
   ================================================ */
@media(max-width: 991px) {
    .hero-title { font-size: 2.6rem; }
    .section-padding { padding: 60px 0; }
    .floating-card { display: none; }
    .navbar-collapse { background: rgba(255,255,255,0.98); padding: 20px; border-radius: 0 0 16px 16px; box-shadow: var(--shadow-md); }
}
@media(max-width: 575px) {
    .hero-title { font-size: 2rem; }
    .page-hero { height: 280px; }
}
