/*
 * LAXMI SUPPLIERS - main stylesheet
 * Event Decoration & Mandap Rental (Since 2013)
 * Author: Antigravity UI/UX
 */

/* ==========================================================================
   Import Google Fonts
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* ==========================================================================
   CSS Variables & Design System
   ========================================================================== */
:root {
    /* Colors */
    --primary: #8B0000;      /* Deep Crimson / Royal Red */
    --primary-rgb: 139, 0, 0;
    --secondary: #C49A3A;    /* Elegant Gold */
    --secondary-rgb: 196, 154, 58;
    --accent: #F59E0B;       /* Warm Amber */
    --background: #FFF9F5;   /* Luxurious Warm Ivory */
    --dark: #2D1B16;         /* Warm Dark Espresso */
    --dark-rgb: 45, 27, 22;
    --white: #FFFFFF;
    --white-rgb: 255, 255, 255;
    --gray-light: #F0E6DF;
    --gray-medium: #A8958B;
    
    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Poppins', sans-serif;
    
    /* Layout Details */
    --header-height: 80px;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 32px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
    --shadow-soft: 0 10px 30px rgba(45, 27, 22, 0.05);
    --shadow-medium: 0 20px 40px rgba(45, 27, 22, 0.1);
    --shadow-glass: 0 8px 32px 0 rgba(139, 0, 0, 0.04);
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    background-color: var(--background);
    color: var(--dark);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--dark);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

input, textarea, select, button {
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--background);
}
::-webkit-scrollbar-thumb {
    background: var(--secondary);
    border-radius: 5px;
    border: 3px solid var(--background);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* ==========================================================================
   Reusable Utilities & Containers
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 8rem 0;
    position: relative;
}

.section-dark {
    background-color: var(--dark);
    color: var(--background);
}
.section-dark h2, .section-dark h3, .section-dark p {
    color: var(--background);
}

.text-center { text-align: center; }

/* Section Titles */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem auto;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--secondary);
    font-weight: 600;
    display: block;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    position: relative;
    padding-bottom: 1.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--secondary), transparent);
}

/* Premium Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #b30000);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.4);
    background: linear-gradient(135deg, #b30000, var(--primary));
}

.btn-secondary {
    background: transparent;
    color: var(--secondary);
    border-color: var(--secondary);
}

.btn-secondary:hover {
    background: var(--secondary);
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(196, 154, 58, 0.2);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.btn-white:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-3px);
}

/* Glassmorphism */
.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: var(--shadow-glass);
}

.glass-dark {
    background: rgba(45, 27, 22, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: var(--header-height);
    transition: var(--transition-smooth);
    background: transparent;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    height: 70px;
    box-shadow: 0 5px 25px rgba(45, 27, 22, 0.05);
    backdrop-filter: blur(10px);
}

.header.scrolled .logo-text, .header.scrolled .nav-link {
    color: var(--dark);
}

.header.scrolled .nav-link::after {
    background: var(--primary);
}

.header.scrolled .nav-link.active {
    color: var(--primary);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-icon {
    font-size: 1.8rem;
    color: var(--secondary);
    line-height: 1;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 1px;
    color: var(--white);
    transition: var(--transition-smooth);
}

.logo-sub {
    display: block;
    font-family: var(--font-body);
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary);
    margin-top: -2px;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--white);
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition-smooth);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition-smooth);
}

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

.nav-link:hover {
    color: var(--secondary);
}

.nav-link.active {
    color: var(--secondary);
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    width: 30px;
    height: 24px;
    position: relative;
}

.mobile-nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--white);
    margin-bottom: 6px;
    transition: var(--transition-smooth);
    border-radius: 2px;
}

.header.scrolled .mobile-nav-toggle span {
    background-color: var(--dark);
}

.mobile-nav-toggle span:last-child {
    margin-bottom: 0;
}

.mobile-nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background-color: var(--dark);
    color: var(--background);
    padding: 6rem 0 2rem 0;
    border-top: 1px solid rgba(196, 154, 58, 0.15);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-about .logo-text {
    color: var(--background);
}

.footer-about p {
    margin: 1.5rem 0;
    color: var(--gray-medium);
    max-width: 320px;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(196, 154, 58, 0.2);
    color: var(--secondary);
    font-size: 1.1rem;
    transition: var(--transition-smooth);
}

.social-icon:hover {
    background: var(--secondary);
    color: var(--dark);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.3rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--gray-medium);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

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

.footer-contact li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--gray-medium);
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--secondary);
    margin-top: 0.2rem;
}

.footer-contact span {
    line-height: 1.5;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    color: var(--gray-medium);
    font-size: 0.85rem;
}

.footer-bottom a {
    color: var(--secondary);
}

/* ==========================================================================
   Interactive Floating UI
   ========================================================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--secondary);
    color: var(--dark);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

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

.back-to-top:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-5px);
}

/* Floating Action Panel (WhatsApp & Call) */
.floating-actions {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 99;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.float-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: var(--transition-smooth);
    position: relative;
}

.float-btn:hover {
    transform: scale(1.1) translateY(-3px);
}

.float-whatsapp {
    background-color: #25D366;
}

.float-phone {
    background-color: var(--primary);
}

/* Tooltip overlay */
.float-btn::before {
    content: attr(data-tooltip);
    position: absolute;
    left: 65px;
    background: var(--dark);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

.float-btn:hover::before {
    opacity: 1;
    visibility: visible;
}

/* ==========================================================================
   Home Page Specific Styles
   ========================================================================== */

/* Hero Banner */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(45, 27, 22, 0.7), rgba(45, 27, 22, 0.85));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    color: var(--white);
    padding: 2rem;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(196, 154, 58, 0.2);
    border: 1px solid var(--secondary);
    border-radius: 50px;
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.15;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-light);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    animation: fadeInUp 1s ease 0.6s both;
}

/* Page Banner (For secondary pages) */
.page-banner {
    height: 50vh;
    min-height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(45, 27, 22, 0.7), rgba(45, 27, 22, 0.9));
    z-index: 1;
}

.page-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-banner-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.breadcrumbs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-medium);
}

.breadcrumbs a {
    color: var(--secondary);
}

.breadcrumbs span {
    color: var(--gray-light);
}

/* Feature Grid / Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.service-card {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    background: var(--white);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.service-img-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.service-card:hover .service-img {
    transform: scale(1.1);
}

.service-info {
    padding: 2.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
}

.service-desc {
    color: var(--dark);
    opacity: 0.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-link {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.service-link i {
    transition: var(--transition-fast);
}

.service-card:hover .service-link i {
    transform: translateX(5px);
}

/* Why Choose Us Section */
.why-choose-us {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.wcu-image {
    position: relative;
}

.wcu-image-img {
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-medium);
    width: 100%;
}

.wcu-experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    padding: 2.5rem;
    border-radius: var(--border-radius-md);
    text-align: center;
    max-width: 220px;
}

.wcu-exp-years {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    display: block;
}

.wcu-exp-text {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--dark);
    display: block;
    margin-top: 0.5rem;
}

.wcu-features {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.wcu-feature-item {
    display: flex;
    gap: 1.5rem;
}

.wcu-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(196, 154, 58, 0.1);
    border: 1px solid var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--secondary);
    flex-shrink: 0;
}

.wcu-feature-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.wcu-feature-desc {
    color: var(--dark);
    opacity: 0.8;
    font-size: 0.95rem;
}

/* About Preview */
.about-preview {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-preview-content p {
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.about-preview-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.about-detail-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    font-size: 0.95rem;
}

.about-detail-item i {
    color: var(--secondary);
}

.about-preview-image {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.about-img-box {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.about-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-box:nth-child(even) {
    transform: translateY(30px);
}

/* Testimonials / Sliders */
.testimonials-slider {
    position: relative;
    max-width: 850px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonials-wrapper {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-slide {
    min-width: 100%;
    padding: 3rem;
    border-radius: var(--border-radius-md);
    text-align: center;
}

.testimonial-rating {
    color: var(--accent);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.testimonial-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    line-height: 1.5;
    font-style: italic;
    margin-bottom: 2rem;
}

.testimonial-author {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--secondary);
}

.testimonial-location {
    font-size: 0.85rem;
    color: var(--gray-medium);
    margin-top: 0.2rem;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.slider-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(196, 154, 58, 0.4);
    color: var(--secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.slider-btn:hover {
    background: var(--secondary);
    color: var(--dark);
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    border: 1px solid rgba(196, 154, 58, 0.2);
    background: var(--white);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.faq-header {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    transition: var(--transition-fast);
}

.faq-header:hover {
    background: rgba(196, 154, 58, 0.05);
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
}

.faq-toggle-icon {
    font-size: 1.2rem;
    color: var(--secondary);
    transition: var(--transition-smooth);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-content {
    padding: 0 2rem 2rem 2rem;
    color: var(--dark);
    opacity: 0.8;
    font-size: 0.95rem;
    border-top: 1px solid transparent;
}

/* Active State FAQ */
.faq-item.active {
    border-color: var(--secondary);
}

.faq-item.active .faq-body {
    max-height: 250px; /* Large enough to fit content */
}

.faq-item.active .faq-content {
    border-top-color: rgba(196, 154, 58, 0.1);
}

.faq-item.active .faq-toggle-icon {
    transform: rotate(180deg);
}

/* Call To Action Banner */
.cta-banner {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    padding: 5rem;
    text-align: center;
    box-shadow: var(--shadow-medium);
}

.cta-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 1;
}

.cta-banner-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
